@layer base {
    :root {
        --color-originalsix: #799FFEFF;

        --color-originaldarkbg: #1e2531;
        --color-originaldarktext: #bfbfc0;
        --color-originaldarkborder: #393e48;
    }



    body {
        font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #777;
        line-height: 26px !important;
        letter-spacing: 0.02rem;
    }

    ::-moz-selection {
        color: var(--color-originalsix);
        background: rgba(237, 90, 49, 0.15);
    }

    ::selection {
        color: var(--color-originalsix);
        background: rgba(237, 90, 49, 0.15);
    }


    .font-Roboto {
        font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .font-Garamond {
        font-family: 'EB Garamond', serif;
    }

    .wordspac_15 {
        word-spacing: 15px;
    }

    p, li, a {
        margin-bottom: 0;
        font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 15px;
        color: #777;
        font-weight: 300;
        line-height: 26px;
        letter-spacing: 0.03rem;
    }

    h1, h2, h3,
    h4, h5, h6 {
        font-family: 'EB Garamond', serif;
        color: #fff;
        margin-bottom: 0;
        letter-spacing: 0.03rem;
    }

    /* Responsive */
    @media screen and (max-width: 767px) {
        .wordspac_15 {
            word-spacing: 5px;
        }
    }
    @media screen and (max-width: 480px) {
        .py-side-border {
            display: none;
        }
    }


    input[type="date"]::-webkit-calendar-picker-indicator {
        filter: invert(1) brightness(0.7);
    }
}


/* Header */
ul.navbar-nav li.nav-item a.dropdown-toggle:after {
    display: none;
}

ul.navbar-nav li.nav-item a.nav-link:hover {
    color: var(--color-originalsix);
}

ul.navbar-nav li.nav-item a.nav-link:hover::before {
    background: var(--color-originalsix);
    width: 100%;
}

ul.navbar-nav li.nav-item a.nav-link::before {
    content: "";
    position: absolute;
    top: auto;
    top: -5px;
    height: 2px;
    width: 0;
    background: var(--color-originalsix);
    left: 0;
    right: auto;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin: 0 auto;
}
ul.navbar-nav .dropdown .dropdown-menu {
    position: absolute;
    left: auto !important;
    top:28px;
}
ul.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 9px !important;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    border: 0;
}
.dropdown-menu {
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
}

.header-fixed {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(8px);
}

.dark .header-fixed {
    background-color: rgba(24, 29, 39, 0.9) !important;
}




/* Custom select */
.select {
    width: 100%;
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
}

.custom-select {
    color: #777;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-size: 14px;
}
.custom-select .custom-select {
    position: relative;
}
.custom-select .custom-select:after {
    content: "\ea4e";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 12px;
    font-size: 17px;
    font-family: "remixicon";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.custom-select .custom-select:active,
.custom-select .custom-select .active {
    background-color: #fff;
    color: #9e9e9e;
}
.custom-select:focus {
    outline: 2px;
}

.select-options {
    min-width: 150px;
    max-height: 200px;
    margin: 3px 0 0 0;
    padding: 5px !important;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    list-style: none;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.07);
}
.select-options li {
    margin: 0;
    padding: 5px 5px 5px 10px !important;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    border-radius: 5px;
    font-size: 14px;
    color: #777;
}
.select-options li:hover {
    background: rgba(235, 88, 54, 0.1);
}
.select-options li[rel=hide] {
    display: none;
}
.select-options::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
    border-radius: 0 0 5px 0;
}
.select-options::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #9e9e9e;
}



/*ROOM*/
.lh-room button {
    padding: 0 12px;
    font-family: 'EB Garamond', serif;
}



.lh-mobile-menu.is-open {
    left: 0;
}

.text-editor-content h1 {
    font-size: 1.2rem;
    color: #000;
}

.text-editor-content blockquote {
    padding-block: 15px;
    padding-inline: 2rem;
    border-top:1px solid #e3e1e1;
    border-bottom:1px solid #e3e1e1;
}


.dark {
    .text-editor-content blockquote {
        border-color: #393e48;
    }
    .text-editor-content h1 {
        color: #fff;
    }
}

.text-editor-content a {
    color: var(--color-originalsix);
}


.text-editor-content ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.text-editor-content ul {
    list-style-type: disc;
    list-style-position: inside;
}

.dark .text-editor-content li {
    color: var(--color-originaldarktext);
}

.text-editor-content li {
    line-height: 2rem;
}

.text-editor-content li::marker {
    color: var(--color-originalsix);
    font-weight: bolder;
}


/*ANIMATIONS*/


@keyframes shake {
    0%,100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

