.sidebar-main-container {
    background-color: rgba(255, 255, 255);
    width: 290px;
    height: 100%;
    min-height: 640px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5;
    overflow-y: scroll;
    overflow: scroll;
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); */
    /* transform: translateX(290px) */
}

.sidebar-logo {
    width: 70%;
    position: relative;
    margin-top: 25px;
    margin-bottom: 40px;
    margin-right: 15%;
    margin-left: 15%;
    cursor: pointer;
}

.sidebar-item-container {
    color: #707070;
    display: flex;
    width: fit-content;
    position: relative;
    padding: 12px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    float: right;
    margin-right: 12%;
    display: flex;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.sidebar-item-container:hover {
    color: #98e8e2 !important;
}

.sidebar-item-active {
    background-color: #98e8e2;
    color: #ffffff !important;
    margin-right: 12%;
    -webkit-box-shadow: 0px 3px 20px 0px rgba(152, 232, 226, 0.76);
    -moz-box-shadow: 0px 3px 20px 0px rgba(152, 232, 226, 0.76);
    box-shadow: 0px 3px 20px 0px rgba(152, 232, 226, 0.76);
}

.sidebar-item-icon {
    margin-left: 10px;
}

.sidebar-item-title {
    font-family: "Tajawal", sans-serif !important;
    font-size: 16px;
    margin-top: 4px;
    height: 20px;
}

.copyright {
    display: inline-block;
    font-family: "Tajawal", sans-serif;
    color: #b9b9b9;
    font-size: 12px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    text-align: center;
    bottom: 24px;
    right: 0px;
}

.overlay {
    display: none;
}


.sidebar-subitem-container {
    color: #707070;
    display: flex;
    width: 88%;
    position: relative;
    padding: 12px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 12px;
    float: right;
    margin-top: -30px;
    margin-right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    text-decoration: none;
    display: none;

}


.sidebar-subitem-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    color: #979696;
    transition: 300ms;
    margin-bottom: 3px;
    text-decoration: none;


}

.sidebar-subitem-title div:first-child {
    font-family: "Tajawal", sans-serif;
    font-size: 14px;
    /* margin-top: 22px;
    height: 20px; */
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
}

.sidebar-subitem-title div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* font-size: 30px !important; */
}

.dropdwonArrow {
    margin-right: 10px;
}

.dropdwonArrow svg {
    transform: rotate(0deg);
}

.dropdwonArrowOpen svg {
    transition: 0.3s;

    transform: rotate(-90deg);
}



/* .sidebar-subitem-title div:nth-child(2) svg {
    height: 20px;
    width: 20px;
} */

.sidebar-subitem-title:hover {
    color: #98e8e2;
}

.visit_count_sidebar {
    bottom: 70px;
    font-size: 20px;
    color: rgb(97, 97, 97);
}

.show-change-university-card{
    animation: FadeIn 100ms linear forwards;
}

.hide-change-university-card{
    animation: FadeOut 100ms linear forwards !important;
}

.button-container{
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1400px) {
    .sidebar-main-container {
        transform: translateX(290px);
        transition: 0.3s;
        z-index: 6;
    }

    .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 3;
        background-color: rgb(0, 0, 0);
        opacity: 0;
        transition: 0.3s;
        position: fixed;
    }

    .sidebar-logo {
        margin-bottom: 20px;
    }

    .copyright {
        bottom: 24px;
        right: 0px;
    }

    .visit_count_sidebar {
        display: none;
    }
}


