/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.titles{
    font-size:22px;
    font-family: "Poppins", sans-serif;
    color:#4070f4;
}

:root {
    --white-color: #fff;
    --blue-color: #4070f4;
    --grey-color: #707070;
    --grey-color-light: #aaa;
}
.content {
    padding: 20px;
}
body {
    background-color: #e7f2fd;
    transition: all 0.5s ease;
}
body.dark {
    background-color: #333;
}
body.dark {
    --white-color: #333;
    --blue-color: #fff;
    --grey-color: #f2f2f2;
    --grey-color-light: #aaa;
}



.navbar img {
    width: 35px;
    height: 35px;

}
.search_bar {
    height: 47px;
    max-width: 430px;
    width: 100%;
}
.search_bar input {
    height: 100%;
    width: 100%;
    border-radius: 25px;
    font-size: 18px;
    outline: none;
    background-color: var(--white-color);
    color: var(--grey-color);
    border: 1px solid var(--grey-color-light);
    padding: 0 20px;
}


/* sidebar */
.sidebar {
    background-color: var(--white-color);
    width: 260px;
    position: fixed;
    top: 60px;
    left: 0;
    height: 100%;
    padding: 20px 20px;
    z-index: 100;
    overflow-y: scroll;
    box-shadow: 0 0 1px var(--grey-color-light);
    transition: all 0.5s ease;
}
.sidebar.close {
    padding: 60px 0;
/*    width: 80px;*/
}
.sidebar::-webkit-scrollbar {
    display: none;
}
.menu_content {
    position: relative;
}
.menu_title {
    margin: 15px 0;
    padding: 0 20px;
    font-size: 18px;
    text-decoration: unset;
}
.sidebar.close .menu_title {
    padding: 6px 30px;
}
.menu_title::before {
    color: var(--grey-color);
    white-space: nowrap;
}
a{
    text-decoration: unset;
}
.menu_dahsboard::before {
    content: "Test İşlemleri";
}
.menu_application::before {
    content: "Başvuru İşlemleri";
}
.menu_profile::before {
    content: "Profil İşlemleri";
}
.menu_test::before {
    content: "Test İşlemleri";
}

.menu_editor::before {
    content: "Aday İşlemleri";
}
.menu_setting::before {
    content: "Yönetim";
}
.sidebar.close .menu_title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 18px;
    border-radius: 12px;
    background: var(--grey-color-light);
}
.menu_items {
    padding: 0;
    list-style: none;
}
.navlink_icon {
    position: relative;
    font-size: 22px;
    min-width: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
}
.navlink_icon::before {
    content: "";
    position: absolute;
    height: 100%;
    width: calc(100% + 100px);
    left: -20px;
}
.navlink_icon:hover {
    background: var(--blue-color);
}
.sidebar .nav_link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--grey-color);
    white-space: nowrap;
}
/*
.sidebar.close .navlink {
    display: none;
}
*/
.nav_link:hover {
    color: var(--white-color);
    background: var(--blue-color);
}
.sidebar.close .nav_link:hover {
    background: var(--white-color);
}
.submenu_item {
    cursor: pointer;
}
.submenu {
    display: none;
}
.submenu_item .arrow-left {
    position: absolute;
    right: 10px;
    display: inline-block;
    margin-right: auto;
}
/*
.sidebar.close .submenu {
    display: none;
}
    */
.show_submenu ~ .submenu {
    display: block;
}
.show_submenu .arrow-left {
    transform: rotate(90deg);
}
.submenu .sublink {
    padding: 15px 15px 15px 52px;
}
.bottom_content {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 260px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.bottom {
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    justify-content: space-around;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    color: var(--grey-color);
    border-top: 1px solid var(--grey-color-light);
    background-color: var(--white-color);
}
.bottom i {
    font-size: 20px;
}
.bottom span {
    font-size: 18px;
}
.sidebar.close .bottom_content {
    width: 50px;
    left: 15px;
}
.sidebar.close .bottom span {
    display: none;
}
.sidebar.hoverable .collapse_sidebar {
    display: none;
}
#sidebarOpen {
    display: none;
}
@media screen and (max-width: 768px) {
    #sidebarOpen {
        font-size: 25px;
        display: block;
        margin-right: 2px;
        cursor: pointer;
        color: var(--grey-color);
    }
    .sidebar.close {
        left: -100%;
    }
    .search_bar {
        display: none;
    }
    .sidebar.close .bottom_content {
        left: -100%;
    }
    .mobilgizle{
        display:none !important;
    }
    .navbar_content {
        display: flex;
        align-items: center;
        column-gap: 10px;
        margin-right: 30px;
    }
    .navbar_content i {
        cursor: pointer;
        font-size: 20px;
        color: var(--grey-color);

    }
    .logo_item {
        display: flex;
        align-items: center;
        column-gap: 2px;
        font-size: 14px;
        font-weight: 500;
        color: var(--blue-color);
        margin-left: 1rem;
        --bs-navbar-toggler-padding-x: 0.1rem !important;
    }   

}
@media screen and (min-width: 769px) {
    .content {
        margin-left: 260px !important;
    }
    .logo_item {
        display: flex;
        align-items: center;
        column-gap: 15px;
        font-size: 22px;
        font-weight: 500;
        color: var(--blue-color);
        margin-left: 1rem;
    }
    .navbar_content {
        display: flex;
        align-items: center;
        column-gap: 25px;
        margin-right: 30px;
    }
    .navbar_content i {
        cursor: pointer;
        font-size: 20px;
        color: var(--grey-color);

    }   
   

}

