.offer-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: #0773bb;
  font-size: .9rem;
  cursor: pointer;
  z-index: 1;
  color: #fff;
  font-weight: 500;
}

.offer-alert__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media(min-width: 992px) {
  .offer-alert__container {
    display: block;
  }
}

.offer-alert__btn {
  color: #000;
  background-color: #042c6a;
  padding: .5rem .8rem;
  margin-top: .5rem;
  border-radius: 5px !important;
  transition: .2s all;
}

@media(min-width: 922px) {
  .offer-alert__btn {
    margin: 0 .5rem;
  }
}
@media(max-width: 448px) {
     .modal-content {
      width: 94% !important;
     }
  }
@media(max-width: 748px) {
     .modal-content {
      width: 94% !important;
     }
  }
@media(max-width: 1024px) {
     .modal-content {
      width: 80% !important;
     }
  }

.offer-alert__btn:hover,
.offer-alert__btn:focus {
  background-color: var(--primary);
  color: var(--primary-invert);
  text-decoration: none;
  transform: scale(1.1);
}
.modal {
  display: none; /* Hidden by default */
  z-index: 1; /* Sit on top */
  top: 0%;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.2); /* Black w/ opacity */
}
.modal-content {
  background-color: #fefefe;
  margin: 4% auto; 
  padding: 20px;
  width: 50%; 
  border: none;
  border-radius: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
