/*!
 * art_samvelyan 
 *  
 * Art Samvelyan 
 */

@import '../../../node_modules/air-datepicker/air-datepicker.css';
.modal-wrapper {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.7490196078);
}
.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
  overflow: hidden;
}
.modal-wrapper.active .modal-content {
  opacity: 1;
}
.modal-wrapper .modal-content {
  z-index: 1;
  opacity: 0;
  transition: opacity;
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2117647059);
  border-radius: 20px;
  background-color: #f0f1f2;
  color: #4e4e4e;
  padding: 2em 1em;
  overflow-y: auto;
  max-width: 500px;
  width: 95%;
  height: auto;
  font-size: 15px;
}
.modal-wrapper .modal-content .close-btn:not(a) {
  outline: none;
  border: none;
  border-radius: 50%;
  color: #484141;
  background-color: transparent;
  padding: 15px;
  cursor: pointer;
  position: fixed;
  right: 4%;
  top: 2%;
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
}
.modal-wrapper .modal-content .close-btn:not(a):active, .modal-wrapper .modal-content .close-btn:not(a):focus, .modal-wrapper .modal-content .close-btn:not(a):hover {
  opacity: 1;
  background: rgba(128, 128, 128, 0.5);
}
.modal-wrapper .modal-content .close-btn:not(a)::before, .modal-wrapper .modal-content .close-btn:not(a)::after {
  content: " ";
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: currentColor;
}
.modal-wrapper .modal-content .close-btn:not(a)::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal-wrapper .modal-content .close-btn:not(a)::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-wrapper .modal-content .success-icon {
  max-width: 50px;
  margin: 0 auto 1em;
}
.modal-wrapper .modal-content .heading {
  font-size: 1.5em;
  font-weight: 300;
}
@media only screen and (min-width: 485px) {
  .modal-wrapper .modal-content .close-btn:not(a) {
    position: absolute;
    right: 2%;
  }
}
@media only screen and (min-width: 992px) {
  .modal-wrapper .modal-content {
    padding: 2em;
  }
  .modal-wrapper .modal-content .success-icon {
    max-width: 80px;
    margin-bottom: 1.5em;
  }
  .modal-wrapper .modal-content .heading {
    font-size: 2em;
  }
}
@media only screen and (min-width: 1600px) {
  .modal-wrapper .modal-content .success-icon {
    max-width: 90px;
  }
  .modal-wrapper .modal-content .heading {
    font-size: 2.5em;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: normal;
  overflow: hidden auto;
  height: 100%;
  color: #1c1c1c;
  /* Media Queries */
}
body img {
  width: 100%;
  display: block;
}
body .main {
  overflow: hidden;
  background-color: #fcfbf3;
  min-height: 100vh;
  padding: 2em 1em;
}
body .main p {
  line-height: 1.4;
}
body .sv-form {
  border: 1px solid #e5e5dd;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  margin: 1em auto;
  padding: 1em 1em 2em;
  font-size: 15px;
}
body .sv-form:not(.active) .sv-form__item:not(:first-child) {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 0;
  pointer-events: none;
}
body .sv-form__item {
  opacity: 1;
  height: 100%;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  pointer-events: auto;
  margin-bottom: 1.5em;
  transition: 0.35s ease-in;
}
body .sv-form__item .sv-form__heading {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 10px;
  text-transform: capitalize;
}
body .sv-form__item .sv-form__heading:after {
  content: none;
  position: absolute;
  top: 3px;
  right: -10px;
  color: #ff300a;
  font-size: 0.8em;
}
body .sv-form__item:last-of-type .sv-form__hint {
  margin-bottom: 15px;
}
body .sv-form__item .sv-form__hint {
  display: none;
  color: #696a6a;
  font-size: 13px;
  font-weight: 600;
  margin-top: 5px;
  padding-left: 8px;
}
body .sv-form__item.invalid .sv-form__heading:after {
  content: "*";
}
body .sv-form__item.invalid .sv-form__hint {
  display: inline-block;
  color: #ff300a;
}
body .sv-form__item.invalid .sv-form__area,
body .sv-form__item.invalid .sv-form__input input {
  border-color: #ff300a !important;
}
body .sv-form__item .star-rating {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  gap: 3px;
  white-space: nowrap;
}
body .sv-form__item .star-rating input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  visibility: hidden;
}
body .sv-form__item .star-rating label {
  width: 42px;
  height: 40px;
  background-color: #dcdce6;
  background-image: url("/assets/survey-gulp/images/star-full.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
body .sv-form__item .star-rating label:has(~ :nth-of-type(1):hover), body .sv-form__item .star-rating label:has(~ :nth-of-type(1):focus), body .sv-form__item .star-rating label:has(~ :nth-of-type(1):active), body .sv-form__item .star-rating label:has(~ :nth-of-type(1):checked) {
  background-color: #ff3722;
}
body .sv-form__item .star-rating label:has(~ :nth-of-type(2):hover), body .sv-form__item .star-rating label:has(~ :nth-of-type(2):focus), body .sv-form__item .star-rating label:has(~ :nth-of-type(2):active), body .sv-form__item .star-rating label:has(~ :nth-of-type(2):checked) {
  background-color: #ff8622;
}
body .sv-form__item .star-rating label:has(~ :nth-of-type(3):hover), body .sv-form__item .star-rating label:has(~ :nth-of-type(3):focus), body .sv-form__item .star-rating label:has(~ :nth-of-type(3):active), body .sv-form__item .star-rating label:has(~ :nth-of-type(3):checked) {
  background-color: #ffce00;
}
body .sv-form__item .star-rating label:has(~ :nth-of-type(4):hover), body .sv-form__item .star-rating label:has(~ :nth-of-type(4):focus), body .sv-form__item .star-rating label:has(~ :nth-of-type(4):active), body .sv-form__item .star-rating label:has(~ :nth-of-type(4):checked) {
  background-color: #73cf11;
}
body .sv-form__item .star-rating label:has(~ :nth-of-type(5):hover), body .sv-form__item .star-rating label:has(~ :nth-of-type(5):focus), body .sv-form__item .star-rating label:has(~ :nth-of-type(5):active), body .sv-form__item .star-rating label:has(~ :nth-of-type(5):checked) {
  background-color: #00b67a;
}
body .sv-form__item .sv-form__area {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 20vh;
  resize: none;
  border: 1px solid #696a6a;
  color: #1c1c1c;
  font-size: 0.85em;
  line-height: 1.5rem;
  box-sizing: border-box;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 8px 16px;
}
body .sv-form__item .sv-form__input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  height: 48px;
  transition: 0.3s ease-in-out;
}
body .sv-form__item .sv-form__input ::-webkit-input-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input ::-moz-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input :-ms-input-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input ::-ms-input-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input ::placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input input[type=text],
body .sv-form__item .sv-form__input input[type=email] {
  width: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 4px 0 0 4px;
  color: #1c1c1c;
  display: block;
  padding: 0.5em 0.7em;
  height: 100%;
  border: 1px solid currentColor;
}
body .sv-form__item .sv-form__input .icon {
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: currentColor;
  border-radius: 0 4px 4px 0;
  background-image: url("/assets/survey-gulp/images/edit-pencil-svgrepo-com.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  background-color: #e3e4e4;
  width: 48px;
  height: 100%;
}
body .sv-form__item .sv-form__input .icon.icon__date {
  background-image: url("/assets/survey-gulp/images/calendar-icon.svg");
}
body .sv-form__item .sv-form__input .icon.icon__email {
  background-image: url("/assets/survey-gulp/images/gmail-icon.svg");
}
body .sv-form__item .sv-form__submit {
  display: block;
  text-transform: capitalize;
  background-color: #205cd4;
  color: #fff;
  border-radius: 40px;
  border: none;
  font-weight: 700;
  font-size: 1em;
  padding: 10px 30px;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
body .sv-form__item .sv-form__submit:hover, body .sv-form__item .sv-form__submit:focus, body .sv-form__item .sv-form__submit:active {
  -webkit-filter: brightness(0.86);
          filter: brightness(0.86);
}
@media only screen and (min-width: 768px) {
  body .main .sv-form {
    font-size: 20px;
    max-width: 750px;
  }
}
@media only screen and (min-width: 1200px) {
  body .main .sv-form {
    font-size: 25px;
    max-width: 800px;
  }
  body .main .sv-form__item .sv-form__heading {
    font-size: 1.4em;
  }
  body .main .sv-form__item .sv-form__input ::-webkit-input-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input ::-moz-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input :-ms-input-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input ::-ms-input-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input ::placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .star-rating {
    gap: 5px;
  }
  body .main .sv-form__item .star-rating label {
    width: 52px;
    height: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  body .main .sv-form {
    max-width: 1100px;
  }
}