
@font-face {
    font-family: monsterat_regular;
    src: url(./../dependencies/fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: monsterat_bold;
    src: url(./../dependencies/fonts/Montserrat-Bold.ttf);
}

body{
    font-family: monsterat_regular;
}
@media only screen and (min-width: 980px) {
    main{
        margin-left: 300px;
    }
}
.sidenav-trigger {
    position: absolute;
    top: 10px;
    left: 5px;
}
.sidenav-trigger i {
    font-size: 30px;
}

.user-view{
    margin-bottom: 0 !important;
}

.background{
    background: #303952;
}

.photo_box{
    cursor: auto;
    position: relative;
    display: flex;
    align-items: center;
    outline: none;
    user-select: none;
}
.photo_box img{
    object-fit: cover;
}
.photo_icon{
    opacity: 0;
    position: absolute;
    top: 0;
    outline: none;
    user-select: none;
}

.photo_icon label{
    outline: none;
    user-select: none;
    cursor: pointer;
    position: absolute;
    top: 17px;
    left: 17px;
    font-size: 30px;
    color: white;
}

.photo_icon:hover{
    background-color: #aeb5b95e;
    opacity: 1;
}

.input_photo{
    position: absolute;
    display: none;
}

.box_notifications{
    position: absolute;
    display: inline-block;
    top: 15px;
    right: 15px;
}

.notifications_icon{
    margin-left: 5px;
    outline: none;
    user-select: none;
    cursor: pointer;
    font-size: 30px;
    color: white;
}

.badge_notifications{
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;

    display: none;
}

.list_notifications{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    height: 30vh;
    overflow-y: auto;
}
.list_notifications li.visualized{
    opacity: 0.5;
    cursor: default;
}
.list_notifications li{
    padding: 0px 15px;
    cursor: pointer;
}
.list_notifications li:not(.visualized):hover{
    background-color: #80808080;
}