.scrollerCheckBox {
  background: #fff;
  top: 0;
  bottom: 0;
  width: 100%;
  position: fixed;
  scroll-behavior: smooth;
}

.scrollerCheckBoxOptions {
  width: 100%;
  height: 200px;
  margin-top: var(--navbar-height);
  overflow-y: scroll;
  position: relative;
  z-index: 0;
}


.scrollerCheckBoxOptions input {
  display: none;
}

.scrollerCheckBoxOptions__option {
  height: 55px;
}

.scrollerCheckBoxOptions__option label {
  width: 100%;
  height: 55px;
}

.scrollerCheckBoxOptions__option .scrollerCheckBoxOptions__option__label div {
  height: 55px;
  width: 100%;
  background: #fff;
  text-align: center;
  border: 0;
  font-size: 30px;
  color: #999999;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.scrollerCheckBoxOptions__option .scrollerCheckBoxOptions__option__label div b {
  font-weight: 300;
  margin-right: 10px;
  font-size: 18px;
}

.scrollerCheckBoxOptions__option .scrollerCheckBoxOptions__option__label div span {
  font-size: 20px;
}

.scrollerCheckBoxOptions__option .scrollerCheckBoxOptions__option__label div:before {
  content: "";
  width: 0;
  height: 55px;
  background-color: #1f3deb;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.scrollerCheckBoxOptions__option input:checked~label b {
  color: #fff;
  z-index: 1;
}

.scrollerCheckBoxOptions__option input:checked~label span {
  color: #fff;
  position: relative;
  z-index: 1;
}

.scrollerCheckBoxOptions__option input:checked~label div {
  color: #fff;
  z-index: 2;
}

.scrollerCheckBoxOptions__option input:checked~label div:before {
  width: 100%;
  -webkit-box-shadow: 0 0px 20px rgba(31, 61, 235, 0.4);
  box-shadow: 0 0px 20px rgba(31, 61, 235, 0.4);
}
.scrollerCheckBoxOptions__valueExists{

}
.scrollerCheckBoxOptions__valueExists .scrollerCheckBoxOptions__option__label div:before {
  background-color: white;
}
.scrollerCheckBoxOptions__valueExists input:checked~label b {
  color: #1f3deb;
  z-index: 1;
}
.scrollerCheckBoxOptions__valueExists input:checked~label div:before {
  width: 100%;
  -webkit-box-shadow: 0 0px 20px rgba(31, 61, 235, 0.0);
  box-shadow: 0 0px 20px rgba(31, 61, 235, 0.0);
}
@-webkit-keyframes scrollerCheckBoxOptions-show {
  0% {
    top: 100vh;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes scrollerCheckBoxOptions-show {
  0% {
    top: 100vh;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

@-webkit-keyframes scrollerCheckBoxOptions-hidden {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
}

@keyframes scrollerCheckBoxOptions-hidden {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
}

.questionnaireScrollerCheckBoxOptions {
  width: 100%;
  height: 40vh;
  overflow-y: scroll;
  position: relative;
  margin-top: 20px;
}

.questionnaireScrollerCheckBoxOptionsSelected .scrollerCheckBoxOptions__option input:checked~label b {
  color: #1f3deb;
  z-index: 1;
  all 0.3s ease;
}
.questionnaireScrollerCheckBoxOptionsSelected .scrollerCheckBoxOptions__option label b {
  color: #a9a9a9;
  z-index: 1;
  all 0.3s ease;
}

.questionnaireScrollerCheckBoxOptionsSelected  .scrollerCheckBoxOptions__option input:checked~label div:before {
  width: 100%;
  -webkit-box-shadow: none ;
  box-shadow:none;
}
.questionnaireScrollerCheckBoxOptionsSelected .scrollerCheckBoxOptions__option__label div:before {
  content: "";
  width: 0;
  height: 55px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.questionnaireScrollerCheckBoxOptionsSelected .scrollerCheckBoxOptions__option .scrollerCheckBoxOptions__option__label div b {
  font-weight: 300;
  margin-right: 10px;
  font-size: 16px;
}







.selectDateContainer {
  /*overflow: scroll;*/
  background: #fff;
  top: 0;
  opacity: 1;
  bottom: 0;
  z-index: 21;
  width: 100%;
  position: fixed;
  box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  -webkit-animation: select-date_animation-up .8s 0s forwards;
  animation: select-date_animation-up .8s 0s forwards;
  scroll-behavior: smooth;
}

.selectDateContainer--exit {
  -webkit-animation: AddressEntryContainer-animation-down .8s 0s forwards;
  animation: AddressEntryContainer-animation-down .8s 0s forwards;
}

.selectDateWrapper {
  display: flex;
}

.selectDateWrapperOptions {
  width: 33.3%;
  height: 100vh;
  padding-top: 70px;
  overflow-y: scroll;
  position: relative;
  z-index: 0;
}

.selectDateWrapperOptions input {
  display: none;
}

.selectDateWrapperOptions div>label {
  width: 100%;
}

.selectDateWrapperOptions div>label div {
  height: 50px;
  width: 100%;
  background: #fff;
  text-align: center;
  border: 0;
  font-size: 20px;
  color: #999999;
  cursor: pointer;
  transition: all 0.3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selectDateWrapperOptions div>label div {
  background-color: white;
  color: #999;
}

.selectDateWrapperOptions div>label div:before {
  content: "";
  width: 0;
  height: 50px;
  background-color: #1f3deb;
  position: absolute;
  transition: all 0.3s ease;
}

.selectDateOptionSelected label div {
  background-color: #1f3deb !important;
  color: white !important;
}

.selectDateOptionSelected label div:before {
  background-color: #1f3deb !important;
}

.selectDateWrapperOptions div>label span {
  font-size: 20px;
}

.selectDateWrapperOptions div>label div b {
  font-weight: normal;
  margin-right: 10px;
}

.selectDateWrapperOptions div {
  height: 50px;
}

@-webkit-keyframes select-date_animation-up {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes select-date_animation-up {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.measureContainer {display: flex;justify-content: space-between;align-items: center;padding: 12px 15px 14px 30px;position:relative;}
.measureContainer::after{
  content:'';
  width: 78%;
  position: absolute;
  height: 1px;
  background: #cacaca;
  bottom: 0px;
  left: 0;
}

.measureContainer img {
  width: 25px;
}

.measureContainer div {
  font-size: 13px;
  color: #333;
}

.measureContainer b {
  font-weight: 400;
  color: #8e8e93;
  font-family: Poppins-Light;
}

.measureContainer span {
  color: #1f3deb;
}

.mesureInput {
  background: #fff;
  top: 0;
  bottom: 0;
  z-index: 130;
  width: 100%;
  position: fixed;
  box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  -webkit-animation: animation-up .8s 0s forwards;
  animation: animation-up .8s 0s forwards;
  scroll-behavior: smooth;
}

.mesureInputHeader {
  width: 100%;
  padding: 20px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  background: #fff;
  align-items: center;
  position: fixed;
  top: 0;
  text-transform: uppercase;
  z-index: 135;
}

.mesureInputHeader:after {
  content: "";
  background: url(../../images/icons/shadow-top.png) no-repeat;
  background-size: 100% 100%;
  background-position: top;
  position: absolute;
  width: 100%;
  height: 20vh;
  left: 0;
  top: 70px;
  z-index: 30;
}

.mesureInputHeader h4 {
  font-weight: 400;
  font-size: 15px;
  margin: 0;
  padding: 0;
  color: #999;
}

.mesureInputFooter:before {
  content: "";
  background: url(../../images/icons/shadow-bottom.png) no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  position: absolute;
  width: 100%;
  height: 20vh;
  left: 0;
  bottom: 0px;
  z-index: 32;
}

.mesureInputValues {
  width: 100%;
  height: 100vh;
  padding-top: 70px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  position: relative;
  z-index: 0;
}

.mesureInputValues div {
  height: 50px;
}

.mesureInputValues input {
  display: none;
}

.mesureInputValues div>label {
  width: 100%;
}

.mesureInputValues div>label div {
  height: 50px;
  width: 100%;
  background: #fff;
  text-align: center;
  border: 0;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  transition: all .3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mesureInputValueSelected label>div {
  background-color: #1f3deb !important;
  color: white !important;
}

.mesureInputValues div>label div:before {
  content: "";
  width: 0;
  height: 50px;
  background-color: #1f3deb;
  position: absolute;
  transition: all .3s ease;
}

.mesureInputValues div>label div b {
  font-weight: 400;
  margin-right: 10px;
}

/*NEW */

.select-wrap {
  position: relative;
  height: 100%;
  text-align: center;
  overflow: hidden;
  font-size: 20px;
  color: #fff;
}

.select-wrap:before, .select-wrap:after {
  position: absolute;
  z-index: 1;
  display: block;
  content: '';
  width: 100%;
  height: 50%;
}

.select-wrap:before {
  top: 0;
  height:50px;
  /* background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(1, 1, 1, 0)); */
}

.select-wrap:after {
  bottom: 0;
  height:50px;
  /* background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(1, 1, 1, 0)); */
}

.select-wrap .select-options {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  transform-style: preserve-3d;
  margin: 0 auto;
  display: block;
  transform: translateZ(-150px) rotateX(0deg);
  -webkit-font-smoothing: subpixel-antialiased;
  color: #666;
}

.select-wrap .select-options .select-option {
  position: absolute;
  color: #999;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.select-wrap .select-options .select-option:nth-child(1) {
  transform: rotateX(0deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(2) {
  transform: rotateX(-18deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(3) {
  transform: rotateX(-36deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(4) {
  transform: rotateX(-54deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(5) {
  transform: rotateX(-72deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(6) {
  transform: rotateX(-90deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(7) {
  transform: rotateX(-108deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(8) {
  transform: rotateX(-126deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(9) {
  transform: rotateX(-144deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(10) {
  transform: rotateX(-162deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(11) {
  transform: rotateX(-180deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(12) {
  transform: rotateX(-198deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(13) {
  transform: rotateX(-216deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(14) {
  transform: rotateX(-234deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(15) {
  transform: rotateX(-252deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(16) {
  transform: rotateX(-270deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(17) {
  transform: rotateX(-288deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(18) {
  transform: rotateX(-306deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(19) {
  transform: rotateX(-324deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(20) {
  transform: rotateX(-342deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(21) {
  transform: rotateX(-360deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(22) {
  transform: rotateX(-378deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(23) {
  transform: rotateX(-396deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(24) {
  transform: rotateX(-414deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(25) {
  transform: rotateX(-432deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(26) {
  transform: rotateX(-450deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(27) {
  transform: rotateX(-468deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(28) {
  transform: rotateX(-486deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(29) {
  transform: rotateX(-504deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(30) {
  transform: rotateX(-522deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(31) {
  transform: rotateX(-540deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(32) {
  transform: rotateX(-558deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(33) {
  transform: rotateX(-576deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(34) {
  transform: rotateX(-594deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(35) {
  transform: rotateX(-612deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(36) {
  transform: rotateX(-630deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(37) {
  transform: rotateX(-648deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(38) {
  transform: rotateX(-666deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(39) {
  transform: rotateX(-684deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(40) {
  transform: rotateX(-702deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(41) {
  transform: rotateX(-720deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(42) {
  transform: rotateX(-738deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(43) {
  transform: rotateX(-756deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(44) {
  transform: rotateX(-774deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(45) {
  transform: rotateX(-792deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(46) {
  transform: rotateX(-810deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(47) {
  transform: rotateX(-828deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(48) {
  transform: rotateX(-846deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(49) {
  transform: rotateX(-864deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(50) {
  transform: rotateX(-882deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(51) {
  transform: rotateX(-900deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(52) {
  transform: rotateX(-918deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(53) {
  transform: rotateX(-936deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(54) {
  transform: rotateX(-954deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(55) {
  transform: rotateX(-972deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(56) {
  transform: rotateX(-990deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(57) {
  transform: rotateX(-1008deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(58) {
  transform: rotateX(-1026deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(59) {
  transform: rotateX(-1044deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(60) {
  transform: rotateX(-1062deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(61) {
  transform: rotateX(-1080deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(62) {
  transform: rotateX(-1098deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(63) {
  transform: rotateX(-1116deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(64) {
  transform: rotateX(-1134deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(65) {
  transform: rotateX(-1152deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(66) {
  transform: rotateX(-1170deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(67) {
  transform: rotateX(-1188deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(68) {
  transform: rotateX(-1206deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(69) {
  transform: rotateX(-1224deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(70) {
  transform: rotateX(-1242deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(71) {
  transform: rotateX(-1260deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(72) {
  transform: rotateX(-1278deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(73) {
  transform: rotateX(-1296deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(74) {
  transform: rotateX(-1314deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(75) {
  transform: rotateX(-1332deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(76) {
  transform: rotateX(-1350deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(77) {
  transform: rotateX(-1368deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(78) {
  transform: rotateX(-1386deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(79) {
  transform: rotateX(-1404deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(80) {
  transform: rotateX(-1422deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(81) {
  transform: rotateX(-1440deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(82) {
  transform: rotateX(-1458deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(83) {
  transform: rotateX(-1476deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(84) {
  transform: rotateX(-1494deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(85) {
  transform: rotateX(-1512deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(86) {
  transform: rotateX(-1530deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(87) {
  transform: rotateX(-1548deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(88) {
  transform: rotateX(-1566deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(89) {
  transform: rotateX(-1584deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(90) {
  transform: rotateX(-1602deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(91) {
  transform: rotateX(-1620deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(92) {
  transform: rotateX(-1638deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(93) {
  transform: rotateX(-1656deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(94) {
  transform: rotateX(-1674deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(95) {
  transform: rotateX(-1692deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(96) {
  transform: rotateX(-1710deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(97) {
  transform: rotateX(-1728deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(98) {
  transform: rotateX(-1746deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(99) {
  transform: rotateX(-1764deg) translateZ(150px);
}

.select-wrap .select-options .select-option:nth-child(100) {
  transform: rotateX(-1782deg) translateZ(150px);
}

.highlight {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  background-color: #1f3deb;
  border-top: 1px solid #1f3deb;
  border-bottom: 1px solid #1f3deb;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
  font-size: 24px;
  overflow: hidden;
}

.highlight-list {
  position: absolute;
  width: 100%;
}

/* date */

.date-selector {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: dateselector-opacity 0.5s 0.8s forwards;
  animation: dateselector-opacity 0.5s 0.8s forwards;
  /*box-shadow: inset 0 0 5px #393939;*/
}

@-webkit-keyframes dateselector-opacity {
  0% {
    opacity: 0;
    transform: scale(0.99)
  }
  100% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes dateselector-opacity {
  0% {
    opacity: 0;
    transform: scale(0.99)
  }
  100% {
    opacity: 1;
    transform: scale(1)
  }
}

/*
.date-selector::before{
  content:'';
  position: absolute;
  width:100%;
  height: 50px;
  left:0;
  top: var(--navbar-height);
  background-size: cover;
  z-index: 100;
}
.date-selector::after {content: '';position: absolute;width: 100%;height: 50px;left: 0;bottom: var(--navbar-height);background-size: cover;z-index: 100;}
*/

.date-selector>div {
  flex: 1;
}

.date-selector .select-wrap {
  font-size: 20px;
}

.date-selector .highlight {
  font-size: 24px;
}
.select-wrap li {
  font-size: 14px;
}
.select-wrap .highlight li {
  font-size: 14px;
}

.questionaireList li{
  font-size:15px;
}
.date-selector .highlight li {
 /* font-size: 19px;*/
}
.mesureInput .highlight li {
  font-size: 22px;
}
.mesureInput li{
  font-size:20px;
}