/**
 * NgoiSaoSo team
 * @version 3.x
 * @contact: xinchao@ngoisaoso.vn
 * @see https://www.ngoisaoso.vn
 */

/*ADD OTHER*/
:root {
  --brand-primary-color: #e32526;
  --brand-secondary-color: #e23d3e;
  --brand-sub-color: #e32526;
  --brand-sub-color-2: #e23d3e;
}
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s .2s ease-in-out;
  transition: all .4s .2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
  background-color: #121519;
}
.page-loading.active {
  opacity: 1;
  visibility: visible;
}
.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  opacity: 0;
}
.page-loading.active > .page-loading-inner {
  opacity: 1;
}
.page-loading-inner > span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #6f788b;
}
[data-bs-theme="dark"] .page-loading-inner > span {
  color: #fff;
  opacity: .6;
}
.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: .75rem;
  vertical-align: text-bottom;
  background-color: #d7dde2; 
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner .75s linear infinite;
  animation: spinner .75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
  background-color: rgba(255,255,255,.25);
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

header.is_ad {
  position: relative;
  top: 50px;
}

.navbar-brand img{
  height: 70px;
}

.toast {
  position: fixed;
  width: 400px;
  top: calc(50% - 200px);
  left: calc(50% - 200px);
  z-index: 99999;
}

.modal-right {
  z-index: 99999 !important;
}

@media(max-width: 767.98px) {
  .navbar-brand img{
        max-width: 150px;
        height: auto;
  }
}
@media(max-width: 357px) {
  .navbar-brand img{
        max-width: 100px;
  }
}
.text-primary {
    --ar-text-opacity: 1;
    color: #e32526 !important;
}
.step-number-inner {
    color: #e32526;
}
.steps-hoverable .step:hover .step-number-inner, .step.active .step-number-inner {
    background-color: #e32526;
}
.step::before, .step::after {
    height: calc(100% - var(--ar-steps-number-size)* .5);
}
.footer {
  position: relative;
      width: 100%;
      min-height: 300px;
      background-image: url(/uploads/sikico.png);
      background-repeat: no-repeat;
      background-position: center right;
      background-size: auto 80%;
      margin: 0 auto;
      padding: 5rem 0;
}
@media(max-width: 768px) {
  .accordion-alt {
    --ar-accordion-btn-font-size: 1.1rem;
  }

  .w-100 {
    width: 50% !important;
  }
}