


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  overflow-y: scroll;
  display: none;
}

.modal .modal-content {
  width: 650px;
  position: absolute;
  top: 2rem;
  margin-bottom: 2rem;
  left: 50%;
  margin-left: -325px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center
}

.modal .modal-header {
  background-color: #d83731;
  color: #ffffff;
  font-weight: 400;
}

.modal .modal-header h2 {
  margin: 0;
  padding: .5rem 0;
  font-size: 2rem
}

.modal .modal-body {
  font-weight: 200;
  padding: 1.5rem 3rem;
  color: #515151;
  background-image: url("../images/fondo-icono-maf-2.png");
  background-size: cover;
  background-position: center center
}

.modal .modal-body .cuota {
  font-size: 3rem;
  font-weight: 600
}

.modal .modal-body .cuota-condiciones {
  display: flex;
  justify-content: center;
  font-weight: 400
}

.modal .modal-body .auto {
  width: 100%;
  margin: 2rem 0
}

.modal .modal-body .auto img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto
}

.modal .modal-body .cuota-condiciones > div {
  margin: 0 1rem;
}

.modal .modal-body .btn {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  text-transform: uppercase
}

.modal .modal-body .actions {
  padding-top: 1rem
}
.modal .modal-body .actions a {
  color: inherit;
  text-decoration: none
}

.modal .modal-body .actions a:hover,
.modal .modal-body .actions a:active {
  color: #d83731;
}

@media (max-width: 768px) {
  .modal .modal-content {
    width: calc(100% - 2rem);
    left: 1rem;
    top: 1rem;
    margin-left: 0
  }

  .modal .modal-body {
    padding: 1rem 1.5rem;
  }
}
