/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Lora', 'inter';
    list-style: none;
}

:root{
    --bg-color : #FFFFFF;
    --bg-active : #77121A;

    /*#00DF71;*/
    --text-color-green-900 :#77121A;
    /*#008744;*/
    --text-color-yellow-900: #FFA500;
    --text-color-yellow-300 : #F2CD02;
    --text-color-yellow-100 : #FFF6C6;

   --text-color-yellow-200: #FFF3D4;

    --text-color : #F9F9F9;
    --text-color-black : #000;
    /* #94A3B8; */
    --text-color-red : #F60A0A;
   --text-color-red-100: #D63321;

    --text-color-red-50 : #FFE1DE;

    --text-color-green-100 : #D5FFCA;

    --text-color-green-800 :#009B07;

    --text-color-green-1000 : #24B200;


    --text-color-red-opacity : #F6ABAB;
    --text-color-gray : #B4B4B4;
   --text-color-grey-100:  #D9D9D9;
    --text-color-grey-1000 : #555555;


    --text-color-blue-700 :  #0085FF;

    --text-color-kept: #00BB03;
    --text-color-broken: #E20102;
    --text-color-stalled : #FAE916;
    /*--text-color-compromised : #11DF01;*/
    /*!*#E1E602*!*/
    /*!*#EF3A03;*!*/
    --text-color-not-yet-rated : #D9D9D9;



}
a {
    text-decoration: none;
    color: inherit;
}

a:visited,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}


html{
    font-size: 62.5%;
    overflow-x: hidden;
}


.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height :100%;
    width: 300px;
    background: #fff;
    border-right: 1px solid #eee;
    transition: .3s ease;
    overflow-x: hidden;
}

.sidebar.hide{
    width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}




.hide-active{
    background: transparent;
}


.hide-icon {
    display: flex;
    align-items: center;
    justify-content: center;

}

.hide-menu-text{
    display:none;
}

.hidden{
    display: none;
}
.show{
    display: block;
}


.sidebar .menu {
    font-size: 1.4rem
}

.sidebar_top{
    display : flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}

.sidebar_top .logo{
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}
.logo img:nth-child(1){
    margin-right: 1.2rem;
    width: 1.5vw;
}

.mobiLogoImgWidth{
    width: 5.5vw;
}

.mobile_logo{
    width: 170px;
}
.sidebar .menu{
    width: 100%;
    height: calc(100% - 15%);
    margin-top:4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;


}
.sidebar .menu_item{
    height: 2rem;
    background: #fff;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    margin-bottom: 1.2rem;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
/*li*/
.sidebar .menu_item  a{
    width: 100%;
    height: 100%;
    color:var(--text-color);
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
    background: transparent;

}

.sidebar .menu_item  i {
    margin-right: 1rem;

}




.sidebar .menu_top a.active{
    background: var(--bg-active);
    color: var(--bg-color);
    position: relative;
    border-radius: 1.6rem;

}

/**
.sidebar li.active::before{
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-active);
  top: -40px;
  right: 0;
  z-index: -1;
}
  **/


.sidebar .menu_top a:hover{
    background: var(--bg-active);
    color: var(--bg-color);
    border-radius: 1.6rem;
}


.sidebar .menu_down li.logout{
    color: var(--text-color-red);
}

.sidebar .menu_down li.logout:hover{
    color: var(--bg-color);
    background-color: var(--text-color-red);
    border-radius: 1.6rem;
}

/** Content **/
.content {
    position: relative;
    width: calc(100% -  300px);
    left: 300px;
    transition: .3s ease;
}

.sidebar.hide ~ #content{
    width: calc(100% - 80px);
    left: 80px;

}

/** End contnet **/

/** Content Navigation **/

.content nav{
    height: 7rem;
    background: var(--bg-color);
    border-bottom: 1px solid #eee;
    padding: 0 4rem;

}

.content .top_navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content .nav_content{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.content .profile_section{
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
}
.content .notification_box{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.content .notification_box button{
    margin-right: 2rem;
    background: var(--bg-active);
    padding: 1.3rem;
    color: var( --bg-color );
/*var(--text-color-black);*/
    border-radius: 1.1rem;
}

.notification_box  .flag{
    display: flex;
    align-items: center;

}

.notification_box  .flag_box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: var(--text-color-red-opacity);
    padding: 1.2rem;
    border-radius: 50%;
    margin-right: 1.3rem;

}
.notification_box .notification_bell{
    display: flex;
    justify-content: center;
    align-items: center;

    margin-left: 2rem;
    background: var(--bg-active);
    padding: 1.3rem;
    color: var(--text-color-black);
    border-radius: .6rem;
    position: relative;
}

.notification_box .notification_bell span{
    position: absolute;
    left: 2.5rem;
    bottom: 2rem;
    background: var(--text-color-red);
    color: var(--bg-color);
    padding: .2rem;
    width: 25px !important;
    height: 25px;
    border-radius: 50%;
    font-size: .7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification_box .notification_bell i {
    color:#fff;
    font-size: 1.2rem;
}

.content .search_box {
    padding:1.7rem;
    background: var(--text-color);
    border-radius: 1.4rem;
    width: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile_section .profile_image{
    display: flex;
    justify-content: center;
    align-items: center;

}

.profile_section .profile_image img{
    margin-right: 2.5rem;

}


.profile_section .profile_image  .profile_name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile_section .profile_image h3{
    font-size: 1.4rem;

}



.content .search_box i{
    margin-right: 1rem;
    font-size: 2rem;
}

.content .search_box input {
    outline: 0;
    background: var(--text-color);
    width: 100%;

}




@media screen and (max-width : 768px){
    #content {
        width: calc(100% -  80px);
    }


}


