.row {
    margin-left: -5px;
    margin-right: -5px;
}

.row:before,
.row:after {
    content: "";
    display: table;
}

.row:after {
    clear: both;
}

/* colunas */
.col {
    display: inline-block;
    vertical-align: top;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    margin-right: -4px;
    *zoom: 1;
    *display: inline;
}

.col-1 {
    width: 8.333%;
}

.col-1:last-child {
    margin-right: 0;
}

.col-2 {
    width: 16.6666%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333%;
}

.col-5 {
    width: 41.6666%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.3333%;
}

.col-8 {
    width: 66.6666%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333%;
}

.col-11 {
    width: 91.666%;
}

.col-12 {
    width: 100%;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    padding: 2px;
    float: left;
    min-height: 100%;
}

.col-2 .row {
    margin: -2px;
}

.col-4 .row {
    margin: -2px;
}

.col-6 .row {
    margin: -2px;
}

.col-8 .row {
    margin: -2px;
}


@media screen and (max-width: 768px) {
    .row {
        margin-top: -0.5%;
        margin-bottom: -0.5%;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100% !important;
        margin-bottom: 0.5%;
    }
}

@media screen and (max-width: 640px) {
    .row {
        margin-top: -0.5%;
        margin-bottom: -0.5%;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100%;
        margin-bottom: 0.5%;
    }

    .modal_body>.col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100%;
        margin-bottom: 0.5%;
    }
}

@media screen and (max-width: 600px) {
    .row {
        margin-top: -0.5%;
        margin-bottom: -0.5%;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100%;
        margin-bottom: 0.5%;
    }
}

@media screen and (max-width: 480px) {
    .row {
        margin-top: -0.5%;
        margin-bottom: -0.5%;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100%;
        margin-bottom: 0.5%;
    }
}

@media screen and (max-width: 320px) {
    .row {
        margin-top: -0.5%;
        margin-bottom: -0.5%;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100%;
        margin-bottom: 2%;
    }
}

/* FORM ELEMENTS */

.form-control {
    width: 100%;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-control label,
.profile-info-item label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--font-color);
}

.form-control input,
.form-control select,
.form-control textarea,
.fake-input {
    width: 100%;
    border: 1px solid var(--light-grey);
    font-size: 0.8rem;
    padding: 10px;
    border-radius: 6px;
    color: var(--font-color);
    font-weight: 400;
    background: var(--white-color);
}
.fake-input {
    font-size: 0.8rem;
}

.form-control select {
    padding: 9px 6px;
}

.select {
    position: relative;
    width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 6px;
}
.select-focus {
    border: 1px solid var(--info-color);
}

.select select {
    display: none;
}

.select-selected {
    background-color: var(--white-color);
    font-size: 0.8rem;
}

.select-selected:after {
    position: absolute;
    content: "\ea67";
    font-family: 'Icofont';
    top: 10px;
    right: 20px;
    width: 0;
    height: 0;
    color: var(--mute-color);
}

.select-selected.select-arrow-active:after {
    content: "\ea6a";
    font-family: 'Icofont';
    top: 7px;
}

.select-items div,
.select-selected {
    color: var(--font-color);
    padding: 10px 16px;
    cursor: pointer;
    user-select: none;
    border-radius: 6px;
}

.select-items {
    position: absolute;
    background-color: var(--white-color);
    border: 1px solid var(--light-grey);
    font-size: 0.8rem;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
   /* max-height: calc(100vh / 2);*/
    max-height: 315px;
    overflow-y: scroll;
}
.select-items::-webkit-scrollbar, .select-items::-webkit-scrollbar-track{    
    background-color: var(--white-color);
    width: 5px;
    
}
.select-items::-webkit-scrollbar-thumb {
  /*  background-color: var(--mute-color);*/
    background-color: var(--theme-color);
    width: 5px;
    border-radius: 5px;       
}

.select-items::-webkit-scrollbar-thumb:hover{
    background-color: var(--theme-color);
    
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.06);
    background-color: var(--theme-color);
    color: var(--white-color);
}

.form-control textarea {
    resize: none;
}

.form-control input[type=radio],
.form-control input[type=checkbox] {
    display: none;
    width: auto !important;
}

.form-control label {
    cursor: pointer;
    display: flex;
    gap: 24px;
}

.form-control input[type=radio]+label:before,
.form-control input[type=checkbox]+label:before {
    border: 1px solid var(--info-color);
    content: "\00a0";
    display: inline-block;
    font: 16px/1em sans-serif;
    height: 16px;
    margin: 0 .25em 0 0;
    padding: 0;
    vertical-align: top;
    width: 16px;
    border-radius: 4px;
}

.form-control input[type=radio]:checked+label:before,
.form-control input[type=checkbox]:checked+label:before {
    background: var(--mute-color);
    color: var(--white);
    content: "\2713";
    text-align: center;
}

.form-control input[type=radio]:checked+label:after,
.form-control input[type=checkbox]:checked+label:after {
    font-weight: bold;
}

.form-control span,
.profile-info-item span {
    width: 100%;
    font-size: 0.8rem;
    padding: 4px 2px;
    text-align: left;
}

.form-control input::placeholder,
.form-control select::placeholder,
.form-control textarea::placeholder {
    color: var(--mute-color);
}

.form-control input::-webkit-input-placeholder,
.form-control select::-webkit-input-placeholder,
.form-control textarea::-webkit-input-placeholder {
    color: var(--mute-color);
}

.form-control input:-ms-input-placeholder,
.form-control select:-ms-input-placeholder,
.form-control textarea:-ms-input-placeholder {
    color: var(--mute-color);
}

.form-control input[type=text]:read-only,
.form-control textarea:read-only,
.form-control select:disabled{
    background-color: var(--secondary-color);
}


input:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--info-color) !important;
    box-shadow: 0 0 1.6px 0.1px var(--blue-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid var(--light-grey);
    -webkit-text-fill-color: var(--text-color);
    -webkit-box-shadow: 0 0 0px 1000px var(--white-color) inset;
    transition: background-color 5000s ease-in-out 0s;
}

input.mask-money, input.mask-float {
    text-align: right;
}

.checkbox-label {
    height: 48px;
    padding: 5px;
    cursor: pointer;
    font-size: 0.9rem !important;
    font-weight: 600;
    color: var(--font-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hide the browser's default checkbox */
.checkbox-label input,
.checkbox-label2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label2 {
    padding: 5px;
    cursor: pointer;
    font-size: 0.9rem !important;
    font-weight: 600;
    /*text-transform: uppercase;*/
    color: var(--font-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

/* Create a custom checkbox */
.checkmark {
    /* position: absolute;*/
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    min-height: 24px;
    min-width: 24px;
    max-height: 24px;
    max-width: 24px;
    margin-right: 8px;
    border-radius: 4px;
    padding: 0 !important;
    background-color: var(--white-color);
    border: 1px solid var(--light-grey);
}

.checkbox-label .checkmark {
    margin-left: 20px;
    border-radius: 6px;
}

/* On mouse-over, add a grey background color */
.checkbox-label:hover input~.checkmark,
.checkbox-label2:hover input~.checkmark {
    border: 1px solid var(--info-color);
}

/* When the checkbox is checked, add a blue background */
.checkbox-label input:checked~.checkmark,
.checkbox-label2 input:checked~.checkmark {
    background-color: var(--white-color);
    border: 1px solid var(--theme-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: relative;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-label input:checked~.checkmark:after,
.checkbox-label2 input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkmark:after,
.checkbox-label2 .checkmark:after {
    left: 5px;
    top: 0;
    width: 8px;
    height: 12px;
    border: solid var(--theme-color);
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*   RADIO */
.radio-label {
   /* height: 48px;*/
    padding: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    /*text-transform: uppercase;*/
    color: var(--font-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

/* Hide the browser's default radio button */
.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radiomark {
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    min-height: 20px;
    min-width: 20px;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--light-grey);
}

/* On mouse-over, add a grey background color */
.radio-label:hover input~.radiomark {
    border: 1px solid var(--info-color);
}

/* When the radio button is checked, add a blue background */
.radio-label input:checked~.radiomark {
    background-color: var(--white);
    border: 1px solid var(--theme-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
    content: "";
    position: relative;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-label input:checked~.radiomark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-label .radiomark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color);
}

/* switch */
.switch-label {
    padding: 2px;
    cursor: pointer;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--font-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.switch {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.switch+span {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.switch--shadow+span {
    padding: 2px;
    width: 42px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-top: 8px;
}

.switch--shadow+span:before,
.switch--shadow+span:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: '';
}

.switch--shadow+span:before {
    right: 1px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    transition: all 0.4s;
}

.switch--shadow+span:after {
    width: 18px;
    height: 18px;
    left: 2px;
    background-color: var(--white);
    border-radius: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
}

.switch--shadow:checked+span:before {
    background-color: var(--theme-color);
}

.switch--shadow:checked+span:after {
    transform: translateX(20px);
}

.form-control .input-file {
    width: 100%;
    border: 1px solid var(--light-grey);
    font-size: 0.8rem;
    height: 26px;
    padding: 7px 3px 2px 8px;
    border-radius: 4px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-file label:hover~.input-file {
    border: 1px solid var(--info-color);
}

.form-control input[type=file] {
    display: none;
}

.file-container {
    max-height: 65px;
    overflow: hidden;
}

.filebox {
    background-color: var(--white-color) !important;
    padding: 2px;
    width: 95%;
    font-size: .9em;
}

.form-control .input-file.file-focus {
    border: 1px solid var(--info-color);
    box-shadow: 0 0 1.8px 0.1px var(--info-color);
}

input.disabled {
    pointer-events: none;
    background-color: var(--default) !important;
}

.btn-file {
    position: relative;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    float: right;
    top: -35px;
    margin-left: calc(100% - 35px);
    font-size: 0.9rem;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 3px;
    display: grid;
    place-items: center;
    color: var(--font-color);
    cursor: pointer;
}

.text-left{ text-align: left !important;}
.text-right{ text-align: right !important;}
.text-center{ text-align: center !important;}
.text-thin {font-weight: 200 !important;}
.text-normal {font-weight: 400 !important;}
.text-medium {font-weight: 600 !important;}
.text-bold {font-weight: 700 !important;}
.text-strong {font-weight: 800 !important;}
.text-black {font-weight: 900 !important;}

.text-mute {color: var(--light-grey) !important;}
.text-dark {color: var(--dark-color) !important;}
.text-primary {color: var(--theme-color) !important;}
.text-light {color: var(--light-color) !important;}
.text-secondary {color: var(--secondary-color) !important;}
.text-white {color: var(--white) !important;}
.text-danger {color: var(--danger-color) !important;}
.text-success {color: var(--success-color) !important;}
.text-info {color: var(--info-color) !important;}
.text-warning {color: var(--warning-color) !important;}
.text-upper { text-transform: uppercase}
.text-lower { text-transform: lowercase}

.w5 {width: 5% !important;}
.w6 {width: 6% !important;}
.w7 {width: 7% !important;}
.w8 {width: 8% !important;}
.w9 {width: 9% !important;}
.w10 {width: 10% !important;}
.w15 {width: 15% !important;}
.w20 {width: 20% !important;}
.w25 {width: 25% !important;}
.w30 {width: 30% !important;}
.w35 {width: 35% !important;}
.w40 {width: 40% !important;}
.w45 {width: 45% !important;}
.w50 {width: 50% !important;}
.w55 {width: 55% !important;}
.w60 {width: 60% !important;}
.w65 {width: 65% !important;}
.w70 {width: 70% !important;}
.w75 {width: 75% !important;}
.w80 {width: 80% !important;}
.w85 {width: 85% !important;}
.w90 {width: 90% !important;}
.w95 {width: 95% !important;}
.w100 {width: 100% !important;}

.mt-2 {margin-top: 2px}
.mt-4 {margin-top: 4px}
.mt-6{margin-top: 6px}
.mt-8 {margin-top: 8px}
.mt-10 {margin-top: 10px}
.mt-16 {margin-top: 16px}
.mt-20 {margin-top: 20px}
.mt-24 {margin-top: 24px}
.mt-30 {margin-top: 30px}
.mt-32 {margin-top: 32px}
.mt-36 {margin-top: 36px}
.mt-40 {margin-top: 40px}
.mt-48 {margin-top: 48px}
.mt-50 {margin-top: 50px}
.mt-60 {margin-top: 60px}
.mt-64 {margin-top: 64px}
.mt-72 {margin-top: 72px}
.mt-80 {margin-top: 80px}
.mt-90 {margin-top: 90px}
.mt-96 {margin-top: 96px}
.mt-100 {margin-top: 100px}

.mb-2 {margin-bottom: 2px}
.mb-4 {margin-bottom: 4px}
.mb-6{margin-bottom: 6px}
.mb-8 {margin-bottom: 8px}
.mb-10 {margin-bottom: 10px}
.mb-16 {margin-bottom: 16px}
.mb-20 {margin-bottom: 20px}
.mb-24 {margin-bottom: 24px}
.mb-30 {margin-bottom: 30px}
.mb-32 {margin-bottom: 32px}
.mb-36 {margin-bottom: 36px}
.mb-40 {margin-bottom: 40px}
.mb-48 {margin-bottom: 48px}
.mb-50 {margin-bottom: 50px}
.mb-60 {margin-bottom: 60px}
.mb-64 {margin-bottom: 64px}
.mb-72 {margin-bottom: 72px}
.mb-80 {margin-bottom: 80px}
.mb-90 {margin-bottom: 90px}
.mb-96 {margin-bottom: 96px}
.mb-100 {margin-bottom: 100px}

.ml-2 {margin-left: 2px}
.ml-4 {margin-left: 4px}
.ml-6{margin-left: 6px}
.ml-8 {margin-left: 8px}
.ml-10 {margin-left: 10px}
.ml-16 {margin-left: 16px}
.ml-20 {margin-left: 20px}
.ml-24 {margin-left: 24px}
.ml-30 {margin-left: 30px}
.ml-32 {margin-left: 32px}
.ml-36 {margin-left: 36px}
.ml-40 {margin-left: 40px}
.ml-48 {margin-left: 48px}
.ml-50 {margin-left: 50px}
.ml-60 {margin-left: 60px}
.ml-64 {margin-left: 64px}
.ml-72 {margin-left: 72px}
.ml-80 {margin-left: 80px}
.ml-90 {margin-left: 90px}
.ml-96 {margin-left: 96px}
.ml-100 {margin-left: 100px}

.mr-2 {margin-right: 2px}
.mr-4 {margin-right: 4px}
.mr-6{margin-right: 6px}
.mr-8 {margin-right: 8px}
.mr-10 {margin-right: 10px}
.mr-16 {margin-right: 16px}
.mr-20 {margin-right: 20px}
.mr-24 {margin-right: 24px}
.mr-30 {margin-right: 30px}
.mr-32 {margin-right: 32px}
.mr-36 {margin-right: 36px}
.mr-40 {margin-right: 40px}
.mr-48 {margin-right: 48px}
.mr-50 {margin-right: 50px}
.mr-60 {margin-right: 60px}
.mr-64 {margin-right: 64px}
.mr-72 {margin-right: 72px}
.mr-80 {margin-right: 80px}
.mr-90 {margin-right: 90px}
.mr-96 {margin-right: 96px}
.mr-100 {margin-right: 100px}

.pd-10 {padding: 10px !important}
.pdt-10 {padding-top: 10px}
.pdb-10 {padding-bottom: 10px}
.pdl-10 {padding-left: 10px}
.pdr-10 {padding-right: 10px}

.pd-20 {padding: 20px !important}
.pdt-20 {padding-top: 20px}
.pdb-20 {padding-bottom: 20px}
.pdl-20 {padding-left: 20px}
.pdr-20 {padding-right: 20px}

.pd-30 {padding: 30px !important}
.pdt-30 {padding-top: 30px}
.pdb-30 {padding-bottom: 30px}
.pdl-30 {padding-left: 30px}
.pdr-30 {padding-right: 30px}

.pd-40 {padding: 40px !important}
.pdt-40 {padding-top: 40px}
.pdb-40 {padding-bottom: 40px}
.pdl-40 {padding-left: 40px}
.pdr-40 {padding-right: 40px}

.pd-50 {padding: 50px !important}
.pdt-50 {padding-top: 50px}
.pdb-50 {padding-bottom: 50px}
.pdl-50 {padding-left: 50px}
.pdr-50 {padding-right: 50px}

.table-container {
    width: 100%;
    overflow-x: scroll;
    overflow: hidden;
}
.table-container::-webkit-scrollbar
{
    height: 5px;
}

.table-default,
.table-listview,.table-dark {
    width: 100%;
    border-spacing: 0;

}

.table-default tbody,
.table-listview tbody, .table-dark tbody {
    display: block;
    width: 100% !important;
    min-width: 100%;
    overflow-y: scroll;
}
.table-slim tbody {
    overflow: hidden !important;
}

.table-default tbody::-webkit-scrollbar,
.table-listview tbody::-webkit-scrollbar,
.table-dark tbody::-webkit-scrollbar {
  /*  background-color: var(--bg-color);*/
    width: 5px;
}

.table-default tbody::-webkit-scrollbar-track,
.table-listview tbody::-webkit-scrollbar-track,
.table-dark tbody::-webkit-scrollbar-track {
    background-color: var(--bg-color);
    width: 5px;

}


.table-default tbody::-webkit-scrollbar-thumb,
.table-listview tbody::-webkit-scrollbar-thumb,
.table-dark tbody::-webkit-scrollbar-thumb {
   /* background-color: #DEE6EB;*/
    background-color: var(--theme-color);
    width: 5px;
    border-radius: 5px;
}

.table-default tbody::-webkit-scrollbar-thumb:hover,
.table-listview tbody::-webkit-scrollbar-thumb:hover,
.table-dark tbody::-webkit-scrollbar-thumb:hover{
   /* background-color: var(--mute-color);*/
    background-color: var(--theme-color);
}


.table-stripped tr:nth-child(even), .even-row {
    background-color: var(--bg-color);
    border-radius: 8px;
}

.table-stripped tr:nth-child(odd) {
    background-color: var(--white-color);
}

 .odd-row{
    background-color: var(--bg-color);
    border-radius: 8px;
}


.table-dark tr:nth-child(odd){
    background-color: var(--theme-color);
}

.table-default thead,
.table-listview thead,
.table-dark thead {
    display: block;
}

.table-default tr,
.table-listview tr,
.table-dark tr {
    display: flex;
    min-width: 100%;
    width: 100%;
    align-items: center;
    padding: 2px 0;
}

.table-default th,
.table-default td,
.table-listview th,
.table-listview td,
.table-dark th,
.table-dark td  {
    padding: 10px;
    color: var(--font-color);
    font-size: 0.9rem;
    font-weight: 500;
    height: 48px;
}

.table-slim tr {
    padding: 0 2px;
    min-height: 24px;
    height: 24px;
}
.table-slim th,
.table-slim td {
    padding: 2px;
    color: var(--mute-color);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    /*height: 24px;*/
}
.table-slim th {
    font-weight: 800;
}

.table-default th, .table-listview th {
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--bg-color);
}

.table-slim th {

    height: 32px;
}
.active-row td {
    background-color: var(--bg-color);
}
.active-row td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.active-row td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table-default tbody tr td,
.table-default thead tr th {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-listview td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table-listview td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table-listview tbody tr td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    background-color: var(--bg-color);
}

.table-default tbody tr td span:not(.pill) {
    display: none;
}

.table-default tbody tr td:nth-child(1) {
    font-weight: 600;
    color: var(--font-color);
    gap: 20px;

}

.active-row td {
    color: var(--text-primary) !important;
}

.table-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.table-default tbody tr:hover td {
    background-color: var(--secondary-color);
    cursor: pointer;
}



.table-default tbody tr:hover td:first-child {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px;
}


.table-default tbody tr:hover td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.td-right {justify-content: flex-end;}
.td-left { justify-content: flex-start;}
.td-center { justify-content: center;}

.table-slim tbody tr:hover td {
    background-color: transparent !important;
}

.table-default tbody::-webkit-scrollbar, .table-listview tbody::-webkit-scrollbar, .table-dark tbody::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.table-input tbody tr {
    padding: 0 !important;   
}

.table-input tbody tr td,.table-input thead tr th {
    padding: 2px !important;
    height: 30px;
    font-size: 0.7rem;
}

.table-input tbody tr td:first-child,.table-input thead tr th:first-child {
   width: 1000px;

}
.table-input thead tr th:not(:first-child), .table-input tbody tr th:not(:first-child) {
    width: 100%;
    min-width: 106px;
    max-width: 106px;
}
.table-input tbody tr td input, .table-input tbody tr td select {
width: 100%;
min-width: 96px;
max-width: 96px;
padding: 3px;
border-radius: 4px;
border: 1px solid var(--light-grey);
color: var(--text-color);
background-color: var(--white-color);
font-size: 0.7rem;
}

#table-5-row tbody {
    height: 300px;
    max-height: 300px;
}

#table-10-row tbody {
    height: 600px;
    max-height: 600px;
}

#table-15-row tbody {
    height: 900px;
    max-height: 900px;
}

.overflow-x {
    overflow-x: scroll !important;
}

.overflow-y {
    overflow-y: scroll;
}


/*DEFAULT LOAD*/
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8;
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid var(--theme-color);
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;

    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: 700;
}

.message {
    position: absolute;
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
    border: none;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 0 3px 1px rgba(0,0,0,0.3) !important;
    z-index: 2;
    color: var(--font-color);
}
.message i{
    margin-bottom: 5px;
   /* font-size: 2.5rem;*/
    font-size: 4rem;
}
form .message{
    text-align: center;
}

.message.success i{
   /* color: #fff;
    background-color: var(--success-color);*/
    color: var(--success-color);
}

.message.info i{
   /* color: #fff;
    background-color: var(--blue-color);*/
    color: var(--blue-color);
}

.message.warning i{
   /* color: #fff;
    background-color: var(--warning-color);*/
    color: var(--warning-color);
}

.message.error i{
   /* color: #fff;
    background-color: var(--danger-color);*/
    color: var(--danger-color);
}

.message_btn {
    display: inline-block;
    padding: 5px 10px;
    color: #ffffff;
    background-color: rgba(0,0,0,0.5);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.8;
    transition-duration: 0.2s;
}

.message_btn:hover{
    opacity: 1;
}

/*AJAX RESPONSES MESSAGES*/

.ajax_response {
    position: fixed;
    z-index: 998;
    width: calc(100vw - 310px);
    width: 100%;
    min-width: 280px;
    margin-top: 50px;
}
.login-container .ajax_response {
    position: fixed;
    z-index: 998;
    top: 200px !important;
    width: 100%;
    max-width: 400px;
    min-width: 280px;
    margin-top: 50px;
}

.ajax_response .message {
    font-size: 0.9rem;
    font-weight: 400;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 380px;
    margin: 0 auto;
    padding: 15px 15px 20px 15px;
    background: #333333;
    background: #ffffff;
    margin-bottom: 30px;
    position: relative;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
    gap: 32px;
    color: var(--font-color);
}

.ajax_response .message:before {
    flex-basis: 0;
    margin: -5px 15px 0 0 !important;
    font-size: calc(1rem * 1.2);
    color: rgba(0, 0, 0, 0.5);
}

.ajax_response .message_time {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4%;
    height: 5px;
    /*background: rgba(0, 0, 0, 0.5);*/
}



.ajax_response .message.success i{
    color: var(--success-color) !important;
}

.ajax_response .message.info i{
    color: var(--blue-color) !important;
}

.ajax_response .message.warning i{
    color: var(--warning-color) !important;
}

.ajax_response .message.error i{
    color: var(--danger-color) !important;
}

.ajax_response .message.success .message_time {
    background: var(--success-color) !important;
}
.ajax_response .message.info .message_time {
    background: var(--blue-color) !important;
}
.ajax_response .message.warning .message_time {
    background: var(--warning-color) !important;
}
.ajax_response .message.error .message_time {
    background: var(--danger-color) !important;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hithere {

    animation: hithere 1s ease;
}

.bounce {
     animation: bounce 1.3s ease !important;

 }

@keyframes bounce {
   /* 0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }   */

    0%, 50%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    75% {
        transform: translateY(-4px);
    }
}

@keyframes hithere {
    30% { transform: scale(1.2); }
    40%, 60% { transform: rotate(-4deg) scale(1.2); }
    50% { transform: rotate(4deg) scale(1.2); }
    70% { transform: rotate(0deg) scale(1.2); }
    100% { transform: scale(1); }
  }


@media screen and (max-width: 400px) {
    .ajax_response .message {
        width: 320px;
        gap: 24px;
        font-size: 0.9rem;
    }
    .message i {
        font-size: 3rem;
    }
}

