.modal-backdrop.in {
  opacity: 0.7;
}

#popupModal .modal-dialog {
  max-width: 600px;
  margin: 30px auto;
}

#popupModal .modal-content {
  background-color: #094652;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  padding: 58px 32px;
  text-align: center;
}

#popupModal .modal-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
}

#popupModal .popup-thumbnail {
  margin-bottom: 24px;
  min-height: 300px;
}

#popupModal .close {
  font-size: 24px;
  position: absolute;
  right: 16px;
  top: 16px;
  color: #f00;
  opacity: .75;
}

#popupModal .close:hover {
  opacity: 1;
}

#popupModal .btn {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #e87352;
  font-weight: 300;
}

/* Animation */
.modal.fade .modal-dialog {
  transform: scale(0.7);
  transition: all 0.3s ease;
  opacity: 0;
}

.modal.fade.in .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  #popupModal .modal-dialog {
    margin: 10px;
    width: auto;
  }

  #popupModal .modal-body {
    padding: 1rem;
  }
}
