* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial,
        sans-serif;
}

.site-container{
    display: grid;
    grid-template-columns: max-content auto;
    grid-template-rows: auto;
}
#sidemenu{
    padding-top: 1rem;
    padding-left: 0.5em;
    padding-right: 0.25em;
    grid-column: 1;
    border-right: 1px solid rgb(179, 179, 179);
}
.menu-list{
    border-bottom: 1px dotted rgb(179, 179, 179);
}
.menu-list a {
    margin-bottom: 2px;
    padding: 2px 5px 2px 5px; 
}
.menu-list .sidemenuInput{
    margin: 0;
    text-align: left;
    border-radius: 2px;
    color: #757763;
    display: block;
    padding: 0.5em 0.75em;
    font-size: 1rem;
    border: none;
    width: 100%;
    background-color: rgba(105, 105, 105,0);
}

.menu-list .sidemenuInput:hover, .menu-list a:hover{
    background-color: rgb(211, 211, 211) !important;
    color: hsl(0deg, 0%, 21%);
}
.sidemenuform .is-active{
    background-color: #0088ff !important;
    color: white !important;
}
.sidemenuform .is-active:hover, .menu-list .is-active:hover{
    color: white !important;
    background-color: #0067c2 !important;
}
.menu-list-darker{
    background-color: rgba(0, 0, 0, 0.017);
    border-bottom: 1px solid rgb(179, 179, 179);
    border-left: 1px solid rgb(179, 179, 179);
}
.navbar-item{
    color: white!important;
}
main{
    grid-column: 2;
    min-height: 85vh;
}
.svg-arrow{
    width: 100%;
}
.svg-arrow:hover path{
    stroke: red;
    stroke-width: 3;
}
.login {
    width: 400px;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 3rem auto;
    margin-bottom: 2rem;
    border-radius: 0.2rem;
}
.passwordreset{
    /* width: 400px; */
    width: fit-content;
    text-align: center;
    margin: auto;
    /* padding: 1rem;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    border-radius: 0.2rem; */
}
.passwordreset a{
    color: #757763!important;
}
.passwordreset a:hover{
    text-decoration: underline;
}
.loginformsubmit{
    border-radius: 0 0 0.2rem 0.2rem;
}
.login h1 {
    text-align: center;
    color: #5b6574;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}
.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3274d6;
    color: #ffffff;
}
.login form input[type="password"],
.login form input[type="text"] {
    color: black;
    width: 310px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}
.login form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #3274d6;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
    background-color: #2868c7;
    transition: background-color 0.2s;
}
.item_formbutton{
    border: none;
    background-color: rgba(255, 255, 255, 0);
}
.item_formbutton:hover{
    color: hsl(217, 71%, 45%);
    cursor: pointer;
}
.is-list-button{
    min-height: 30px!important;
}
#editorjs{
    width: 50rem;
}
.codex-editor{padding: 2px;}
.cdx-block, .ce-header{
    color: black;
    border-bottom: 1px dotted rgb(134, 169, 181);
}
.ce-header{
    margin-bottom: 5px;
}
.ce-block__content{
    margin-bottom: 2px;
}
h1{
    font-size: 1.5rem;
}
.hr_dashboard{
    border: 1px dotted rgb(142, 142, 142);
    margin: 1rem 0 1rem 0;
}

.border-05{
    border-radius: 0.5rem;
    box-shadow: 1px 2px 3px rgb(125, 125, 125);
}
.dashboardsvg{
    stroke: rgb(105, 105, 105);
    height: 1rem;
}
.dashboardsvg:hover{
    stroke: black;
    cursor: pointer;
}
.dashboard-showhide{
    cursor: pointer;
}
/* Tooltip container */
.tooltip, .tooltipstatus {
    position: relative;
    display: inline-block;
}
  
/* Tooltip text */
.tooltip .tooltiptext, .tooltipstatus .tooltiptextstatus {
visibility: hidden;
width: 120px;
background-color: #3982ff;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;

/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
}
.tooltip .tooltiptext{
width: 160px;
bottom: 120%;
left: 50%;
margin-left: -70px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltipstatus .tooltiptextstatus{
font-weight: bold;
width:160px;
top: 0px;
right: 0px;
background-color: red;
border-radius: 0 0 0 0.5rem;
padding: 0.25rem 0.8rem 0.25rem 0.8rem;
height: max-content;
visibility: visible;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext, .tooltipstatus:hover .tooltiptextstatus {
visibility: visible;
}
.tooltiptextstatus:hover{
text-decoration: underline;
cursor: pointer;
}

.tooltip .tooltiptext::after {
content: " ";
position: absolute;
top: 110%;
left: 47%; /* To the right of the tooltip */
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: #3982ff transparent transparent  transparent ;
}
.unloadSVGForm{
    vertical-align: middle;

}
.unloadSVGButton{
    vertical-align: middle;

    padding:0;
    display: inline;
}
.unloadSVG{
    vertical-align: middle;
}
.unloadSVG:hover{
 stroke: red;
}


/* mobile view */
@media only screen and (max-width: 1100px) {
    h2{
        margin-bottom: 0.5rem!important;
    }
    #columns_head{
        display: none;
    }
    /* #sidemenu{
        display: none;
    } */
    .span_hidden_on_desktop{
        display: inline-block;
        min-inline-size: 3rem;
    }
    .has-width-fitcontent{
        width: 100%;
        text-align: center;
    }
    .columns{padding: 0.25rem;}
    .dashboardcolumns .column{
        padding: 0;
        padding-left: 1rem;
    }
    #dashboard_companyname{
        margin-top: 1rem;
    }
    .dashboardcontentright{
        margin: 0;
    }
    .tooltipstatus{
        width: 98%;
    }
    .tooltipstatus .tooltiptextstatus{
        right:0;
        width: 140px;
        margin: 0;
        padding: 0;
        top: 0px;

    }
  }
  /* desktop view */
@media only screen and (min-width: 1100px) {
    h2{
        margin-bottom: 0.5rem!important;
    }
    #sidemenu{
        display: block;
    }
    .span_hidden_on_desktop{
        display: none;
    }
    .navbar-start{
        display: none;
    }
    .has-width-fitcontent{
        width: fit-content;
        text-align: center;
    }
    #dashboard_customer_div{
        width: 100%;
        margin: 0;
    }
    .dashboardcolumns .column input{
        width: 100%;
    }
    .dashboardcontentright{
        margin-left: 0.25rem;
    } 
  }