.line-vertical{
    margin: 0 12px;
}

.sidebar-container{
    display: flex;
    flex-direction: column;

    padding: 7px 0px;

    width: 21%;

}

.sidebar{
    display: flex;
    padding: 2px 0 0 0;

    height: 80vh;
    width: 100%;
}   

#fixed-bar-hidden{
    width: 52px;
    position: static;
}

.fixed-bar{
   /*  position: fixed; */

    display: flex;
    flex-direction: column;

    height: 80vh;

    gap: 20px;

    border: solid 1px #dfe0e4;
    border-radius: 0 10px 10px 0;

  /*   box-shadow: 0 0 5px 4px #dadada88;   */
    background-color: #f0f1f5;
}

.fixed-bar button{
    padding: 5px 7px 5px 5px;
    background-color: transparent;

    border: none;
    align-items: center;
    justify-content: center;
}

.fixed-bar span{
    padding: 7px;
    border: none;
    border-radius: 10px;
}

.fixed-bar-btn-active{
    color: rgba(65,52,255,1);
    background-color: white;
    box-shadow: 0 0 5px 4px #dadada88;  
}

.search-btn{
    margin: 12px 0;
    padding: 7px 13px 7px 12px;

    background-color: white;
    box-shadow: 0 0 5px 4px #dadada88;  
    
    border: none;
    border-radius: 0 5px 5px 0;

}

.expand-bar{
    display: none;
    background-color: white;
    border-radius: 10px;

    padding: 0;

    width: 100%;

}

.title-row{
    display: flex;
    padding: 0;

    justify-content: space-between;
    align-items: center;

    margin: 5px 0 13px 5px;
}

#close-btn{
    border: 0;
    border-radius: 3px;

    padding: 4px;

    font-size: 22px;

    cursor: pointer;
}


#close-btn:hover{
    background-color: #dbdbdb4d;
}

#font-expand-title{
    padding: 0 15px;
}

.expand-bar-title{
    font-weight: bold;
    color: rgb(34, 34, 34);
    margin: 0;
}

    /* text color picker */

    .text-color-expand{
        width: 100%;

        padding: 10px 15px;
    }

    .preset-color-div{ 

        padding: 0px 0;
        width: 100%;

        border: solid 0px rgb(209, 209, 209);
        border-radius: 0px 5px 5px 0px;

        background-color: transparent;
        backdrop-filter: blur(90%);
    }


    .preset-color-row{
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
    }

    .preset-color-div button{
        border: solid 1px rgb(212, 212, 212);
        border-radius: 100px;
        padding: 22px;

        cursor: pointer;
    }

    #color-picker-row{
        position: relative;
        margin: 0 0 18px 0;
    }

    #color-picker{
        position: absolute;
        bottom: 0;

        border: 0;

        padding: 0px;
        width: 1px;
        height: 1px;

        cursor: pointer; 
    }



    /* favorite color */

    #favorite-color-row{
        position: relative;
    }

    #favorite-color-btn{
        padding: 10px;
    }
    
    #favorite-color-picker{
        padding: 0;
        background-color: #fafafa;

        position: absolute;
        bottom: 0;

        border: 0;

        width: 1px;
        height: 1px;
    }

    #favorite-color-icon{
        color: #a7a7a7;
    }


    /* text font styles */

    #text-font-expand{
        display: none;

        flex-direction: column ;
        padding: 10px 0;
        width: 100%;

        /* border: solid 1px rgb(209, 209, 209); */
        border-radius: 0px 5px 5px 0px;

        background-color: transparent;
        backdrop-filter: blur(90%);

    }

    .font-select-container{
        overflow: hidden;
    }

    .font-select{
        width: 100%;
    }

    .font-select option{
        padding: 9px 10px 9px 20px;
        font: 20px;

        cursor: pointer;

    }

    .font-select option:hover{
        background-color: #dbdbdb4d;
    }

    #text-font-icon {
        border-radius: 10px;
    }

    .fonts-title-expand{
        margin-left: 19px;
    }
    

