﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: Lufga;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.required:after {
    content: " *";
    color: red;
}

.bg-v2 {
    background: #E6F3EA !important;
}

.header-logo {
    width: 40px;
    height: 40px;
}

.header-logo-container {
    width: 72px;
    height: 72px;
    padding: 16px;
    border-radius: 16px;
    gap: 10px;
    background: #fff;
}

.user-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #fff;
}

.user-name-text {
    font-size: 16px;
    font-weight: 600;
    color: #001417;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #001417 !important;
    margin-right:15px;
}

.nav-item.active {
    background-color: #fff;
    color: #001417;
    box-shadow: 0px 24px 48px 0 rgba(0,0,0,0.16);
    border-radius: 15px;
}

th {
    border-top: 0px !important;
    text-transform: uppercase;
}

.table-container {
    overflow: auto;
}

.input-group-text {
    background-color: #fff;
    /*  border-left: 0px !important*/;
    color: #009156;
}

.input-group > input[type="search"] {
    border-right: 0px !important;
}

.btn_primary {
    background-color: #00D47E;
    color: #013941;
    font-weight: 600;
    border-radius: 16px;
    border: 0px;
    padding: 16px 40px;
    text-decoration: none;
    margin-right:10px;
}

    .btn_primary:hover {
        filter: brightness(85%);
        text-decoration: none !important;
    }

.btn_secondary {
    background-color: #D2FEE1;
    color: #013941;
    font-weight: 600;
    border-radius: 16px;
    /* border: 0px;*/
    padding: 16px 40px;
    border-color: rgba(1, 57, 65, 0.1);
}

.editbtn {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #013941;
}

.custom-control-input:focus ~ .custom-control-label::before {
    border-color: #00D47E !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 126, 00.25) !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #00D47E !important;
    background-color: #00D47E !important;
}

.custom-control-input:active ~ .custom-control-label::before {
    background-color: #00D47E !important;
    border-color: #00D47E !important;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #00D47E !important;
}

.custom-control-input-green:not(:disabled):active ~ .custom-control-label::before {
    background-color: #00D47E !important;
    border-color: #00D47E !important;
}


.line-height-60 {
    line-height: 60px;
}

.line-height-30 {
    line-height: 30px;
}

.text-size-52 {
    font-size: 52px;
}

.text-size-22 {
    font-size: 22px;
}

.text-weight-500 {
    font-weight: 500;
}

.text-size-16 {
    font-size: 16px;
}

.text-color-primary {
    color: #00D47E;
}

.text-primary-dark {
    color: #001417;
}

.text-size-40 {
    font-size: 40px;
}

.font-ibm {
    font-family: "IBM Plex Sans";
}

/* Base for label styling */
[type="checkbox"]:not(:checked):not(.custom-control-input),
[type="checkbox"]:checked:not(.custom-control-input) {
    position: absolute;
    left: -9999px;
}

    [type="checkbox"]:not(:checked):not(.custom-control-input) + label,
    [type="checkbox"]:checked:not(.custom-control-input) + label {
        position: relative;
        padding-left: 32px;
        cursor: pointer;
        margin-bottom: 4px;
        display: inline-block;
        font-size: 16px;
    }
        /* checkbox aspect */
        [type="checkbox"]:not(:checked):not(.custom-control-input) + label:before,
        [type="checkbox"]:checked:not(.custom-control-input) + label:before {
            content: '';
            position: absolute;
            left: 0px;
            top: 0px;
            width: 22px;
            height: 22px;
            border: 2px solid #cccccc;
            background: #ffffff;
            border-radius: 4px;
           /* box-shadow: inset 0 1px 3px rgba(0,0,0,.1);*/
        }
        /* checked mark aspect */
        [type="checkbox"]:not(:checked):not(.custom-control-input) + label:after,
        [type="checkbox"]:checked:not(.custom-control-input) + label:after {
            content: '✔';
            position: absolute;
            top: 0px;
            left: 5px;
            font-size: 20px;
            line-height: 1.2;
            color: #09ad7e;
            transition: all .2s;
        }
        /* checked mark aspect changes */
        [type="checkbox"]:not(:checked):not(.custom-control-input) + label:after {
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"]:checked:not(.custom-control-input) + label:after {
            opacity: 1;
            transform: scale(1);
        }
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked):not(.custom-control-input) + label:before,
[type="checkbox"]:disabled:checked:not(.custom-control-input) + label:before {
    box-shadow: none;
    border-color: #999999;
    background-color: #dddddd;
}

[type="checkbox"]:disabled:checked:not(.custom-control-input) + label:after {
    color: #999999;
}

[type="checkbox"]:disabled:not(.custom-control-input) + label {
    color: #aaaaaa;
}
/* accessibility */
[type="checkbox"]:checked:focus:not(.custom-control-input) + label:before,
[type="checkbox"]:not(:checked):focus:not(.custom-control-input) + label:before {
    border: 2px dotted #0000ff;
}
/* hover style just for information */
label:hover:before {
    border: 2px solid #4778d9 !important;
    background: #ffffff;
}

.page-header {
    font-weight: 500;
    color: #013941;
    font-size: 28px;
    font-family: "Lufga";
}

.page-sub-header {
    font-family: Lufga;
    font-size: 16px;
    font-weight: 400;
}

.card_title {
    font-family: IBM Plex Sans;
    font-size: 20px;
    font-weight: 500;
}

.form-control {
    background: #01394105 !important;
    border: 1px solid #0139411A;
    font-family: IBM Plex Sans;
}

.table {
    font-family: IBM Plex Sans;
}

.custom-control-label, .form-check-label {
    font-family: IBM Plex Sans;
}

.select2-container--default .select2-selection--single {
    background-color: #01394105 !important;
    border: 1px #0139411A !important;
    border-radius: 0.25rem!important;
    height: 38px !important;
}

.select2-container--default {
    background-color: #01394105 !important;
    border: 1px solid #0139411A;
    border-radius: 4px;
    height: 38px !important;
    /*width: 100%!important;*/
}

.dropdown-item:hover, .dropdown-item:focus {
    /*color: #fff;*/
    text-decoration: none;
    background-color: #00D47E;
}

.badge-tag {
    background-color: #E6EBEC;
    color: #013941;
    font-family: IBM Plex Sans;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 4px, 8px, 4px, 8px;
    border-radius: 100px;
    gap: 10px;
}

.badge-warning {
    background: #F8ED92;
    color: #001417;
    font-family: Lufga;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    padding: 4px, 8px, 4px, 8px;
    border-radius: 100px;
    gap: 10px;
}

.badge-success {
    background: #009156;
    color: #fff;
    font-family: Lufga;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    padding: 4px, 8px, 4px, 8px;
    border-radius: 100px;
    gap: 10px;
}

.badge-danger {
    background: #F4663A;
    color: #fff;
    font-family: Lufga;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    padding: 4px, 8px, 4px, 8px;
    border-radius: 100px;
    gap: 10px;
}

.gridbtn:hover {
    text-decoration: none;
}

.select2-selection--multiple {
    overflow: hidden !important;
    height: auto !important;
}
.rad-button {
    background-color: #D2FEE1;
}
.rad-button.active{
    background-color: #00D47E;
}

/*.dropdown-toggle::after {
   
    margin-top: 19px !important;
   
}*/
.modal-content {
  
    border-radius: 16px !important;
  
}

.alertify .ajs-dialog {     /*show alertify boxes in center*/
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;    
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 15px 15px!important;
   
}
/*.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #01394105;
    border-radius: 0.25rem;
    background: #01394105 !important;
}*/
/*.select2-container {
   
    width: 100% !important;
}*/
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: hsla(156, 100%, 28%, 1) transparent transparent transparent !important;
  
}
