:root {
  --bs-success: #28a745;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

.pt-3 {
  padding-top: 1rem;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.m-3 {
  margin: 1rem;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  line-height: 1.5;
  transition: all 0.15s ease-in-out;
}

.btn:focus {
  outline: 2px solid rgba(0, 0, 0, 0.1);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-success {
  background-color: var(--btn-color, var(--bs-success));
  border-color: var(--btn-color, var(--bs-success));
  color: var(--btn-text-color, #fff);
  text-decoration: none;
  margin: auto;
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
  border-radius: 0.3rem;
}

.spinner_border {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.3em solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.d_flex {
  display: flex;
}

.justify_content_center {
  justify-content: center;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-dialog {
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal_content {

  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .2);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 100%;

}

#content_four .modal_content {
  box-shadow: none
}

#content_four.main_content {
  padding: 0;
}

.modal-body {
  padding: 32px 25px;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-body .try {
  max-width: 150px;
  margin: auto auto 20px;
}

.modal-body button {
  margin: auto;
  width: 100%;
  max-width: 200px;
  font-size: 18px !important;
  font-weight: 700;
}

.fade {
  transition: opacity 0.2s ease;
}

.modal.fade {
  opacity: 0;
}

.modal.show.fade {
  opacity: 1;
}

.hidden-xs {
  display: none !important;
}

@media (min-width: 768px) {
  .hidden-xs {
    display: initial !important;
  }
}

.hidden-md {
  display: initial !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hidden-md {
    display: none !important;
  }
}