/* Browser Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

input, button {
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
}

textarea {
    margin: 0;
    padding: 0;
    border: none;
    resize: none;
    width: 100%;
    text-align: start;
}

textarea:focus {
    outline: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* Background Color and Font */
@font-face {
    font-family: 'Futura PT Light';
    src: url("../font/Futura PT Light.woff")
}

body {
    background-color: #f4f4f4;
    font-family: 'Futura PT Light' !important;
}

/* Navigation */

.header-color, .footer-color {
    background-color: #708573;
}

header .logo {
    height: 200px;
}

/* Language Switcher */

.lang-switcher {
    border: 2px solid #ffffff;
    border-radius: 30px;
}

.lang-switcher .lang-switch-icon {
    width: 30px;
}

.lang-switcher .lang-list .lang-text {
    text-align: center;
}

.lang-switcher .selected {
    margin: 0;
    padding-left: 15px;
    display: inline;
}

.lang-switcher .lang-list {
    max-height: 0;
    transition: max-height .5s ease-in-out;
}

.lang-switcher.active .lang-list {
    max-height: 200px;
}

.lang-switcher.active .lang-list a:hover, .lang-switcher.active .lang-list a:focus {
    text-decoration: underline !important;
}

@media (max-width: 400px) {
    .lang-switcher {
        transform: scale(0.8);
    }
}

/* Main Header */
.gold {
    color: #b98d4a;
}

.navy-blue {
    color: #708573;
}

/* Input Groups */

.input-group {
    width: 100%;
    max-width: 400px;
    height: 60px;
    border-bottom: 2px solid #708573;
    position: relative;
    transition: all .5s ease-in-out;
}

.input-group input {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: transparent;
    font-size: 1.3rem;
    color: #708573;
    transition: all .5s ease-in-out;
    padding-top: 20px;
}

.input-group label {
    transition: all .3s ease-in-out;
}

.input-group.active {
    border-color: #708573;
}

.input-group.active label {
    transform: translateY(-20px);
    font-size: 1rem !important;
}

/* input buttons */
.button {
    padding: 15px 25px;
    background-color: #708573;
    border-radius: 30px; 
    font-size: 1.5rem;
    transition: all .5s ease-in-out;
}

.button-navy-blue {
    background-color: #708573;
}

.button:hover {
    background-color: #a5773a;
}

/* Radio Buttons */
li:hover {
    cursor: pointer !important;
}

.choices, .choices .choice {
    list-style: none;
    position: relative; 
    margin: 0;
    padding: 0;
}

.choices .choice {
    padding: 5px 0;
}

.choices .choice input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.choice .check {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    border: 3px solid #708573;
    border-radius: 100%;
    transition: all .3s ease;
}

input[type="radio"]:checked + .check {
    background-color: #708573;
}

/* Scale From 1-10 */
.choices .scale {
    width: 60px;
    height: 80px;
    justify-content: center;
    position: relative;
}

.choices .scale .scaleLabel {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #708573;
    border-radius: 50px;
    transition: all .25s ease-in-out;
}

.choices .scale .scaleLabel:hover {
    background-color: #708573;
    color: #ffffff;
}

.choices .scale input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.choices .scale input[type="radio"]:checked + .scaleLabel {
    background-color: #708573;
    color: #ffffff;
}

.scaleDescription p {
    width: 60px;
}

.scaleDescription span {
    display: none;
}

@media (max-width: 990px) {
    .scaleDescription p {
        width: 100%;
    }

    .scaleDescription span {
        display: inline;
    }
}

/* Emoji Radio Buttons */
.choices .emoji {
    position: relative;
}

.choices .emoji input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.choices .emoji .emojiLabel, .emojiHolder i {
    display: block;
    transition: all .25s ease-in-out;
}

.choices .emoji input[type="radio"]:checked ~ .emojiLabel,
.choices .emoji input[type="radio"]:checked + .emojiHolder > i {
    color: #b98d4a !important;
} 

/* Textarea for Negative Feedback */
.negativeDetail {
    display: none;
}

.negativeDetail.active {
    display: block;
}

textarea.negativeFeedback, textarea {
    border: 2px solid #708573;
    border-radius: 10px;
    transition: all .25s ease-in-out;
    padding: 5px 10px;
    color: #000000;
    font-weight: 800;
}

.negativeFeedback:focus, textarea:focus {
    border-color: #b98d4a;
}

/* Datepicker */
.datepicker td, .datepicker th {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
}

.datepicker {
    z-index: 999 !important;
}

/* Progress Bar */

.progress-wrapper {
    position: sticky;
    top: 0px;
    background-color: #f4f4f4;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 999;
}

#progressPath {
    width: 100%;
    height: 25px;
    background-color: rgba(194, 141, 63, 0.3);
    border: 2px solid #b98d4a;
}

#progressBar {
    height: 21px;
    background-color: #b98d4a;
    width: 0;
}

/* Thank You */
.thank-you-icon {
    font-size: 5.5rem;
}


 .scoreText
 {
    color: #656c73;
    line-height: 50px;
    font-weight: 400 !important;
    white-space: pre-line;
    font-size: 30px !important;
}

.link-button {
    margin-top: 8px;
    display: inline-block;
    background-color: #656c73;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-family: sans-serif;
  }

  .link-button:hover {
    background-color: #656c73;
  }
  a:hover {
    color: #fff !important;
    text-decoration: underline;
  }  

/*devextreme*/

.dx-button-mode-text.dx-button-default .dx-icon {
    color: #708573 !important;
    font-size: 15px !important;;
}

@media (max-width: 767px) {
    .dx-form, #formQuestionSample {
      margin-left: -15px;
      margin-right: -15px;
    }
  }
  
  .dx-loadpanel-content {
    border-radius: 0 !important;
    border-color: #708573 !important;
  }
  
  .dx-loadpanel-content .dx-loadpanel-message {
    color: #708573 !important;
    font-size: 20px !important;
  }
  
  .dx-form-group-caption {
    background: #e5d5bd;
    color: #708573;
    display: block;
    font-weight: bold;
    font-size: 20px !important;
    padding: 20px;
    font-family: 'Futura PT Light' !important;
	display:none;
  }
  
  @media (max-width: 413px) {
    .dx-form-group-caption {
      padding: 15px;
    }
  }
  
  .dx-form-group-content {
    padding-top: 0 !important;
    border: none !important;
    margin: 10px 20px !important;
    background-color: #f4f4f4;
    font-family: 'Futura PT Light' !important;
  }
  
  @media (max-width: 413px) {
    .dx-form-group-content {
      margin: 10px 15px !important;
    }
  }
  
  .dx-form-group-content .dx-form-group {
    padding: 0 !important;
  }
  
  .dx-form-group-content .dx-form-group.dx-form-group-with-caption {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  @media (max-width: 413px) {
    .dx-form-group-content .dx-form-group.dx-form-group-with-caption {
      margin-left: -15px;
      margin-right: -15px;
    }
  }
  
  .dx-form-group-content .dx-form-group.dx-form-group-with-caption .dx-form-group-caption {
    font-weight: normal;
    padding-top: 0;
    margin-top: -21px;
    padding-left: 49px;
  }
  
  .dx-form-group-content .dx-item-content {
    margin: 0px !important;
    padding: 0 !important;
    background: none !important;
  }
  
  @media (max-width: 413px) {
    .dx-form-group-content .dx-item-content {
      font-size: 13px !important;
    }
  }
  
  .dx-form-group-content .dx-item-content .dx-field-item-label {
    color: #708573;
    font-weight: 700!important;
    font-size: calc(1.275rem + .3vw)!important;
    background-color: #f4f4f4;
    font-family: 'Futura PT Light' !important;
    margin-top:10px;
  }
  
   .dx-form-group-content .dx-item-content .dx-field-item-label-text {
    color: #708573;
    font-weight: 700!important;
    font-size: calc(1.275rem + .3vw)!important;
    background-color: #f4f4f4;
    font-family: 'Futura PT Light' !important;
    margin-top:10px;
  } 
  
  .dx-form-group-content .dx-item-content .dx-radiobutton {
    margin: 12px 10px 12px 0 !important;
  } 
  
  .dx-form-group-content .dx-item-content .dx-radiobutton .dx-item-content {
    padding-top: 2px !important;
  } 
  
  /* .dx-form-group-content .dx-item-content .dx-radiobutton .dx-radiobutton-icon::before {
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #708573;
    background-color: #fff;
    content: "";
    border-radius: 50%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  } */
  
  /* .dx-form-group-content .dx-item-content .dx-radiobutton .dx-radiobutton-icon.dx-radiobutton-icon-checked .dx-radiobutton-icon-dot {
    display: block;
    margin-top: -13px;
    margin-left: 4px;
    width: 9px;
    height: 9px;
    background: #708573;
    content: "";
    border-radius: 50%;
  } */
  
  .dx-widget {
    color: #708573 !important;
    font-size: calc(1.275rem + .3vw)!important;
    font-family: 'Futura PT Light' !important;
  }
  
  .dx-texteditor.dx-editor-outlined {
    border: 1px solid #708573 !important;
    border-radius: 0 !important;
  }
  
  .dx-placeholder {
    color: #708573 !important;
  }
  
  .dx-dropdowneditor-icon {
    border-radius: 0 !important;
    background-color: #708573 !important;
  }
  
  .dx-dropdowneditor-icon::before {
    color: #FFF !important;
  }
  
  .dx-tag-content {
    background-color: #708573 !important;
    border-radius: 0 !important;
    color: #FFF !important;
  }
  
  .dx-tag-remove-button:before, .dx-tag-remove-button:after {
    background: #3e3e3e !important;
  }
  
  .dx-texteditor-input {
    color: #708573 !important;
  }