﻿/*Base*/
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --hue: 174;
    --sat: 63%;
    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #add4ed;
    /*========== Font and typography ==========*/
    --body-font: 'Open Sans', sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --tiny-font-size: .625rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

.hiding-element {
    display: none;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

    .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

.btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
    z-index: 1500;
}

    .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
    }

/*navbar*/
@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 2.25rem;
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section-top {
    padding: 3.5rem 0 1rem;
}

.section {
    padding: 0.5rem 0 0.5rem;
}

.section-bot {
    padding: 0.5rem 0 2rem;
}

.section-details {
    padding: 3.5rem 0 2rem;
}

.section__title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section__height {
    height: 100vh;
}

/*=============== LAYOUT ===============*/
.nav-container {
    max-width: 968px;
    margin-left: 1rem;
    margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--container-color);
    z-index: var(--z-fixed);
    transition: .4s;
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__img {
    width: 90px;
}

.nav__logo {
    font-weight: 600;
    color: blue;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--container-color);
        box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        width: 100%;
        height: 4rem;
        padding: 0 1rem;
        display: grid;
        align-content: center;
        border-radius: 1.25rem 1.25rem 0 0;
        transition: .4s;
    }
}

.nav__list,
.nav__link {
    display: flex;
}

.nav__link {
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    color: #6d6582;
    font-weight: 600;
}

.nav__list {
    justify-content: space-around;
}

.nav__name {
    font-size: var(--tiny-font-size);
    /* display: none;*/ /* Minimalist design, hidden labels */
}

.nav__icon {
    font-size: 1.5rem;
}

/*Active link*/
.active-link {
    position: relative;
    color: #03000a;
    transition: .3s;
}

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */
.scroll-header {
    box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
    .nav__name {
        display: none;
    }
}

/* For medium devices */
@media screen and (min-width: 576px) {
    .nav__list {
        justify-content: center;
        column-gap: 3rem;
    }
}

@media screen and (max-width: 420px) {
    .thong-tin-card ul {
        font-size: 70%;
    }
}

.thong-tin-card .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
}

    .thong-tin-card .nav-link.active {
        color: var(--bs-nav-link-color);
    }

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .section {
        padding: 7rem 0 2rem;
    }

    .section-details {
        padding: 7rem 0 2rem;
    }

    .section-top {
        padding: 7rem 0 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
    }

    .nav__img {
        width: 170px;
    }

    .nav__icon {
        display: none;
    }

    .nav__name {
        font-size: var(--normal-font-size);
        /* display: block; */ /* Minimalist design, visible labels */
    }

    .nav__link:hover {
        color: var(--first-color);
    }

    /* First design, remove if you choose the minimalist design */
    .active-link::before {
        content: '';
        position: absolute;
        bottom: -.75rem;
        width: 4px;
        height: 4px;
        background-color: var(--first-color);
        border-radius: 50%;
    }

    /* Minimalist design */
    /* .active-link::before{
      bottom: -.75rem;
  } */
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .nav-container {
        margin-left: auto;
        margin-right: auto;
    }
}

.nav__list_ul {
    margin-bottom: 0;
    padding-left: 0;
}

/*=============== Check box ===============*/
ul.ks-cboxtags {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 5px;
}

    ul.ks-cboxtags li {
        display: inline;
    }

        ul.ks-cboxtags li label {
            display: inline-block;
            background-color: rgba(255, 255, 255, .9);
            border: 2px solid rgba(139, 139, 139, .3);
            color: #857e7e;
            border-radius: 25px;
            white-space: nowrap;
            margin: 3px 0px;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            transition: all .2s;
        }

        ul.ks-cboxtags li label {
            padding: 8px 12px;
            cursor: pointer;
        }

@media screen and (max-width: 768px) {
    ul.ks-cboxtags li label {
        padding: 3px 11px;
        cursor: pointer;
    }
}

ul.ks-cboxtags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label {
    border: 2px solid #1bdbf8;
    background-color: #12bbd4;
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
    display: absolute;
}

ul.ks-cboxtags li input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

    ul.ks-cboxtags li input[type="checkbox"]:focus + label {
        border: 2px solid #e9a1ff;
    }
/*=============== CARD ===============*/

.distance-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #57b0ff;
    border-radius: 0 99em 99em 0;
    display: flex;
    align-items: center;
    padding: 0.25em 0.75em;
    color: var(--bs-card-color);
}

.card-img-top {
    object-fit: cover;
    height: 180px;
}

.card-title {
    margin-bottom: 0;
}

.quan-phuong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.inside-date {
    z-index: 9;
    background: rgba(166, 0, 0, 0.8);
    position: absolute;
    height: 8%;
    top: 154px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    color: white;
}

.inside {
    z-index: 9;
    background: #57b0ff;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 0px 0px 200px 200px;
    transition: all 0.5s, border-radius 2s, top 1s;
    -webkit-transition: all 0.5s, border-radius 2s, top 1s;
    overflow: hidden;
}

    .inside .icon {
        position: absolute;
        right: 12px;
        top: 10px;
        opacity: 1;
    }

    .inside:hover {
        width: 100%;
        right: 0;
        top: 0;
        border-radius: 0;
        height: 100%;
    }

        .inside:hover .icon {
            opacity: 0;
            right: 15px;
            top: 15px;
        }

        .inside:hover .contents {
            opacity: 1;
            transform: scale(1);
            -webkit-transform: scale(1);
            transform: translateY(0);
            -webkit-transform: translateY(0);
        }


    .inside .contents {
        padding: 5%;
        opacity: 20;
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: translateY(-200%);
        -webkit-transform: translateY(-200%);
        transition: opacity 0.2s, transform 0.8s;
        -webkit-transition: opacity 0.2s, transform 0.8s;
    }

.tag {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 12px;
    background-color: #02c772;
    border: 1px solid black;
    flex-flow: row nowrap;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
}

.tag_label {
    text-transform: uppercase;
    font-size: x-small;
    font-weight: 600;
}

.unactive {
    opacity: 40%;
}

    .unactive .tag_state {
        background-color: transparent;
    }

.tag__active {
    background-color: #02c772;
    border-radius: 8px;
    color: #000000;
}

.tag_state {
    width: calc(1.5ch - 1px);
    height: calc(1.5ch - 1px);
    background-color: #0502c7;
    border: solid 1px #cfcfff;
    border-radius: 100%;
}

.tag__locked {
    position: relative;
}

.card video {
    width: 100%;
}
/*=============== Swiper slides ===============*/

.swiper {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .swiper {
        width: 400px;
    }
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {
    position: relative;
    width: 100%
}

    .swiper-wrapper .swiper-slide {
        margin: auto;
    }

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiper-slide iframe {
    display: block;
    width: 100%;
    object-fit: scale-down;
}


.fancybox__backdrop::after {
    content: '';
    position: absolute;
    width: 10%;
    height: 10%;
    filter: blur(2px);
    left: 50%;
    top: 50%;
    transform: scale(11);
    opacity: 0.3;
    background-image: var(--bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.fancybox__toolbar {
    padding: 16px;
}

.fancybox__toolbar,
.fancybox__nav {
    --f-button-border-radius: 50%;
    --f-button-bg: rgb(91 78 76 / 64%);
    --f-button-hover-bg: rgb(91 78 76 / 74%);
    --f-button-active-bg: rgb(91 78 76 / 84%);
}

.fancybox__nav {
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
}

.fancybox__thumbs.is-classic {
    --f-thumb-width: 48px;
    --f-thumb-height: 48px;
    --f-thumb-gap: 16px;
    --f-thumb-border-radius: 6px;
    --f-thumb-outline: 0;
}

/*=============== Filter Home Page ===============*/
.filter-search .row {
    margin-left: 0;
}

.price-input-container {
    width: 100%;
}

.price-input .price-field {
    display: flex;
    margin-bottom: 22px;
}

.price-field span {
    margin-right: 5px;
    margin-left: 5px;
    margin-top: 6px;
    font-size: 16px;
}

.price-field input {
    flex: 1;
    height: 35px;
    font-size: 15px;
    border-radius: 25px;
    border-color: var(--bs-border-color);
    border-style: solid;
    text-align: center;
    width: 20%;
    background-color: var(--bs-body-bg);
}

.price-input {
    width: 100%;
    font-size: 19px;
}

/* Remove Arrows/Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.slider-container {
    width: 100%;
}

.slider-container {
    height: 6px;
    position: relative;
    background: #e4e4e4;
    border-radius: 5px;
}

    .slider-container .price-slider {
        height: 100%;
        position: absolute;
        border-radius: 5px;
        background: #6ea8fe;
    }

.range-input {
    position: relative;
}

    .range-input input {
        position: absolute;
        width: 100%;
        height: 5px;
        background: none;
        top: -5px;
        pointer-events: none;
        cursor: pointer;
        -webkit-appearance: none;
    }


/* Styles for the range thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 70%;
    background: blue;
    pointer-events: auto;
    -webkit-appearance: none;
}

@media screen and (max-width: 768px) {
    .main {
        width: 80%;
        margin-right: 5px;
    }

    .custom-wrapper {
        width: 100%;
        left: 0;
        padding: 0 10px;
    }

    .projtitle {
        width: 100%;
        position: relative;
        right: 26px;
    }

    .price-input {
        flex-direction: column;
        align-items: center;
    }

    .price-field {
        margin-bottom: 10px;
    }
}
/*group multi select*/
.groupOptions {
    border: 1px solid;
    border-radius: 9px;
    overflow: hidden;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.groupOptions-container {
    display: flex;
    justify-content: space-between;
}

.groupOptions-label {
    align-self: center;
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    width: 100%;
}

.groupOptions-formContainer {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.groupOptions-searchInput,
.groupOptions-submit,
.groupOptions-filter {
    padding: 0.5rem;
}

.groupOptions-searchFilters {
    display: flex;
    margin-left: 0;
    position: relative;
}

.groupOptions-searchInput {
    width: 100%;
    border: 1px solid #aeaeae;
}

.groupOptions-submit {
    color: #333;
    background-color: transparent;
    border: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.groupOptions-filter {
    display: flex;
    margin-left: 0.75rem;
    position: relative;
    text-align: center;
    border-radius: 6px;
    border: 1px;
}

    .groupOptions-filter.disabled {
        background-color: aqua;
        border-color: #e8e8e8;
        color: black;
        pointer-events: none;
    }

.selectedNum {
    background-color: orangered;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    min-height: 25px;
    line-height: calc(25px - 0.375rem);
    padding: 0.1875rem;
    position: absolute;
    right: -10px;
    text-align: center;
    top: -10px;
    min-width: 25px;
}

.groupOptions-groupsList {
    border: 1px solid #c8c8c8;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0;
    max-height: 600px;
    min-height: 45px;
    overflow: auto;
    padding: 0.375rem;
    width: 100%;
}

.groupOptions-groupTag {
    background-color: #add4ed;
    border-radius: 5px;
    display: inline-block;
    font-size: 0.8rem;
    margin: 0.375rem;
    opacity: 0.5;
    overflow: hidden;
    padding: 0.75rem 1.5rem 0.75rem 0.5rem;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(20% - 0.75rem);
    user-select: none;
}

.groupOptions-groupsList li {
    color: black;
}

.groupOptions-groupTag.active {
    opacity: 1;
}

    .groupOptions-groupTag.active .radioBtn {
        color: blue;
    }

.radioBtn {
    color: #fff;
    position: absolute;
    right: 0.5rem;
}

@media all and (max-width: 1024px) {
    .groupOptions-container {
        flex-direction: column;
    }

    .groupOptions-searchFilters {
        margin-left: 0;
    }

    .groupOptions-groupTag {
        width: calc(33% - 0.75rem);
    }
}

@media all and (max-width: 640px) {
    .groupOptions-groupTag {
        width: calc(50% - 0.75rem);
    }
}

@media all and (max-width: 480px) {
    .groupOptions-groupTag {
        width: calc(100%);
    }
}

.select2-search__field {
    color: black !important;
}
/*=============== Details Page ===============*/
.icon-yes {
    color: blue;
}

.icon-no {
    color: red;
}

.video-detail video {
    max-height: 400px;
    max-width: 100%;
}

/*collapse*/

.collapsible-container {
    width: 100%;
    margin: 0 auto;
}

.collapsible-header {
    background-color: var(--bs-tertiary-bg);
    cursor: pointer;
    padding: 6px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-sm);
    border-bottom: none;
    color: rgba(var(--bs-link-color-rgb));
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-top: none;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}


    .collapsible-content.active {
    }

/* location picker collapse */

.location-picker-hr-line {
    border-top: 1px solid transparent;
    background: linear-gradient(white,white) padding-box, linear-gradient(90deg,White,Black,White) border-box;
}

.location-picker-a {
    text-decoration: none;
}

.location-picker-custom-container {
    max-width: 100%;
    margin: auto;
    min-height: 148px;
}

.location-picker-section {
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.location-picker-main-text {
    max-height: 440px;
    overflow: hidden;
    font-weight: 200;
    cursor: text;
    color: var( --bs-body-color);
    margin: 0px 6px 6px 6px;
}

.location-picker-button-thin {
    width: 26px;
    height: 26px;
    margin: 0;
    padding: 0;
    border: 1px solid LightGrey;
    border-radius: 50%;
    background-color: transparent;
}

    .location-picker-button-thin location-picker-sl-icon {
        position: relative;
        top: 3px;
        left: 1px;
    }

.location-picker-section-1 {
    background-color: Orange;
}

    .location-picker-section-1 .location-picker-heading {
        color: Orange;
    }

    .location-picker-section-1 button {
        color: Orange;
        border-color: Orange;
    }

.location-picker-section-2 {
    background-color: hotpink;
}

    .location-picker-section-2 .location-picker-heading {
        color: hotpink;
    }

    .location-picker-section-2 button {
        color: hotpink;
        border-color: hotpink;
    }

.location-picker-section-3 {
    background-color: DodgerBlue;
}

    .location-picker-section-3 .location-picker-heading {
        color: DodgerBlue;
    }

    .location-picker-section-3 button {
        color: DodgerBlue;
        border-color: DodgerBlue;
    }
    .location-picker-section-3 input {
       margin-left: 6px;
    }

.location-picker-grow {
    flex: 5;
    background-color: var(--bs-body-bg);
}

    .location-picker-grow .location-picker-heading {
        padding: 0;
        margin-bottom: 0;
    }

    .location-picker-grow button {
        margin: 6px 6px 0px 6px;
        transform: rotate(180deg);
    }

    .location-picker-grow div {
        justify-content: end;
    }

.location-picker-shrink {
    min-width: 45px;
    flex: 0.1;
}

    .location-picker-shrink .location-picker-heading {
        color: WhiteSmoke;
        transform-origin: 20% 100%;
        writing-mode: vertical-rl;
        margin: 6px 0px 6px 7px;
    }

    .location-picker-shrink button {
        color: WhiteSmoke;
        border: 1px solid WhiteSmoke;
        margin: 6px 0px 0px 9px;
    }

@keyframes slide {
    from {
        transform: translateY(-120px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 100%;
    }
}

.location-picker-show {
    display: block;
}

.location-picker-hide {
    display: none;
}

.location-picker-animate {
    animation: slide 0.4s ease;
}

.location-picker-shadow-dark {
    box-shadow: -12px 0px 20px -15px Black inset;
}

.location-picker-shadow-blue {
    box-shadow: -12px 0px 20px -15px #0a3a69 inset;
}

.location-picker-shadow-pink {
    box-shadow: -12px 0px 20px -15px #50213b inset;
}

.location-picker-shadow-orange {
    box-shadow: -12px 0px 20px -15px #63410b inset;
}
 

/*=============== Contact Home Page ===============*/

.contact-btn {
    border-radius: 30px;
    padding: 0.5rem;
    color: black;
    width: 80%;
}

.accordion-menu {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    border-radius: 5px;
}

    .accordion-menu h2 {
        font-size: 18px;
        line-height: 34px;
        font-weight: 500;
        letter-spacing: 1px;
        display: block;
        margin: 0;
        cursor: pointer;
        color: #6c6c6a;
    }

    .accordion-menu p {
        color: rgba(48, 69, 92, 0.8);
        font-size: 15px;
        line-height: 26px;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        max-height: 800px;
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        z-index: 3;
    }

    .accordion-menu ul {
        list-style: none;
        padding: 0 20px 10px;
        margin: 0;
        background-color: #bfe0ff;
        border-radius: 5px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(255, 255, 255, 0.19);
    }

        .accordion-menu ul li {
            position: relative;
            padding: 0;
            margin: 0;
            padding-bottom: 4px;
            padding-top: 18px;
            border-top: 1px dotted black;
        }

            .accordion-menu ul li:nth-child(1) {
                border: none;
            }

            .accordion-menu ul li:nth-of-type(1) {
                animation-delay: 0.5s;
            }

            .accordion-menu ul li:nth-of-type(2) {
                animation-delay: 0.75s;
            }

            .accordion-menu ul li:nth-of-type(3) {
                animation-delay: 1s;
            }

            .accordion-menu ul li:last-of-type {
                padding-bottom: 0;
            }

            .accordion-menu ul li .arrow {
                position: absolute;
                transform: translate(-6px, 0);
                -webkit-transform: translate(-6px, 0);
                margin-top: 16px;
                right: 0;
            }

            .accordion-menu ul li .fas {
                color: black;
                font-size: 15px;
                margin-right: 10px;
            }

            .accordion-menu ul li .arrow:before, ul li .arrow:after {
                content: "";
                position: absolute;
                background-color: black;
                width: 3px;
                height: 9px;
            }

            .accordion-menu ul li .arrow:before {
                transform: translate(-2px, 0) rotate(45deg);
                -webkit-transform: translate(-2px, 0) rotate(45deg);
            }

            .accordion-menu ul li .arrow:after {
                transform: translate(2px, 0) rotate(-45deg);
                -webkit-transform: translate(2px, 0) rotate(-45deg);
            }

            .accordion-menu ul li input[type=checkbox] {
                position: absolute;
                cursor: pointer;
                width: 100%;
                height: 100%;
                z-index: 1;
                opacity: 0;
            }

                .accordion-menu ul li input[type=checkbox]:checked ~ p {
                    margin-top: 0;
                    max-height: 0;
                    opacity: 0;
                    transform: translate(0, 50%);
                    -webkit-transform: translate(0, 50%);
                }

                .accordion-menu ul li input[type=checkbox]:checked ~ .arrow:before {
                    transform: translate(2px, 0) rotate(45deg);
                    -webkit-transform: translate(2px, 0) rotate(45deg);
                }

                .accordion-menu ul li input[type=checkbox]:checked ~ .arrow:after {
                    transform: translate(-2px, 0) rotate(-45deg);
                    -webkit-transform: translate(-2px, 0) rotate(-45deg);
                }

    .accordion-menu .transition, p, ul li .arrow:before, ul li .arrow:after {
        transition: all 0.25s ease-in-out;
    }



    .accordion-menu .no-select, h2 {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;
    }



.toast-container .toast {
    left: 50%;
    transform: translate(-50%, 0px);
}
/*=============== 404 Page ===============*/

.notfoundpage-img img {
}
/*=============== admin search page ===============*/
.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid var(--bs-body-color);
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow: auto;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: var(--bs-body-bg);
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: rgba(106, 166, 241, 0.5);
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/*=============== Usermanagerment ===============*/

.tab-wrap {
    transition: 0.3s box-shadow ease;
    border-radius: 6px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.tab {
    display: none;
}

    .tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
        opacity: 1;
        transition: 0.5s opacity ease-in, 0.8s transform ease;
        position: relative;
        top: 0;
        z-index: 1;
        transform: translateY(0px);
        text-shadow: 0 0 0;
    }

    .tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
        opacity: 1;
        transition: 0.5s opacity ease-in, 0.8s transform ease;
        position: relative;
        top: 0;
        z-index: 1;
        transform: translateY(0px);
        text-shadow: 0 0 0;
    }

    .tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
        opacity: 1;
        transition: 0.5s opacity ease-in, 0.8s transform ease;
        position: relative;
        top: 0;
        z-index: 1;
        transform: translateY(0px);
        text-shadow: 0 0 0;
    }

    .tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
        opacity: 1;
        transition: 0.5s opacity ease-in, 0.8s transform ease;
        position: relative;
        top: 0;
        z-index: 1;
        transform: translateY(0px);
        text-shadow: 0 0 0;
    }

    .tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
        opacity: 1;
        transition: 0.5s opacity ease-in, 0.8s transform ease;
        position: relative;
        top: 0;
        z-index: 1;
        transform: translateY(0px);
        text-shadow: 0 0 0;
    }

    .tab:first-of-type:not(:last-of-type) + label {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .tab:not(:first-of-type):not(:last-of-type) + label {
        border-radius: 0;
    }

    .tab:last-of-type:not(:first-of-type) + label {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .tab:checked + label {
        box-shadow: 0 -1px 0 #fff inset;
        cursor: default;
        color: var(--bs-tertiary-bg);
        background-color: var(--bs-light-text-emphasis);
    }


    .tab + label {
        box-shadow: 0 -1px 0 #eee inset;
        border-radius: 6px 6px 0 0;
        cursor: pointer;
        display: block;
        text-decoration: none;
        flex-grow: 3;
        text-align: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        text-align: center;
        transition: 0.3s background-color ease, 0.3s box-shadow ease;
        height: 50px;
        box-sizing: border-box;
        padding: 15px;
    }

/*        .tab + label:hover {
            background-color: var(--bs-secondary-bg);
            box-shadow: 0 1px 0 #f4f4f4 inset;
        }*/

.tab__content {
    padding: 10px 25px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    transform: translateY(-3px);
    border-radius: 6px;
}

/*=============== Admin room input page ===============*/
.overline-heading {
    max-width: 100%;
    border-top: 2px solid var(--bs-body-color);
}

.overline-heading p{
  color: red;  
}

.roomadmin-btn button {
    border-radius: 25px;
}

.roomadmin-btn i {
    color: white;
}

.switch-btn {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 27px;
    border-radius: 27px;
    box-shadow: inset 0px 0px 0px 1px #bdc3c7;
    cursor: pointer;
    transition: all .3s;
}

    .switch-btn input {
        display: none;
    }

        .switch-btn input:checked + div {
            background-color: #3498db;
            left: calc(100% - 25px);
        }

    .switch-btn div {
        position: absolute;
        width: 25px;
        height: 25px;
        border-radius: 25px;
        background-color: rgb(150,150,150);
        top: 1px;
        left: 0px;
        transition: all .4s;
    }

.switch-checked {
    box-shadow: inset 0px 0px 0px 1px #3498db;
}

.img-thumbnail-edit{
    max-width: 40%;
}