.modal
{
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}

.modal-120
{
  width: 150vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.2);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
}

.ventana-modal-120
{
  width: 90%;
  margin: auto;
  font-size: 15px;
  position: relative;
  border-radius: 5px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.6),
              -1px -1px 4px rgba(0,0,0,0.6);
  animation: mostrar_modal 0.7s ease;
  animation-fill-mode: forwards;
}

.ventana-modal
{
  width: 90%;
  margin: auto;
  font-size: 15px;
  position: relative;
  border-radius: 5px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.6),
              -1px -1px 4px rgba(0,0,0,0.6);
  animation: mostrar_modal 0.7s ease;
  animation-fill-mode: forwards;
}

@keyframes mostrar_modal
{
  from { top: 0; }
  to { top: 70px; }
}

.modal_invisible, .invisible
{
  display: none;
}

.icon-close
{
  cursor: pointer;
}

.modal header
{
  padding: 5px 7px;
  display: flex;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  justify-content: space-between;
  background: #b18b0d;
  color: #F9F9F9;
}

.modal-120 header
{
  padding: 10px 10px;
  display: flex;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  justify-content: space-between;
  background: #c5ae58;
  color: #282424;
}

.modal article
{
  padding: 15px 10px;
  background: #FFFFFF;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;;
}

.modal-120 article
{
  padding: 15px 10px;
  background: #FFFFFF;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;;
}

.btn_modal
{
  display: flex;
  justify-content: flex-end;
}

.modal article button
{
  display: flex;
  padding: 7px 15px;
  margin-top: 10px;
  border: 1px solid #37474F;
  border-radius: 3px;
  background: none;
  color: #37474F;
  cursor: pointer;
}

.modal-120 article button
{
  display: flex;
  padding: 7px 15px;
  margin-top: 10px;
  border: 1px solid #37474F;
  border-radius: 3px;
  background: none;
  color: #37474F;
  cursor: pointer;
}

.modal article button:hover
{
  color: #F9F9F9;
  background: #37474F;
}

.modal-120 article button:hover
{
  color: #F9F9F9;
  background: #37474F;
}

/* ------------------------------------------------------------ */
/* RESPONSIVE */
@media (min-width: 480px)
{
  .ventana-modal
  {
    width: 60%;
  }
}

@media (min-width: 576px)
{
  .ventana-modal
  {
    width: 50%;
    font-size: 17px;
  }
}

@media (min-width: 768px)
{
  .ventana-modal
  {
    width: 40%;
  }
}

@media (min-width: 992px)
{
  .ventana-modal
  {
    width: 35%;
    font-size: 18px;
  }
}

@media (min-width: 1200px)
{
  .ventana-modal
  {
    width: 30%;
    font-size: 19px;
  }
}

@media (min-width: 1300px)
{
  
}