*{
    box-sizing: border-box;
    font-family: "boonhome";
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: "boonhome" !important;
    background-color: #FBFAF8;
    overflow-x: clip;
}

:root {
    --base-color: #9E1C20;
    --secondary-color: #F8B010;
    --font-family-base: "boonhome";
}

.sidebar .primary-menu::-webkit-scrollbar {
    width: 5px
}

.sidebar .primary-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar .primary-menu::-webkit-scrollbar-thumb {
    background: #888;
}
/*fix lao font*/
input,
button,
textarea,
select,
ul,
li {
    font-family: "boonhome" !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*fix lao font*/

.la-font {
    font-family: "boonhome" !important;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    transition: all 0.3s ease-in-out;
    display: flex;
    width: 16%;
    border-right: 1px solid #D5D5D5;
    flex-direction: column;
    background-color: #9E1C20;
}

    .sidebar .sidebar-header {
        height: 85px;
        border-bottom: 1px solid rgba(238,235,234,0.4);
    }

        .sidebar .sidebar-header .sidebar-header-btn {
            background-color: transparent;
            border: none;
        }

    .sidebar .primary-menu {
        overflow-y: auto;
    }

.logo {
    margin-bottom: 10px;
    margin-top: 5px;
    margin-left: 0px;
    margin-right: 0px;
}

    .logo img {
        /*width: 60px;*/
        width: 100%;
        height: 60px;
    }

.primary-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 29px 0px 52px -174px rgba(0,0,0,0.21);
    -webkit-box-shadow: 29px 0px 52px -174px rgba(0,0,0,0.21);
    -moz-box-shadow: 29px 0px 52px -174px rgba(0,0,0,0.21);
    width: 100%;
    height: 100vh;
}

.main-menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    width: 100%;
    justify-content: space-between;
    border-radius: 5px;
    margin: 2px 0px;
}

    .main-menu-item > div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .main-menu-item:hover {
        background: #ffffff;
    }

.main-menu-item-active {
    background: #ffffff;
}

.main-menu-item i {
    color: #ffffff;
    /*    font-size: 16px;*/
    transition: .3s;
    /*    margin-right: 10px;*/
}

.main-menu-item span {
    color: #ffffff;
    font-size: 15px;
    display: inline-block;
    /*    margin-top: 5px;*/
/*    text-align: center;*/
    transition: .3s;
}

.main-menu-item:hover i,
.main-menu-item:hover span,
.main-menu-item-active i,
.main-menu-item-active span {
    color: var(--base-color) !important;
}

.secondary-menu-item-active i,
.secondary-menu-item-active span {
    color: #9E1C20 !important;
}

.main-menu-item.secondary-menu-item-active {
    background-color: #ffffff;
}



.secondary-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
}



    .secondary-menu .main-menu-item {
        padding: 5px 5px 5px 28px;
    }

    /*        .secondary-menu .main-menu-item:hover {
            background: unset;
        }*/

    .secondary-menu .main-menu-item-active {
        background-color: var(--secondary-color);
    }

        .secondary-menu .main-menu-item:hover i, .secondary-menu .main-menu-item:hover span, .secondary-menu .main-menu-item-active i, .secondary-menu .main-menu-item-active span {
            color: #9E1C20 !important;
        }

.third-menu {
    padding-left: 20px;
}



.my-toolbar {
    background-color: #FBFAF8;
    /*height: 70px;*/
    height: 85px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0px -41px 52px -174px rgba(0,0,0,0.21);
    -webkit-box-shadow: 0px -41px 52px -174px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px -41px 52px -174px rgba(0,0,0,0.21);
    display: flex;
    width: 100%;
    align-items: center;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid rgba(238,235,234,0.4);
}

    .my-toolbar .my-toolbar-header-btn {
        background-color: var(--base-color);
        border: none;
        border-radius: 20px 0px 0px 20px;
        transform: rotate(-180deg);
        position: absolute;
        left: 0%;
        padding: 5px 10px
    }

.my-toolbar-left {
    width: 13%;
    text-align: center;
    padding-right: 20px;
    transition: all .3s ease-in-out;
}

.my-toolbar-right {
    display: flex;
    align-items: center;
    width: 84%;
    justify-content: space-between;
    padding: 0 30px;
    transition: all .3s ease-in-out;
    margin-left: auto;
}

.my-profile {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative
}

.my-profile-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

    .my-profile-icon i {
        color: red;
    }

    .my-profile-icon img {
        width: inherit
    }

.my-profile span {
    color: #fff;
    font-size: 14px;
    display: inline-block;
}

.my-profile:hover .my-profile-dropdown {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.my-profile-dropdown {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 150px;
    position: absolute;
    top: 35px;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 100;
}

    .my-profile-dropdown .secondary-menu-item i, .my-profile-dropdown .secondary-menu-item span {
        color: #333;
        transition: .3s;
    }

    .my-profile-dropdown .secondary-menu-item:hover i, .my-profile-dropdown .secondary-menu-item:hover span {
        color: #FC2947;
    }

.my-container {
    height: calc(100vh - 85px);
    margin-top: 85px;
    /*margin-top: 70px;*/
    /*padding-left: 250px;*/
    /*border-top: 1px solid #D5D5D5;*/
    /*width: 84%;*/
    transition: all .3s ease-in-out;
    width: 84%;
    margin-left: auto;
    padding: 20px;
    overflow: auto;
}

.login-box-row {
    display: flex;
    justify-content: space-between;
}

.login-box-left, .login-box-right {
    height: 100vh;
    background-color: #fff;
    width: 50%;
}

.login-box-right {
    background: url('../images/1-login.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.login-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 5px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

    .login-logo img {
        width: 100%;
        height: 100%;
    }

.login-box-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 130px
}

    .login-box-right h3 {
        font-size: 23px;
        margin-bottom: 25px
    }

.my-form-group {
    margin-bottom: 30px;
}

.my-form-control {
    border: 1px solid #e1e3ea;
    border-radius: 31px;
    width: 100%;
    color: #5D5D5D;
    /*font-size: 1.1rem;*/
    /*padding: 0.775rem 1rem;*/
    padding: 10px 1rem;
    appearance: none;
    outline: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #F2F2F2
}

    .my-form-control:focus {
        border: 1px solid #b5b5c3;
    }

.btn-login {
    width: 100%;
    border: none;
    padding: 10px;
    color: #fff;
    transition: .3s;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 31px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: rgb(15,92,160);
    background: linear-gradient(90deg, rgba(15,92,160,1) 0%, rgba(2,51,94,1) 100%);
}

    .btn-login:hover {
        background-color: #bb171e;
    }

.forgot-password {
    color: #C8C8C8;
    text-align: center;
    margin-top: 50px;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

/*Defautl CSS of Blazor Server*/
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/*Defautl CSS of Blazor Server*/


.btn-login:hover {
    background-color: #bb171e;
}

.control-container {
    background-color: #e5e5e5;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.e-carousel .e-carousel-items .e-carousel-item .img-container {
    height: 100%;
}

.e-carousel .e-carousel-items .e-carousel-item .img-caption {
    bottom: 4em;
    color: #fff;
    font-size: 12pt;
    height: 2em;
    position: relative;
    padding: 0.3em 1em;
    text-align: center;
    width: 100%;
}

.control-container img {
    aspect-ratio: 4/3;
    height: 100%
}

.sponsor-text {
    font-family: "boonhome" !important;
    position: fixed;
    bottom: 0;
}


/* kou - 04.04.2023 */
.my-box {
    padding: 20px
}

/* custom data grid */
/* .e-grid .e-rowcell, .e-grid .e-headercell {
    padding: 12px !important
} */

.e-grid .e-headercell, .e-grid .e-detailheadercell {
    padding: 16px
}
/* end custom data grid */

.btn-add {
    /*    background-color: #ed1b24 !important;
    border-color: #ed1b24 !important;*/
    background: rgb(15,92,160);
    background: linear-gradient(90deg, rgba(15,92,160,1) 0%, rgba(2,51,94,1) 100%);
}

.my-box-white {
    background-color: #fff;
    padding: 30px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-radius: 5px;
    margin-top: 20px
}

/* ປັບຄວາມສູງຂອງ textbox */
.e-control e-dropdownlist e-lib e-input,
input.e-input, .e-input-group input, .e-input-group.e-control-wrapper input,
.e-input-group input.e-input, .e-input-group.e-control-wrapper input.e-input {
    height: 36px !important;
}
/* ປັບຄວາມສູງຂອງ textbox */

/* kou - 04.04.2023 */





/* kou 05.04.2023 */
/* ແກ້ສີຂອບຂອງ textbox */
.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    border-color: #ed1b24 !important;
    box-shadow: 0 0 0 1px #ed1b24;
}

/* ແກ້ສີ border ເວລາຄິກປຸ່ມ */
.e-btn:focus {
    box-shadow: 0 0 0 2px rgb(255 255 255 / 95%), 0 0 0 4px #ed1b24 !important
}

/* ແກ້ສີ checkbox */
.e-checkbox-wrapper .e-frame.e-check, .e-css.e-checkbox-wrapper .e-frame.e-check {
    background-color: #ed1b24 !important;
    border-color: #ed1b24 !important;
}

/* ແກ້ສີ border ເວລາຄິກ cell ໃນ table */
.e-grid .e-focused:not(.e-menu-item) {
    box-shadow: 0 0 0 1px #ed1b24 inset;
}

/* ແກ້ສີ border ຂອງ pagination */
.e-pager .e-numericitem.e-currentitem {
    border: 1px solid var(--base-color) !important;
}

/* ແກ້ສີຂອງໂຕເລກ pagination */
.e-pager .e-currentitem, .e-pager .e-currentitem:hover {
    color: #fff !important;
    background: var(--base-color) !important;
}

/* ແກ້ໄຂ font */
.e-label-top, .e-btn, .e-label {
    font-family: var(--font-family-base) !important;
}

/* ແກ້ສີ border ເວລາຄິກ checkbox */
.e-checkbox-wrapper .e-checkbox:focus + .e-frame, .e-css.e-checkbox-wrapper .e-checkbox:focus + .e-frame,
.e-checkbox-wrapper .e-checkbox:focus + .e-frame.e-check, .e-css.e-checkbox-wrapper .e-checkbox:focus + .e-frame.e-check {
    box-shadow: 0 0 0 2px rgb(255 255 255 / 95%), 0 0 0 4px #ed1b24;
}
/* kou 05.04.2023 */

.e-grid .e-toolbar {
    border-top-color: var(--base-color) !important;
    height:50px !important;
}

.e-toolbar, .e-toolbar .e-toolbar-items, .e-toolbar .e-toolbar-item .e-tbar-btn {
    background-color: var(--base-color) !important;
}

.e-tab-header, .e-tab-header .e-toolbar-items {
    background-color: white !important;
}



.e-toolbar .e-toolbar-item .e-tbar-btn .e-icons, .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
.e-toolbar .e-toolbar-item .e-tbar-btn:hover .e-icons, .e-toolbar .e-toolbar-item .e-tbar-btn:hover .e-tbar-btn-text {
    color: #fff !important;
}

.e-toolbar .e-toolbar-item .e-tbar-btn:hover {
    background: #c20d15 !important;
    border-color: #c20d15 !important;
}

.e-grid .e-gridheader {
    color: #fff;
}

.e-columnheader {
/*    background-color: var(--base-color) !important;*/
/*    color: #fff;*/
}

.e-grid .e-headercelldiv {
    font-size: 12px;
}

.e-btn.e-info, .e-css.e-btn.e-info {
    background-color: #ed1b24;
    border-color: #ed1b24;
}

.e-tab-text {
    font-family: "boonhome" !important;
}

.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text,
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text, .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-icon {
    color: var(--base-color) !important;
}

.e-tab .e-tab-header .e-indicator {
    background-color: var(--base-color) !important;
}

.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
    background-color: #fff
}

.e-toast-container .e-toast {
    background-color: #ffffff;
}

    .e-toast-container .e-toast .e-toast-message .e-toast-content {
        color: #ed1b24;
        font-size: 16px;
        font-weight: normal;
    }

    .e-toast-container .e-toast .e-toast-message .e-toast-title {
        color: #ed1b24;
        font-size: 18px;
        font-weight: bold;
    }

.e-ddl-icon {
    color: var(--base-color) !important;
}

.main-menu-item:hover > i, .main-menu-item:hover > span, .main-menu-item-active > i, .main-menu-item-active > span, .secondary-menu-item-active > i, .secondary-menu-item-active > span {
    color: var(--base-color) !important;
}

.secondary-menu .main-menu-item:hover i, .secondary-menu .main-menu-item:hover span {
    color: #9E1C20 !important
}

.table {
    font-size: 13px;
}

.tab-header .e-tab-header {
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
    /*padding: 5px;*/
    background-color: white;
    z-index: 100;
}

.footer-save {
    position: sticky;
    bottom: 0;
    width: 100%;
    left: 50%;
    /*transform: translateX(-50%);*/
    /*padding-left: 16%;*/
    border-top: 1px solid #D5D5D5;
    background: white;
    padding: 0 3rem;
}

.template-flag {
    /* width: fit-content !important;*/
}

    .template-flag .e-input-value {
        display: flex !important;
        align-items: center;
    }

    .template-flag .dropdown-width {
        padding-left: 16px
    }


    .template-flag.e-input-group, .template-flag.e-input-group.e-control-wrapper {
        width: auto !important
    }

.my-toolbar-right .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
.my-toolbar-right .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    border-color: none !important;
    box-shadow: none;
}

/*.e-input-group:not(.e-success):not(.e-warning):not(.e-error), .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
    border-radius: 25px
}*/

.btn-search-bg {
    background: var(--base-color) !important;
    /*    background: linear-gradient(90deg, rgba(15,92,160,1) 0%, rgba(2,51,94,1) 100%) !important;*/
    border: none !important;
    /*    border-radius: 25px !important;*/
    padding: 6px 20px !important
}

.e-date-icon {
    color: #9E1C20 !important
}

.btn-detail-bg {
    background: rgb(35,165,73) !important;
    background: linear-gradient(90deg, rgba(35,165,73,1) 0%, rgba(5,102,34,1) 100%) !important;
    /* border-radius: 25px !important; */
    border: none !important;
    padding: 8px 20px !important
}

.btn-gradient-green {
    background: rgb(15, 136, 51) !important;
    background: linear-gradient(90deg, rgba(35,165,73,1) 0%, rgba(5,102,34,1) 100%) !important;
    border: none !important;
    padding: 8px 20px !important
}

.btn-gradient-red {
    background: rgb(158,28,32) !important;
    background: linear-gradient(90deg, rgba(158,28,32,1) 0%, rgba(158,19,24,1) 100%) !important;
    border-radius: 25px !important;
    border: none !important;
    padding: 8px 20px !important;
    color: #fff !important;
}

.btn-gradient-blue {
    background: rgb(15,92,160) !important;
    background: linear-gradient(90deg, rgba(15,92,160,1) 0%, rgba(2,51,94,1) 100%) !important;
    border-radius: 25px !important;
    border: none !important;
    padding: 8px 20px !important;
    color: #fff;
}

.btn-gradient-red:hover {
    color: #fff;
}

/*.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error), .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    border-radius: 25px
}*/

/*.e-pager, .e-grid .e-gridcontent, .e-grid .e-content, .e-grid .e-table, .e-grid .e-headercell, .e-grid .e-detailheadercell,
.e-grid .e-gridheader {
    background-color: transparent;
}*/

.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text {
    color: var(--base-color);
}

.my-toolbar-right .e-input-group:not(.e-success):not(.e-warning):not(.e-error) {
    border: none;
    box-shadow: none !important;
}

.e-radio:checked + label::before {
    border-color: rgb(236, 31, 38) !important;
    background-color: rgb(236, 31, 38) !important;
}

.e-tab .e-tab-header {
    background: inherit;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}


/*-----------------------*/

.e-control:focus,
.e-control *:focus {
    outline: none !important;
}


.e-radio:focus + label::before {
    border-color: rgb(236, 31, 38) !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #9E1C20 !important;
}

.e-radio:focus + label::before {
    border-color: #d1d5db !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #9E1C20 !important;
}

.e-grid .e-focused:not(.e-menu-item) {
    box-shadow: 0 0 0 1px #9E1C20 inset !important;
}

.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error), .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    box-shadow: 0 0 0 1px var(--base-color) inset !important;
    /*    border-radius: 25px !important;*/
}

.my-toolbar-right .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error), .my-toolbar-right .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    box-shadow: none !important;
    border-radius: none !important;
}

.e-footer-content .e-btn.e-primary.e-flat:not([DISABLED]) {
    background: var(--base-color) !important;
    border-color: var(--base-color) !important;
}

.e-pv-sidebar-toolbar {
    z-index: 0 !important
}


.e-spinner-pane .e-spinner-inner .e-spin-tailwind .e-path-arc {
    stroke: var(--base-color) !important
}

.e-grid .e-headercelldiv {
    font-size: 13px !important
}

.bd-line {
    position: relative;
    z-index: 1
}

    .bd-line::after {
        content: "";
        position: absolute;
        width: 100%;
        border-bottom: 1px solid white;
        bottom: -0.5px;
        left: 0;
        z-index: -1;
    }

.e-pv-total-page {
    color: white !important
}

.e-toolbar .e-toolbar-item.e-overlay {
    opacity: 1 !important;
    background: var(--base-color) !important;
}

.e-pv-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator, .e-pv-annotation-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator, .e-pv-formdesigner-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
    opacity: 0
}


.burger_menu .sidebar {
    transform: translateX(-100%)
}

.burger_menu .my-container {
    width: 100%
}

.burger_menu .my-toolbar-left {
    width: 0;
    padding: 0
}

.burger_menu .my-toolbar-right {
    width: 100%
}

.e-icons.e-medium {
    font-size: 30px !important;
    color: #9E1C20;
    cursor: pointer
}

.e-input-group.e-error, .e-input-group.e-control-wrapper.e-error, .e-input-group.e-error:not(.e-float-icon-left), .e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left) {
    /*border-radius: 25px;*/
}


.e-input-group.e-success, .e-input-group.e-control-wrapper.e-success, .e-input-group.e-success:not(.e-float-icon-left), .e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left) {
    /*border-radius: 25px;*/
}


.custom-file {
    width: 200px;
    display: flex;
    align-items: center;
    margin: auto;
    height: 36px;
    border-radius: 0.2rem;
    position: relative;
}


.custom-file-input {
    width: 200px;
    display: flex;
    align-items: center;
    margin: auto;
    border-radius: 0.2rem;
    position: relative;
}

    .custom-file-input::-webkit-file-upload-button {
        visibility: hidden;
        display: none;
    }

    .custom-file-input::before {
        content: "Choose File";
        color: white;
        display: inline-block;
        background: none;
        border: none;
        border-radius: 3px;
        padding: 5px 8px;
        outline: none;
        white-space: nowrap;
        -webkit-user-select: none;
        cursor: pointer;
        text-shadow: 1px 1px #fff;
        font-size: 10pt;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: right;
        padding-right: 40px;
        margin-bottom: 10px;
    }

.input-group-append {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

    .input-group-append .btn {
        width: 80px;
    }

.imageChoose {
    margin-top: 30px;
    border: 3px;
    border-style: dashed;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
    max-width: 100%;
}

.custom-file .bi-cloud-arrow-down-fill {
    color: white;
    position: absolute;
    top: 0;
    height: 100%;
    width: 20px;
    left: 55px;
}

.input-group-append .btn-success {
    background: rgb(15,92,160) !important;
    background: linear-gradient(90deg, rgba(15,92,160,1) 0%, rgba(2,51,94,1) 100%) !important;
    border: none;
}

.input-group-append .btn-success, .input-group-append .btn-danger, .custom-file {
    /*border-radius: 25px;*/
}


.tab-heigth-appForm .e-content.e-lib.e-touch {
    min-height: calc(100vh - 300px);
}

/* /User Profile/ */

.main-body {
    padding: 15px;
}

.card {
    /* /box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
    / box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /* /border: 0 solid rgba(0,0,0,.125);
    / border-radius: .25rem; */
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1rem;
}

.gutters-sm {
    display: flex;
    align-items: center;
    margin-right: -8px;
    margin-left: -8px;
}

    .gutters-sm > .col, .gutters-sm > [class*=col-] {
        padding-right: 8px;
        padding-left: 8px;
    }

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.bg-gray-300 {
    background-color: #e2e8f0;
}

.h-100 {
    height: 100% !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* /form-control/ */

.form-control-customer:focus {
    border: 2px solid red !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-upload-user {
    border-radius: 25px !important;
    background: linear-gradient(90deg, rgba(15,92,160,1) 0%, rgba(2,51,94,1) 100%) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

    .btn-upload-user:focus {
        box-shadow: 0 0 0 2px rgb(255 255 255 / 95%), 0 0 0 4px #ed1b24 !important;
    }

.header-icon-res {
    display: none;
}

.btn-res-sell-form-back {
    display: none !important;
}

.res-row-back,
.res-all-page {
    display: none !important;
}

.basboard-table .basboard-table-tb thead tr th {
    font-weight: bold;
}

.basboard-table .basboard-table-tb thead tr th,
.basboard-table .basboard-table-tb tbody tr td {
    border: 2px solid #DEE2E6 !important;
    border-collapse: collapse;
    padding: 10px;
    text-align: center;
}

.e-tab .e-tab-header {
    z-index: 1 !important;
}



.bg-water-mark::after {
    content: "";
    background-image: url(../images/water-mark-3.png);
    /* filter: blur(8px); */
    /* -webkit-filter: blur(8px); */
    height: 100%;
    position: absolute;
    width: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    /* z-index: 23; */
    opacity: 0.2;
}

.bg-water-mark .card-body {
    position: relative;
    z-index: 3;
}

.bg-water-mark-center::after {
    content: "";
    background-image: url(../images/water-mark-5.png);
    /* filter: blur(8px); */
    /* -webkit-filter: blur(8px); */
    height: 100%;
    position: absolute;
    width: 100%;
    background-position: center;
    background-repeat: space;
    background-size: contain;
    /* z-index: 23; */
    opacity: 0.2;
}

.bg-water-mark-center .card-body {
    position: relative;
    z-index: 3;
}

.bg-water-mark-day::after {
    content: "";
    background-image: url(../images/water-mark-6.png);
    /* filter: blur(8px); */
    /* -webkit-filter: blur(8px); */
    height: 100%;
    position: absolute;
    width: 100%;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    /* z-index: 23; */
    opacity: 0.3;
}

.bg-water-mark-day .card-body {
    position: relative;
    z-index: 3;
}

.choose-file-name,
.res-choose-file {
    display: none;
}

.image-box-delete-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: #fff;
    cursor: pointer;
    border: none;
}

.image-delete-icon {
    font-size: 13px;
}

.btn-open-agent-pdf {
    background: rgb(35,165,73) !important;
    background: linear-gradient(90deg, rgba(35,165,73,1) 0%, rgba(5,102,34,1) 100%) !important;
    border-radius: 25px !important;
    border: none !important;
    padding: 5px 20px !important;
    color: #fff !important;
    width: 120px;
}

.notification-log {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

    .notification-log, .notification-log th, .notification-log td {
        border: 1px solid #000;
        border-collapse: collapse
    }

        .notification-log th, .notification-log td {
            padding: 5px;
        }

.new-chat-count {
    position: absolute;
    top: -10px;
    right: -8px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc2626;
    font-size: 12px;
    padding: 4px;
}

.btn-chat {
    position: relative;
}

.btn-notification {
    position: relative;
}

.conversation-box {
    width: 500px;
    background-color: #fff;
    position: fixed;
    top: 62px;
    right: 100px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.conversation-item {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    transition: .3s;
}

    .conversation-item:hover {
        background-color: rgb(226, 225, 225);
    }

.conversation-list {
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden
}

.conversation-title {
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
}

.conversation-item-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ff0506;
    overflow: hidden;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .conversation-item-image img {
        width: 100%;
    }

.conversation-bage {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background-color: #ff0506;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 11px;
}

.conversation-detail {
    color: gray;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    width: 100%;
    align-items: center;
}

    .conversation-detail span {
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


.conversation-detail-box-header {
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.conversation-detail-box-footer {
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 10px 0;
}

.input-send {
    padding: 10px;
    border-radius: 20px;
    flex: 1;
    border: none;
    background-color: #e9e9e9;
    margin: 0 10px;
    font-size: 14px;
    height: 32px;
}

.conversation-detail-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    position: relative;
}

.message-box-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    margin-bottom: 20px;
}


.conversation-detail-box {
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.message-box-left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
}

.message-box-right-item, .message-box-left-item {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    max-width: 80%;
    display: inline-block;
    line-height: 23px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.message-box-right-item {
    background-color: #ff0506;
    color: #fff;
}

.message-box-left-item {
    background-color: #e9e9e9;
    color: #333;
}

.message-time {
    color: gray;
    font-size: 11px;
    line-height: 2;
}

.preview-image-box {
    flex: 1;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .preview-image-box img {
        width: 200px;
    }

.input-file {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    bottom: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 100;
}

.inner-box {
    margin: 30px auto;
    border: 1px solid #DBDBDB;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    background-color: #fff;
    width: 80%;
    position: relative;
}

.line {
    width: 100%;
    background-color: #ddd;
    height: 1px;
    margin: 15px 0;
}

.cliam-success {
    background-color: #5bf787;
    padding: 5px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.cliam-pending {
    background-color: #48A9F7;
    padding: 5px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.cliam-rejected {
    background-color: #F35B5B;
    padding: 5px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.alert {
    text-align: center;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.alert-success {
    background-color: #5bf78773;
}

.alert-error {
    background-color: #ffcbcb;
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
}

.file-box {
    width: 23%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}


    .file-box .image-box {
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #eee;
    }

    .file-box span {
        display: inline-block;
        margin: 10px;
    }

    .file-box img {
        max-width: 100%;
        max-height: 100%;
    }

    .file-box button {
        position: absolute;
        top: -15px;
        right: -15px;
        background: red;
        color: #fff;
        width: 30px;
        height: 30px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }

.loading {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 6;
    opacity: .7;
    display: flex;
    justify-content: center;
    padding-top: 200px;
}

.confirm-box {
    background-color: #B3E5FC;
}

.my-input {
    width: 100%;
    padding: 5px;
}

.e-calendar {
    background-color: peachpuff;
    border: 3px solid #dc2626 !important;
}

    .e-calendar .e-content td:hover span.e-day, .e-calendar .e-content td:focus span.e-day, .e-bigger.e-small .e-calendar .e-content td:hover span.e-day, .e-bigger.e-small .e-calendar .e-content td:focus span.e-day {
        background-color: #dc2626 !important;
        border: 2px solid #dc2626;
        color: #fff !important;
    }

    .e-calendar .e-header span, .e-bigger.e-small .e-calendar .e-header span {
        border: 1px solid;
        color: #dc2626;
    }

        .e-calendar .e-header span:hover, .e-bigger.e-small .e-calendar .e-header span:hover {
            color: #fff !important;
            background-color: #dc2626;
        }

    .e-calendar .e-btn.e-today.e-flat.e-primary, .e-calendar .e-css.e-btn.e-today.e-flat.e-primary {
        background-color: transparent !important;
        color: #dc2626 !important;
        border: 1px solid #dc2626 !important;
    }

        .e-calendar .e-btn.e-today.e-flat.e-primary:hover, .e-calendar .e-css.e-btn.e-today.e-flat.e-primary:hover {
            background-color: #dc2626 !important;
            color: #fff !important;
        }

    .e-calendar .e-content td.e-selected.e-focused-date span.e-day {
        background-color: #dc2626 !important;
        color: #fff !important;
    }

.e-checkbox-wrapper .e-checkbox:focus + .e-frame.e-check, .e-css.e-checkbox-wrapper .e-checkbox:focus + .e-frame.e-check {
    box-shadow: 0 0 0 2px rgba(255,255,255,.95), 0 0 0 4px #dc2626 !important;
}

input.e-input::selection, textarea.e-input::selection, .e-input-group input.e-input::selection, .e-input-group.e-control-wrapper input.e-input::selection, .e-float-input input::selection, .e-float-input.e-control-wrapper input::selection, .e-input-group textarea.e-input::selection, .e-input-group.e-control-wrapper textarea.e-input::selection, .e-float-input textarea::selection, .e-float-input.e-control-wrapper textarea::selection {
    background: #dc2626 !important;
}

.e-calendar .e-content td.e-today span.e-day {
    box-shadow: inset 1px 0 #dc2626, inset 0 1px #dc2626, inset -1px 0 #dc2626, inset 0 -1px #dc2626 !important;
    color: #dc2626 !important;
}

.e-calendar .e-content td.e-today:hover span.e-day {
    box-shadow: inset 1px 0 #dc2626, inset 0 1px #dc2626, inset -1px 0 #dc2626, inset 0 -1px #dc2626 !important;
    color: #fff !important;
}

.e-calendar .e-content td.e-selected span.e-day, .e-bigger.e-small .e-calendar .e-content td.e-selected span.e-day {
    background: #dc2626 !important;
}

.e-checkbox-wrapper .e-checkbox:focus + .e-frame, .e-css.e-checkbox-wrapper .e-checkbox:focus + .e-frame {
    box-shadow: 0 0 0 2px rgba(255,255,255,.95), 0 0 0 4px #dc2626 !important;
}

.e-switch-wrapper.e-active .e-switch-inner.e-switch-active, .e-switch-wrapper:active .e-switch-inner.e-switch-active, .e-css.e-switch-wrapper.e-active .e-switch-inner.e-switch-active, .e-css.e-switch-wrapper:active .e-switch-inner.e-switch-active {
    border-color: #dc2626 !important;
}

.e-switch-wrapper .e-switch-inner.e-switch-active, .e-css.e-switch-wrapper .e-switch-inner.e-switch-active, .swal2-styled.swal2-confirm {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
}

.e-switch-wrapper .e-switch-on, .e-css.e-switch-wrapper .e-switch-on {
    background-color: #dc2626 !important;
}

.e-pv-toolbar .e-pv-tbar-btn.e-pv-tbar-btn, .e-pv-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn, .e-pv-mobile-annotation-toolbar .e-pv-tbar-btn.e-pv-tbar-btn, .e-pv-mobile-annotation-toolbar .e-dropdown-btn.e-btn, .e-pv-annotation-toolbar .e-dropdown-btn.e-btn, .e-pv-formdesigner-toolbar .e-pv-tbar-btn.e-pv-tbar-btn, .e-pv-formdesigner-toolbar .e-dropdown-btn.e-btn, .e-pv-shapes-toolbar .e-pv-tbar-btn, .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused, .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-menu-icon, .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-menu-icon, .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item.e-focused .e-caret, .e-pv-annotation-stamp-container .e-menu-wrapper ul .e-menu-item .e-caret {
    color: #fff !important
}

.e-pv-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon, .e-pv-annotation-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon, .e-pv-annotation-toolbar .e-toolbar-item.e-overlay .e-dropdown-btn.e-btn .e-pv-icon, .e-pv-formdesigner-toolbar .e-toolbar-item.e-overlay .e-pv-tbar-btn.e-pv-tbar-btn .e-pv-icon, .e-pv-formdesigner-toolbar .e-toolbar-item.e-overlay .e-dropdown-btn.e-btn .e-pv-icon {
    color: #000 !important
}

.btn-download-file {
    background: linear-gradient(90deg, rgba(35,165,73,1) 0%, rgba(5,102,34,1) 100%) !important;
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    margin-top: 30px;
}

    .btn-download-file:hover {
        color: aquamarine;
    }

.pa-other-pdf {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .pa-other-pdf svg {
        fill: rgba(236, 31, 38, 1);
    }

    .pa-other-pdf h4 {
        font-size: 14px;
        padding-top: 10px;
        margin-bottom: 0 !important;
    }

.my-table {
    background-color: #fff;
}

    .my-table, .my-table td, .my-table th {
        border: 1px solid #e5e7eb;
    }

        .my-table td {
            padding: 13px;
        }

        .my-table th {
            padding: 10px;
        }

        .my-table th {
            background: #ed1b24;
            color: #fff;
        }

.e-float-input input[disabled], .e-float-input.e-control-wrapper input[disabled] {
    overflow: hidden;
}

.datePicketPolicy {
    height: 40px;
    font-size: 18px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--base-color) !important;
}

.form-control:focus {
    border-color: var(--base-color) !important;
}

label.e-float-text, .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom, .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
    font-family: var(--font-family-base) !important;
}

.e-grid .e-rowcell {
    font-size: 13px !important;
}

.e-input-group, .e-input-group.e-control-wrapper {
/*    background-color: #FBFAF8 !important;*/
}

    .e-input-group.e-success, .e-input-group.e-control-wrapper.e-success, .e-input-group.e-success:not(.e-float-icon-left), .e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left) {
        border-radius: 5px;
    }

.e-checkbox-wrapper .e-frame.e-check, .e-css.e-checkbox-wrapper .e-frame.e-check {
    border-color: var(--base-color) !important;
    background: var(--base-color) !important;
}

.btn-gradient-red, .btn-gradient-blue {
    border-radius: 5px !important;
}

.btn-bg-print {
    background-color: #ba5300 !important;
    border: none !important;
    padding: 8px 20px !important;
}

.i4u-nav {
    background-color: #9E1C20;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
}

.i4u-nav-back {
    margin-right: 10px;
}

.i4u-nav-back i {
    color: #fff;
    font-size: 25px;
}

.i4u-nav-title {
    text-align: center;
    width: 100%;
}

.policy-menu-list {
    display: flex;
    background-color: #fff;
    flex-wrap: wrap;
    padding-top: 50px;
}

.policy-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    width: 33.33%;
    align-items: center;
    padding: 0 10px;
}

.policy-menu-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9E1C20;
}

.policy-menu-icon i {
    color: #fff;
    font-size: 50px;
}

.policy-menu span {
    color: #000;
    text-align: center;
    font-size: 22px;
    margin-top: 10px;
    height: 66px;
    overflow: hidden;
}

.i4u-logout {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #9E1C13;
}

.img-box {
    border: 1px solid #e0e0e0;
    height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 20px 0;
    border-radius: 8px;
    position: relative;
    flex-wrap: wrap;
    padding: 10px;
}

.img-box img {
    max-height: 100%;
    max-width: 100%;
}

.img-box a {
    height: 100%;
}

.img-box .fa-file-pdf {
    font-size: 40px;
    color: #9E1C20;
}

.remove-attachment {
    position: absolute;
    top: -10px;
    right: -10px;
    border: none;
    background-color: transparent;
}

.remove-attachment i {
    color: #9E1C20;
    font-size: 25px;
}

html, body {
    height: 100%;
}

.ih-header{
    background-color:#9E1C20;
    height:60px;
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ih-nav-back{
    position:absolute;
    left: 20px;
}
.ih-header-title{
    font-size:14px;
}

.white-box {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.in-dt {
    width: 100%;
    border: 1px solid #d1d5db;
    padding: 6px;
    border-radius: 5px;
}

.box-notifications-list {
    position: absolute;
    background: #fff;
    max-height: 80vh;
    overflow-x: hidden;
    width: 30vw;
    right: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    transform: translateX(30%);
    z-index: 1000;
}
.box-notifications-lis.show{
  display:block !important;
}

.box-notifications-list-hidden {
    display: none;
}

.box-notifications {
    position: relative;
}

.box-notifications-list-card {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 16px 2px rgba(105, 102, 105, 0.2);
    -moz-box-shadow: 0px 0px 16px 2px rgba(105,102,105,0.2);
    box-shadow: 0px 0px 16px 2px rgba(105, 102, 105, 0.2);
}

.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.e-dialog .e-btn .e-btn-icon.e-icon-dlg-close {
    font-size: 18px !important;
    width: unset !important;
}

.e-dialog .e-icon-dlg-close::before {
    position: absolute !important;
    transform: translate(-50%, -50%);
    top: 53%;
    left: 53%;
}

.copy {
    padding: 5px;
    background-color: #d1d1d16e;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.p-star {
    color: #9E1C20;
}

header {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #9e1c20;
        color: white;
        padding: 20px;
        position: relative;
        font-size: 14px;
        height: 45px;
        /* Add safe area for notched devices */
        padding-top: max(20px, env(safe-area-inset-top));
        /* Prevent text selection */
        -webkit-user-select: none;
        user-select: none;
    }

.backbtn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    padding: 0;
    border-radius: 50%;
    transition: all 0.15s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    &:active {
        background: rgba(255,255,255,0.2);
        transform: translateY(-50%) scale(0.9);
    }
    
    i {
        font-size: 16px;
    }
}