/* CSS Styles */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-weight: 500;
    background: #ffffff;
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
body::-webkit-scrollbar-track {
    background: #f4f4f4;
}
body::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #dddddd;
}
body::-webkit-scrollbar-button {
    display: none !important;
}

a {
    color: #b12077;
}

#before-load {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: #ffffff;
}
#before-load-dark {
    background: #333333;
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.pace-inactive {
    display: none;
}
.pace .pace-progress {
    background: #b12077;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 100%;
    width: 100%;
    height: 4px;
}

.header-title {
    color: rgba(71, 71, 71, 1) !important; 
    padding-top: 10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-top: 1px solid #dddddd;
    background: #f2f2f2;
    color: #6b6b6b;
}

.wrapper {
    display: flex;
    margin-top: 65px;
    margin-bottom: 50px;
    flex: 1;
}

.left-menu {
    position: fixed;
    height: calc(100% - 115px);
    background: #ffffff;
}

.left-menu.hovered {
    overflow-y: auto;
}

.left-menu::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.left-menu::-webkit-scrollbar-track {
    background: #f4f4f4;
}
.left-menu::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    border-radius: 10px;
}
.left-menu::-webkit-scrollbar-thumb:hover {
    background-color: #dddddd;
}
.left-menu::-webkit-scrollbar-button {
    display: none !important;
}

.content {
    flex: 1;
    background-color: #ffffff;
    margin-bottom: 50px;
}

.nav-link.active {
    font-weight: 600;
    background: #fff !important;
    color: #b12077 !important;
}
.nav-link.active:hover {
    color: #b12077 !important;
    background: rgba(177, 32, 119, 0.2) !important;
}
.nav {
    line-height: 1.4rem;
}
a.nav-link {
    padding: 6px 14px !important;
    margin: 3px 0;
    text-wrap-mode: nowrap;
}
.nav-link {
    color: rgba(71, 71, 71, 0.9) !important;
    font-size: .85rem;
    letter-spacing: 0px;
    background: transparent !important;
}
.nav-link:hover {
    color: #474747 !important;
    background: rgba(196, 196, 196, 0.2) !important;
}

.nav-collapse::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/search.svg');
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: 6px center;
    opacity: 0.5;
    z-index: -1;
}

h1, h2, h3, h4, h5 {
    color: #b12077;
    font-weight: 600;
}

.form-control {
    box-shadow: none !important;
    outline: none !important;
}

.color-v {
    color: #b12077;
}

.color-d {
    color: #333333;
}

.cookie-btn {
    color: rgba(71, 71, 71, 0.9);
    font-size: 1.0rem;
}

.menu-btn {
    color: rgba(71, 71, 71, 0.9); 
    margin-top: 3px; 
    font-size: 1.4rem;
}

.search-result {
    display: none; 
    background: #f2f2f2; 
    border-radius: 0.5rem;
}

.btn-result-close {
    color: #6b6b6b; 
    font-size: 1.2rem;
}

.clear-btn {
    display: none; 
    position: absolute; 
    top: 7px; 
    right: 10px; 
    background: transparent; 
    border: 0; 
    z-index: 2;
}

@media (max-width: 991.98px) {
    body {
        font-size: 0.93rem;
    }
    .left-menu {
        overflow-y: auto;
        width: -webkit-fill-available;
    }
    .search-input {
        border: 1px solid #f2f2f2 !important; 
        height: 36px; 
        width: 36px;
        transition: width 0.3s ease, border-radius 0.3s ease;
        position: absolute !important;
        top: 0px;
        right: 0px;
        background-image: url('images/search-g.svg'); 
        background-size: 18px;
        background-repeat: no-repeat;
        background-position: 8px center;
        
    }
    .search-input::placeholder {
        opacity: 0;
    }
    .search-input:focus,
    .search-input.not-empty {
        width: 160px;
        padding-left: 33px;
        border: 1px solid #b12077 !important;
    }
    .lang-icon {
        border: 1px solid #f2f2f2; 
        background: #f2f2f2; 
        border-radius: 0.3rem; 
        padding: 4px 8px; 
        min-height: 36px; 
        cursor: pointer; 
        text-decoration: none; 
        color: #333333;
    }
    .btn-result-wrapper {
        position: absolute; 
        top: 0px; 
        right: 4px;
    }
    .btn-result-wrapper i {
        font-size: 1.1rem;
    }
    .content {
        margin-left: 0px !important;
    }
    .border-end {
        border-right: none  !important;
    }
    .btn-footer {
        position: static;
        width: 100%;
    }
    .nav-wrapper {
        margin-bottom: 0px;
    }
    .cookie-card { 
        display: flex; 
        position: fixed; 
        z-index: 999; 
        bottom: 1.5rem; 
        /* left: 0; */ 
        right: 0; 
        box-shadow: 7px 7px 20px 1px #0c002e0f; 
        max-width: 400px; 
        background: #ffffff; 
        font-size: 0.78rem; 
        border-radius: 0.5rem; 
        margin: 0 1rem;
    }
    .table-responsive {
        max-width: calc(100vw - 2rem) !important;
        overflow-x: auto !important;
    }
    .warning-v, .warning {
        padding: 16px !important;
        font-size: .93rem;
    }
    .warning-v i, .warning i {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .left-menu {
        display: block !important;
        overflow: hidden;
        width: 330px;
    }
    .search-input {
        border: 1px solid #f2f2f2 !important; 
        height: 36px; 
        width: 160px; 
        padding-left: 34px;
        background-image: url('images/search-g.svg'); 
        background-size: 18px;
        background-repeat: no-repeat;
        background-position: 9px center;
    }
    .search-input::placeholder {
        opacity: 1;
    }
    .search-input:focus,
    .search-input.not-empty {
        border: 1px solid #b12077 !important;
    }
    .lang-icon {
        border: 1px solid #f2f2f2; 
        background: #f2f2f2; 
        border-radius: 0.3rem; 
        padding: 4px 12px; 
        min-height: 36px; 
        cursor: pointer; 
        text-decoration: none; 
        color: #333333;
        transition: all 0.2s;
    }
    /* .lang-icon:hover {
        border: 1px solid #dddddd; 
        background: #dddddd; 
        transition: all 0.2s;
    } */
    .btn-result-wrapper {
        position: absolute; 
        top: 4px; 
        right: 7px;
    }
    .content {
        margin-left: 330px !important;
    }
    .btn-footer-w {
        position: sticky !important; 
        bottom: 0px;
        /* position: absolute  !important;
        bottom: 16px;
        padding-right: 25px  !important; */
    }
    .btn-footer {
        width: 100%;
    }
    .border-end {
        border-right: 1px solid #f2f2f2;
    }
    .border-end-dark {
        border-right: 1px solid #3b3b3b !important;
    }
    .nav-wrapper {
        margin-bottom: 10px;
    }
    .cookie-card { 
        display: flex; 
        position: fixed; 
        z-index: 999; 
        bottom: 2.5rem; 
        right: 2.5rem; 
        box-shadow: 7px 7px 20px 1px #0c002e0f; 
        max-width: 400px; 
        background: #ffffff; 
        font-size: 0.78rem; 
        border-radius: 1rem;
    }
    .warning-v, .warning {
        padding: 16px 20px !important;
    }
    .warning-v i, .warning i {
        font-size: 1.2rem;
    }
}

.nav-show {
    width: 36px; 
    height: 36px; 
    border-radius: 0.3rem; 
    cursor: pointer;
}

.highlight {
    background-color: #ffcd50;
    font-weight: bold;
}

.btn-footer {
    padding: 0 17px;
    bottom: 60px;
    height: 54px;
    border-radius: 0.5rem;
    border: 1px solid #f2f2f2;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #6b6b6b;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-footer:hover {
    background: #f2f2f2;
    border: 1px solid #dddddd;
    transition: all 0.2s;
}

.dropdown-menu {
    border: 1px solid #f2f2f2 !important;
    box-shadow: 7px 7px 20px 1px #0c002e0f !important;
    margin-top: 5px !important;
}

.btn-prev {
    padding: 0 17px;
    bottom: 60px;
    height: 65px;
    border-radius: 0.5rem;
    border: 1px solid #dddddd;
    /* background: #ffffff; */
    color: #6b6b6b;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-prev:hover {
    border: 1px solid #b12077;
    color: #b12077;
    transition: all 0.2s;
}

.btn-next {
    padding: 0 17px;
    bottom: 60px;
    height: 65px;
    border-radius: 0.5rem;
    border: 1px solid #dddddd;
    /* background: #ffffff; */
    color: #6b6b6b;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: end;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-next:hover {
    border: 1px solid #b12077;
    color: #b12077;
    transition: all 0.2s;
}

.warning-v {
    color: #b12077 !important; 
    background: rgb(242 242 242) !important; 
    border-radius: 0.5rem; 
    width: 100%;
}
.warning-v i {
    color: #b12077 !important;
}

.warning {
    background: rgb(242 242 242) !important; 
    border-radius: 0.5rem; 
    width: 100%;
}
.warning i {
    color: #b12077 !important;
}

.table thead th {
    color: #b12077;
}
.table {
    /* --bs-table-hover-bg: #f2f2f2 !important; */
    --bs-table-hover-bg:  rgba(177, 32, 119, 0.1) !important;
}

.btn-v {
    border: 1px solid #b12077; 
    background: #b12077; 
    border-radius: 0.3rem; 
    padding: 4px 16px; 
    min-height: 36px; 
    cursor: pointer; 
    text-decoration: none; 
    color: #ffffff;
}

.hidden-important {
    display: none  !important;
}

.dropdown-menu {
    --bs-dropdown-link-hover-bg: #f2f2f2 !important;
    --bs-dropdown-link-active-bg: #b12077 !important;
}
.dropdown-toggle::after {
    display: none;
}

.menu-collapse-btn {
    position: absolute; 
    right: 10px; 
    top: 10px; 
    background: #f2f2f2; 
    border-radius: 50%; 
    width: 20px; 
    height: 20px; 
    font-size: .71rem; 
    text-align: center; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding-top: 2px;
}

.nav-title {
    font-weight: 400 !important; 
    font-size: 0.81rem; 
    color: #333333 !important;
}

.mode-btn {
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
    border-radius: 0.3rem;
    /* padding: 4px 12px; */
    min-height: 36px;
    cursor: pointer;
    text-decoration: none;
    color: #333333;
    transition: all 0.2s;
    width: 36px;
}
.mode-icon {
    height: 36px;
    cursor: pointer; 
    text-decoration: none; 
    transition: all 0.2s;
    display: flex;
    justify-content: center;
}
.mode-icon:hover {
    transition: all 0.2s;
}
.mode-icon i {
    /* margin-top: 1px; */
    font-size: 1.5rem;
    color: #6b6b6b;
}
.mode-icon:hover i {
    color: #b12077;
}

/* Dark Mode */

.mode-btn-dark {
    border: 1px solid #4d4d4d;
    background: #3d3d3d;
}

.mode-icon-dark i {
    color: #8b8b8b;
}
.mode-icon-dark:hover i {
    color: #b12077;
}

.body-dark {
    background: #333333;
}
.body-dark::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.body-dark::-webkit-scrollbar-track {
    background: #3f3f3f;
}
.body-dark::-webkit-scrollbar-thumb {
    background-color: #b12077;
    border-radius: 10px;
}
.body-dark::-webkit-scrollbar-thumb:hover {
    background-color: #b12077;
}
.body-dark::-webkit-scrollbar-button {
    display: none !important;
}

.header-title-dark {
    color: #ffffff !important;
}
.header-dark {
    background: #333333;
    border-bottom: 1px solid #3b3b3b;
}

.menu-btn-dark {
    color: #c4c4c4;
}

.left-menu-dark {
    background: #333333;
}
.left-menu-dark::-webkit-scrollbar-track {
    background: #3f3f3f;
}
.left-menu-dark::-webkit-scrollbar-thumb {
    background-color: #b12077;
    border-radius: 10px;
}
.left-menu-dark::-webkit-scrollbar-thumb:hover {
    background-color: #b12077;
}
.left-menu-dark::-webkit-scrollbar-button {
    display: none !important;
}

.content-dark {
    background: #333333;
    color: #ffffff;
}

.footer-dark {
    border-top: 1px solid #3b3b3b;
    background: #303030;
    color: #6b6b6b;
}

.nav-link-dark {
    color: #c4c4c4 !important;
}
.nav-link-dark:hover {
    color: #ffffff !important;
}
.nav-link-dark.active {
    background: transparent !important;
}

.btn-next-dark {
    background: #333333;
    border: 1px solid #4d4d4d;
    color: #ffffff;
}
.btn-prev-dark {
    background: #333333;
    border: 1px solid #4d4d4d;
    color: #ffffff;
}

.nav-title-dark {
    color: #c4c4c4  !important;
}

.warning-v-dark {
    background: #3d3d3d !important;
}

.btn-footer-dark {
    /* background-color: #333333; */
    background-color: rgba(51, 51, 51, 0.7);
    color: #c4c4c4;
    border: 1px solid #3b3b3b;
}
.btn-footer-dark:hover {
    background-color: #3d3d3d;
    border: 1px solid #4d4d4d;
}

.lang-icon-dark {
    border: 1px solid #4d4d4d;
    background: #3d3d3d;
    color: #ffffff;
}

.menu-collapse-btn-dark {
    background: #3d3d3d;
}

.color-d-dark {
    color: #c4c4c4;
}

.search-input-dark {
    border: 1px solid #4d4d4d  !important;
    background-image: url(images/search-d.svg);
    background-color: #333333;
    color: #ffffff;
}
.search-input-dark:focus {
    background-color: #333333;
    color: #ffffff;
}
.search-input-dark::placeholder {
    color: #c4c4c4;
}
.search-result-dark {
    background: #3d3d3d;
}

.btn-result-close-dark {
    color: #c4c4c4; 
}

.table-dark {
    --bs-table-bg: #333333;
    --bs-table-color: #ffffff;
    --bs-table-border-color: #4d4d4d;
}

.extra-btn {
    border: 1px solid #f2f2f2;
    border-radius: 0.3rem;
    min-height: 36px;
    cursor: pointer;
    text-decoration: none;
    color: #8b8b8b;
    transition: all 0.2s;
    width: 36px;
    font-size: 1.05rem;
}
.extra-btn-dark {
    border: 1px solid #4d4d4d;
}

.extra-offcanvas-dark {
    background: #303030;
    color: #c4c4c4;
}

.extra-dropdown, .extra-dropdown:focus {
    border: 1px solid #f2f2f2 !important;
    background: #f2f2f2 !important;
    border-radius: 0.3rem;
    padding: 0px 12px;
    min-height: 36px;
    cursor: pointer;
    text-decoration: none;
    color: #333333 !important;
    transition: all 0.2s;
    /* width: 36px; */
}
.extra-dropdown i {
    color: #6b6b6b !important;
}
.extra-dropdown:hover, .extra-dropdown:hover i {
    color: #b12077 !important;
}
.extra-dropdown-dark, .extra-dropdown-dark:focus {
    border: 1px solid #4d4d4d !important;
    background: #3d3d3d !important;
    color: #ffffff !important;
}
.extra-dropdown-dark i {
    color: #c4c4c4 !important;
}

.extra-offcanvas-header {
    border-bottom: 1px solid #f2f2f2;
}
.extra-offcanvas-header-dark {
    border-bottom: 1px solid #3b3b3b;
}