@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

/* variabili colore  */

:root {
    --dark-blue: rgb(19, 98, 140);
    --medium-blue: rgb(161, 196, 236);
    --light-blue: rgb(224, 243, 255);
    --gray: rgb(55, 55, 55);
    --lightgray: rgb(150, 150, 150);
    --white:rgb(245,245,245);
    font-family: "Poppins",  Helvetica, sans-serif;
    font-size: 16px;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color:var(--gray);
    opacity: 1; /* Firefox */
    font-weight:500;
    font-size: .9rem;
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:var(--gray);
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color:var(--gray);
  }


  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: solid 1px red; */
    font-family: "Poppins", Helvetica, sans-serif !important;
}


body{
    max-width: 100vw;
    max-height: 100vh;
    position:relative;
    padding: 1%;
}

.tar_header{
    width: 100%;
    min-height: 160px;
    position:fixed;
    top:0;
    padding: 1% 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	 background-color: white;
	 z-index: 2;
}

.tar_inputs{
    height:80px;
    position:fixed;
    top:160px;
	 background-color: white;
	 z-index: 2;
}

.table_mex{
    height: 80px;
    position:fixed;
    top:240px;
}

.tar_inputs, .table_mex{
    padding: 1% 1%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.benvenuto{
  display:inline-block; 
  padding-top:32px; 
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 500;
  color:var(--dark-blue);
  margin:0 1rem;
}

.icona{
    width: 60px; 
    height: 60px; 
    display:inline-block;
    margin:0 2rem;
}

.tar_inputs input{
    width: 200px;
    height: 40px;
    border:none;
    background-color: var(--white); 
    border-bottom: solid 1px var(--medium-blue);
    color:var(--gray);
    margin:0 0.5rem;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1;
}

input:focus{
    outline: none;
}

.tar_button{
    width: 200px;
    height: 40px;
    border:none;
    background-color: var(--dark-blue);
    margin:0 0.5rem;
    padding:5px;
    color:var(--white);
    text-align: center;
    font-size: 1rem ;
    font-weight: 400;
    vertical-align: middle;
}

.scrollbarTabella{
    width: 98%;
    height: 600px;
    margin-top: 240px;
    overflow-y: scroll;  
} 

table{
    width:100%;
    border-collapse: collapse;
    text-align: center; 
} 

table thead{
    color: var(--dark-blue);
    background-color: #fff; 
    position: sticky;
    top: 0;   
}

th, td {  
    padding:10px 5px; 
    font-weight: 600;
}

td {  
    text-align: center;
}

th{
	cursor: pointer;
}

tr{
    border-bottom:solid 1px rgb(241, 241, 241);
}

/* Login Style */

.login_container_body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login_container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 400px;
    height: 100px;
}

.login_input_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.login_name_input {
    width: 200px;
    color: var(--dark-blue);
}

.login_input{
    width: 200px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1;
}

/* // ------- SCROLLBAR----   */
/* width */
::-webkit-scrollbar {
    width: 7px;
}
    
/* Track */
::-webkit-scrollbar-track {
background: var(--lightgray);
}

/* Handle */
::-webkit-scrollbar-thumb {
background:var(--dark-blue);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {

background: var(--light-blue);
}


    
/* HEADER */

.header-page{
    width:100%;
    height: 120px;
    max-height: 120px;
    border-bottom: 2px solid #ebebeb;
}

.row-header{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.img_header{
    max-height:115px;
}

.link_pages{
    width: 70%;
}

ul{
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

.link_pages a, a:visited{
    text-decoration: none;
    color: #13628C;
    font-size: 26px;
}
    

/* BODY */

.title-body{
    padding: 50px;
    color: #13628C;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    height: auto;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}




