:root {
    --text-opaque: #828282;
    --text-dim: #4f4f4f;
    --text-color: #000000;
    --accent-color: #56CCF2;
    --accent-light-color: #86C32A99;
    --accent-shadow-color: #86C32A99;
    --background-hover: hsla(0, 0%, 100%, 0.1);
    --home-color: #f1f1f1c;
    --flatbox-color: #23262a;
    --workspace-color: #171719;
    --menu-color: #202225;
    --panel-color: #f1f1f1;
    --title-color: #24262b;
    --component-border: #424549;
    --component-dim: hsla(0, 0%, 100%, 0.06);
    --component-shade: rgba(0, 0, 0, 0.1);
    --component-color: #34363c;
    --component-highlight: #424549;
    --slider-color: #494b50;
    --normal-opacity: 0.6;
    --hover-opacity: 1;
    --accent-negative: #51555a;
    --splitter-size: 8px;
    --splitter-small-size: 4px;
    --scrollbar-color: #ffffff;
    --scrollbar-color-hover: #ffffff30
}


body {
    color: var(--text-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100svh;
}

a {
    text-decoration: none;
}

/* features dropdown manu start  */
#feature-dropdown:hover .features-dropdown-menu {
    display: flex;
}

.features-dropdown-menu {
    display: none;
    left: 0;
    width: 95%;
    margin-left: 3%;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.18);
    transition: display 0.5s;
}

.features-dropdown-menu .icon {
    width: 10%;
}

.features-dropdown-menu .heading {
    width: 88%;
    /* margin-left: 8px; */
}

.features-dropdown-menu .row>* {
    margin-top: 0.5rem !important;
    /* padding-right: 0.25rem !important; */
    padding: 5px 11px;
    background: #f3f9f3;
    border-radius: 7px;
    margin: 5px 14px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 31%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 1260px) {
    .features-dropdown-menu .row>* {
        width: 45%;
    }
}

.features-dropdown-menu .row div:hover {
    background: #efefef;
}

.features-dropdown-menu .feature_link {
    color: var(--text-dim);
    text-decoration: none;
    width: 100%;
}

.features-dropdown-menu a:hover {
    /* text-decoration: underline; */
}

@media screen and (min-width:992px) {
    .features-dropdown-menu {
        position: fixed !important;
    }

    .features-dropdown-menu[data-bs-popper] {
        top: 50px !important;
    }

}

@media screen and (max-width:577px) {
    .features-dropdown-menu {
        width: 100%;
        margin-left: 0%;
        padding: 0;
    }

    .features-dropdown-menu .row>* {
        margin-top: 0.5rem !important;
        padding: 6px 3px;
        background: #f3f9f3;
        border-radius: 7px;
        margin: 5px 5px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
        width: 28%;
        display: flex;
        align-items: center;
    }

    #menu-features {
        max-height: 200px;
        overflow-y: scroll;
    }

    .features-dropdown-menu .icon {
        width: unset;
        display: flex;
        align-items: center;
        margin-right: 5px;
    }
}

@media screen and (max-width:450px) {
    .features-dropdown-menu .row>* {
        width: 46%;
    }

    #menu-features {
        max-height: 200px;
        overflow-y: scroll;
    }
}

/* features dropdown manu end  */


