/* header */
.main-header {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 92px;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.14902);
  z-index: 500;
  background: var(--white-color);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .logo {
  display: flex;
  width: 92px;
}

.main-header .navbar-lang {
  display: flex;
  width: 80px;
  height: 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--charcoal-grey-color);
}

.main-header .navbar-lang .lang {
  display: flex;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  justify-content: center;
  width: 50%;
  color: var(--primary-text-color);
  background: var(--white-color);
  font-family: var(--font-regular);
}

.main-header .navbar-lang .lang.active {
  color: var(--white-color);
  background: var(--charcoal-grey-color);
}

@media only screen and (max-width: 991px) {
  .main-header {
    height: 64px;
  }
  .main-header .logo {
    width: 67px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
  }
  .main-header .container {
    justify-content: flex-end;
  }
}

/* footer */
.main-footer {
  display: flex;
  width: 100%;
  background: #000000;
  flex-direction: column;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.main-footer .follow-wrapper {
  display: flex;
  flex-direction: column;
}

.main-footer .head {
  display: flex;
  margin-top: 10px;
  margin-bottom: 16px;
}

.main-footer .nav-social {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.main-footer .nav-social .link-social {
  display: flex;
  width: 24px;
  margin-right: 16px;
}

.main-footer .nav-social .link-social img {
  width: 100%;
}

.main-footer .sub-footer {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 0 10px;
  height: 100%;
  border-top: none;
}

.main-footer .sub-footer .privacy-policy {
  display: flex;
  align-items: center;
}

.main-footer .sub-footer a {
  display: inline-flex;
  align-items: center;
}

.main-footer .sub-footer a:first-child::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  margin: 0 2px;
}

@media only screen and (max-width: 991px) {
  .main-footer {
    padding: 16px 0 16px;
  }
  .main-footer .follow-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .main-footer .sub-footer {
    padding: 30px 0 16px;
    justify-content: center;
  }
  .main-footer .head {
    margin: auto 0;
  }
  .main-footer .nav-social {
    padding: 8px 0;
  }
  .booking-countdown .detail-list {
    padding-right: 0;
  }
  .waiting-room .room-wrapper {
    min-height: calc(100vh - 238px);
    padding: 60px 0;
  }
  .main-page {
    padding-top: 64px;
  }
}

@media only screen and (max-width: 460px) {
  .main-footer .sub-footer {
    flex-direction: column;
    align-items: center;
  }
}
