body{
    background: #ececec;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    /* padding: 10px; */
    box-sizing: border-box;
}
/*
.noto-sans-400 {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
*/
#main-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
#c-body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    width: 100%;
    background: #ececec;
}

#cc-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    width: 100%;
    background: #ececec;
}

#login-form{
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
    background: #fff;
}
.form-c{
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.login-input{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
}
.login-btn{
    text-decoration: none;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #0713fa;
    color: #fff;
    border: unset;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.login-btn:hover{
    background-color: #0610d1;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.inner-content{

}
.back-link{
    text-decoration: none;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #0b132b;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.back-link:hover{
    background-color: #000000;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.action-link{
    text-decoration: none;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #0713fa;
    color: #fff;
    border: unset;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.action-link:hover{
    background-color: #0610d1;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#main-menu{
    /* background: #0B132B; */
    border-radius: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}
#main-menu li{
    display: flex;
}
#main-menu li a{
    text-decoration: none;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: #FFFFFF;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#main-menu li.selected a{
    background: #3A506B;
    border-radius: 5px;
}

#main-menu li a:hover{
    //background: #3A506B;
    padding-left: 20px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.mm-ico{
    margin-right: 5px;
}

.logout-btn{
    text-decoration: none;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    background: #0B132B;
    border-radius: 5px;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.logout-btn:hover{
    padding-left: 20px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#top-menu, #mid-menu{
    list-style: none;
    margin: 0;
    /* padding: 10px; */
    display: flex;
}

#top-menu li, #mid-menu li{
    display: inline-grid;
    margin-right: 10px;
}

#top-menu li:last-child, #mid-menu li:last-child{
    margin-right: 0;
}

#top-menu li a, #mid-menu li a{
    text-decoration: none;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #0713fa;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#top-menu li a:hover, #mid-menu li a:hover{
    background-color: #0610d1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


#mid-menu li a.disabled-link {
  pointer-events: none;
  //color: gray;
  text-decoration: none;
  cursor: default;
  opacity: 0.6;
}

.clear_all{
    clear: both;
}
.left-side{
    float: left;
    width: 250px;
    /* padding: 10px; */
    padding: 20px 10px;
    box-sizing: border-box;

    /* height: calc(100vh - 20px); */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
}
.right-side{
    float: right;
    width: calc(100% - 260px);
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    /* padding: 10px;
    padding: 20px 10px; */
    box-sizing: border-box;
    padding: 20px 10px 0 10px;
    /*
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 100vh;
    */
}


.dashboard-card{
    width: calc(100% / 3 - 10px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
    box-sizing: border-box;
    text-decoration: none;
    background: #eee;
    color: #000;
    border-radius: 5px;
    margin: 5px;
}

.dashboard-card-active{
    background: #e5f4ed;
    color: #189165;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.dashboard-card-expiring{
    background: #f5ecda;
    color: #b77308;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.dashboard-card-expired{
    background: #f4e5e5;
    color: #8d0c0c;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.dashboard-card-active:hover{
    background: #cdf1e0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.dashboard-card-expiring:hover{
    background: #f3e6cc;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.dashboard-card-expired:hover{
    background: #f3dbdb;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


.dashboard-card-number{
    font-size: 31px;
}
.dashboard-card-units-number{
    
}
.dashboard-card-title{
    /* font-size: 17px; */
}
.dashboard-title{
    display: inline-block;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}
.dasboard-bold-text{
    font-weight: bold;
    color: #000;
    text-decoration: none;
}


.client-list-title{
    font-weight: bold;
    width: 84%;
    text-transform: uppercase;
    font-size: 12px;
}

.license-list-title{
    font-weight: bold;
    /* width: 84%; */
    width: 76%;
    text-transform: uppercase;
    font-size: 12px;
}

.unit-list-title, .note-list-title{
    font-weight: bold;
    width: 84%;
    text-transform: uppercase;
    font-size: 12px;
}



.client-list, .license-list, .unit-list, .note-list{
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    list-style: none;
}

.client-list li, .license-list li, .unit-list li, .note-list li{
    display: flex;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.client-list li.even, .license-list li.even, .unit-list li.even, .note-list li.even, .client-list li.odd, .license-list li.odd, .unit-list li.odd, .note-list li.odd{
    /* background: #fff; */
    border-top: 1px #eee solid;
}
.client-list li:hover, .license-list li:hover, .unit-list li:hover, .note-list li:hover{
    background: #d9efff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.client-list-title:hover, .license-list-title:hover, .unit-list-title:hover, .note-list-title:hover{
    background: unset!important;
}
.client-list li a, .license-list li a, .unit-list li a, .note-list li a{
    display: flex;
    text-decoration: none;
}
.row-details-a{
    width: 84%;
}
.row-details-a-c{
    width: calc(84% - 28.17px);
}
.row-details-license-a{
    width: 76%;
}
.row-action-a{
    width: 8%;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
button[type=submit].row-action-a-btn{
    width: 100%;
    height: 100%;
    background:none;
    border:none;
    cursor:pointer;
}
button[type=submit].row-action-a-btn:hover{
    background: #cee9fc;
    color: #0713fa;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.row-action-a i{
    font: normal normal normal 14px / 1 FontAwesome;
}

.client-list li a.row-action-a:hover, .license-list li a.row-action-a:hover, .unit-list li a.row-action-a:hover, .note-list li a.row-action-a:hover, .client-list li form.row-action-a:hover, .license-list li form.row-action-a:hover, .unit-list li form.row-action-a:hover, .note-list li form.row-action-a:hover{
    background: #cee9fc;
    color: #0713fa;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.client-list li a.row-action-a:hover > i, .license-list li a.row-action-a:hover > i, .unit-list li a.row-action-a:hover > i, .note-list li a.row-action-a:hover > i{
    color: #0713fa;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.client-lbl{
    width: 25%;
    padding: 10px 7px;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.license-lbl{
    width: calc(100% / 3);
    padding: 10px 7px;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.unit-lbl{
    width: 50%;
    padding: 10px 7px;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.note-lbl-1{
    width: calc(100% / 3);
    padding: 10px 7px;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.note-lbl-2{
    width: calc(100% * 2 / 3);
    padding: 10px 7px;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-form{
    display: flex;
    flex-direction: column;
}

/*
.insert-input{
    //width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
}
*/


.insert-input{
    padding: 12px 10px;
    border: unset;
    background-color: #e9e9e9;
    outline: 2px #fff solid;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;

    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.insert-input:hover{
    border: unset;
    background-color: #e1e1e1;
    /* outline: none; */
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.insert-input:focus{
    border: unset;
    background-color: #fff;
    outline: 2px #0713fa solid;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


.save-btn{
    text-decoration: none;
    padding: 10px;
    border: unset;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #0713fa;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.save-btn:hover{
    background-color: #0610d1;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


#client-search{
    padding: 12px 10px;
    border: unset;
    background-color: #e9e9e9;
    outline: 2px #fff solid;
    border-radius: 5px;
    padding-left: 30px;
    width: 300px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#client-search:hover{
    border: unset;
    background-color: #e1e1e1;
    /* outline: none; */
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#client-search:focus{
    border: unset;
    background-color: #fff;
    outline: 2px #0713fa solid;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.search-wrapper {
    position: relative;
    display: inline-block;
}

.select-filter{
    border: unset;
    background-color: #e9e9e9;
    outline: 2px #fff solid;
    /* outline: none; */
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 5px;
}

.select-filter:hover{
    border: unset;
    background-color: #e1e1e1;
    /* outline: none; */
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.select-filter:focus{
    border: unset;
    background-color: #fff;
    outline: 2px #0713fa solid;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/*
.search-wrapper input[type="search"] {
    padding-left: 30px; 
}
*/

.search-wrapper .fa-search {
    position: absolute;
    left: 8px;
    top: 49%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    font-size: 16px;
}


.field-label{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 5px;
}
.field-row{
    display: inline-block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.mail-link, .phone-link{
    text-decoration: none;
    /* color: #0713fa; */
    /* color: #0009ad; */
    color: #3222b1;
    background: #f0eeff;
    padding: 4px 7px;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.mail-link:hover, .phone-link:hover{
    /* color: #0610d1; */
    color: #201199;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 20px;
    text-align: center;
    //border: 1px solid #c3e6cb;
    //border-radius: 5px;
    margin: 20px 10px;
    font-weight: bold;
}

.alert-error {
    background-color: #edd4d4;
    color: #571515;
    padding: 10px 20px;
    text-align: center;
    //border: 1px solid #c3e6cb;
    //border-radius: 5px;
    margin: 20px 10px;
    font-weight: bold;
}

.alert-info{
    background-color: #d4ebed;
    color: #154a57;
    padding: 10px 20px;
    text-align: center;
    //border: 1px solid #c3e6cb;
    //border-radius: 5px;
    margin: 20px 10px;
    font-weight: bold;
}

.input-container{
    position: relative;
}
.input-container input, .input-container textarea {
  width: 100%;
}
.input-container label {
  position: absolute;
  left: 8px;
  top: 10px;
  color: #757575;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  pointer-events: none;
  transition: 0.2s ease all;
}
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label,
.input-container textarea:focus + label,
.input-container textarea:not(:placeholder-shown) + label {
  top: 2px;
  right: 6px;
  text-align: right;
  font-size: 12px;
  /* background: white; */
  padding: 0 4px;
  color: #979797;
}


.input-container input[type="date"]:focus + label,
.input-container input[type="date"]:not(:placeholder-shown) + label {
    top: 2px;
    right: 29px;
    text-align: right;
    font-size: 12px;
    padding: 0 4px;
    color: #979797;
}


.input-container select:focus + label,
.input-container select:valid + label {
    top: 2px;
    right: 29px;
    text-align: right;
    font-size: 12px;
    padding: 0 4px;
    color: #979797;
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}


select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 7px center; /* qui decidi la distanza da destra */
    background-size: 24px;
}





.pagination{
    padding: 10px;
    box-sizing: border-box;
}

.pagination a{
    color: #000;
    text-decoration: none;
    padding: 5px 7px;
    border-radius: 5px;
}

.pagination a.current-page{
    background: #cee9fc;
}


.content-head-left{
    float: left;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
}
.content-head-right{
    float: right;
    padding: 10px;
    box-sizing: border-box;
}

.section{
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.active-tag{
    background: #e5f4ed;
    padding: 4px 10px 6px 10px;
    border-radius: 5px;
    color: #189165;
}
.expiring-tag{
    background: #f5ecda;
    padding: 4px 10px 6px 10px;
    border-radius: 5px;
    color: #b77308;
}
.expired-tag{
    background: #f4e5e5;
    padding: 4px 10px 6px 10px;
    border-radius: 5px;
    color: #8d0c0c;
}

.client-lbl-check{
    width: 28.17px;
    min-width: 28.17px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Pulsante hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Stato attivo: animazione in X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.menu-top, .menu-bottom{
    background: #0B132B;
    border-radius: 5px;
    width: 100%;
}

#resend-btn{
    text-decoration: none;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    box-sizing: border-box;
    background-color: #0713fa;
    color: #fff;
    border: unset;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (max-width: 767.98px) {
    body {
        font-size: 13px;
    }
    .inner-content{
        padding: 10px;
    }
    .menu {
        position: absolute;
        z-index: 9;
        top: 65px;
        right: 0;
        /* background: #fff; */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 15px;
        /* gap: 10px; */
        width: calc(100% - 20px);
        right: 10px;
        height: auto;
        /* box-shadow: 0 2px 8px rgba(0,0,0,0.15); */
        display: none;
        background: #0B132B;
        border-radius: 5px;
    }

    #main-menu{
        position: fixed;
    }

    .menu.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        z-index: 10;
        top: 10px;
        left: 10px;
        position: fixed;
        padding: 10px;
        background: #0713fa;
        border-radius: 5px;
    }

    .left-side{
        width: 0;
        height: 0;
        position: unset;
    }
    .right-side{
        width: 100%;
        box-sizing: border-box;
        /* margin-top: 35px; */
        padding: 25px 10px 0 10px;
    }
    .content-head-left-extended{
        width: 100%;
    }
    .search-wrapper{
        width: 70%;
        display: inline-block;
    }
    .filter-wrapper{
        width: calc(30% - 10px);
        display: inline-block;
    }
    #client-search, #status-filter{
        width: 100%;
    }
    
    .section{
        padding: 0;
    }
    .dashboard-section{
        padding: 5px;
    }
}

@media (max-width: 480px) {

    .dashboard-card-title{
        text-align: center;
    }
    .dashboard-card{
        min-height: 140px;
        justify-content: flex-start;
    }
}