/* ---------------------------------------- Docs Base Template ---------------------------------------- */

/* --------------- Header --------------- */
.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    position: relative;

    height: 75px;
    width: calc(100% - 10px);

    margin: 0;
    padding:  0 4px;

    box-shadow: 0 0 10px -2px gray;
    /* background-color: white; */
    background-color: #F8FAFC;
}
.header .logoBin{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    padding: 0;
    
    width: 250px;
    height: 75px;
}
.header .logo{
    max-width: 150px;
    max-height: 50px;
    border-radius: 5px;
}
.header .center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    position: absolute;
    left: 250px;
    padding: 0 5px;
    margin: 0;
    width: calc(100vw - 250px - 200px);
    max-width: 600px;
    /* height: 100%; */
    /* border: 1px solid blue; */
}
.header .center .greeting{
    font-size: 14px;
    margin-bottom: 5px;
}
.header .right{
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 20px;

    position: absolute;
    right: 0;
    width: fit-content;
    height: 75px;

    margin-right: 40px;
    /* margin: 0; */

    /* border: 1px solid red; */
}
.header-icon{
    max-width: 25px;
    max-height: 25px;

    padding: 10px;
    /* margin-right: 20px; */

    border-radius: 50%;

    transition: 0.3s ease-in-out;
}
.header-icon:hover{
    cursor: pointer;
    background-color: #ececec;
}
.header-icon.active{
    background-color: #ebebeb;
}
.header .link{
    font-size: 15px;
    text-decoration: none;
    color: var(--primary);
}
.header .btn{
    font-size: 15px;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    margin: 0;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
}

#hamburger_menu{
    display: none;
}

/* ----- Mobile Menu ----- */
.mobile-menu{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 990;
    width: calc(100%);
    height: calc(100vh - 20px);
    padding: 10px 0;
    background-color: white;
}
.mobile-menu .close-menu{
    display: none;
    font-size: 28px;
    text-align: right;
    width: calc(100% - 40px);
    padding: 0 20px;
    margin: 0;
}
.mobile-menu-list{
    display: none;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    /* border-top: 2px solid black; */
    border-bottom: 2px solid black;
}
.mobile-menu-list .list-item{
    text-align: center;
    padding: 0;
    margin: 0px;
    width: 100%;
    /* border-bottom: 1px solid var(--primary); */
}
.mobile-menu-list .list-title{
    text-align: center;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: black;
    width: 100%;
    padding: 20px 0;
    margin: 0;
}
.mobile-menu-list .nav-link{
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    color: var(--primary);
    border-top: 1px solid var(--primary);

}

/* --------------- Sidebar menu --------------- */
.sidebarMenu{
    display: flex;
    flex-direction: column;
    position: relative;

    overflow-y: scroll;

    width: calc(250px - 1px);
    height: calc(100vh - 75px);

    padding: 0;
    margin: 0;

    background-color: #F8FAFC;
    border-right: 1px solid lightgray;
    box-shadow: 0 0 10px -2px gray;
}
.sidebarMenu::-webkit-scrollbar{
    width: 6px;
    background-color: rgba(0, 0, 0, 0);
}
.sidebarMenu::-webkit-scrollbar-thumb{
    background-color: var(--primary);
    border-radius: 10px;
}
.sidebarMenu .content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: calc(100% - 20px);
    padding: 10px;
}
.sidebarMenu .navlist{
    width: 100%;
    padding: 0;
    margin: 0;
}
.sidebarMenu .navlist.hrMain{
    margin: 8px 0;
}
.sidebarMenu .navlist .title{
    font-size: 17px;
    text-align: left;
    width: 100%;
    margin: 20px 0 5px;
    color: gray;
}
.sidebarMenu .navlist .item{
    display: flex;
    align-items: center;

    font-size: 14px;
    text-decoration: none;
    font-family: 'IBM Plex Sans Regular';

    width: calc(100% - 20px - 1px);
    height: fit-content;
    
    padding: 6px 10px;
    margin: 0;

    color: black;

    border: 1px solid transparent;
    border-radius: 0 20px 20px 0;
}
.sidebarMenu .navlist .item:hover{
    cursor: pointer;
    border: 1px solid whitesmoke;
    background-color: rgb(214, 234, 247);

}
.sidebarMenu .navlist .item.pressed{
    background-color: whitesmoke;
    width: calc(100% - 20px - 4px);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}
.sidebarMenu .navlist .item .icon{
    width: 1rem;
    height: 1rem;
    margin-right: 10px;
}
.sidebarMenu .bottomBin{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    padding: 20px;
    margin-top: auto;
}
.sidebarMenu .bottomBin .link{
    font-size: 14px;
    text-decoration: none;
    color: gray;
    margin-bottom: 5px;
}
.sidebarMenu .bottomBin .logo{
    max-width: 50px;
    max-height: 50px;
    margin-top: 10px;
}


/* --------------- Containers --------------- */
.docsContainer{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    position: absolute;
    top: 75px;
    left: 250px;

    overflow-y: scroll;

    width: calc(100% - 250px);
    height: calc(100vh - 75px);

    /* background-color: #F8FAFC; */
    background-color: white;
}
.docsContainer .content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: calc(100% - 100px);
    padding: 100px 50px;
}
.docsContainer .content .bin{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100%);
    padding: 0;
    margin-bottom: 40px;
}
.docsContainer .content .horizontal-bin{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    width: calc(100%);
    padding: 0;
    margin-bottom: 40px;
}

/* --------------- Buttons --------------- */
.docs-cta{
    font-size: 14px;
    text-decoration: none;
    font-family: 'IBM Plex Sans Regular';

    width: fit-content;

    padding: 10px 25px;
    margin: 5px 0;

    color: white;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 5px;

    transition: 0.2s ease-in-out;
}
.docs-cta:hover{
    cursor: pointer;
    background-color: var(--primary_dark);
    border: 2px solid var(--primary_dark);
}

.docs-cta-green{
    font-size: 14px;
    text-decoration: none;
    font-family: 'IBM Plex Sans Regular';

    width: fit-content;

    padding: 10px 25px;
    margin: 5px 0;

    color: white;
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 5px;

    transition: 0.2s ease-in-out;
}
.docs-cta-green:hover{
    cursor: pointer;
    background-color: var(--secondary_dark);
    border: 2px solid var(--secondary_dark);
}

.docs-cta-inverse{
    font-size: 14px;
    text-decoration: none;
    font-family: 'IBM Plex Sans Regular';

    width: fit-content;

    padding: 10px 25px;
    margin: 5px 0;

    color: var(--primary);
    background-color: white;
    border: 2px solid var(--primary);
    border-radius: 5px;

    transition: 0.2s ease-in-out;
}
.docs-cta-inverse:hover{
    cursor: pointer;
    color: var(--primary_dark);
    border: 2px solid var(--primary_dark);
}

.docs-cta-red{
    font-size: 14px;
    text-decoration: none;
    font-family: 'IBM Plex Sans Regular';

    width: fit-content;

    padding: 10px 25px;
    margin: 5px 0;

    color: white;
    background-color: red;
    border: 2px solid red;
    border-radius: 5px;

    transition: 0.2s ease-in-out;
}
.docs-cta-red:hover{
    cursor: pointer;
    background-color: darkred;
    border: 2px solid darkred;
}


/* --------------- Footer --------------- */

.footer{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 0 10px;
    border-top: 1px solid var(--primary);
}
.footer .content-bin{
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}
.footer .content-bin .half{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 50%;
}
.footer .content-bin .logo{
    max-width: 100px;
    max-height: 100px;

}
.footer .content-bin .links-list{
    display: flex;
    flex-direction: column;
    padding: 0;
}
.footer .content-bin .link{
    text-decoration: none;
    font-size: 15px;
    color: gray;
    transition: 0.2s ease-in-out;
    margin-bottom: 5px;
}
.footer .content-bin .link:hover{
    cursor: pointer;
    color: black;
}
.footer .disclaimer{
    font-size: 15px;
    color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


@media screen and (max-width: 1000px){

    .header{
        gap: 10px;
    }
    .header .logoBin{
        width: 75px;
        height: 75px;
    }
    .header .logo{
        max-width: 35px;
        max-height: 35px;
        border-radius: 5px;
    }
    .header .center{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        left: 75px;
        width: calc(100% - 75px - 20px);
        max-width: calc(100% - 75px - 20px);
        /* height: 100%; */
        /* border: 1px solid blue; */
    }
    .header .right{
        display: none;
    }
    .header-icon{
        max-width: 30px;
        max-height: 30px;
        padding: 10px;
    }
    .header-icon:hover{
        cursor: pointer;
        background-color: #ececec;
    }
    .header-icon.active{
        background-color: #ebebeb;
    }

    #hamburger_menu{
        display: inline;
    }

    .sidebarMenu{
        width: 0px;
        transition: 0.4s ease-in-out;
    }
    .sidebarMenu .content{
        display: none;
    }


    .docsContainer{
        position: absolute;
        left: 0px;
        width: calc(100%);
    }
    .docsContainer .content{
        width: calc(100% - 40px);
        padding: 50px 20px;
    }


    .footer .content-bin .half.left{
        width: 100px;
    }
    .footer .content-bin .half.right{
        width: calc(100% - 100px);
    }
    .footer .content-bin .logo{
        max-width: 75px;
        max-height: 75px;
    }


}
