.modal {
  background: rgba(18,30,72,40%);
}

div.modal-content {
  border-bottom: 4px solid var(--red-one);
}

div.modal-body p {
  font-size: 16px;
}

.header-modal {
  background: var(--yellow-two);
  background-image: url(/img/background/bg-orange.jpg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  color: white;
  text-align: center;
  font-weight: 600;
  height: 155px;
}

.header-modal h2,
.header-modal h3 {
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  color: white;
  letter-spacing: 1px;
  font-size: 26px;
}

.header-modal .material-symbols-outlined {
  background: var(--red-one);
  color: white;
  font-size: 45px;
  position: relative;
  width: 60px;
  height: 60px;
  padding: 7px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0px 9px 30px 0px rgb(199 60 60 / 39%);
}

.header-alert {
  text-align: center;
  color: white;
}

.aviso {
  color: var(--red-alert);
  background: white;
  padding: 2px;
  border-radius: 5rem;
  font-size: 75px;
  box-shadow: 0px 9px 30px 0px rgb(241 94 94);
  margin-bottom: 1rem;
  animation: gelatine 0.8s infinite;
}

@keyframes gelatine {
  from, to { transform: scale(1, 1); }
  25% { transform: scale(0.9, 1.1); }
  50% { transform: scale(1.1, 0.9); }
  75% { transform: scale(0.90, 1.0); }
}

.confirm {
  font-size: 50px;
  color: white;
  background: var(--green-one);
  border: 2px solid white;
  padding: 7px;
  width: 65px;
  height: 65px;
  border-radius: 5rem;
  margin-bottom: 10px;
  animation: hithere 1s ease infinite;
}

@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 10px;
  font-size: 24px;
  border-radius: 2px;
  color: white !important;
  transition: .2s;
}

.close:hover {
  background: #f15e5e !important;
  color: white !important;
}

.topic {
  background: var(--orange-one);
  padding: 1px 9px;
  margin-right: 8px;
  border-radius: 5px; 
}

.icon-modal {
  background: var(--orange-one);
  color: white;
  font-size: 50px;
  border-radius: 5px;
  margin: 1rem;
  width: 65px;
  height: 65px;
  padding-top: 7px;
}

.modal-gray {
  background: #eee;
  margin: 20px;
}

@media (min-width: 200px) and (max-width: 1000px){
  .header-modal h3 {
    font-size: 22px;
  }

}