body {
  font-family: "Montserrat";
  text-align: center;
}

.panel {
  padding: 1em;
  background-color: papayawhip;
  border-radius: 1em;
  box-shadow: 0px 10px 20px 1px #8F8F92;
}

.panel-success>.panel-heading {
  font-size: 1.7em !important;
  font-weight: 400;
  text-align: center;
  color: black;
}

.panel-body {
  font-size: 1.2em;
  line-height: 30px;
  font-weight: 500;
  color: #8f8f8f;
}

.conf-img {
  font-size: 3.5em;
}

label {
  font-size: 1.3em;
}

.mensajeError {
  text-align: center;
  font-size: 1.2em;
  font-weight: bolder;
  padding: 1em 0 2px 0;
  border-radius: 0.8em;
  margin: 0 0 3em 0;
  display: inline-grid;
  background-color: orangered;
}

.mensajeError p {
  color: white;
}

.colored-section {
  background-color: #f9f9f9;
  color: #fea69b;
  background-image: url(../images/backgroundIcons2.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo-image {
  width: 20em;
  display: block;
  margin: 3em auto;
}

.white-section {
  background-color: #f7eceb;
  background-image: url(../images/backgroundIcons.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-size: contain;
  display: block;
  margin: 1em;
}

.social-footer {
  display: inline-flex;
}

.fb {
  background-image: url(../images/facebook.png);
  /* width: 40px;
  height: 40px;
  background-size: contain; */
}

.itgm {
  background-image: url(../images/insta.png);
  /* width: 40px;
  height: 40px;
  background-size: contain; */
}

.whats {
  background-image: url(../images/whatsapp.png);
}

.footer-section {
  padding: 5em;
}

.inputSp {
  /* width: 20em !important; */
  display: inline-flex !important;
}

.btn-primary {
  background-color: #00c2cb !important;
  border-color: #00c2cb !important;
}

.infoText {
  font-size: 1.7em;
  padding: 1em 0 2em 0;
  display: block;
  color: #8f8f8f;
  font-family: 'Raleway', sans-serif;
}

.freep {
  font-size: 10px;
  color: grey;
}

.confirmation {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 3em !important;
}

.finText {
  animation: fadeIn linear 1s;
  -webkit-animation: fadeIn linear 1s;
  -moz-animation: fadeIn linear 1s;
  -o-animation: fadeIn linear 1s;
  -ms-animation: fadeIn linear 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.volver {
  padding: 1em;
  color: white;
  margin-bottom: 3em;
  background-color: #06c2cb;
}

/* radar */

.rad-cont {
  display: flex;
  justify-content: center;
  align-items: center;
}

.radar {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgb(154 143 148 / 8%);
  box-shadow: 0 0 20px rgb(229 204 192);
  overflow: hidden;
  border: 2px solid #9a8f94;
}

.radar-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.circle {
  position: absolute;
  border: 1px solid rgb(229 204 192);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: pulse 2s infinite;
}

.circle:nth-child(2) {
  width: 66.6%;
  height: 66.6%;
  top: 16.7%;
  left: 16.7%;
}

.circle:nth-child(3) {
  width: 33.3%;
  height: 33.3%;
  top: 33.35%;
  left: 33.35%;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.line {
  position: absolute;
  background-color: rgb(229 204 192);
}

.vertical {
  width: 1px;
  height: 100%;
  left: 50%;
}

.horizontal {
  width: 100%;
  height: 1px;
  top: 50%;
}

.diagonal1 {
  width: 141%;
  height: 1px;
  top: 50%;
  left: -20%;
  transform: rotate(45deg);
}

.diagonal2 {
  width: 141%;
  height: 1px;
  top: 50%;
  left: -20%;
  transform: rotate(-45deg);
}

.points .point {
  position: absolute;
  font-size: 20px;
  color: red;
  animation: blink 2s infinite;
  transform: translate(-50%, -50%);
}

@keyframes blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgb(11 194 203 / 19%), rgba(0, 255, 0, 0) 75%);
  border-radius: 50%;
  clip-path: polygon(50% 50%, 100% 0, 100% 100%, 50% 50%);
  transform-origin: 50% 50%;
  animation: scan 2s linear infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes scan {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}