.InputButton {
  right: 0;
  color: white;
  opacity: 1;
  transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 23px;
  height: 23px;
  margin: 14px 15px;
  display: inline-block;
}

.InputButton img {
  width: 100%;
}

.InputButton:disabled {
  /*opacity: 0;*/
}

.ButtonBasic {
  position: relative;
  height: var(--row-height);
  width: 100%;
  background: #f8f7f7;
  text-align: center;
  border: 0;
  font-size: 14px;
  color: var(--main-color);
  cursor: pointer;
  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;
  overflow: hidden;
}
.ButtonBasic div{
 content: "";
  position: absolute;
  top: 0;
  left: -300%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(31, 61, 235, .1),
    transparent
  );
  transition: all .5s .4s;
}

.ButtonBasic:not([disabled]) div {
    left: 300%;
    animation: animateButton 3s ease-in-out infinite;
  

}

@keyframes animateButton {
  0% {
   left: -300%;
  }

   100% {
   left: 300%;
  }
}


.ButtonBasicYellow {
  position: relative;
  height: 45px;
  width: 100%;
  background: white;
  text-align: center;
  border: 0;
  font-size: 14px;
  color: #F9C647;
  cursor: pointer;
  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;
  overflow: hidden;
}

.ButtonBasicBack {
  position: relative;
  border: 0;
  border-right: solid #d6d3d3;
  height: 45px;
  width: 100%;
  background: white;
  text-align: center;
  font-size: 14px;
  color: var(--main-color);
  cursor: pointer;
  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;
  overflow: hidden;
}

.ButtonBasicBack strong {
  font-weight: normal;
  width: 90%;
  z-index: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  color: var(--main-color);
}

.ButtonBasic:disabled strong {
  color: #cecece;
}

.ButtonBasic:disabled i {
  color: #cecece;
}

.ButtonBasicBack i {
  font-size: 20px;
  z-index: 1;
  color: var(--main-color);
}

.ButtonBasic i {
  font-size: 20px;
  z-index: 1;
  color: var(--main-color);
}

.ButtonBasic strong {
  font-weight: normal;
  width: 90%;
  z-index: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  color: var(--main-color);
}

.ButtonBasicYellow strong {
  font-weight: normal;
  width: 90%;
  z-index: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  color: #F9C647;
}

.ButtonBasicYellowActive strong {
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.ButtonBasicYellowActive i {
  color: #fff;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.ButtonBasicYellowActive span {
  position: absolute;
  background: #F9C647;
  width: 0;
  z-index: 0;
  height: 60px;
  -webkit-animation: animate 0.4s linear forwards;
  animation: animate 0.4s linear forwards;
}

.ButtonBasicActive strong {
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.ButtonBasicActive i {
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.ButtonBasicActive:disabled strong {
  color: #fff;
}

.ButtonBasicActive:disabled i {
  color: #fff;
}

.ButtonBasicActive span {
  position: absolute;
  background: #1f3deb;
  width: 0;
  z-index: 0;
  height: 60px;
  -webkit-animation: animate 0.4s linear forwards;
  animation: animate 0.4s linear forwards;
}

.ButtonBackActiveWhite span {
  position: absolute;
  background: white;
  width: 0;
  z-index: 0;
  height: 60px;
  -webkit-animation: animateBack 0.4s linear forwards;
  animation: animateBack 0.4s linear forwards;
}

.ButtonBackActiveWhite strong {
  font-weight: bold;
  color: var(--main-color) !important;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.ButtonBackActive strong {
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.ButtonBackActive i {
  color: #fff;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

@-webkit-keyframes animate {
  0% {
    width: 0%;
    height: 60px;
  }
  100% {
    width: 120%;
    height: 60px;
    left: -10%;
    right: 0;
    color: #fff;
  }
}

@keyframes animate {
  0% {
    width: 0%;
    height: 60px;
  }
  100% {
    width: 120%;
    height: 60px;
    left: -10%;
    right: 0;
    color: #fff;
  }
}

@-webkit-keyframes animateBack {
  0% {
    width: 0%;
    height: 60px;
  }
  100% {
    width: 120%;
    height: 60px;
    left: -10%;
    right: 0;
    color: #fff;
  }
}

@keyframes animateBack {
  0% {
    width: 0%;
    height: 60px;
  }
  100% {
    width: 120%;
    height: 60px;
    left: -10%;
    right: 0;
    color: #fff;
  }
}

.ButtonLoading {
  text-align: center;
}

.ButtonLoading button {
  background: #1F3DEB;
  padding: 10px 0;
  height: 40px;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  border: 0;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.ButtonLoading button:disabled {
  background: #cecece;;
}

.ButtonLoading button span {
  color: white;
}


.ButtonLoading--loading span {
  display: none;
  -webkit-animation: animation-up 0.6s 0s forwards;
  animation: animation-up 0.6s 0s forwards;
}

.ButtonLoading--loading button {
  height: 60px;
  padding: 17px 20px;
  width: 60px;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.ButtonLoading--loading button i {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.ButtonLoading--loading button i div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.ButtonLoading--loading button i div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}

.ButtonLoading--loading button i div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.ButtonLoading--loading button i div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}

@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ButtonBasicQuestionnaraire {
  z-index: 1;
}