Form CSS

core.css

/*!********************************************************
RESETS
**********************************************************/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px var(--appsGrey);
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #800020;
    -webkit-box-shadow: inset 0 0 5px #80002099;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #800020AA;
}
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    color: #000;
    font-family: 'Open Sans';
    width: 100%;
    min-height: 100%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212529;
}
.block-code {
    border-left: 4px solid var(--primaryColor);
    color: #343a40 !important;
}
.nav-header {
    border-bottom: 2px var(--primaryColor) solid;
}
.site-title {
    color: var(--primaryColor);
    margin: 0;
}
img {
    max-width: 100%;
}
.form-control:focus {
    box-shadow: unset;
}
/*!********************************************************
DEFAULTS
**********************************************************/
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.2rem;
}
h3 {
    font-size: 1rem;
}
h3.alt {
    background: var(--primaryColor);
}
h4 {
    font-size: 1.1rem;
}
.ck-editor__editable_inline {
    min-height: 250px;
}
.autocomplete-suggestions {
    border: 1px solid #999;
    background: #fff;
    overflow: auto;
    cursor: pointer;
}
.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-selected {
    background: #f0f0f0;
}
.autocomplete-suggestions strong {
    font-weight: normal;
    color: #39f;
}
.autocomplete-group {
    padding: 2px 5px;
}
.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}
.autocomplete-no-suggestion a {
    color: #9a9a9a;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-no-suggestion a:hover {
    text-decoration: none;
    color: #333;
    opacity: .7;
}
.fa-notification {
    font-size: 2.5rem !important;
    position: absolute;
    top: -10px;
    right: 5px;
}
.fa-rotate {
    transform: rotate(180deg);
}
progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    appearance: none;
    height: 0.5rem;
    overflow: hidden;
    border: 0;
    border-radius: 0.25rem;
    background-color: var(--appsGrey);
    color: var(--primaryColor);
    width: 160px;
}
progress::-moz-progress-bar {
    background-color: var(--primaryColor);
}
progress::-webkit-progress-value {
    background-color: var(--primaryColor);
}
::-webkit-progress-bar {
    background-color: var(--appsGrey);
}
#toast-container>div {
    opacity: 1;
    border: 2px solid #ccc !important;
}
.form-group.input-underline .form-control {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 1.5rem;
    margin: 4px 0 0;
    padding: 0;
}
.form-group.input-underline textarea.form-control {
    border: 1px solid #dee2e6 !important;
    margin-top: 1rem !important;
    padding: 8px 12px;
}
.form-group.input-underline .underline {
    height: 4px;
    width: 0;
    position: relative;
    margin-top: -4px;
    background: var(--fieldColor);
    transition: width .3s ease-in-out;
}
.form-group.input-underline .form-control:focus+.underline {
    width: 100%;
    background: var(--fieldColor);
}
.form-group.input-underline label {
    margin: 0 0 -5px;
    padding: 0;
    display: block;
}
/*!********************************************************
FORM SEARCH INPUT
**********************************************************/
.search__input {
    width: 100%;
    padding: 14px 24px 12px;
    background-color: var(--fieldColor);
    transition: 250ms ease-in-out;
    font-size: 20px;
    line-height: 18px;
    color: #fff;
    background-color: var(--fieldColor);
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 95% center;
    border-radius: 5px;
    border: 1px solid #575756;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
.search__input::placeholder {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus::placeholder {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus {
    padding: 14px 0 12px;
    outline: 0;
    color: grey;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='grey' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-position: 100% center;
}
.search-field {
    margin-right: 10px;
}
.search-field .input-group-text {
    border-radius: 50% !important;
    padding: 0;
}
.search-field .search {
    height: 39px;
    border-top: unset;
    border-left: unset;
    border-right: unset;
    margin-right: 4px;
    width: 0px !important;
    opacity: 0;
    transition: all 0.5s ease;
}
.search-field .form-control:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.2rem transparent;
    border-bottom: 1px solid #ced4da;
}
.search-field .search.expanded {
    width: 300px !important;
    opacity: 1;
    transition: all 0.5s ease;
}
.search-field .fa-search {
    font-size: 20px;
}
/*!********************************************************
BUTTONS
**********************************************************/
.btn-form {
    border: 3px solid var(--buttonColor);
    color: var(--buttonColor);
    background: 0 0;
    cursor: pointer;
    padding: 20px 40px;
    margin: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.btn-form:hover {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    color: #fff;
    background: var(--buttonColor);
    opacity: .8;
}
.btn-burgandy {
    background-color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 2px 90px;
    border-radius: 0;
}
.btn-burgandy:hover {
    background-color: #fff;
    color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
}
.btn-red {
    background-color: var(--primaryColor);
    color: #fff;
    border: 2px solid var(--primaryColor);
}
.btn-red:focus,
.btn-red:hover {
    color: #fff;
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    opacity: .8;
    box-shadow: unset;
}
.btn-yellow {
    background-color: var(--appsYellow);
    color: #fff;
    border: 2px solid var(--appsYellow);
}
.btn-yellow:focus,
.btn-yellow:hover {
    color: #fff;
    background: var(--appsYellow);
    border-color: var(--appsYellow);
    opacity: .8;
    box-shadow: unset;
}
.btn-round {
    border-radius: 50px;
    padding: .5rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}
/*!********************************************************
CUSTOM SEARCH AND TEXT INPUTS
**********************************************************/
.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1rem .5rem;
    max-width: 100%;
    width: calc(100% - 2em);
    vertical-align: top;
    font-size: 1.5rem;
}
.input__field {
    position: relative;
    display: block;
    float: right;
    padding: .8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: 400;
    -webkit-appearance: none;
    appearance: none;
}
.input__field:focus {
    outline: 0;
}
.input__label {
    display: inline-block;
    margin: 0;
    padding: 0 1em;
    width: 40%;
    color: #696969;
    font-weight: bold;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}
.input__label-content span {
    font-weight: normal;
}
/*!*******************************************************
FORM RADIO
**********************************************************/
.radio {
    margin: 0.5rem;
}
.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.radio input[type="radio"]+.radio-label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin-right: 1rem;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.radio input[type="radio"]:checked+.radio-label:before {
    background-color: var(--fieldColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type="radio"]:focus+.radio-label:before {
    outline: none;
    border-color: var(--fieldColor);
}
.radio input[type="radio"]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type="radio"]+.radio-label:empty:before {
    margin-right: 0;
}
/*!********************************************************
FORM CHECKBOX
**********************************************************/
.checkbox {
    margin: 0.5rem;
}
.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.checkbox input[type="checkbox"]+.checkbox-label:before {
    content: "";
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin-right: 1rem;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.checkbox input[type="checkbox"]:checked+.checkbox-label:before {
    background-color: var(--fieldColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.checkbox input[type="checkbox"]:focus+.checkbox-label:before {
    outline: none;
    border-color: var(--fieldColor);
}
.checkbox input[type="checkbox"]:disabled+.checkbox-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.checkbox input[type="checkbox"]+.checkbox-label:empty:before {
    margin-right: 0;
}
/*!********************************************************
FORM DATEPICKER/FLATPICKR
**********************************************************/
.form-control.datepicker {
    height: 38px;
    width: 100%;
    margin: 0;
}
.datepicker {
    height: 38px;
}
.flatpickr-input.form-control:disabled,
.flatpickr-input.form-control[readonly] {
    background-color: unset;
}
.flatpickr-input {
    background: #fff !important;
    height: 46px;
}
.flatpickr {
    background: #fff;
}
.flatpickr input {
    background: #fff !important;
    height: auto;
}
.flatpickr a.input-button {
    text-decoration: none;
    border: 1px solid #bbb;
    padding: 4px 10px;
    border-left: 0;
    cursor: pointer;
    align-self: center;
    justify-content: center;
    line-height: 1;
}
.border-black {
    border: 2px solid #000 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80%;
}
.select2-container .select2-selection--single {
    height: auto;
    padding: .5rem;
}
.select2-selection__choice {
    color: #000;
}
.select2-results__option[aria-selected] {
    color: #000;
}
/*!********************************************************
DATATABLES
**********************************************************/
.dataTable {
    width: 100% !important;
}
.tableFilter select {
    display: inline-block;
    width: auto;
}
.dataTables_length,
.dt-buttons,
.tableFilter {
    display: inline-block;
    margin: 0 20px 8px;
}
td.dtr-control:before,
th.dtr-control:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    border: unset !important;
    box-shadow: unset !important;
    height: 1.1em !important;
    width: 1.1em !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    content: '\f107';
    content: "\f107";
    line-height: 1.2em;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
    content: '\f106';
    content: "\f106";
    line-height: 1.1em;
}
div.dataTables_wrapper div.dataTables_info {
    white-space: unset;
    display: inline-block;
    margin-left: auto;
}
div.dataTables_wrapper div.dataTables_length {
    width: unset;
    display: inline-block;
    margin-right: 1.5rem;
}
div.dataTables_wrapper div.dataTables_paginate {
    float: right;
    margin-top: 8px;
}
.dt-buttons {
    float: right;
}
.dt-buttons .dt-button {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid #dc3545;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: 0.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;
    color: #fff;
    background-color: #dc3545;
}
.dt-buttons .dt-button:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}
div.dataTables_wrapper div.dataTables_length select {
    margin: 0 8px;
}
table.dataTable {
    margin-top: 0 !important;
}
.tableActionsColumn {
    width: 0;
    white-space: nowrap;
}
.dataTables_length {
    display: inline-block;
    margin-right: 1.5rem;
}
/*!********************************************************
RANGE SLIDER
**********************************************************/
.slidecontainer {
    width: 100%;
}
.slidecontainer .slider {
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}
.slidecontainer .slider:hover {
    opacity: 1;
}
.slidecontainer .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--sliderColor);
    cursor: pointer;
}
.slidecontainer .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--sliderColor);
    cursor: pointer;
}
/*!********************************************************
FORMS
**********************************************************/
label {
    font-size: 1rem;
    margin: 0 .5rem 1rem;
    color: #696969;
    font-weight: bold;
}
.select {
    padding: .7rem;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
}
.custom-select {
    display: inline-block;
    width: auto;
}
#status_filter {
    display: inline-block;
}
#status_filter label {
    font-weight: normal;
}
.select2-wrapper {
    width: 300px;
}
.select2-results .fa {
    float: right;
    position: relative;
    line-height: 20px;
}
/*!********************************************************
AUTOCOMPLETE
**********************************************************/
.autocompleteMenuContainer {
    width: 400px;
    margin: 0;
    padding: 0;
    position: relative;
}
.ui-menu {
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: scroll;
    border: none;
}
.ui-widget.ui-widget-content {
    border: none;
}
.ui-menu-item {
    font-size: 1.3em;
    background-color: var(--primaryColor);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    color: #fff;
    font-weight: normal;
    width: 100%;
    transition: .3s;
}
.ui-menu-item:hover {
    background-color: var(--primaryColor);
    cursor: pointer;
}
.ui-menu .ui-menu-item-wrapper {
    padding: .3em .8em;
}
.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    border: none;
    background: var(--primaryColor);
    font-weight: normal;
    color: #fff;
    margin: 0;
    transition: .3s;
}
/*!********************************************************
STATUS SLIDERS
**********************************************************/
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e6acae;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 25px;
    width: 100%;
}
.switch .slider:before {
    position: absolute;
    content: "\f00d";
    height: 30px;
    width: 30px;
    left: -1px;
    bottom: -2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 1px solid #e41d25;
    font-family: "Font Awesome 5 Free";
    color: #e41d25;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    font-weight: 900;
}
input:checked+.slider {
    background-color: #37B470;
}
input:focus+.slider {
    box-shadow: 0 0 1px #ccc;
}
input:checked+.slider:before {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px);
    border-color: #087845;
    color: #087845;
    content: "\f00c";
    padding-left: 4px;
}
/* Rounded sliders */
.switch .slider.round {
    border-radius: 34px;
}
.switch .slider.round:before {
    border-radius: 50%;
}
/*!********************************************************
GLOBAL Image Hover/Delete
**********************************************************/
.remove_item {
    position: relative;
    cursor: pointer;
}
.remove_item img {
    width: 100%;
}
.remove_item .overlay {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    transition: .5s;
    opacity: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.remove_item .overlay:hover {
    opacity: 1;
}
.remove_item .overlay i {
    font-size: 5rem;
    color: #fff;
    margin: auto;
}
.delete_item {
    cursor: pointer;
    position: absolute;
    top: -10px;
    left: 55%;
}
.delete_item i {
    background: radial-gradient(white 50%, transparent 50%);
    color: #000;
    height: 1.1rem;
    width: 1.1rem;
    font-size: 1.2rem;
}
.popover.confirmation .popover-header {
    background: var(--primaryColor);
}
/*!********************************************************
Dropzone
**********************************************************/
.dropzone {
    border: 2px dotted rgba(0, 0, 0, .3) !important;
}
.dropzone .dz-preview {
    width: 100% !important;
    margin: 0 !important;
}
.dropzone .dz-image {
    width: 100% !important;
    background: #d2d2d2 !important;
}
.dropzone .dz-details {
    margin-top: 6px !important;
}
.dropzone .dz-filename {
    padding-top: 15px !important;
    font-size: 1rem !important;
}
.dropzone .dz-filename span {
    background: #fff !important;
    line-height: 2.5rem !important;
    padding: 4px !important;
}
.dropzone .dz-filename span:hover {
    border: none !important;
}
.dropzone .dz-size {
    margin-top: -.7em !important;
}
.dropzone .dz-size span {
    background: #fff !important;
    padding: 4px !important;
}
.dropzone .dz-progress {
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
    left: 0 !important;
}
.dropzone .dz-upload {
    background: #28a745 !important;
}
.dropzone .dz-button {
    font-weight: 500 !important;
    font-size: 1.6rem !important;
    padding-top: 5px !important;
}
/*!********************************************************
Resumable.js
**********************************************************/
#resumable-drop {
    border: 2px dotted rgba(0, 0, 0, .3) !important;
    height: 200px;
    text-align: center;
    background: 0 0;
    color: inherit;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    display: flex;
    align-items: center;
}
#resumable-browse {
    font-weight: bold !important;
    font-size: 1.6rem !important;
    padding-top: 5px !important;
    width: 100%;
}
.resumable-file-progress {
    background-color: #28a745;
    padding: 10px;
    color: #fff;
    font-weight: bold;
}
.resumable-file-name {
    font-size: 1.2rem;
}
.resumable-file-status {
    font-weight: bold !important;
    font-size: 1.6rem !important;
}
/*!* jQuery Uploader **/
.ajax-file-upload-statusbar,
.ajax-upload-dragdrop {
    width: 100% !important;
}
.upload {
    background-color: #d8d8d886;
    padding: 10px;
    border-radius: 22px;
    margin-top: 18px
}
.ajax-upload-dragdrop {
    border: 2px dashed var(--appsGrey);
    color: var(--appsGrey);
    padding: 40px 10px;
    text-align: left;
    vertical-align: middle;
    text-align: center;
    border-radius: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 12px
}
.ajax-file-upload {
    all: unset;
    display: inline-block;
    vertical-align: text-top;
    margin: 0 5px;
    color: #2f73ea;
    display: none
}
.upload-browse {
    color: #2f73ea
}
.upload-browse:hover {
    color: #2f73ea;
    text-decoration: underline
}
.dragdrop tr {
    cursor: move;
}
/*!********************************************************
NAV Markdown
**********************************************************/
.nav-markdown .nav-link {
    color: var(--primaryColor);
    background-color: unset;
    font-weight: bold;
}
.nav-markdown .nav-link:hover {
    color: #fff;
    background-color: var(--primaryColor);
    opacity: .6;
}
.nav-markdown .nav-link.active {
    color: #fff;
    background-color: var(--primaryColor);
    opacity: 1;
}
/*!********************************************************
LOADER
**********************************************************/
.modal_loader {
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #00000080;
}
.modal_loader .animate__animated {
    vertical-align: middle;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #007abf;
    margin-left: 18px;
}
.modal_loader .loading_message {
    top: 35%;
    position: relative;
    padding: 2rem 0;
    background: #fff;
    border-top: 4px solid #545b62;
    border-bottom: 4px solid #545b62;
}
.modal_loader .spin {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border: 8px solid #2a567d33;
    border-radius: 50%;
    border-top-color: #2a567d;
    animation: 1s ease-in-out infinite spin;
    -webkit-animation: 1s ease-in-out infinite spin;
}
.inline_loader {
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    text-align: center;
    background-color: #00000080;
}
.inline_loader .animate__animated {
    vertical-align: middle;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #007abf;
    margin-left: 18px;
}
.inline_loader .loading_message {
    top: 35%;
    left: 0;
    right: 0;
    position: absolute;
    padding: 2rem 0;
    background: #fff;
    max-width: 500px;
    margin: auto;
    border-radius: 15px;
}
.inline_loader .loading_message h4 {
    font-weight: bold;
    font-size: 2rem;
}
.inline_loader .loading_message p {
    font-size: 1.2rem;
}
.inline_loader .spin {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border: 8px solid #2a567d33;
    border-radius: 50%;
    border-top-color: #2a567d;
    animation: 1s ease-in-out infinite spin;
    -webkit-animation: 1s ease-in-out infinite spin;
}
@media (max-width:1024px) {
    .inline_loader .spin,
    .modal_loader .spin {
        width: 40px;
        height: 40px;
        border-width: 6px;
    }
    .inline_loader .animate__animated,
    .modal_loader .animate__animated {
        font-size: 18px;
    }
}
@media (max-width:768px) {
    .autocomplete-search {
        background-size: 30px 30px;
    }
    .inline_loader .spin,
    .modal_loader .spin {
        width: 25px;
        height: 25px;
        border-width: 4px;
    }
    .inline_loader .animate__animated,
    .modal_loader .animate__animated {
        font-size: 14px;
    }
}
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
/*!********************************************************
Other Custom
**********************************************************/
.boxshadow-0 {
    box-shadow: unset !important;
}
.border-0 {
    border: none !important;
}
.pointer-events-none {
    pointer-events: none;
}
.hide {
    display: none;
}
.fa-success {
    color: green !important;
    font-size: 8rem !important;
}
.span-pad {
    margin: 0 4px;
}
.fa-1-5x {
    font-size: 1.5em;
}
.cursor-pointer {
    cursor: pointer;
}
@media (max-width:1080px) {
    .span-pad {
        margin: 0 4px;
    }
}
/*!********************************************************
CUSTOM ICONS
**********************************************************/
.icon-regular {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(47%) sepia(3%) saturate(30%) hue-rotate(318deg) brightness(92%) contrast(93%);
}
.btn-circle {
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.icon-edit {
    background-image: url("data:image/svg+xml,%3csvg width='800' height='800' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M20 16v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h4'/%3e%3cpath d='M12.5 15.8 22 6.2 17.8 2l-9.5 9.5L8 16l4.5-.2z'/%3e%3c/g%3e%3c/svg%3e");
}
.icon-trash {
    background-image: url("data:image/svg+xml,%3csvg width='800' height='800' viewBox='-3 0 32 32' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23 8H3a1 1 0 1 1 0-2h20a1 1 0 0 1 0 2Zm-1 20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10h18v18ZM10 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h-6V3Zm14 1h-6V2a2 2 0 0 0-2-2h-6a2 2 0 0 0-2 2v2H2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2v18a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM13 28a1 1 0 0 0 1-1V15a1 1 0 0 0-2 0v12a1 1 0 0 0 1 1Zm-5 0a1 1 0 0 0 1-1V15a1 1 0 0 0-2 0v12a1 1 0 0 0 1 1Zm10 0a1 1 0 0 0 1-1V15a1 1 0 0 0-2 0v12a1 1 0 0 0 1 1Z' fill='black' fill-rule='evenodd'/%3e%3c/svg%3e");
    filter: invert(53%) sepia(56%) saturate(390%) hue-rotate(314deg) brightness(82%) contrast(93%);
}
.icon-download {
    background-image: url("data:image/svg+xml,%3csvg width='800' height='800' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M3 12.3v7a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3e%3cpath data-name='Right' d='m7.9 12.3 4.1 4 4.1-4'/%3e%3cpath d='M12 2.7v11.5'/%3e%3c/g%3e%3c/svg%3e");
}
.icon-eye {
    background-image: url("data:image/svg+xml,%3csvg width='800' height='800' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1 3a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z' fill='black'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.83 11.28C19.542 7.153 15.812 5 12 5c-3.812 0-7.542 2.152-9.83 6.28a1.376 1.376 0 0 0-.01 1.308C4.412 16.8 8.163 19 12 19c3.837 0 7.588-2.199 9.84-6.412a1.376 1.376 0 0 0-.01-1.307ZM12 17c-2.939 0-5.96-1.628-7.908-5.051C6.069 8.596 9.073 7 12 7c2.927 0 5.931 1.596 7.908 4.949C17.96 15.372 14.94 17 12 17Z' fill='black'/%3e%3c/svg%3e");
}
.icon-search {
    background-image: url("data:image/svg+xml,%3csvg width='800' height='800' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.672 16.641 21 21m-2-10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.btn-trash-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.btn-trash-wrapper .btn-trash {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 0;
    transition: all 0.3s ease-in-out;
}
.btn-trash-wrapper .btn-trash:hover {
    background-color: #e04545;
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
}
.btn-trash-wrapper .btn-trash:hover>.icon-trash {
    transition: all 0.3s ease-in-out;
    filter: brightness(0) invert(1);
}