@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

body{
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    line-height: 1.9;
    color: #6b6b6b;
    background-color: #FFFFFF;
    position: relative;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    cursor: pointer;
}

.pos-rel{
    position: relative;
}

.app-content-bg{
    background-color: #fff;
    height: 80vh;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 3px 22px 0px rgba(0, 0, 0, 0.13);
    margin: 0px 20px;
}

.app-content-pad{
    padding: 22px 25px;
    height: 80%;
    overflow: hidden;
}

.app-content-pad .pad-wrapper{
    height: 100%;
}

.page-title{
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 26px;
    color: #000;
    display: flex;
}

.page-title-secondary{
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 26px;
    color: #707070;
}

.page-sub-title{
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 26px;
    color: #37B077;
}

/* DASHBOARD MENU */

.navbar-toggler{
    border: none !important;
}

.navbar-toggler-icon{
    background-image: url(../images/menu.svg) !important;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.dashboard-mn-bg{
    background-color: #37B077;
    margin: auto;
    margin: 0px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dashboard-mn-container{
    padding-top: 2px;
    padding-bottom: 2px;
}

#dashboard-menu .menu-link-btn{
    background-color: #37B077;
    color: #fff !important;
    max-height: 51px;
    border-radius: 18px;
    font-size: 0.875rem;
    padding-left: 14px !important;
    padding-right: 14px!important;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
}

#dashboard-menu .menu-link-btn:hover{
    background-color: #fff;
    color: #2B885C !important;
}

#dashboard-menu .menu-link-btn.active{
    background-color: #fff;
    color: #2B885C !important;
}

#dashboard-menu .menu-link-btn:focus{
    background-color: #fff;
    color: #2B885C !important;
}

#dashboard-menu .menu-link-btn svg{
    fill: #fff;
}

#dashboard-menu .menu-link-btn:hover > svg{
    fill: #37B077;
}

#dashboard-menu .menu-link-btn.active > svg{
    fill: #37B077;
}
        
#dashboard-menu .menu-link-btn span{
    margin-right: 14px;
}

#dashboard-menu .menu-link-btn:active > span{
    margin-right: 14px;
}

#dashboard-menu .dropdown-menu{
    margin-right: 12px;
    border: none;
    box-shadow: 0px 22px 33px 0px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    background-color: none !important;
    padding: 22px!important;
    width: fit-content;
}

#dashboard-menu .dropdown-menu a{
    color: #000;
    font-size: 0.875rem;
    background-color: #fff !important;
    border-bottom: 0.2px solid #e4e4e4;
    transition: all 0.2s ease-in-out;
}

#dashboard-menu .dropdown-menu a:hover{
    color: #2B885C;
}

.dropdown{
    display: flex;
    flex-direction: row-reverse;
}

.navbar-expand-xxl .navbar-nav .dropdown-menu{
    right: 0;
    top: 40px;
}

.dropdown:hover .dropdown-menu{
    display: block;
    margin-top: 0;
    /* remove the gap so it doesn't close*/
}

/* language link */

.icon-me-ms{
    margin-left: 4px;
    margin-right: 4px;
}

.language-btn{
    min-width: 53px !important;
    height: 39px;
    background-color: #2B885C;
    border-radius: 10px;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 900;
    margin-top: 4px;
}

.language-btn:hover{
    background-color: #1E6845;
    transition: all 0.2s ease-in-out;
}

.language-drop{
    box-shadow: 0px 22px 33px 0px rgb(0 0 0 / 16%);
    border-radius: 20px;
    background-color: none !important;
    padding: 12px!important;
    min-width: 70px;
    border: none;
}

.language-drop a{
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 12px!important;
    border-bottom: 0.2px solid #e4e4e4;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.language-drop a:hover{
    color: #2B885C;
    background-color: #fff !important;
    transition: all 0.2s ease-in-out;
}

/* notificaiton link */

.notificaiton-btn{
    min-width: 45px !important;
    height: 39px ;
    background-color: #2B885C;
    border-radius: 10px;
    margin-top: 4px;
    cursor: pointer;
}

.notificaiton-btn:hover{
    background-color: #1E6845;
    transition: all 0.2s ease-in-out;
}

[data-badge]{
    background: none;
    border: 0;
    position: relative;
    border-radius: 100%;
}

[data-badge]:after{
    content: attr(data-badge);
    position: absolute;
    background-color: #7AC931;
    color: rgb(0, 0, 0);
    border-radius: 2rem;
    top: -0.0rem;
    right: -0.2rem;
    height: 10px;
    width: 10px;
}

.dashboard-info-btn{
    width: 45px !important;
    height: 39px;
    background-color: #2B885C;
    border-radius: 10px;
    margin-top: 4px;
}

.dashboard-info-btn:hover{
    background-color: #1E6845;
    transition: all 0.2s ease-in-out;
}

.dashboard-info-btn::after{
    content: none;
    margin: 0;
    padding: 0;
}

/* Select box */

#project_filter{
    display: inline-block;
    margin-top: 4px;
    margin-left: 50px;
    margin-right: 26px;
}

#project_filter .bootstrap-select button{
    border-radius: 10px;
    background-color: transparent;
    color: #ffffff;
    padding-right: 40px;
    max-width: 160px;
    border: 0px;
    font-size: 1rem;
    background-image: url(../images/ok-icon.png);
    background-repeat: no-repeat;
    background-position: right 12px center;
    outline: none !important;
    border: 1px #fff solid;
}

#project_filter .bootstrap-select .dropdown-toggle::after{
    content: none;
}

#project_filter .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
    width: 100%;
}

#project_filter .dropdown-item.active, .dropdown-item:active{
    background-color: #fff;
    color: #2B885C;
    font-size: 1rem;
    font-weight: 700;
}

#project_filter .bs-searchbox .form-control{
    border: 1px #2B885C solid;
}

#project_filter .form-control:focus{
    box-shadow: none;
}

#project_filter .btn-light:focus{
    box-shadow:none;
}

/*SEARCH BOX*/

.search-box{
    width: 256px;
    height: 32px;
    background-color: #fff;
    border: 1px solid #6C727F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 1rem 0 1rem;
}

.search-box span{
    font-size: 0.75rem;
}

.search-box > input{
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    margin-left: 12px;
    margin-right: 12px;
}

.icon-search-icon{
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 18.0.0  SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 183.792 183.792' style='enable-background:new 0 0 183.792 183.792%3B' xml:space='preserve' fill='%23707070'%3E%3Cpath d='M54.734 9.053C39.12 18.067 27.95 32.624 23.284 50.039c-4.667 17.415-2.271 35.606 6.743 51.22c12.023 20.823 34.441 33.759 58.508 33.759c7.599 0 15.139-1.308 22.287-3.818l30.364 52.592l21.65-12.5l-30.359-52.583c10.255-8.774 17.638-20.411 21.207-33.73c4.666-17.415 2.27-35.605-6.744-51.22C134.918 12.936 112.499 0 88.433 0C76.645 0 64.992 3.13 54.734 9.053z M125.29 46.259c5.676 9.831 7.184 21.285 4.246 32.25c-2.938 10.965-9.971 20.13-19.802 25.806c-6.462 3.731-13.793 5.703-21.199 5.703c-15.163 0-29.286-8.146-36.857-21.259c-5.676-9.831-7.184-21.284-4.245-32.25c2.938-10.965 9.971-20.13 19.802-25.807C73.696 26.972 81.027 25 88.433 25C103.597 25 117.719 33.146 125.29 46.259z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
    background-size: 1rem;
    height: 1rem;
    width: 1rem;
}

/*MODALS*/

.modal a{
    color: #37B077;
}

.modal-bg-g{
    border-radius: 10px;
    padding: 10px 30px;
    box-shadow: 0px 22px 33px 0px rgb(0 0 0 / 16%);
    border: none;
}

.modal-header{
    cursor: pointer;
}

.modal.modal-large{
    left: 1px;
}

.modal-large .modal-content{
    background-color: #f5f5f5;
    height: 100%;
    border: 0px;
    border-radius: 0px;
}

.modal-large .modal-header{
    position: relative;
    display: inline-block;
    padding: 22px 25px 0px 25px;
    border-bottom: 1px solid #dee2e6;
}

.modal-large .modal-header .btn-close{
    background-image: none;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0em;
    color: #fff;
    border: 0;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 0rem;
    background-color: #37B077;
    opacity: 1;
}

.modal-large .modal-header .btn-close:hover{
    color: #fff;
    background-color: #F58F00;
}

.modal-large .modal-header .btn-close i{
    background-image: none;
    width: 20px;
    height: 20px;
}

.modal-header .btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-large .modal-body{
    background-color: #ffffff;
    padding: 0;
}

.modal-large .modal-body .wrapper-pad{
    padding-left: 25px;
    padding-right: 25px;
}

.modal-large .modal-dialog{
    position: absolute;
    top: 76px;
    left: 1.2rem;
    width: 100%;
    height: 90vh;
    max-width: 100%;
    margin-right: 3rem;
    padding-right: 1.6rem;
}

.modal-medium .modal-dialog{
    width: 75%;
    max-width: 75%;
    min-width: 400px;
}

.modal-medium .modal-header{
    display: inline;
    text-align: center;
}

.modal-medium .modal-body{
    padding: 2rem;
}

.modal-medium .modal-body p{
    font-size: 1rem;
    font-weight: 700;
}

.modal-medium .modal-body .btn-green{
    margin-right: 0rem;
    margin-top: 1rem;
}

.modal-medium .modal-header h5{
    font-weight: 700;
}

.modal-mini .modal-dialog{
    width: fit-content;
    min-width: 400px;
}

.modal-mini .modal-header{
    display: inline;
    text-align: center;
}

.modal-mini .modal-body{
    padding: 2rem;
}

.modal-mini .modal-body p{
    font-size: 1rem;
    font-weight: 700;
}

.modal-mini .modal-body .btn-green{
    margin-right: 0rem;
    margin-top: 1rem;
}

.modal-mini .modal-header h5{
    font-weight: 500;
}

.modal-mini .modal-body input[type=text]{
    width: 100%;
}

.modal-mini .modal-body h2{
    font-size: 2.625rem;
}

.modal-mini input::placeholder{
    display: none;
    color: #fff;
}

.modal-success .modal-header h5{
    color: #37B077;
}

.modal-success .modal-body i{
    color: #37B077;
    font-size: 10rem;
    line-height: 1.2;
}

.modal-warning .modal-header h5{
    color: #FC5F5F;
}

.modal-warning .modal-body i{
    color: #FC5F5F;
    font-size: 10rem;
    line-height: 1.2;
}

.modal-warning .modal-body h2{
    font-size: 2.625rem;
    color: #FC5F5F;
}

.modal-success .modal-body h2{
    font-size: 2.625rem;
    color: #37B077;
}

/*FORMS/INPUTS*/
input.input-regular{
    min-height: 45px;
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 10px;
    padding-left: 1rem;
}

form textarea{
    width: 100%;
    background-color: #fff;
    border: 1px solid #6C727F;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-top: 1rem;
}

.form-check-input{
    height: 18px;
    width: 18px;
    margin-right: 12px;
}

.form-check-input:checked{
    background-color: #37B077;
    border-color: #37B077;
}

.form-control:focus{
    border-color: #9BA0AB;
    outline: 0;
    box-shadow: none;
}

.form-select:focus{
    border-color: #9BA0AB;
    outline: 0;
    box-shadow: none;
}

.form-select{
    height: 32px;
    border-color: #9BA0AB;
    border-radius: 7px;
    font-size: 0.875rem;
}

.input-height-sm{
    height: 34px;
}

.radio-icon{
    width: auto;
    background: white no-repeat;
    background-size: 100% auto;
}

.radio-icon i{
    mix-blend-mode: multiply;
    font-size: 1.4rem;
}

input[type=radio].radio-false{
    accent-color: #FF0000;
}

input[type=radio].radio-na{
    accent-color: #666666;
}

select{
    font-size: 0.75rem;
    padding: 0.5rem 2rem;
    border-radius: 10px;
    border: 0px;
    background-color: #efefef;
    border-right: 16px solid transparent;
    width: -webkit-fill-available;
}

select.select-regular{
    border-radius: 10px;
    background-color: #fff;
    border-right: 16px solid transparent;
    width: -webkit-fill-available;
    padding: 0.5rem 1rem;
}

.select-wrap{
    border: 1px solid #707070;
    width: 100%;
    border-radius: 10px;
}

.select2-container--default.select2-container--disabled .select2-selection--single{
    background-color: #fff;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single{
    background-color: #fff;
    cursor: default;
    border: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    display: none;
    right: 1px;
    left: auto;
}

.filter-bar select{
    font-size: 0.75rem;
    padding: 0rem;
    border-radius: 10px;
    border: 0px;
    background-color: #ffffff;
    border-right: 0px solid transparent;
    width: -webkit-fill-available;
}

.form-control:focus{
    color: #212529;
    background-color: #fff;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

/*DATA TABLE*/

.table{
    vertical-align: middle;
}

td a.link-dark{
    color: #000;
    text-decoration: underline;
}

.table-wrapper{
    height: 80%;
    overflow: auto;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.data-table{
    font-size: 0.875rem;
    line-height: 19px;
    height: 100%;
}

.data-table a{
    color: #37B077;
    text-decoration: underline;
}

.data-table td{
    font-size: 0.875rem;
    font-weight: 400;
    color: #707070;
}

.data-table th{
    font-size: 0.875rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    background-color: #efefef;
}

.data-table th i{
    font-size: 0.8rem !important;
    margin-right: 0.4rem;
}

.data-table-lg th{
    padding-left: 1rem;
}

.data-table-lg td{
    padding-left: 1rem;
    align-items: center;
    display: table-cell;
}

.data-table td .btn{
    padding: 0;
}

.data-table .bi-record-circle-fill{
    font-size: 1rem;
    cursor: pointer;
}

.data-table .bi-plus-circle{
    font-size: 1rem;
    color: #37B077;
}

.data-table .bi-file-earmark-arrow-down{
    font-size: 0.9rem;
}

.data-table td.status i{
    font-size: 0.7rem;
    line-height: 1.4rem;
    font-weight: 700;
}

tbody, td, tfoot, th, thead, tr{
    border-color: #efefef;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th{
    background-color: rgb(247, 243, 243)!important;
}

.table-border tr{
    border-bottom: 1px solid #d1d1d1;
}

.table-border{
    overflow: scroll;
}

/*Used for Organisations table scrolling*/
.container-table{
    width: 100%;
    height: 550px;
    overflow: auto;
}

/*PAGINATION*/

.pagination-btn{
    background-color: #D7EFE4;
    border: #fff;
    color: #8e9c95;
    font-size: 1rem;
    font-weight: 900;
    padding: 0.28rem 0.95rem;
    border-radius: 5px;
}

.pagination-btn:hover{
    color: #fff;
    background-color: #C2E7D6;
}

.page-link{
    background-color: #F5F5F5;
    border: #fff;
    color: #000;
    font-size: 1rem;
    font-size: 400;
    margin-left: 10px !important;
    padding: 0.28rem 0.95rem !important;
    transition: all 0.3s ease-in-out;
}

.page-link:hover{
    z-index: 2;
    color: #000;
    font-size: 1rem;
    font-weight: 900;
    background-color: #F5F5F5;
    transition: all 0.3s ease-in-out;
}

.page-link-active{
    background-color: #37B077;
    border: #fff;
    color: #fff;
    font-size: 1rem !important;
    border-radius: 5px;
    font-weight: 900;
    margin-left: 10px !important;
    padding: 0.28rem 0.95rem !important;
    transition: all 0.3s ease-in-out;
}

.page-link:focus{
    z-index: 3;
    color: #000;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: none;
}

.page-link-page-number-active{
    background-color: #37B077;
    color: #fff;
    margin-left: 10px!important;
    border-radius: 5px;
}

.page-link-page-number{
    margin-left: 10px!important;
    border-radius: 5px;
    cursor: pointer;
}

.page-link-page-number.active{
    background-color: #37B077;
    color: #fff;
    font-weight: 900;
}

.page-link-page-number.passive{
    background-color: none !important;
    color: #707070;
    font-weight: 500;
}

.page-link-page-number.passive:hover{
    background-color: #BEBEBE;
    color: #000;
}

.link-page-number ol, ul{
    margin: 0px!important;
    padding-left: 0px!important;
}

.link-page-number li{
    list-style: none;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 5px;
}

/*BUTTONS*/

.btn{
    cursor: pointer;
}

.modal a.btn-green{
    color: #fff;
}

.btn-add:hover > .bi-plus-circle-fill{
    display: inline;
    color: #37B077;
    font-size: 1rem;
}

.btn-add:hover > .bi-plus-circle{
    display: none;
}

.bi-plus-circle-fill{
    display: none;
}

.btn-add-large{
    font-size: 1rem;
    font-weight: 700;
    color: #707070;
    width: fit-content;
    padding-right: 1.4rem;
    border-radius: 8px;
    background-color: #efefef;
    border: 1px solid #efefef;
    cursor: pointer;
}

.btn-add-large:hover{
    color: #37B077;
    border: 1px solid #37B077;
}

.btn-add-large svg{
    fill: #37B077;
    width: 35px;
    height: 35px;
}

.btn-add-large:hover > svg{
    fill: #37B077;
}

.btn-white-red-small a{
    text-decoration: none;
}

.btn-white-red-small{
    background-color: #fff;
    border: 1px solid #FF5F5F;
    color: #FF5F5F;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 20px;
    padding: 0.2rem 1rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
}

.btn-white-red-small:hover{
    border: 1px solid #FF5F5F;
    color: #fff;
    background-color: #FF5F5F;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.btn-white-red-small .active{
    border: 1px solid #FF5F5F;
    color: #fff;
    background-color: #FF5F5F;
}


.btn-white-green a{
    text-decoration: none;
}

.btn-white-green{
    background-color: #fff;
    border: 1px solid #37B077;
    font-size: 0.875rem;
    font-weight: 700;
    color: #37B077;
    line-height: 20px;
    padding: 0.2rem 1rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
}

.btn-white-green:hover{
    border: 1px solid #37B077;
    color: #fff;
    background-color: #37B077;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.btn-white-green .active{
    border: 1px solid #37B077;
    color: #fff;
    background-color: #37B077;
}

.btn-white-orange{
    border: 1px solid #FF9C15;
    font-size: 0.875rem;
    font-weight: 700;
    color: #FF9C15;
    line-height: 20px;
    padding: 0.2rem 1rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
    background-color: #fff;
}

.btn-white-orange:hover{
    border: 1px solid #FF9C15;
    color: #fff;
    background-color: #FF9C15;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.btn-white-orange .active{
    border: 1px solid #FF9C15;
    color: #fff;
    background-color: #FF9C15;
}

.btn-white-grey{
    background-color: #fff;
    border: 1px solid #707070;
    font-size: 0.875rem;
    font-weight: 700;
    color: #707070;
    line-height: 20px;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
    height: fit-content;
}

.btn-white-grey:hover{
    border: 1px solid #707070;
    color: #fff;
    background-color: #707070;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.btn-white-grey .active{
    border: 1px solid #707070;
    color: #fff;
    background-color: #707070;
}

.btn-inactive{
    background-color: #d1d1d1;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-inactive:hover{
    color: #fff;
}

button:disabled {
    cursor: not-allowed;
    pointer-events: all !important;
}

.btn-orange{
    background-color: #FF9C15;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-orange:hover{
    background-color: #fff;
    border: 1px solid #FF9C15;
    color: #FF9C15;
}

.btn-red{
    background-color: #FF5F5F;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-red:hover{
    background-color: #fff;
    color: #FF5F5F;
    border: 1px solid #FF5F5F;
}

.btn-white-red{
    border: 1px solid #FF5F5F;
    color: #FF5F5F;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 20px;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
}

.btn-white-red:hover{
    border: 1px solid #FF5F5F;
    color: #fff;
    background-color: #FF5F5F;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.btn-red-lg{
    border: 1px solid #FF5F5F;
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFF;
    line-height: 20px;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
    background-color: #FC5F5F;
}

.btn-red-lg:hover{
    border: 1px solid #FF5F5F;
    color: #FF5F5F;
    background-color: #fff;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.btn-passive{
    border: 1px solid #BEBEBE;
    background: none!important;
    padding: 2px 12px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #BEBEBE;
    line-height: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
}

.btn-green-small{
    padding: 2px 12px;
    border: 1px solid #37B077;
    background-color: #37B077;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
}

.btn-green-small:hover{
    border: 1px solid #37B077;
    background-color: #1E6845;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-small-orange-white{
    color:#FF9C15;
    border: 1px solid #FF9C15;
    background-color: #fff;
}

.btn-small-red-white{
    color: #FF5F5F;
    border: 1px solid #FF5F5F;
    background-color: #fff;
}

.btn-small-orange-white:hover{
    color:#fff;
    border: 1px solid #FF9C15;
    background-color: #FF9C15;
}

.btn-small-red-white:hover{
    color: #fff;
    border: 1px solid #FF5F5F;
    background-color: #FF5F5F;
}

.btn-disabled{
    border: 1px solid #888;
    background-color: #888;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
}

.btn-disabled:hover{
    color: #fff;
}

.btn-green{
    border: 1px solid #37B077;
    background-color: #37B077;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    width: fit-content;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-right: 0.5rem;
}

.btn-green:hover{
    background-color: #1E6845;
    color: #fff;
}

.btn-grey{
    background-color: #F7F7F7;
    padding: 10px 10px 10px 10px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333;
}

.btn-grey-small{
    background-color: #F7F7F7;
    padding: 8px 4px 4px 4px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333;
}

.btn-warning .file-delete{
    position: absolute;
    top: 5px;
    right: 10px;
}

.btn-warning .file-delete:hover > i{
    color: #efefef;
}

.btn-success .file-delete{
    position: absolute;
    top: 5px;
    right: 25px;
}

.btn-success .file-delete:hover > i{
    color: #000;
}

.btn-binary{
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 20px;
    padding: 0.5rem 0.5rem;
    border-radius: 0.25rem;
    width: fit-content;
    margin-right: 0.5rem;
}

.btn-reset{
    position: absolute;
    top: 10px;
    left: 10px;
}

.btn-expand .toggling{
    display: inline-block;
    width: 40px;
    text-align: left;
    overflow: hidden;
    background: #F7F7F7;
    transition: all 0.3s ease-out;
    white-space: nowrap;
    border-radius: 10px;
}

.btn-expand .toggling a{
    color: #707070;
}

.btn-expand .toggling a:hover{
    color: #000;
}

.btn-expand .toggling:hover{
    width: fit-content;
}

.btns-toggle{
    font-size: 0.875rem;
    color: #000;
    width: 100%;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.6rem;
    margin-right: 0.6rem;
}

.btns-toggle button{
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px;
    border-width: 0px;
    border-style: none;
    border-image: none;
}

.btns-toggle button:hover{
    background-color: #707070;
    color: #fff;
}

.btns-toggle button.btns-toggle-1{
    border-left: 1px solid #707070;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.btns-toggle button.btns-toggle-2{
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}

.btns-toggle button.btns-toggle-3{
    border-right: 1px solid #707070;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.btns-toggle a.btns-toggle-1{
    border-left: 1px solid #707070;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.btns-toggle a.btns-toggle-2{
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}

.btns-toggle a.btns-toggle-3{
    border-right: 1px solid #707070;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/*CARD*/

.card{
    border-radius: 15px;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    margin-bottom: 2rem;
}

/*GVA*/

.gva-status ul{
    margin: 0px;
    padding: 0px;
}

.gva-status li{
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    color: #000;
    font-size: 0.875rem;
}

.gva-status span{
    margin-right: 8px;
}

.gva-sample-count{
    border: 1px solid #707070!important;
    background-color: #fff;
    padding: 4px 4px;
    min-width: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #000;
    border: none;
    border-radius: 5px;
    box-shadow: none!important;
    transition: all 0.3s ease-in-out;
}

.gva-sample-count:hover{
    border: 1px solid #37B077!important;
    background-color: #37B077;
    padding: 4px 4px;
    min-width: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: none!important;
    transition: all 0.3s ease-in-out;
}

/*SEE INTERPRETATION*/

.list-sets span{
    display: inline;
}

.list-sets span.btn-small{
    font-size: 0.875rem;
    border-radius: 0.25rem;
    padding: 0px 5px;
    position: relative;
    width: 120px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.list-sets span.btn-small .btn-small-data{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90px;
    display: inline-block;
}

.state-queue i{
    color: #E6CC3A;
}

.state-progress i{
    color: #FC9C15 !important;
}

.state-progress{
    color: #FC9C15 !important;
}

.state-error i{
    color: #FF5F5F;
}

.state-error{
    color: #FF5F5F;
}

.state-fail i{
    color: #ADADAD;
}

.state-positive i{
    color: #37B077;
}

.state-positive{
    color: #37B077 !important;
}

.state-positive .btn-grey i{
    color: #37B077;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-positive .btn-grey:hover{
    background-color: #37B077;
    color: #fff;
}

.state-positive .btn-grey:hover > i{
    color: #fff;
}

.state-positive .btn-grey-small i{
    color: #37B077;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-positive .btn-grey-small:hover{
    background-color: #37B077;
    color: #fff;
}

.state-positive .btn-grey-small:hover > i{
    color: #fff;
}

.state-stopped{
    color: #e74c3c !important;
}

.state-stopped .btn-grey i{
    color: #e74c3c;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-stopped .btn-grey:hover{
    background-color: #e74c3c;
    color: #fff;
}

.state-stopped .btn-grey:hover > i{
    color: #fff;
}

.state-stopped .btn-grey-small i{
    color: #e74c3c;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-stopped .btn-grey-small:hover{
    background-color: #e74c3c;
    color: #fff;
}

.state-stopped .btn-grey-small:hover > i{
    color: #fff;
}

.state-error .btn-grey i{
    color: #FC9C15;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-error .btn-grey:hover{
    background-color: #FC9C15;
    color: #fff;
}

.state-error .btn-grey.active{
    background-color: #FC9C15;
    color: #fff;
}

.state-error .btn-grey.active > i{
    color: #fff;
}

.state-error .btn-grey:hover > i{
    color: #fff;
}

.state-error .btn-grey-small i{
    color: #FC9C15;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-error .btn-grey-small:hover{
    background-color: #FC9C15;
    color: #fff;
}

.state-error .btn-grey-small:hover > i{
    color: #fff;
}

.state-error.active .btn-grey{
    background-color: #FC9C15;
    color: #fff;
}

.state-error.active .btn-grey i{
    color: #fff;
}

.state-fail .btn-grey.active{
    background-color: #FF5F5F;
    color: #fff;
}

.state-fail .btn-grey.active i{
    color: #fff;
}

.state-fail.active .btn-grey{
    background-color: #FF5F5F;
    color: #fff;
}

.state-fail.active .btn-grey i{
    color: #fff;
}

.state-fail .btn-grey i{
    color: #FF5F5F;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-fail .btn-grey:hover{
    background-color: #FF5F5F;
    color: #fff;
}

.state-fail .btn-grey:hover > i{
    color: #fff;
}

.state-na .btn-grey i{
    color: #999;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-na .btn-grey:hover{
    background-color: #999;
    color: #fff;
}

.state-na .btn-grey:hover > i{
    color: #fff;
}

.state-na .btn-grey-small i{
    color: #999;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 700;
}

.state-na .btn-grey-small:hover{
    background-color: #999;
    color: #fff;
}

.state-na .btn-grey-small:hover > i{
    color: #fff;
}

.status-text.state-error i{
    color: #FC9C15;
}

.status-text.state-fail i{
    color: #FF5F5F;
}

.default-card{
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 30px !important;
    box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 5%);
}

.default-card-number{
    font-size: 40px;
    line-height: 66px;
    color: #37B077;
    font-weight: 900;
}

.default-card-text{
    font-size: 20px;
    line-height: 26px;
    color: #000;
    font-weight: 500;
}

/* Interpretation modal / cards */

.card .card-header{
    font-size: 1rem;
    font-weight: 900;
    background-color: #efefef;
    border-bottom: 1px solid #efefef;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 0rem 0rem 0rem 1rem;
}

#multiFileupload-modal{
    z-index: 100000;
}

#interpretation-modal{
    z-index: 100000;
}

#interpretationContent .card{
    border-radius: 15px;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 10%);
    margin-bottom: 1rem;
}

#interpretationContent .card .card-body{
    font-weight: 700;
    padding: 1.4rem 1rem 0rem 1rem;
    position: relative;
}

#interpretationContent .card .card-body .bar-chart-wrapper{
    position: absolute;
    top: 18px;
    right: 18px;
}

#interpretationContent .card .card-body h4{
    font-weight: 900;
    font-size: 1.5rem;
}

#interpretationContent .card .card-body h5{
    color:#707070;
    font-size: 0.875rem;
    font-weight: 700;
}

#interpretationContent .card-true .card{
    border: 1px solid #37B077;
    color: #37B077;
}

#interpretationContent .card-false .card{
    border: 1px solid #FF5F5F;
    color: #FF5F5F;
}

#interpretationContent .card-na .card{
    border: 1px solid grey;
    color: grey;
}

#interpretationContent .card .card-footer{
    background-color: rgba(0,0,0,.0);
    border-top: 0px;
}

#interpretationContent .card .card-footer svg{
    height: 14px;
    width: 14px;
}

.interpretation-links{
    position: absolute;
    right: 30px;
    bottom: 5px;
}

.interpretation-links span{
    padding-left: 1rem;
}

.interpretation-links a{
    color: #63A284;
    text-decoration: underline;
}

#interpretationContent .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link{
    color: #707070;
    border: 1px solid #efefef;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.5rem 2rem;
}

#interpretationContent .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    color: #ffffff;
    background-color: #37B077;
    border: 1px solid #37B077 !important;
}

#interpretationContent .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:first-child .active{
    border-top-left-radius: 15px;
}

#interpretationContent .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:last-child .active{
    border-top-right-radius: 15px;
}

#interpretation-modal .nav-tabs{
    background-color: white;
    width: fit-content;
    border-bottom: 0px;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

#interpretation-modal .nav-tabs .nav-item{
    margin-right: 0px;
    border: 0px;
}

#interpretation-modal .nav-tabs .nav-tabs .nav-link:hover{
    background-color: #707070;
    color: #ffffff;
    border: 0px;
    isolation: isolate;
}

#interpretation-modal .page-grid-data{
    font-size: 0.9rem;
}

.page-grid-data p{
    margin-bottom: 0rem;
}

#interpretation-modal .page-grid-data p span{
    font-weight: 900;
    color: #37B077;
    padding-left: 1rem
}

.grid-data-wrapper{
    background-color: #f5f5f5;
    padding: 1rem 1.4rem 1rem 1.4rem ;
}

/*Gene Set Modal*/

#geneSet-modal .modal-dialog{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 95%;
    height: 100%;
    margin: 0rem;
}

#geneSet-modal .modal-content{
    background-color: #f5f5f5;
    height: 100%;
    border: 0px;
}

.card-na .card-header .radio-icon i{
    opacity: 0.4;
    color: #666666;
}

.card-na .card-header #radio-na:checked ~ .radio-icon i{
    color:#666666;
    opacity: 1;
}

.card-false .card-header .radio-icon i{
    opacity: 0.4;
    color: #FF5F5F;
}

.card-false .card-header #radio-false:checked ~ .radio-icon i{
    color:#FF5F5F;
    opacity: 1;
}

input[type=radio].radio-true{
    accent-color: #37B077;
}

.card-true .card-header .radio-icon i{
    opacity: 0.4;
    color: #37B077;
}

.card-true .card-header #radio-true:checked ~ .radio-icon i{
    fill:#37B077;
    opacity: 1;
}

.secondary-nav-wrapper{
    border-bottom: 1px solid #dee2e6;
}
 
.show-results:first-child span{
    margin-right: 1rem
}

.show-results:last-child span{
    margin-left: 1rem
}

.variant-list-tab-nav{
    position: relative;
}

.btns-wrapper{
    position: absolute;
    right: 20px;
    top: 100px;
}

.link-positive{
    color: #37B077;
    text-decoration: underline;
}

.link-positive:hover{
    color: #2B885C;
}

.link-negative{
    font-weight: 700;
    color: #FC9C15;
    text-decoration: underline;
}

.link-negative:hover{
    color: #F58F00;
}

.link-dark:hover{
    color: #37B077;
}

.col-btn{
    font-size: 0.875rem;
    padding: 2px 10px;
    width: fit-content;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.6rem;
    margin-right: 0.6rem;
    background: #efefef;
}

.data-table .col-btn i{
    font-size: 1rem;
    color: #000;
}

/* Gene Set / Filter set sidebar */

.offcanvas{
    background-color: rgb(0 0 0 / 0%);
    border: 0px !important;
}

.offcanvas-end{
    width: 60%;
}

.offcanvas-body{
    padding: 0rem 0rem;
    height: 100%;
}

#offcanvas-sidebar-wrapper{
    height: 100%;
}

#offcanvas-sidebar-wrapper label{
    cursor: pointer;
}

.Hide{
  display: none;
}

.sidebar-left{
    background-color: #efefef;
    height: 100%;
    min-height: 100%;
    display: none;
    margin-right: -30px;
    border-top-left-radius: 10px;
    z-index: 8;
    position: relative;
    transition: ease-out;
}

.sidebar-left p{
    margin-bottom: 0.4rem;
}

.sidebar-left .search-box input{
    margin-left: 0px;
}

.sidebar-left .search-box{
    width: 100%;
}

#g-sidebar-left input.input-regular{
    width: 100%;
}

.sidebar-right{
    background-color: #fff;
    height: 100%;
    min-height: 100%;
    box-shadow: -8px 20px 11px 0px rgb(0 0 0 / 13%);
    border-top-left-radius: 10px;
    z-index: 10;
    position: relative;
}

#offcanvas-sidebar-wrapper h4{
    font-size: 1.125rem;
    color: #000;
}

.sidebar-right .btn-close{
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
}

.sidebar-left .btns-binary{
    position: absolute;
    top: 1.4rem;
    right: 3rem;
}

.sidebar-right button{
    width: 100%;
    margin-bottom: 1rem;
}

#gene-set-select .col-btn{
    margin-right: 0rem;
    cursor: pointer;
}

#gene-set-select .col-btn i{
    color: #707070;
}

#gene-set-select .col-btn i:hover{
    color: #FF5F5F;
}

.sidebar-right .grey-box-wrap .col-btn{
    font-weight: 700;
}

.grey-box-wrap .col-btn{
    width: 100%;
    color: #000;
    padding: 0.4rem 1rem;
    position: relative;
    margin-right: 0rem;
}

.grey-box-wrap .col-btn i{
    color: #707070;
    cursor: pointer;
}

.grey-box-wrap .col-btn i.bi-eye-fill:hover{
    color: #37B077;
}

.grey-box-wrap .col-btn i.bi-trash-fill:hover{
    color: #FF5F5F;
}

.grey-box-wrap .col-btn .option-icons{
    position: absolute;
    right: 10px;
}

#create-gene-set-step-1 .grey-box-wrap .col-btn{
    background-color: #dcdcdc;
}

.flex-col{
    display: flex;
    flex-direction: row;
    height: 100%;
}

.flex-fill{
    flex: 1;
}

.Back{
    display: none;
}

.gene-code{
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 2px 5px;
    background-color: #fff;
    width: fit-content;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.gene-list-data{
    justify-content: space-between;
    display: inline;
}

.gene-list-data .gene-code-positive{
    color: #37B077;
}

#offcanvasFilterSets .btn-success{
    background-color: #37B077 !important;
}

#offcanvasFilterSets .btn-danger{
    background-color: #FC5F5F !important;
}

#offcanvasFilterSets .btn-primary{
    background-color: #83cfab !important;
}
#offcanvasFilterSets .btn-primary.active{
    background-color: #12a35f !important;
}

#offcanvasFilterSets .query-builder .rules-group-container button[data-add="group"]{
    color: #fff;
    background-color: #707070 !important;
    border-color: #707070 !important;
}

.query-builder .drag-handle, .query-builder .error-container, .query-builder .rule-container .rule-filter-container, .query-builder .rule-container .rule-operator-container, .query-builder .rule-container .rule-value-container{
    margin-left: -7px;
}

/*  filter */
.query-builder .rules-group-container{
    padding: 10px;
    padding-bottom: 6px;
    border: none;
    background: #f5f5f5;
}

.query-builder .rule-container, .query-builder .rule-placeholder, .query-builder .rules-group-container{
    background: #f5f5f5;
    border: none;
}

.query-builder .rules-group-container button[data-add="rule"]{
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    margin-right: 5px
}

.query-builder .rules-group-container button[data-add="group"]{
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}

.query-builder .rules-group-container button[data-delete="group"]{margin-left: 5px;}
.query-builder .rules-group-container button[data-delete="rule"]{margin-bottom: 5px;}
/*.query-builder .rules-group-container .group-conditions{display: none;}*/

#builder-plugins button{
    font-size: 0.8rem;
    font-weight: 700;
}

.sidebar-scrolling-wrapper-xs{
    max-height: 40vh;
 }

.sidebar-scrolling-wrapper-sm{
   max-height: 55vh;
}

.sidebar-scrolling-wrapper-lg{
    max-height: 80vh;
    box-shadow: 7px 20px 18px 1px rgb(0 0 0 / 16%);
    padding: 1rem 1rem;
    border-radius: 10px;
 }

.sidebar-scroll{
    overflow-y: auto;
    overflow-x: hidden;
}

input:focus-visible{
    outline-color: #999 !important;
    outline-width: 0px !important;
}

select:focus-visible{
    outline-color: #999 !important;
    outline-width: 0px !important;
}

textarea:focus-visible{
    outline-color: #999 !important;
    outline-width: 0px !important;
}

/* Gene set HPO / Custom tabs */
.tabs-binary{
    position: relative;
    min-height: 200px; /* This part sucks */
    clear: both;
}

.tabs-binary .tab{
    float: left;
}
  
.tabs-binary .tab label.btn-binary{
    background-color: #fff;
    border: 2px #707070 dashed;
    color: #707070;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
}

.tabs-binary .tab label.btn-binary:hover{
    border: 2px #707070 solid;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.tabs-binary .tab label.btn-binary-right{
    right: 0px;
    margin-top: -50px;
    position: absolute;
}

.tabs-binary .tab label.btn-binary-left{
    right: 70px;
    margin-top: -50px;
    position: absolute;
}

.tabs-binary .tab [type="radio"]{
    opacity: 0;
}

.tabs-binary .tab .content{
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    height: fit-content;
}

.tabs-binary .tab .content > *{
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.2s ease;
}

.tabs-binary .tab [type="radio"]:focus ~ label{
    outline: 0px;
}

.tabs-binary .tab [type="radio"]:checked ~ label{
    background-color: #fff;
    border: 2px solid #37B077;
    color: #37B077;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 16%);
    z-index: 2;
}

.tabs-binary .tab [type="radio"]:checked ~ label ~ .content{
    z-index: 1;
}

.tabs-binary .tab [type="radio"]:checked ~ label ~ .content > *{
    opacity: 1;
    transform: translateY(0);
}

.modal-header .toggle-button{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px;
}

.toggle-button i{
    font-size: 1rem;
    padding: 14px 12px 14px 12px;
}

figure.toggling-icon{
    display: inline;
}

figure.toggling-icon i{
    display: inline;
}

.toggling span{
    display: inline;
    margin-right: 1rem;
}

/* DRAGULA-specific styles */
#drag-drop .wrapper{
    display: table;
}

#drag-drop .row{
    display: block;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
}

#drag-drop .row:nth-child(odd){
    background-color: rgba(0, 0, 0, 0);
}

#drag-drop .row > div{
    cursor: move;
}

.gu-mirror{
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

#drag-drop .row .ex-moved{
    background-color: #e74c3c;
}

#drag-drop .row.ex-over{
    background-color: rgba(255, 255, 255, 0.3);
}

#drag-drop .col-btn i{
    height: 10px;
    width: 10px;
    font-size: 0.8rem;
    opacity: 0.4;
}

#drag-drop .col-btn:hover i{
    opacity: 1;
}
  
#left-lovehandles > div,
#right-lovehandles > div{
    cursor: initial;
}

#left-defaults{
    border-bottom: solid 1px #efefef;
    color: #37B077;
}

#left-defaults i{
    color: #37B077;
}

#left-defaults .col-btn{
    border: 1px solid #efefef;
}

#right-defaults .col-btn{
    border: 1px solid #efefef;
}

#left-defaults .col-btn:hover{
    border: 1px solid #37B077;
}

#right-defaults .col-btn:hover{
    border: 1px solid #707070;
}

#active-columns{
    color: #37B077!important;
}

#left i{
    color: #37B077;
}

#left .col-btn{
    border: 1px solid #efefef;
}

#right .col-btn{
    border: 1px solid #efefef;
}

#left .col-btn:hover{
    border: 1px solid #37B077;
}

#right .col-btn:hover{
    border: 1px solid #707070;
}



.gva-popup{
    z-index: 1000000;
}

.modal-info{
    z-index: 10;
}

.gva-popup i{
    display: inline;
    width: 20px;
}

.gva-popup span{
    display: inline;
    border: 1px solid red;
}

.modal-info{
    width: 300px;
    background-color: #ffffff;
    font-size: 0.875rem;
    border-radius: 10px;
    box-shadow: 0px 12px 22px 0px rgb(0 0 0 / 16%);
    padding: 15px 15px 15px 15px;
    z-index: 100000;
}

.create-sample-ul .nav-pills{
    position: absolute;
    right: 50px;
}

.create-sample-ul{
    color: #808080;
}

.create-sample-ul .active{
    background-color:unset !important;
    color: #37B077 !important;
}

.create-sample-ul .active svg{
    color: #37B077;
    box-shadow: 0px 0px 0px 3px rgb(55 176 119 / 41%);
    border-radius: 50%;
}

.create-sample-ul .active .wirdzard-circle-active{
    display: initial;
}

.create-sample-ul .active .wirdzard-circle-solid{
    display: none;
}

.create-sample-ul a{
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #707070 !important;
}

.create-sample-ul .active a{
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #37B077 !important;
    opacity: 0.5;
}

.wirzard-circle{
    color:#F5F5F5
}

.wirdzard-circle-active{
    display: none;
}

.tab-step{
    background-color: #F5F5F5;
    width: 100%;
    height: 31px;
    padding-left: 30px;
    font-size: 1rem;
}

/* GERMLINE VARIANT ANALYSIS */
.breadcrumb{
    list-style: none;
    overflow: hidden;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 15px;
    padding: 0;
}

.breadcrumb li{
    float: left;
}

.breadcrumb li a{
    color: white;
    text-decoration: none;
    padding: 6px 0 6px 55px;
    background: #37B077;
    position: relative;
    display: block;
    float: left;
}

.breadcrumb li a:after{
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid hsla(34,85%,35%,1);
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

.breadcrumb li a:before{
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}

.breadcrumb li:first-child a{
    padding-left: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 1.4rem;
}

.progress-ready a{
    background:#37B077 !important;
}

.progress-ready a:after{
    border-left-color: #37B077 !important;
}

.progress-progress a{
    background: #FC9C15 !important;
}

.progress-progress a:after{
    border-left-color: #FC9C15 !important;
}

.progress-queue a{
    background: #E6CC3A !important;
}

.progress-queue a:after{
    border-left-color: #E6CC3A !important;
}

.progress-error a{
    background: #FC5F5F !important;
}

.progress-error a:after{
    border-left-color: #FC5F5F !important;
}

.progress-fail a{
    background: #ADADAD !important;
}

.progress-fail a:after{
    border-left-color: #ADADAD !important;
}

/* DROPZONE STYLE */
.plupload_header_title,.plupload_header_tex{
    display: none;
}

.file-upload{
    position: relative;
    margin: auto;
    height: auto;
    min-height: 200px;
    border: 2px dashed #707070;
    border-radius: 10px;
    text-align: center;
    width: 98%;
    padding: 5px 15px;
}

.file-upload table:nth-child(1){
    display: none;
}

.file-upload .plupload_filelist_header,
.file-upload .plupload_filelist_footer .plupload_file_status,
.file-upload .plupload_filelist_footer .plupload_file_size,
.file-upload .plupload_filelist_footer .plupload_upload_status, 
.plupload_filelist_content .plupload_file .plupload_file_thumb,
.plupload_filelist_content .plupload_file .plupload_file_status{
    display: none;
}

.plupload_filelist_content{
    list-style: none;
}

.plupload_filelist_content .plupload_file{
    width: 49.3% !important;
    float: left;
    border-radius: 10px;
    margin: 8px 4px;
    height: 45px;
    border: 1px solid green;
    padding-top: 0.4rem;
}

.plupload_filelist_content .plupload_file .plupload_file_name{
    width: max-content;
    float: left;
    margin-left: 10px;
    margin-top: 5px;
}

.plupload_filelist_content .plupload_file .plupload_file_size{
    width: max-content;
    float: right;
    margin-right: 10px;
    margin-top: 5px;
}

.plupload_filelist_content .plupload_file .plupload_file_action{
    position: relative;
    float: right;
    margin-right: 10px;
    margin-top: 5px;
    width: 30px;
    height: 37px;
    cursor: pointer;
}

.plupload_filelist_content .plupload_action_icon{
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background-color: #ccc;
    position: relative;
}

.plupload_filelist_content .plupload_action_icon  span{
    position: absolute;
    top: -6px;
    left: 8px;
    font-size: 1.125rem;
    font-weight: 700;
}

.plupload_buttons{
    position: absolute !important;
    right: -11px;
    top: -50px;
}

.plupload_buttons a{
    background-color: rgb(55, 176, 119) !important;
    color: #fff !important;
    display: inline-block;
    font-weight: 700;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 0.875rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    z-index: 0 !important;
}

.plupload_buttons a:nth-child(n+2){
    display: none;
}

.file-upload .plupload_droptext{
    margin-top: 4%;
    font-size: 1.8rem;
}

.card-complete{
    font-size: 1rem;
    text-align: center;
}

.card-header a.card-header-icon{
    color: #707070;
}

.card-header a.card-header-icon:hover{
    color: #333;
}

.card-header-icon{
    position: absolute;
    right: 30px;
    top: 0px;
}

.card .accordion-item{
    border: 0px;
}

.progress{
    height: 0.8rem !important;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    min-width: 150px;
    color: #fff !important;
}

.state-upload .progress-bar{
    background-color: #37B077;
}

.state-progress .progress-bar{
    background-color: #F58F00;
}

.state-stopped .progress-bar{
    background-color: #e74c3c;
}

.sample-detail{
    padding: 2rem 0rem;
    border-bottom: 1px solid #efefef;
}

.file-name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 270px;
    display: inline-block;
}

.file-name i{
    font-size: 1rem;
}

.file-group-negative{
    padding: 0.8rem 1rem 0.8rem 1rem;
    border: 1px dashed #e74c3c;
}

.file-group-positive{
    padding: 0.8rem 1rem 0.8rem 1rem;
    border: 1px dashed #37B077;
}

.files-wrapper{
    position: relative;
}

.file-group{
    border-radius: 5px;
    width: 100%;
    display: inline-grid;
}

.file-group .dropdown-menu{
    width: 100%;
}

.file-group .dropdown button{
    font-size: 0.875rem;
}

.file-group .dropdown .dropdown-toggle::after{
    font-size: 1rem;
    margin-left: 10px;
}

.file-group .dropdown:hover .dropdown-menu{
    display: inline;
}

.accordion-body{
    padding: 0rem;
}

.accordion-button{
    font-weight: 700;
}

.accordion-button:not(.collapsed){
    color: #fff;
    background-color: #37B077;
}

.accordion-button:after{
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 55.751 55.751' style='enable-background:new 0 0 55.751 55.751%3B' xml:space='preserve' fill='%23707070'%3E%3Cg%3E%3Cpath d='M31.836 43.006c0.282-0.281 0.518-0.59 0.725-0.912L54.17 20.485c2.107-2.109 2.109-5.528 0-7.638c-2.109-2.107-5.527-2.109-7.638 0l-18.608 18.61L9.217 12.753c-2.109-2.108-5.527-2.109-7.637 0C0.527 13.809-0.002 15.19 0 16.571c-0.002 1.382 0.527 2.764 1.582 3.816l21.703 21.706c0.207 0.323 0.445 0.631 0.729 0.913c1.078 1.078 2.496 1.597 3.91 1.572C29.336 44.604 30.758 44.084 31.836 43.006z'/%3E%3C/g%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 55.751 55.751' style='enable-background:new 0 0 55.751 55.751%3B' xml:space='preserve' fill='%23ffffff'%3E%3Cg%3E%3Cpath d='M31.836 43.006c0.282-0.281 0.518-0.59 0.725-0.912L54.17 20.485c2.107-2.109 2.109-5.528 0-7.638c-2.109-2.107-5.527-2.109-7.638 0l-18.608 18.61L9.217 12.753c-2.109-2.108-5.527-2.109-7.637 0C0.527 13.809-0.002 15.19 0 16.571c-0.002 1.382 0.527 2.764 1.582 3.816l21.703 21.706c0.207 0.323 0.445 0.631 0.729 0.913c1.078 1.078 2.496 1.597 3.91 1.572C29.336 44.604 30.758 44.084 31.836 43.006z'/%3E%3C/g%3E%3C/svg%3E");
}

.dropdown-item.active, .dropdown-item:active{
    font-size: 0.875rem;
}

.warning-message{
    color: #e74c3c;
    width: fit-content;
}

.warning-message i{
    color: #e74c3c;
}

.group-name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: fit-content;
    display: inline-block;
    cursor: pointer;
}

.group-name span{
    color: #000;
}

.panel-group .dropdown .btn{
    text-align: left;
    font-size: 0.875rem;
    display: inline-block;
}

.panel-group .dropdown-toggle{
    width: 100%;
}

.panel-group .dropdown .dropdown-menu li{
    position: relative;
}

.panel-group .dropdown .dropdown-menu .dropdown-submenu-left{
    right: 100%;
    left: auto;
}

.panel-group .dropdown .dropdown-menu>li:hover>.dropdown-submenu{
    display: block;
}

.panel-group .dropdown-menu .dropdown-item{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: inline-block;
}

.panel-group .sample-file-name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.panel-left .dropdown{
    display: inline;
    max-width: 200px;
    margin-bottom: 0.4rem;
    margin-right: 0.4rem;
}

.panel-right .dropdown{
    display: inline;
    width: 100%;
    margin-bottom: 0.3rem;
}

.panel-group .dropdown .dropdown-menu{
    position: absolute;
    font-size: 0.875rem;
}

.panel-group .dropdown .dropdown-menu .dropdown-submenu{
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.panel-group .dropdown-toggle::after{
    display: none;
}

.panel-group .dropdown-toggle::before{
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    margin-bottom: 4px;
}

.panel-left .btn-warning{
    border: 1px solid #e74c3c;
    border-radius: 10px;
    background-color: #fff;
    color: #e74c3c;
}

.panel-left .btn-warning:hover{
    color: #fff !important;
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.panel-left .sample-file-name{
    width: 85%;
    margin-top: 4px;
}

.panel-left .sample-file-name:hover{
    color: #fff;
}

.panel-left .dropdown .dropdown-item:hover{
    color: #000;
    background-color: #e9ecef;
}

.panel-left .dropdown .dropdown-item{
    color: #707070;
    cursor: pointer;
}

.panel-right .btn-success{
    border: 1px solid #37B077;
    border-radius: 10px;
    background-color: #fff;
    color: #37B077;
}

.panel-right .btn-success:hover{
    color: #fff;
    background-color: #37B077;
    border-color: #37B077;
}

.panel-right .sample-file-name{
    width: 80%;
    margin-top: 4px;
}

.panel-group .dropdown .dropdown-menu{
    left: 10%;
    top: 16px;
    transform: translate(0px, 10px);
}

.panel-left .dropdown .dropdown-menu{
    border: 1px solid #e74c3c;
}

.panel-right .dropdown .dropdown-menu{
    border: 1px solid #37B077;
}

.panel-right .dropdown .dropdown-item:hover{
    color: #000;
    background-color: #e9ecef;
}

.panel-right .dropdown .dropdown-item{
    color: #707070;
}

.panel-group .dropdown .btn{
    padding: 0rem .75rem;
}

.run-detail{
    font-weight: 500;
}

.card-title{
    margin-bottom: 0rem !important;
}

#btn1{
    position: fixed;
    right: 10px;
    bottom: 10px;
}

.progress-bar-animated{
    opacity: 75%;
}

.files-analysis-wrapper .card-title{
    margin-bottom: 0rem;
}

.files-analysis-wrapper .accordion .accordion-button{
    padding: 0.6rem 1rem;
}

.files-analysis-wrapper .accordion .accordion-button .btn-white-green{
    position: absolute;
    right: 80px;
}

.files-analysis-wrapper .card-body{
    padding: 0rem;
}

.files-analysis-wrapper .accordion-body{
    padding: 1rem;
}

.files-upload-wrapper .card-title{
    margin-bottom: 0rem !important;
}

.files-upload-wrapper .accordion .accordion-button{
    padding: 0.6rem 1rem;
}

.files-upload-wrapper .accordion .accordion-button .btn-white-green{
    position: absolute;
    right: 80px;
}

.files-upload-wrapper .table>:not(caption)>*>*{
    border-bottom: 0px;
}

.files-upload-wrapper .file-group-positive{
    padding: 0.4rem 1rem 0rem 1rem;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    border-bottom: 1px dashed #37B077;
}

.files-upload-wrapper .table{
    margin-bottom: 0.2rem;
}

.files-upload-wrapper .card-body{
    padding: 0rem;
}

.files-upload-wrapper .accordion-item:last-of-type{
    border-bottom-right-radius: 0rem;
    border-bottom-left-radius: 0rem;
}

.files-upload-wrapper .accordion-item:first-of-type{
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
}

.files-upload-wrapper .accordion-item{
    background-color: #fff;
    border: 0px solid rgba(0,0,0,.125);
}

.files-upload-wrapper .accordion-item:last-of-type .accordion-button.collapsed{
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
    border: 1px solid rgba(0,0,0,.125);
}

#uploadFiles-modal{
    position: relative;
}

#uploadFiles-modal .modal-dialog{
    position: fixed;
    width: fit-content;
    margin: 0;
    padding: 10px;
}

#uploadFiles-modal .modal-body{
    padding: 0rem;
}

#uploadFiles-modal .card-body{
    padding: 0rem;
}

#uploadFiles-modal .modal-content{
    border-radius: 10px;
    box-shadow: 0px 22px 33px 0px rgb(0 0 0 / 16%);
    border: none;
}

#uploadFiles-modal .modal-header{
    background: #dfe1e5;
    color: #000;
    text-align: left !important;
    padding: 0.5rem;
}

#uploadFiles-modal tbody, td, tfoot, th, thead, tr{
    border: 0px;
}

#uploadFiles-modal .file-group-positive{
    padding: 0.4rem 0.4rem 0.4rem 0.4rem;
    border-bottom: 1px dashed #37B077;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
}

#uploadFiles-modal .modal-header h5{
    font-size: 1rem;
    margin-left: 0.5rem;
}

#uploadFiles-modal .modal-header .btn-close{
    top: 5px;
    right: 8px;
    background-image: none !important;
    font-size: 1rem;
    color: #555;
    opacity: 1;
}

#uploadFiles-modal .modal-header .accordion-button{
    width: 20px;
    position: absolute;
    right: 50px;
    top: 5px;
    background-image: none !important;
    font-size: 1rem;
    background: #dfe1e5;
    color: #555;
    padding: 0.5rem;
}

#uploadFiles-modal .modal-header .accordion-button:not(.collapsed){
    background-image: none !important;
    box-shadow: inset 0 0px 0 rgb(0 0 0 / 0%);
}

#uploadFiles-modal .modal-header .accordion-button:focus{
    border: 0px;
    background-image: none !important;
    box-shadow: inset 0 0px 0 rgb(0 0 0 / 0%);
}

#uploadFiles-modal .modal-header .accordion-button::after{
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.8rem;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 55.751 55.751' style='enable-background:new 0 0 55.751 55.751%3B' xml:space='preserve' fill='%23000000'%3E%3Cg%3E%3Cpath d='M31.836 43.006c0.282-0.281 0.518-0.59 0.725-0.912L54.17 20.485c2.107-2.109 2.109-5.528 0-7.638c-2.109-2.107-5.527-2.109-7.638 0l-18.608 18.61L9.217 12.753c-2.109-2.108-5.527-2.109-7.637 0C0.527 13.809-0.002 15.19 0 16.571c-0.002 1.382 0.527 2.764 1.582 3.816l21.703 21.706c0.207 0.323 0.445 0.631 0.729 0.913c1.078 1.078 2.496 1.597 3.91 1.572C29.336 44.604 30.758 44.084 31.836 43.006z'/%3E%3C/g%3E%3C/svg%3E");
}

#uploadFiles-modal .modal-header .accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 55.751 55.751' style='enable-background:new 0 0 55.751 55.751%3B' xml:space='preserve' fill='%23000000'%3E%3Cg%3E%3Cpath d='M31.836 43.006c0.282-0.281 0.518-0.59 0.725-0.912L54.17 20.485c2.107-2.109 2.109-5.528 0-7.638c-2.109-2.107-5.527-2.109-7.638 0l-18.608 18.61L9.217 12.753c-2.109-2.108-5.527-2.109-7.637 0C0.527 13.809-0.002 15.19 0 16.571c-0.002 1.382 0.527 2.764 1.582 3.816l21.703 21.706c0.207 0.323 0.445 0.631 0.729 0.913c1.078 1.078 2.496 1.597 3.91 1.572C29.336 44.604 30.758 44.084 31.836 43.006z'/%3E%3C/g%3E%3C/svg%3E");
}

#uploadFiles-modal .accordion-item{
    border: 0px;
}

.modal-backdrop.show{
    opacity: 0!important;
    display: none;
}

.modal-backdrop{
    opacity: 0.8!important;
    z-index: 0;
}

#uploadFiles-modal .file-group{
    border-bottom: 1px dashed #37B077;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.5rem;
    border-radius: 0px;
    display: block;
}

#uploadFiles-modal .file-name i{
    font-size: 0.8rem;
}

#uploadFiles-modal .table{
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 0rem;
}

#uploadFiles-modal .table-cell{
    flex: 1 10%;
}

#uploadFiles-modal .colspan-5{
    flex: 1 85%;
}

#uploadFiles-modal .table>:not(:first-child){
    border: 0px;
}

#uploadFiles-modal .table>:not(caption)>*>*{
    padding: 0rem 0rem;
}

#uploadFiles-modal .file-name{
    width: 150px;
}

#uploadFiles-modal .accordion-button::after{
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}


#uploadFiles-modal .accordion-button{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    padding: 0.6rem 0.8rem 0.6rem 0.5rem;
}

#rootwizard .card{
    margin-bottom: 0rem;

}

/*Organisations*/
.filter-dropdown{
    width: 200px;
    background-color: #fff;
    border: 1px solid #6C727F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.filter-dropdown .form-select{
    flex: 1;
    height: 32px;
    border: none;
    outline: none;
    font-size: 0.875rem;
    margin-left: 12px;
    margin-right: 12px;
    cursor: pointer;
}

.filter-dropdown .form-select:focus{
    border-color: #ffffff;
    outline: 0;
    box-shadow: none;
}

.filter-dropdown .icon-filter{
    margin-top: 15px;
    color: #000;
}

.circle-bg{
    border-radius: 50px;
    background-color: #37B077;
    margin-right: 6px;
    color: #fff;
    text-align: center;
    width: 30px;
    height: 25px;
    margin-top: 0px;
}

.circle-bg:hover{
    background-color: #1E6845;
}

.table-responsive .table>:not(:first-child){
    border-top: 0px solid currentColor !important;
}

.status-table ul{
    padding: 0px;
    margin: 0px;
}

.status-table ul li{
    list-style: none;
    display: inline;
    padding: 0px 10px;
    font-size: 1.25rem;
}

.status-table ul li .bi-pencil-fill{
    font-size: 1rem;
}

.status-table a{
    text-decoration: none;
}

.status-switch input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
}

.status-switch label{
    cursor: pointer;
    text-indent: -9999px;
    width: 46px;
    height: 22px;
    background: grey;
    display: inline-block;
    border-radius: 100px;
    position: relative;
    top: 3px;
}

.status-switch label:after{
    content: '';
    position: absolute;
    top: 2px;
    right: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.status-switch input:checked + label{
    background: #37B077;
}

.status-switch label:active:after{
    width: 40px;
}

.status-switch{
    list-style: none;
    display: inline;
    font-size: 0px !important;
    padding: 0px 10px !important;
}

.status-switch input:checked + label:after{
    left: calc(0% + 3px);
    transform: translateX(-0%);
}

.status-table a{
    color: #707070;
}

.status-table a:hover{
    color: #FF5E17;
}

.info-box{
    display: block;
    position: absolute;
    width: 300px;
    background-color: #ffffff;
    font-size: 0.875rem;
    border-radius: 16px;
    box-shadow: 0px 12px 22px 0px rgb(0 0 0 / 16%);
    padding: 15px 15px 15px 65px;
    z-index: 3;
}

.info-box.active{
    background-image: url(../images/info-box-passive-icon.png);
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-position: left 20px top 25px;
}

.info-box.passive{
    background-image: url(../images/info-box-active-icon.png);
    background-repeat: no-repeat;
    background-position: left 20px top 25px;
}

.bi-grid-3x3-gap-fill{
    font-size: 1.4rem;
    color: #707070;
    cursor: pointer;
}

.bi-grid-3x3-gap-fill:hover{
    color: #000;
}

.upload-logo input::placeholder{
    color: #37B077;
    font-weight: 700;
}

.upload-logo input{
    border: 0px;
}

.upload-logo i{
    color: #37B077;
    font-weight: 900;
    font-size: 1.4rem;
}

#editOrganisation-modal .form-control{
    height: 45px;
}

#editOrganisation-modal input::placeholder{
    color: #000;
}

#editOrganisation-modal .upload-logo input::placeholder{
    color: #37B077;
    font-weight: 700;
}

#editOrganisation-modal .modal-header{
    text-align: left;
}

.modal-title{
    color: #000;
}

.info-text .bi{
    color: #37B077;
    font-size: 1rem;
}

.logo-holder .form-control{
    height: 38px;
}

.logo-holder .form-control img{
    height: 30px;
    width: auto;
}

.logo-holder .form-control button{
    height: 0.2rem;
    width: 0.2rem;
    margin-top: 0.5rem;
}

.required-field i{
    color: red;
    font-size: 0.4rem;
}

.view-header .btn-green-small{
    width: fit-content;
}

.view-header span{
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}

.view-logo{
    background-color: #fff;
    border: solid 1px #707070;
    border-radius: 10px;
    padding: 0.5rem;
    width: fit-content;
    display: inline-block;
}

.detail-label{
    font-size: 0.875rem;
}

.detail-detail{
    font-size: 1rem;
    color: #000;
}

#viewOrganisation-modal .modal-header{
    border: 0px;
}

#viewOrganisation-modal .modal-body{
    padding: 0rem 2rem 2rem 2rem;
}

.page-grid-data p span{
    font-weight: 700;
    color: #000;
    padding-left: 1rem
}

.col-left{
    border-right: 1px solid #d1d1d1;
}

.btn-border a{
    text-decoration: none;
}

.btn-border-passive{
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 0.2rem 1.4rem;
    color: #707070;
}

.btn-border-active{
    border: 1px solid #37B077;
    border-radius: 10px;
    padding: 0.2rem 1.4rem;
    color: #37B077;
}

.btn-border-passive a{
    color: #707070;
}

.btn-border-active a{
    color: #37B077;
}

.data-row{
    border-radius: 10px;
}

.data-row-passive{
    padding: 0.6rem 1.4rem;
    border: 1px solid #d1d1d1;
}

.data-row-active{
    border: 2px dashed #37B077;
    padding: 0.6rem 1.4rem;
}

.data-row a{
    color: #707070;
}

.data-row a:hover{
    color: #FF5E17;
}

.data-row .col1{
    width: 10%;
}

.data-row .col2{
    width: 30%;
}

.data-row .col3{
    width: 20%;
}

.data-row .col4{
    width: 30%;
}

.data-row .col5{
    width: 10%;
}

.data-col{
    cursor: pointer;
}

a[aria-expanded=true] .bi-sort-down{
    display: none;
 }

a[aria-expanded=false] .bi-sort-up{
    display: none;
}

.data-table th:hover > .bi-sort-up{
    display: none;
}

.data-table th:hover > .bi-sort-down{
    display: inline;
}

.data-table th .bi-sort-down{
    display: none;
}

.data-col:hover > .bi-sort-up{
    display: none;
}

.data-col:hover > .bi-sort-down{
    display: inline;
}

.data-col .bi-sort-down{
    display: none;
}

.data-col i{
    font-size: 0.8rem !important;
    margin-right: 0.4rem;
}

.width-200{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 200px;
    display: inline-block;
}

.width-140{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 140px;
    max-width: 140px;
    display: inline-block;
}

.width-150{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 150px;
    max-width: 150px;
    display: inline-block;
}

td.check{
    max-width: 10px;
}

.dropdown.btn-border{
    display: block;
    width: fit-content;
}

.dropdown.btn-border .dropdown-menu{
    min-width: 200px;
}

.dropdown.btn-border .dropdown-item:focus, .dropdown-item{
    padding: 0.5rem 1rem 0.4rem 1rem;
    border-bottom: 1px solid #d1d1d1;
}

.dropdown.btn-border .dropdown-item:focus, .dropdown-item a{
    color: #1e2125;
}

.dropdown.btn-border .dropdown-item:focus, .dropdown-item:hover{
    color: #1e2125;
    background-color: #efefef;
}

.dropdown.btn-border .dropdown-item:focus, .dropdown-item i{
    cursor: pointer;
}

.dropdown.btn-border .dropdown-item:focus, .dropdown-item i:hover{
    color: #e74c3c;
}

.fs-5{
    color: #000;
}

.data-col-header{
    border-bottom: 1px dashed #707070;
}

.icon-1rem{
    background-size: 1rem;
    height: 1rem;
    width: 1rem;
}

.icon-org{
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Uploaded to: SVG Repo  www.svgrepo.com  Generator: SVG Repo Mixer Tools --%3E%3Csvg fill='%23000000' height='800px' width='800px' version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 297 297' xmlns:xlink='http://www.w3.org/1999/xlink' enable-background='new 0 0 297 297'%3E%3Cg%3E%3Cpath d='m167.666 250.543c-0.053-0.018-4.671-1.435-4.671-1.435-1.687-0.518-3.507-0.385-5.101 0.372l-9.394 4.467-9.394-4.467c-1.594-0.757-3.414-0.889-5.101-0.372 0 0-4.617 1.418-4.671 1.435-8.051 2.683-13.459 10.186-13.459 18.671v20.729c0 3.898 3.159 7.057 7.057 7.057h51.135c3.898 0 7.057-3.159 7.057-7.057v-20.729c0-8.485-5.408-15.988-13.458-18.671z'/%3E%3Cpath d='m126.335 222.662c0 12.222 9.943 22.165 22.165 22.165s22.165-9.943 22.165-22.165-9.943-22.165-22.165-22.165-22.165 9.943-22.165 22.165z'/%3E%3Cpath d='m122.933 97.384h51.135c3.898 0 7.057-3.159 7.057-7.057v-20.729c0-8.485-5.408-15.988-13.459-18.671-0.053-0.018-4.671-1.435-4.671-1.435-1.687-0.519-3.507-0.386-5.101 0.372l-9.394 4.466-9.394-4.467c-1.594-0.757-3.414-0.89-5.101-0.372 0 0-4.617 1.418-4.671 1.435-8.051 2.683-13.459 10.186-13.459 18.671v20.729c0.001 3.899 3.16 7.058 7.058 7.058z'/%3E%3Cpath d='M148.5 44.33c12.222 0 22.165-9.943 22.165-22.165S160.722 0 148.5 0s-22.165 9.943-22.165 22.165 S136.278 44.33 148.5 44.33z'/%3E%3Cpath d='m60.156 250.543c-0.053-0.018-4.672-1.436-4.672-1.436-1.687-0.516-3.507-0.385-5.101 0.374l-9.393 4.466-9.394-4.467c-1.594-0.757-3.413-0.889-5.101-0.372 0 0-4.617 1.418-4.671 1.435-8.051 2.683-13.459 10.186-13.459 18.671v20.729c0 3.898 3.159 7.057 7.057 7.057h51.134c3.898 0 7.057-3.159 7.057-7.057v-20.729c0.001-8.485-5.408-15.989-13.457-18.671z'/%3E%3Cpath d='m40.99 244.827c12.222 0 22.165-9.943 22.165-22.165s-9.943-22.165-22.165-22.165-22.165 9.943-22.165 22.165 9.943 22.165 22.165 22.165z'/%3E%3Cpath d='m275.176 250.543c-0.053-0.018-4.671-1.435-4.671-1.435-1.688-0.518-3.507-0.385-5.101 0.372l-9.394 4.467-9.393-4.466c-1.594-0.758-3.414-0.889-5.101-0.374 0 0-4.618 1.419-4.672 1.436-8.05 2.682-13.458 10.186-13.458 18.671v20.729c0 3.898 3.159 7.057 7.057 7.057h51.134c3.898 0 7.057-3.159 7.057-7.057v-20.729c0-8.485-5.408-15.988-13.458-18.671z'/%3E%3Cpath d='m233.845 222.662c0 12.222 9.943 22.165 22.165 22.165 12.222 0 22.165-9.943 22.165-22.165s-9.943-22.165-22.165-22.165c-12.222 0-22.165 9.943-22.165 22.165z'/%3E%3Cpath d='m40.99 182.07c4.733 0 8.569-3.837 8.569-8.569v-17.152h90.371v17.151c0 4.733 3.837 8.569 8.569 8.569s8.569-3.837 8.569-8.569v-17.152h90.371v17.152c0 4.733 3.837 8.569 8.569 8.569 4.733 0 8.569-3.837 8.569-8.569v-25.721c0-4.733-3.837-8.569-8.569-8.569h-98.941v-23.679c0-4.733-3.837-8.569-8.569-8.569s-8.569 3.837-8.569 8.569v23.679h-98.939c-4.733 0-8.569 3.837-8.569 8.569v25.721c0 4.733 3.836 8.57 8.569 8.57z'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-cell{
	background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' height='800px' width='800px' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'  viewBox='0 0 232.971 232.971' xml:space='preserve'%3E%3Cpath d='M232.971 116.485l-36.937-64h-56.939l-28.278-49H36.935L0 67.485l28.278 49L0 165.485l36.935 64h73.883l28.278-49h56.939L232.971 116.485z M54.259 33.485h39.234l19.622 34l-19.622 34H54.259l-19.622-34L54.259 33.485z M93.493 199.485H54.259l-19.622-34l19.622-34h39.234l19.622 34L93.493 199.485z M139.477 150.485l-19.622-34l19.622-34h39.233l19.622 34l-19.622 34H139.477z'/%3E%3C/svg%3E");
}

.icon-calendar{
	background-image: url("data:image/svg+xml,%3Csvg width='800px' height='800px' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000000' d='M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z'/%3E%3C/svg%3E");
}
