@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* UI */
html{
    scroll-behavior: smooth;
}

body{
    background-image: url(svg/fondopag.png);
    background-size: contain;
}


.logincont{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(45,47,49);
    background: linear-gradient(360deg, rgba(98, 99, 100, 0.113) 0%, rgba(74,76,79,0.12648809523809523) 20%, rgba(255,255,255,0) 100%);

}

.loginrow{
    background: rgba(255, 255, 255, 0.263);
    padding: 5%;
    border-radius: 4px;
    border-bottom: 5px #004a95 solid;
    box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 1%);
}

.userInfo{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    cursor: pointer;
    align-items: center;
}

.userCircle{
    height: 50px;
    padding: 5px;
}

.userdropdown{
    opacity: 0;
    scale: 0;
    box-shadow: 3px 5px 6px 0px #2d2f314a;
    color: white;
    width: 350px;
    height: 55px;
    position: fixed;
    right: 5px;
    top: 50px;
    background-color: #2d2f31;
    z-index: 4;
}

.dropdown_icon:hover{
    background-color: #4a4c4f;

}

.userInfo:hover .userdropdown{
    opacity: 1;
    scale: 1;
    background-color:  #016bd4;
    transform: translateY(0%);
    transition: 0.1s;
    top: 50px;
}

.topbar{
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    font-family: 'Roboto';
    background-color: #004a95;
    color: white;
    user-select: none;
    box-sizing: border-box;
}

.sidebar{
    cursor: pointer;
    color: #2d2f31;
    font-size: 0rem;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    background-color: #004a95;
    height: 100dvh;
    width: 50px;
    z-index: 3;
    transition: 0.2s;
}

.sidebar:hover{
    font-size: 1rem;
    color: #ffffff;
    width: 250px;
    transition: 0.1s;
}

.sidebar_cont{
    left: 1%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar_item{
    cursor: pointer;
    user-select: none;
    display: flex;  
    height: 50px;
    width: 100%;
    font-size: 1.5rem;
    overflow: hidden;
    font-weight: 400;
    align-items: center;
}

.sidebar_item:hover{
    background-color: #016bd4;
}

.sidebar:hover .sidebar_text{
    position: fixed;
    
    font-size: 1rem;

}

.sidebar_text{   
    font-size: 0rem;
    width: 100%;  
    margin-left: 50px;
}

.sidebar_icon{  
    width: 50px;
    padding: 10px;
    box-sizing: border-box;
}

.selected{
    border-left: 3px solid #ffffff;    
}


.mobile_sidebar > img{
    position: absolute;
    top: 0;
    right: 5%;
    width: 3rem;
    z-index: 10;
    position: fixed;
}



.userInfo{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    cursor: pointer;
    align-items: center;
  
}

.userCircle{
    height: 50px;
    padding: 5px;
    box-sizing: border-box;
}

.userdropdown{
    opacity: 0;
    scale: 0;
    box-shadow: 3px 5px 6px 0px #2d2f314a;
    color: white;
    width: 350px;
    height: 55px;
    position: fixed;
    right: 5px;
    top: 50px;
    background-color: #016bd4;
    z-index: 4;
}

.dropdown_icon:hover{
    background-color: #016bd4;

}

.userInfo:hover .userdropdown{
    opacity: 1;
    scale: 1;
    background-color:  #2d2f31;
    transform: translateY(0%);
    transition: 0.1s;
    top: 50px;
}


.board{    
    margin-top: 10vh;      
    margin-bottom: 2rem;
    animation: fade_up 0.1s ease-in-out ;
}

@keyframes fade_up {
    0% {
      transform: translateY(10%);
      opacity: 0;
    }
    100% {
      transform:  translateY(0%);
      opacity: 1;
    }
  }

.board_title_row{
    position: relative;
}

.board_title{
    font-size: 1.5rem;
    color: #004a95;
}

.board_close{
    position: absolute;
    top: -10%;
    right: 2%;
    font-size: 2rem;
    transform: rotate(45deg);
    cursor: pointer;
    user-select: none;
}



.submitbutton{
    background-color: #004a95;
    color: white;
    padding: 2%;
    height: 100%;
    width: 100%;
    min-height: 3rem;
    border-radius: 3px;
    font-family: 'Roboto';
}
.submitbutton:hover{
    background-color: #016bd4;
    scale: 1.02;
}

.rowbuttons{
    display: flex;
}

.iconbutton {
    display: flex;
    background-color: #e6e6e6;
    border-radius: 5px;
    text-align: center;
    padding: 1%;
    border: 1px solid rgb(160, 160, 160);
    margin-right: 10px;
    cursor: pointer;
    user-select: none;
    overflow-wrap: anywhere;
    align-items: center;
}

.iconbutton > img {
    width: 1.2rem;
    aspect-ratio: 1/1;
}

.iconbutton > p {
    padding: 0;
    margin: 0;
    font-weight: 500;
    margin-right: 5px;
}

.iconbutton:hover{
    background-color: #f3f3f3;
    scale: 1.02;
}

.input-group{
    display: flex;
    justify-content: end;
}

.input_label{
    margin: 0;
    padding: 0;
    font-weight: bold;


}

.input_basic{
    width: 100%;
    border: none;
    margin-top: 1%;
    margin-bottom: 1%;
    background: none;
    border-bottom: 1px solid;


}

.input_basic:focus{
    background-color: none;
}

.input-group{
    border: none;
    background: none;
    font-size: inherit;
    font-family: inherit;
    width: auto;
    display: inline;
}

.input_editable {
    border: none;
    background: none;
    font-size: inherit;
    font-family: inherit;
    width: -webkit-fill-available;
    display: inline;
    
}
.input_editable:hover{
    background-color: #e6e6e6;
    transition: 0.2s;
    cursor: pointer;
}

.input_editable:focus {
    border: 1px solid #ccc;
    background: white;
    outline: none;
  }

.input_editablet[readonly] {
    border: none;
    background: none;
    cursor: pointer;
}

#LoadingModal{
    position: fixed;
    display: none;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    background-color: #016bd4;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


.spinner {
    border: 4px solid #016bd4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: #ffffff;
    animation: spin 1s ease infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }



  .list{
    display: flex;
    flex-direction: column;
    min-height: 20vh;    

  }

  .list_titles{
    width: 100%;
    display: flex;
    border: 1px solid black;
    border-bottom: none;
    color: white;
    background-color:  #004a95;
    font-family: 'Roboto';

  }

  .list_titles .list_item{
    padding-top: 1%;
    padding-bottom: 1%;
  }
  

  .list_row{
    width: 100%;
    display: flex;
    border: 1px solid black;
    border-top: none;
    background-color: #ffffff;
  }

  .list_item{
    flex-grow: 1;
    padding:2%;
    
    width: -webkit-fill-available;
    font-family: 'Roboto';   
    margin-top: 0.5%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
   
    display: inline-block;
    vertical-align: middle;
 }

 .list_btn{
    width: 1.2rem;
    cursor: pointer;
    user-select: none;
 }

 

 .list::-webkit-scrollbar{
    display: none;
 }

 .mm_container{
    position: fixed;
    height: 100dvh;
    width: 100dvw;
    background-color: rgba(0, 0, 0, 0.233);
    top: 0;    
}

.mm_flex{
    height: 100dvh;
    width: 100dvw;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

}

.mm{    
    min-width: 50vw;
    padding: 0%;
    display: flex;
    padding-bottom: 2%;
    padding-top: 2%;
    justify-content: center;
    position: relative;
    border-radius: 5px;
    background-color: whitesmoke;
    animation: fade_up 0.1s ease-in-out;

}

.mmclose{
    position: absolute;
    top: 2%;
    right: 2%;
    font-size: 2rem;
    transform: rotate(45deg);
    cursor: pointer;
    user-select: none;
}
.mm_cont{
    width: 80%;
}

.bold{
    font-weight: bold;
    color: #016bd4;
}

.hamburguer{
    display: none;
}



@media(max-width:600px){

    .sidebar{
        display: none;
    }

    .hamburguer{
        display: flex;
    }
    
    .userInfo{
        display: none;
    }
    .hamburguer:hover ~ .sidebar {
        right: 0;
        display: none;
    }


    .mm_flex{
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
    }

    .mm{
        padding: 5%;
    }
    
}


/* end of base html */

/* only on checkabox */




  