/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.member_time_limited {
  display: none;
}

.subscription_detail_box {
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  padding: 12px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
  background: #00000099;
}

.loader-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
  background: #00000099;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.loader {
  border: 16px solid #00000047;
  border-top: 16px solid #ffffff47;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1500ms ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  padding: 15px;
  z-index: 1150;
}

.modal-dialog-header {
  border-bottom: 1px solid #00000026;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-dialog, .modal-dialog p, .modal-dialog h1 {
  color: rgb(30, 45, 64);
}

.modal-dialog h1 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.modal-dialog p {
  padding-bottom: 7px;
}

.modal-dialog a, .modal-dialog a:focus, .modal-dialog a:focus {
  color: #4891da !important;
  text-decoration: underline !important;
}

@media (min-width: 576px) {
  .modal-dialog {
      max-width: 500px;
      margin: 1.75rem auto;
  }
}