@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", serif;
}

.all {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  min-height: calc(100vh - 70px);
}

.all .formulario {
  background-color: white;
  overflow: auto;
}

.all .formulario form {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px;
}

.detalles-container{
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
}

.detalles-img{
  background-image: url('img.svg');
  background-size: cover;
  background-position: center;
  height: 50px;
}

.all .detalles {
  background-color: #621132;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  gap: 20px;
}

.all .detalles img {
  width: 180px;
  background-color: white;
  border-radius: 50%;
  padding: 15px;
}

.all .detalles h3 {
  font-size: 24px;
  color: white;
  margin: 0;
  font-weight: 500;
}

.all .detalles p {
  color: white;
  font-size: 15px;
  margin-top: 0;
}

.button {
  display: flex;
  justify-content: right;
  margin-top: 30px;
}

.pasos_contenedor {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px solid #1010101f;
  padding-bottom: 40px;
}

.descripcion_form {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
}

.titleax {
  margin: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.pasos_contenedor .paso {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pasos_contenedor .paso p {
  font-size: 17px;
  text-transform: capitalize;
  margin: 0;
}

.pasos_contenedor .paso svg {
  width: 26px;
}

.paso_completo {
  color: #26a69a;
}

.paso_pendiente {
  color: #621132;
}

.button button {
  color: #ffffff;
  background-color: #621132;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  color: white;
  font-weight: 600;
  padding: 15px 30px;
}

.button button:hover {
  cursor: pointer;
}

.cont-loa {
  position: fixed;
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

.loader {
  border: 12px double rgba(109, 109, 109, 0.750);
  border-radius: 50%;
  border-top: 12px double #621132;
  width: 100px;
  height: 100px;
  animation: spin 1s ease-in-out infinite;
  z-index: 999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cont-loa p {
  color: black;
  
  font-size: 19px;
  margin-top: 30px;
  margin-left: 5px;
}

.cbz {
  padding: 25px 100px;
  background-color: #621132;
  width: 100%;
  margin: auto;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.precio {
  color: #26a69a;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.cbz .logo {
  text-transform: uppercase;
  color: white;
  font-size: 21px;
  font-weight: 600;
}

.dropdown-content li > a,
.dropdown-content li > span {
  color: black !important;
}

.select-wrapper input.select-dropdown:focus {
  border-bottom: 1px solid #621132 !important;
}

.input-field input:focus {
  border-bottom: 1px solid #621132 !important;
}

.input-field {
  margin-top: 25px !important;
}

.aviso {
  background-color: rgba(233, 170, 68, 0.208);
  padding: 20px;
  margin-bottom: 30px;
  font-size: 12px;
  margin-top: 20px;
}


.popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  padding: 20px;
  overflow: auto;
}
.popup .popup-content{
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
}

.popup .popup-content h2{
  font-size: 20px;
  color: #e94444;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  .all {
    grid-template-columns: 1fr;
  }
  .all .detalles {
    display: none;
  }
  
}

.examplex{
  position: relative;
  background: #621132;
  color: white;
  padding: 20px;
  font-size: 17px;
  margin-bottom: 32px;
}