@import url("./normalize.css");
@import url("./grid.css");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("./animations.css");

* {
    font-family: "Ubuntu", sans-serif;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#_backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

hr {
    margin: 1.5rem 0;
    border-width: 0;
    border-top: 1px solid #E1E1E1;
}

a {
    color: #0d89f1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group label .required {
    color: red;
    margin-left: 5px;
}

.form-group input:not([type=checkbox], [type=radio], [type=file]),
.form-group .tags-input {
    width: 100%;
    height: 40px;
    padding: 10px;
    line-height: 40px;
    border-radius: 5px;
    border: 1px solid #d1d8dd;
}

.form-group input:not([type=checkbox], [type=radio], [type=file])::placeholder,
.form-group .tags-input::placeholder {
    color: #aeb5bc;
}

.form-group input:not([type=checkbox], [type=radio], [type=file]):focus,
.form-group .tags-input:focus {
    outline: none;
    border-color: #0d89f1;
}

.form-group .tags-input {
    padding: 0;
    height: auto;
    min-height: 40px;
}

.form-group input[type=number] {
    appearance: textfield;
}

.form-group textarea {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #d1d8dd;
    border-radius: 5px;
    height: 100px;
    line-height: 21px;
    resize: none;
}

.form-group textarea::placeholder {
    color: #aeb5bc;
}

.form-group textarea:focus {
    outline: none;
    border-color: #0d89f1;
}

.form-group .error {
    color: #c83225;
    border-color: #c83225 !important;
}

.form-group .error-message {
    color: #c83225;
    font-size: 14px;
}

.form-group .inline-form {
    display: flex;
    align-items: center;
}

.form-group .inline-form input {
    border-radius: 5px 0 0 5px;
}

.form-group .inline-form button {
    border-radius: 0 5px 5px 0;
    border: 1px solid #0d89f1;
}

.form-group.clickableField {
    position: relative;
}

.form-group.clickableField input {
    color: transparent;
}

.form-group.clickableField a {
    top: 38px;
    left: 23px;
    color: #0d89f1;
    position: absolute;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection {
    border: 1px solid #d1d8dd;
    border-radius: 5px;
    height: 40px;
}

.select2-container .select2-selection:focus {
    outline: none;
    border-color: #0d89f1;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 25px;
}

.select2-container .select2-selection--multiple textarea.select2-search__field {
    font-family: "Ubuntu", sans-serif;
    height: 38px;
    padding-top: 10px;
    margin: 0;
}

.select2-dropdown {
    border-color: #d1d8dd;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #33343a;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
    right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #33343a transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px;
    line-height: 40px;
}

.select2-search__field {
    outline: none !important;
}

.select2-search__field:focus-visible, .select2-search__field:focus {
    outline: none !important;
}

.select2-container--default .select2-selection--multiple {
    padding-right: 0;
    padding-bottom: 0;
    display: flex;
    min-height: 40px;
    height: auto;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    gap: 5px;
    margin: 0;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    background-color: #eee;
    border-color: #ccc;
    margin-top: 0;
    margin-left: 0;
    height: 30px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice button,
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice span {
    height: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice span {
    display: flex;
    align-items: center;
}

.form-check {
    display: block;
    position: relative;
    padding-left: 32px;
    line-height: 25px;
    cursor: pointer;
    user-select: none;
    width: 25px;
    height: 25px;
    white-space: nowrap;
}

.form-check input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #d2d8dd;
    border-radius: 5px;
}

.form-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-check input[type=checkbox]:checked ~ .checkmark:after {
    display: block;
}

.form-check .checkmark:after {
    left: 8px;
    top: 4px;
    width: 4px;
    height: 10px;
    border: solid #0d89f1;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #0d89f1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.btn.btn-sm {
    padding: 8px 10px;
    font-size: 14px;
}

.btn.btn-sm i {
    font-size: 14px;
    margin-right: 5px;
}

.btn.btn-primary {
    background-color: #0d89f1;
}

.btn.btn-secondary {
    background-color: #c4c4c4;
    color: #000;
}

.btn.btn-info {
    background-color: #00cfe8;
    color: #fff;
}

.btn.btn-success {
    background-color: #28c76f;
    color: #fff;
}

.btn.btn-warning {
    background-color: #ffa800;
    color: #181c32;
}

.btn.btn-danger {
    background-color: #f43a3b;
    color: #fff;
}

a.btn {
    text-decoration: none;
}

.btn + .btn {
    margin-left: 10px;
}

.block-btn {
    display: block;
    width: 100%;
}

.btn-square {
    padding: 10px;
}

.toast {
    min-width: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 2px solid;
    animation: toastIn 0.5s ease-in-out;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.toast img {
    width: 40px;
    height: auto;
}

.toast .content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.toast .content h3 {
    font-size: 18px;
    color: #33343a;
    margin-bottom: 5px;
}

.toast .content span {
    font-size: 14px;
    color: #66615f;
}

.toast .close {
    color: #6b727c;
    font-size: 22px;
    cursor: pointer;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.toast .close:hover {
    background-color: #fff;
}

.toast.success {
    border-color: #cfe8d3;
    background-color: #f1f8f4;
}

.toast.info {
    border-color: #b4cdef;
    background-color: #e7effa;
}

.toast.warning {
    border-color: #f6e0b4;
    background-color: #fef8eb;
}

.toast.danger {
    border-color: #f0cec3;
    background-color: #faeeeb;
}

.toast ul {
    padding-left: 20px;
    margin: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown.avatar .dropBtn i.uil-user {
    font-size: 20px;
    color: #0d89f1;
    border-radius: 50%;
    background-color: #f1f8f4;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.dropdown.avatar .profile-card {
    border-bottom: 1px solid #d2d8dd;
}

.dropdown.avatar .profile-card .avatar i.uil-user {
    font-size: 30px;
    color: #0d89f1;
    border-radius: 50%;
    border: 2px solid #0d89f1;
    background-color: #f1f8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 20px auto 10px;
}

.dropdown.avatar .profile-card h3 {
    font-size: 18px;
    color: #33343a;
    margin-bottom: 5px;
    text-align: center;
}

.dropdown.avatar .profile-card h5 {
    font-size: 14px;
    color: #66615f;
    font-weight: normal;
    text-align: center;
    margin-bottom: 10px;
}

.dropdown .dropBtn {
    border: none;
    padding: 10px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    background: none;
    border-radius: 5px;
    background-color: #0d89f1;
    transition: opacity 0.3s ease;
}

.dropdown .dropBtn:hover {
    opacity: 0.8;
}

.dropdown .dropdown-content {
    z-index: 1;
    display: none;
    min-width: 160px;
    position: absolute;
    right: 0;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.dropdown .dropdown-content a,
.dropdown .dropdown-content button {
    width: 100%;
    border: none;
    color: black;
    display: block;
    cursor: pointer;
    text-align: left;
    background: none;
    padding: 12px 16px;
    text-decoration: none;
}

.dropdown .dropdown-content a:hover,
.dropdown .dropdown-content button:hover {
    background-color: #f1f1f1;
}

.dropdown .dropdown-content i {
    color: #0d89f1;
}

.card {
    background: white;
    margin-bottom: 1em;
    box-shadow: 0px 0px 5px 3px #f6f6f6;
}

.card .card-header {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d2d8dd;
}

.card .card-header h3 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.card .card-header .card-title {
    margin-bottom: 0;
}

.card .card-header .card-title .card-text {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    vertical-align: middle;
}

.card .card-body {
    padding: 15px;
}

.card .card-footer {
    padding: 15px;
    border-top: 1px solid #d2d8dd;
}

.alert {
    color: #36a9e1;
    background: #dff1fa;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.alert i.uil {
    display: grid;
    place-items: center;
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    border-radius: 6px;
    background-color: #fff;
    font-size: 18px;
    color: #36a9e1;
}

.alert p {
    margin: 0;
    width: 100%;
    line-height: 1.5;
}

.alert.success {
    background: #ddf6e8;
    color: #28c76f;
}

.alert.success i.uil {
    color: #28c76f;
}

.alert.info {
    background: #d6f7fb;
    color: #00cfe8;
}

.alert.info i.uil {
    color: #00cfe8;
}

.alert.warning {
    background: #fff0e1;
    color: #ff9f43;
}

.alert.warning i.uil {
    color: #ff9f43;
}

.alert.danger {
    background: #fce4e4;
    color: #ea5455;
}

.alert.danger i.uil {
    color: #ea5455;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: none;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border-color: #0d89f1;
    cursor: pointer !important;
    padding: 5px 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0d89f1;
    color: #fff !important;
    border-color: #0d89f1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #0d89f1;
    color: #fff !important;
    border-color: #0d89f1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next, .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    color: #0d89f1 !important;
    border-color: #0d89f1;
    padding: 5px 7px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover {
    background: #0d89f1;
    color: #fff !important;
    border-color: #0d89f1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0d89f1;
    color: #fff !important;
    border-color: #0d89f1;
}

.dataTables_wrapper .dataFilter {
    float: left;
    margin-bottom: 14px;
}

.dataTables_wrapper .dataTables_filter {
    margin-bottom: 14px;
}

.dataTables_wrapper select {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 14px;
    color: #66615f;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
    width: auto;
}

.dataTables_wrapper select:hover {
    border-color: #0d89f1;
}

table.dataTable {
    margin-bottom: 10px;
    border-color: #d2d8dd;
    border-collapse: collapse;
    border-bottom: none !important;
}

table.dataTable thead {
    background-color: #eee;
}

table.dataTable thead th.no-sort::before, table.dataTable thead th.no-sort::after {
    display: none !important;
    content: none !important;
}

table.dataTable tbody tr {
    cursor: pointer;
    border-bottom: 1px solid #d2d8dd;
}

table.dataTable tbody tr:hover {
    background-color: #f1f5f8;
}

table.dataTable tbody td {
    padding: 12px 10px;
}

table.dataTable tbody td.rowToggle {
    cursor: pointer;
}

table.dataTable tbody td.rowToggle::before {
    content: "\eb9f";
    font-family: "unicons-line";
    width: 100%;
    font-size: 20px;
    color: #d3d3d3;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

table.dataTable tbody td.rowToggle:hover::before {
    color: gray;
}

table.dataTable tbody td.rowToggle.active::before {
    color: #0d89f1;
    transform: rotate(90deg);
}

table.dataTable label {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

table.dataTable label input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

table.dataTable label i {
    font-size: 20px;
    color: lightgray;
    transition: color 0.3s ease;
}

table.dataTable label:hover i {
    color: gray;
}

table.dataTable label input[type=checkbox]:checked ~ i {
    color: #0d89f1;
}

table.dataTable label input[type=checkbox].checkbox-success:checked ~ i {
    color: #28c76f;
}

table.dataTable label input[type=checkbox].checkbox-danger:checked ~ i {
    color: #f43a3b;
}

table.dataTable label input[type=checkbox].checkbox-warning:checked ~ i {
    color: #ffa800;
}

table.table {
    width: 100%;
    margin-bottom: 1em;
    border-collapse: collapse;
}

table.table thead {
    background-color: #eee;
}

table.table tr {
    cursor: pointer;
    border-bottom: 1px solid #d2d8dd;
}

table.table th,
table.table td {
    text-align: left;
    padding: 12px 10px;
}

table.table.table-sm th,
table.table.table-sm td {
    font-size: 12px;
    padding: 8px 6px;
}

table.table:not(.table-sm) th, table.table:not(.table-sm) td {
    padding: 12px 10px;
}

table.table:not(.table-sm) th:not(.dataTables_empty), table.table:not(.table-sm) td:not(.dataTables_empty) {
    text-align: left;
}

table.table tbody tr:hover {
    background-color: #f1f5f8;
}

table.table .actionBtn {
    border: none;
    cursor: pointer;
    background: none;
}

table.table .actionBtn i {
    font-size: 20px;
    color: #0d89f1;
}

table.table-sm th,
table.table-sm td {
    font-size: 14px;
    padding: 6px 8px;
}

.imageBox {
    margin: 0 auto;
    max-width: 190px;
    position: relative;
}

.imageBox img {
    padding: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageBox label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 2px dashed #d2d8dd;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.imageBox label:hover {
    border-color: #0d89f1;
}

.imageBox label i {
    font-size: 20px;
    color: #d2d8dd;
    transition: color 0.3s ease;
}

.imageBox label:hover i {
    color: #0d89f1;
}

.imageBox label input[type=file] {
    display: none;
}

.imageBox button {
    background: #c83225;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1.2;
    padding: 0 2px;
    scale: 0;
    transition: scale 0.3s ease;
    cursor: pointer;
    display: none;
}

.imageBox:hover button {
    scale: 1;
}

.accordion {
    border: 1px solid #d2d8dd;
}

.accordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.accordion .panel:first-child h3 {
    border-top: none;
}

.accordion .panel h3 {
    background: #f9f9f9;
    padding: 15px;
    font-size: 16px;
    color: #66615f;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .panel h3:hover {
    background-color: #f1f5f8;
}

.accordion .panel h3 button {
    background: none;
    border: none;
    font-size: 20px;
    color: #66615f;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion .panel h3 button:hover {
    color: #0d89f1;
}

.accordion .panel h3 input[type=text] {
    width: fit-content;
    padding: 10px;
    border: 1px solid #d1d8dd;
    border-radius: 5px;
    height: 40px;
}

.accordion .panel h3 input[type=text]::placeholder {
    color: #aeb5bc;
}

.accordion .panel h3 input[type=text]:focus {
    outline: none;
    border-color: #0d89f1;
}

.accordion .panel .panel-content {
    padding: 0;
    display: none;
    border-top: 1px solid #d2d8dd;
}

.accordion .panel .body,
.accordion .panel .footer {
    padding: 15px;
}

.accordion .panel .footer {
    border-top: 1px solid #d2d8dd;
}

.accordion .panel.active .panel-content {
    display: block;
}

.tabs-component .tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabs-component .tabs ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabs-component .tabs ul li a {
    display: block;
    font-size: 16px;
    padding: 15px 30px;
    color: #66615f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tabs-component .tabs ul li a:hover {
    color: #0d89f1;
}

.tabs-component .tabs ul li a.active {
    color: #0d89f1;
    border-bottom: 2px solid #0d89f1;
}

.tabs-component .panels .panel {
    display: none;
    padding: 15px;
    border-top: 1px solid #d2d8dd;
}

.tabs-component .panels .panel.active {
    display: block;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 999;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    padding: 0;
    margin: auto;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #d2d8dd;
    box-shadow: 0px 0px 10px #666;
    display: none;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.modal-lg {
    width: 1000px;
}

.modal.modal-sm {
    width: 400px;
}

.modal.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
    animation: slideTop 0.5s ease;
}

.modal .head {
    padding: 15px;
    border-bottom: 1px solid #d2d8dd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal .head h3 {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
}

.modal .head button {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal .head button:hover {
    color: #0d89f1;
}

.modal .head button:focus {
    outline: none;
}

.modal .body {
    padding: 15px;
}

.modal .footer {
    padding: 15px;
    border-top: 1px solid #d2d8dd;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.modal .footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #0d89f1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.modal .footer button:hover {
    opacity: 0.8;
}

.modal .footer button.cancel {
    background-color: #c83225;
    margin-right: 10px;
}

.modal .footer button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.drag-and-drop {
    background-color: #ebebeb;
    border-radius: 4px;
    outline: 2px dashed #d1d1d1;
    outline-offset: -7px;
    padding: 20px;
}

.drag-and-drop .drop-text {
    color: grey;
    letter-spacing: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drag-and-drop .drop-text span {
    margin-left: 10px;
}

.drag-and-drop .drop-text i {
    font-size: 20px;
}

.drag-and-drop .drop-text .browseFiles {
    font-weight: bold;
    cursor: pointer;
    color: #0d89f1;
}

.drag-and-drop #drop-area input {
    height: 60px;
    opacity: 0;
    z-index: 1;
}

.drag-and-drop .filesList {
    margin-top: 13px;
    font-size: 1.2rem;
    overflow-y: scroll;
    max-height: 150px;
}

.drag-and-drop #fileDetail {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.drag-and-drop #fileDetail p {
    margin-top: 0;
}

.drag-and-drop #fileDetail #fileName {
    font-weight: bold;
    word-break: break-all;
    font-size: 14px;
    margin-bottom: 5px;
}

.drag-and-drop #fileDetail #fileSize {
    font-size: 10px;
    margin-bottom: 0;
}

.drag-and-drop .fileDiv #removeFile {
    font-size: 18px;
}

.drag-and-drop .filesList .fileDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.drag-and-drop .filesList .fileDiv:last-of-type {
    margin-bottom: 0;
}

.drag-and-drop .filesList::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

.drag-and-drop .filesList::-webkit-scrollbar-thumb {
    background: #0fa0ce;
    border-radius: 4px;
}

.xdsoft_datetimepicker {
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar table {
    border-collapse: separate;
    border-spacing: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
    background: #0d89f1 !important;
}

.xdsoft_datetimepicker .xdsoft_calendar thead tr {
    background-color: #f1f1f1;
}

.xdsoft_datetimepicker .xdsoft_calendar thead th {
    border: none;
    border-radius: 5px;
    font-weight: normal;
    display: table-cell;
}

.xdsoft_datetimepicker .xdsoft_calendar tbody td {
    border: none;
    color: #000;
    text-align: center;
    border-radius: 5px;
    background: #fff;
}

.xdsoft_datetimepicker .xdsoft_calendar tbody td div {
    padding: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker > .xdsoft_time_box.xdsoft_scroller_box {
    border: none;
    padding: 2px 0;
    border-bottom: none;
}

.xdsoft_datetimepicker .xdsoft_timepicker > .xdsoft_time_box > div > div {
    background: #fff;
    border-top: none;
    border-radius: 5px;
    margin-bottom: 2px;
}

.xdsoft_datetimepicker .xdsoft_timepicker > .xdsoft_time_box > div > div.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker > .xdsoft_time_box > div > div:hover {
    background: #0d89f1 !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current, .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
    background: #0d89f1 !important;
}

.mp-link {
    font-size: 16px;
    color: #0d89f1;
    font-weight: 500;
    text-decoration: none;
    gap: 5px;
    display: flex;
    align-items: center;
}

.mp-link i {
    font-size: 22px;
}

.switch {
    position: relative;
    display: inline-block !important;
    width: 60px;
    height: 34px;
    margin-bottom: 0 !important;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch input:checked + .slider {
    background-color: #2196F3;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.file-upload {
    width: 100%;
    height: 40px;
    padding: 10px;
    line-height: 40px;
    border-radius: 5px;
    border: 1px solid #d1d8dd;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.file-upload input[type=file] {
    display: none;
    visibility: hidden;
}

.file-upload span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload i {
    font-size: 20px;
    color: #0d89f1;
}

.file-upload:focus {
    outline: none;
    border-color: #0d89f1;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.separator {
    height: 0;
    margin: 10px 0;
}

.separator.separator-dashed {
    border-bottom: 1px dashed #f8f9fa;
}

.separator.separator-solid {
    border-style: 1px solid #f8f9fa;
}

.separator.separator-2 {
    border-bottom-width: 2px;
}

.separator.separator-3 {
    border-bottom-width: 3px;
}

.separator.separator-4 {
    border-bottom-width: 4px;
}

.separator.separator-primary {
    border-bottom-color: #0d89f1;
}

.separator.separator-secondary {
    border-bottom-color: #c4c4c4;
}

.separator.separator-success {
    border-bottom-color: #28c76f;
}

.separator.separator-info {
    border-bottom-color: #00cfe8;
}

.separator.separator-warning {
    border-bottom-color: #ffa800;
}

.separator.separator-danger {
    border-bottom-color: #f43a3b;
}

.separator.separator-light {
    border-bottom-color: #f8f9fa;
}

.separator.separator-dark {
    border-bottom-color: #181c32;
}

.separator.separator-white {
    border-bottom-color: #fff;
}

.badge {
    display: inline-block;
    padding: 0.45em 0.5em;
    font-size: 80%;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 0.25rem;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.badge.badge-pill {
    padding-right: 1em;
    padding-left: 1em;
    border-radius: 10rem;
}

.badge.badge-primary {
    background-color: #0d89f1;
    color: #fff;
}

.badge.badge-secondary {
    background-color: #c4c4c4;
    color: #181c32;
}

.badge.badge-success {
    background-color: #28c76f;
    color: #fff;
}

.badge.badge-warning {
    background-color: #ffa800;
    color: #181c32;
}

.badge.badge-info {
    background-color: #00cfe8;
    color: #fff;
}

.badge.badge-danger {
    background-color: #f43a3b;
    color: #fff;
}

.badge.badge-waiting {
    background-color: #ff5f22;
    color: #fff;
}

/*# sourceMappingURL=theme.css.map */
