body {
  font-family: Arial;
  margin: 0;
  padding: 0;
  /* overscroll-behavior-y: contain; */
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
#p_loading,
.p_loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 99;
  background-color: #dadada;
}
.parpadea {
  animation-name: parpadeo;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeo;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}
@-moz-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ladea {
  animation-name: ladea;
  animation-duration: 2000ms;
  animation-delay: 1500ms;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
}
@keyframes ladea {
  0% {
    transform: rotateY(0deg);
    animation-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
  10% {
    transform: rotateY(5deg);
  }
  20% {
    transform: rotateY(-5deg);
  }
  30% {
    transform: rotateY(5deg);
  }
  40% {
    transform: rotateY(-5deg);
  }
  50% {
    transform: rotateY(5deg);
  }
  60% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.temblor:hover {
  animation: temblor 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@keyframes temblor {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
.temblor_inf {
  animation: temblor_inf 2s;
  animation-iteration-count: infinite;
}
@keyframes temblor_inf {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.p_modal img {
  max-width: 100%;
  max-height: 20vh;
}
.p_modal {
  font-family: Arial;
}
.p_modal h2 {
  color: #575757;
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  display: block;
}
.p_modal p {
  color: #797979;
  font-size: 15px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.p_modal_button {
  display: inline-block;
  box-shadow: rgba(140, 212, 245, 0.8) 0 0 2px,
    rgba(0, 0, 0, 0.0470588) 0 0 0 1px inset;
  background-color: #0072ce;
  color: white;
  border: 0;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  /* border-radius: 5px; */
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}

.p_modal_button:hover {
  color: #fff;
  text-decoration: none;
}
.checkmark {
  display: none;
}
.checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
  opacity: 1;
  height: 3.5em;
  width: 1.75em;
  transform-origin: left top;
  border-right: 3px solid #5cb85c;
  border-top: 3px solid #5cb85c;
  content: '';
  left: 1.75em;
  top: 3.5em;
  position: absolute;
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 1.75em;
    opacity: 1;
  }
  40% {
    height: 3.5em;
    width: 1.75em;
    opacity: 1;
  }
  100% {
    height: 3.5em;
    width: 1.75em;
    opacity: 1;
  }
}
.circle-loader {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation: loader-spin 1.2s infinite linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  width: 7em;
  height: 7em;
}
.load-complete {
  -webkit-animation: none;
  animation: none;
  border-color: #5cb85c;
  transition: border 500ms ease-out;
}
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.confeti {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
[class|='confetti'] {
  position: absolute;
}
.red {
  background-color: #e94a3f;
}
.yellow {
  background-color: #faa040;
}
.blue {
  background-color: #5fc9f5;
}

.swiper-container {
  overflow: hidden;
  max-width: 500px;
  /* height: 150px; */
  height: 185px;
}

.swiper-slide {
  width: 150px;
  /* height: 140px; */
  height: 181px;
  /* margin: 0 5px; */
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 475px) {
  .swiper-slide {
    margin-right: 10px;
  }
}
.swiper-slide img {
  width: 100%;
  object-fit: contain;
  /* max-height: 140px; */
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.survey_button:hover {
  text-decoration: none;
  color: #fff;
}
