/*IPHONE Portrait and Landscape */
/*PASTE THIS:
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2){}*/
/*TABLET Portrait and Landscape*/
/*PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024) and (-webkit-min-device-pixel-ratio: 2){}*/
/*TABLET Portrait */
/*PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1){}*/
/*TABLET Landscape*/
/*PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2){}*/
@font-face {
  font-family: "Candelia Regular";
  src: url(fonts/Candelia-Regular.ttf);
}
h1, h2, h3, h4, h5, h6, p, ul, li, a, div, span {
  font-family: "Dosis", sans-serif;
}

img {
  width: 100%;
}

.logo {
  width: 40%;
  margin: auto;
}

.coursiveTitle {
  font-family: "Candelia Regular", sans-serif !important;
}

.bkgBlue {
  background-color: #82b6e9;
}
.bkgBlue .coursiveTitle {
  color: #fff;
}

.bkgLight {
  background-color: #e5e5e5;
}

.footer {
  background-color: #4e3f51;
}
.footer * {
  color: #fff;
}

#surveyContainer {
  min-height: 700px;
}

#thankYou {
  background-image: url("../images/thanks.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#thankYou h1 {
  color: #4e3f51;
}

.hidden {
  display: none;
}

.btnLink {
  background-color: #82b6e9;
  color: #fff;
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #82b6e9;
  cursor: pointer;
}
.btnLink:hover {
  background-color: #fff;
  color: #82b6e9;
}

.endSurvey .btnLink {
  float: right;
  text-transform: lowercase;
}
.endSurvey .btnLink::first-letter {
  text-transform: uppercase;
}

.bkg {
  background-image: url(../images/survey/fruits_bkg.jpg);
  background-attachment: fixed;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}

header {
  position: relative;
}
header .topMenuFixed {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
}
header .topMenuFixed .session, header .topMenuFixed .lang, header .topMenuFixed .logOut {
  display: inline-block;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  header .topMenuFixed .logOut {
    display: flex;
    float: right;
  }
}
header .topMenuFixed .session {
  padding: 10px;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  header .topMenuFixed .session {
    display: none;
  }
}
header h4 span {
  color: #82b6e9;
}
header span {
  font-weight: 600;
}

.lang a {
  text-decoration: none;
}
.lang img {
  width: 25px;
  display: inline-block;
  margin-left: 13px;
  margin-right: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-sizing: content-box;
  transition: 0.3s;
}
.lang img.selectedLang {
  border: 3px solid #82b6e9;
}

.menu .steps {
  background-color: #fff;
  transition: 0.3s;
}
.menu .steps svg path {
  fill: #b7b7b7;
  transition: 0.3s;
}
.menu .steps.clickedStep {
  background-color: #82b6e9;
  transition: 0.3s;
}
.menu .steps.clickedStep svg path {
  fill: #fff;
  transition: 0.3s;
}

#stepName {
  text-transform: lowercase;
}
#stepName::first-letter {
  text-transform: uppercase;
}
#stepName span {
  font-size: 20px;
  text-transform: lowercase;
  margin-top: 23px;
  display: block;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  #stepName {
    line-height: 2em;
  }
}

.owl-steps .owl-nav {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
}
.owl-steps .owl-nav button {
  outline: none !important;
  position: absolute;
  transition: 0.3s;
  opacity: 1;
}
.owl-steps .owl-nav button span {
  font-size: 35px;
  color: #fff;
}
.owl-steps .owl-nav button.owl-prev {
  left: 0;
}
.owl-steps .owl-nav button.owl-prev.disabled {
  opacity: 0;
  cursor: auto;
}
.owl-steps .owl-nav button.owl-next {
  right: 0;
}

.qcontainer {
  margin-bottom: 30px;
  /*     .qimage {
              padding: 30px;
      } */
}
.qcontainer .question {
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  background-color: #82b6e99c;
  color: #fff !important;
}
.qcontainer .answers div {
  display: inline-block;
  padding: 10px;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  .qcontainer .answers {
    overflow-x: scroll;
  }
}
.qcontainer .note {
  text-align: center;
  margin-top: 20px;
  font-size: 21px;
  color: #82b6e9;
  font-weight: 600;
  border: 1px solid;
  padding: 12px;
  margin-bottom: 20px;
}
.qcontainer .note span {
  font-weight: 400;
}
.qcontainer .note p, .qcontainer .note li {
  text-align: justify;
  font-size: 18px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  .overflowXMobile {
    overflow-x: scroll;
  }
}

.result {
  background-color: #82b6e9;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.tableq td {
  padding: 5px 10px;
  background: #f5f5f5;
  border: 3px solid #fff;
}
.tableq td span {
  font-size: 25px;
  color: #82b6e9;
}
.tableq .headtable td {
  background-color: #82b6e9;
  font-weight: 700;
  color: #fff;
}

input[type=radio] {
  width: 20px;
  height: 20px;
  vertical-align: sub;
  margin-right: 5px;
}

input[type=date], input[type=text], input[type=number], input[type=password] {
  border: 1px solid #82b6e9;
  padding: 10px;
  outline: none;
}

button.btn.btn-default, button .top_search .input-group-btn button {
  background-color: #82b6e9;
  color: #fff;
  border: 1px solid #82b6e9;
  border-radius: 0 !important;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 25px;
}
button.btn.btn-default:hover, button .top_search .input-group-btn button:hover {
  background-color: #fff;
  color: #82b6e9;
}

.login .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sectionnav, .sectionTitle {
  display: none;
}

.dateCal {
  position: relative;
}
.dateCal .datepicker {
  border-radius: 0;
}
.dateCal span {
  position: absolute;
  top: 20px;
  right: 10%;
  font-size: 23px;
}

.sectionnav .steps {
  position: absolute;
  top: 0;
  padding: 10px 30px;
}
.sectionnav .steps.prev {
  left: 0;
}
.sectionnav .steps.next {
  right: 0;
}

#stepName em {
  font-size: 18px;
  font-family: "Dosis";
}
#stepName b {
  font-size: 0.8em;
}