@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Inter:wght@400;500;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.form-group2 {
    display: flex;
}
.form-group2 label {
    white-space: nowrap;
    margin: 5px 5px 5px 0;
}

.row2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 15px;
    border: solid 1px #ddd;
    padding: 1rem;
}

.col {
    max-width: 100%;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}
.col.actions {
    white-space: nowrap;
}
.col.actions a {
    display: inline-block;
}

.col-img {
    width: 200px;
}
.col-img img {
    width: 100%;
}
.brand-logo {
    padding: 0 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand-logo img {
    width:160px;
}
.btn-red {
    background-color: #f00;
    color: #fff;
}

.btn-width {
    width: 80px;
}

.w-100 {
    width: 100%;
}

.footer-menu {
    display: none;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-10 {
    margin-left: 10px;
}

.fs-18 {
    font-size: 18px;
}
.badge-success {
    background: #449d44;
    border: solid 1px #4cae4c;
}
.badge-danger {
    background: #d9534f;
    border: solid 1px #d43f3a;
}
.badge-warning {
    background: #f0ad4e;
    border: solid 1px #eea236;
}
.debt-badge {
    float: right;
    display: flex;
    align-items: center;
    margin: 1rem 0;
}
.bg-info-icon {
    background: #f1f100;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 1rem;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 1rem;
}
.tags .tag {
    display: inline-flex;
    align-items: center;
    background: #eee;
    margin: 0 0.5rem 0.5rem 0;
    padding: 0 1rem;
    border-radius: 6px;
}
.tags .tag div {
    margin-left: 1rem;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}
.badge-default {
    color: #333;
    background: #fff;
    border: solid 1px #adadad;
}
.badge-info {
    color: #fff;
    background-color: #5bc0de;
    border: solid 1px #46b8da;
}

.border-1 {
    border: solid 1px #aaa;
    padding:2rem;
}

.font-weight-bold {
    font-weight: bold;
}

.w-date {
    width: 150px;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.bg-white {
    padding: 10px;
    margin-top: 10px;
    background-color: #fff;
}

.bg-gray2 {
    background-color: #f7f7f7;
}

.direct-chat .card-body {
    overflow-x: hidden;
    padding: 0;
    position: relative;
}

.direct-chat.chat-pane-open .direct-chat-contacts {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.direct-chat.timestamp-light .direct-chat-timestamp {
    color: #30465f;
}

.direct-chat.timestamp-dark .direct-chat-timestamp {
    color: #ccc;
}

.direct-chat-messages {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    height: 250px;
    overflow: auto;
    padding: 10px;
}

.direct-chat-msg, .direct-chat-text {
    display: block;
}

.direct-chat-msg {
    margin-bottom: 15px;
    margin-right: 30px;
}

.direct-chat-msg::after {
    display: block;
    clear: both;
    content: "";
}

.direct-chat-contacts, .direct-chat-messages {
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.direct-chat-text {
    border-radius: 10px;
    background: #eee;
    color: #444;
    margin: 5px 0 0;
    padding: 15px;
    position: relative;
}
.direct-chat-text img {
    max-width: 100%;
    margin-top: 10px;
}
.direct-chat-text div {
    white-space: pre-wrap;
}

.direct-chat-text::after, .direct-chat-text::before {
    border: solid transparent;
    border-bottom-color: #eee;
    content: " ";
    height: 0;
    pointer-events: none;
    position: absolute;
    left: 10px;
    top: -5px;
    width: 0;
}

.direct-chat-text::after {
    border-width: 5px;
    margin-top: -5px;
}

.direct-chat-text::before {
    border-width: 6px;
    margin-top: -6px;
}

.right .direct-chat-text {
    background: #afeded;
}

.right.direct-chat-msg {
    margin-bottom: 15px;
    margin-left: 30px;
    margin-right: 0;
}

.right .direct-chat-text::after, .right .direct-chat-text::before {
    border-bottom-color: #afeded;
    right: 10px;
    left: auto;
}

.direct-chat-img {
    border-radius: 50%;
    float: left;
    height: 40px;
    width: 40px;
}

.right .direct-chat-img {
    float: right;
}

.direct-chat-infos {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
}

.direct-chat-name {
    font-weight: 600;
}

.direct-chat-timestamp {
    color: #697582;
}

.direct-chat-contacts-open .direct-chat-contacts {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.direct-chat-contacts {
    -webkit-transform: translate(101%, 0);
    transform: translate(101%, 0);
    background: #343a40;
    bottom: 0;
    color: #fff;
    height: 250px;
    overflow: auto;
    position: absolute;
    top: 0;
    width: 100%;
}

.direct-chat-contacts-light {
    background: #f8f9fa;
}

.direct-chat-contacts-light .contacts-list-name {
    color: #495057;
}

.direct-chat-contacts-light .contacts-list-date {
    color: #6c757d;
}

.direct-chat-contacts-light .contacts-list-msg {
    color: #545b62;
}

.contacts-list {
    padding-left: 0;
    list-style: none;
}

.contacts-list > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 10px;
}

.contacts-list > li::after {
    display: block;
    clear: both;
    content: "";
}

.contacts-list > li:last-of-type {
    border-bottom: 0;
}

.contacts-list-img {
    border-radius: 50%;
    float: left;
    width: 40px;
}

.contacts-list-info {
    color: #fff;
    margin-left: 45px;
}

.contacts-list-name, .contacts-list-status {
    display: block;
}

.contacts-list-name {
    font-weight: 600;
}

.contacts-list-status {
    font-size: 0.875rem;
}

.contacts-list-date {
    color: #ced4da;
    font-weight: 400;
}

.contacts-list-msg {
    color: #b1bbc4;
}

.direct-chat-primary .right > .direct-chat-text {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.direct-chat-primary .right > .direct-chat-text::after, .direct-chat-primary .right > .direct-chat-text::before {
    border-left-color: #007bff;
}

.direct-chat-secondary .right > .direct-chat-text {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.direct-chat-secondary .right > .direct-chat-text::after, .direct-chat-secondary .right > .direct-chat-text::before {
    border-left-color: #6c757d;
}

.direct-chat-success .right > .direct-chat-text {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.direct-chat-success .right > .direct-chat-text::after, .direct-chat-success .right > .direct-chat-text::before {
    border-left-color: #28a745;
}

.direct-chat-info .right > .direct-chat-text {
    background: #17a2b8;
    border-color: #17a2b8;
    color: #fff;
}

.direct-chat-info .right > .direct-chat-text::after, .direct-chat-info .right > .direct-chat-text::before {
    border-left-color: #17a2b8;
}

.direct-chat-warning .right > .direct-chat-text {
    background: #ffc107;
    border-color: #ffc107;
    color: #1f2d3d;
}

.direct-chat-warning .right > .direct-chat-text::after, .direct-chat-warning .right > .direct-chat-text::before {
    border-left-color: #ffc107;
}

.direct-chat-danger .right > .direct-chat-text {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.direct-chat-danger .right > .direct-chat-text::after, .direct-chat-danger .right > .direct-chat-text::before {
    border-left-color: #dc3545;
}

.direct-chat-light .right > .direct-chat-text {
    background: #f8f9fa;
    border-color: #f8f9fa;
    color: #1f2d3d;
}

.direct-chat-light .right > .direct-chat-text::after, .direct-chat-light .right > .direct-chat-text::before {
    border-left-color: #f8f9fa;
}

.direct-chat-dark .right > .direct-chat-text {
    background: #343a40;
    border-color: #343a40;
    color: #fff;
}

.direct-chat-dark .right > .direct-chat-text::after, .direct-chat-dark .right > .direct-chat-text::before {
    border-left-color: #343a40;
}

.direct-chat-lightblue .right > .direct-chat-text {
    background: #3c8dbc;
    border-color: #3c8dbc;
    color: #fff;
}

.direct-chat-lightblue .right > .direct-chat-text::after, .direct-chat-lightblue .right > .direct-chat-text::before {
    border-left-color: #3c8dbc;
}

.direct-chat-navy .right > .direct-chat-text {
    background: #001f3f;
    border-color: #001f3f;
    color: #fff;
}

.direct-chat-navy .right > .direct-chat-text::after, .direct-chat-navy .right > .direct-chat-text::before {
    border-left-color: #001f3f;
}

.direct-chat-olive .right > .direct-chat-text {
    background: #3d9970;
    border-color: #3d9970;
    color: #fff;
}

.direct-chat-olive .right > .direct-chat-text::after, .direct-chat-olive .right > .direct-chat-text::before {
    border-left-color: #3d9970;
}

.direct-chat-lime .right > .direct-chat-text {
    background: #01ff70;
    border-color: #01ff70;
    color: #1f2d3d;
}

.direct-chat-lime .right > .direct-chat-text::after, .direct-chat-lime .right > .direct-chat-text::before {
    border-left-color: #01ff70;
}

.direct-chat-fuchsia .right > .direct-chat-text {
    background: #f012be;
    border-color: #f012be;
    color: #fff;
}

.direct-chat-fuchsia .right > .direct-chat-text::after, .direct-chat-fuchsia .right > .direct-chat-text::before {
    border-left-color: #f012be;
}

.direct-chat-maroon .right > .direct-chat-text {
    background: #d81b60;
    border-color: #d81b60;
    color: #fff;
}

.direct-chat-maroon .right > .direct-chat-text::after, .direct-chat-maroon .right > .direct-chat-text::before {
    border-left-color: #d81b60;
}

.direct-chat-blue .right > .direct-chat-text {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.direct-chat-blue .right > .direct-chat-text::after, .direct-chat-blue .right > .direct-chat-text::before {
    border-left-color: #007bff;
}

.direct-chat-indigo .right > .direct-chat-text {
    background: #6610f2;
    border-color: #6610f2;
    color: #fff;
}

.direct-chat-indigo .right > .direct-chat-text::after, .direct-chat-indigo .right > .direct-chat-text::before {
    border-left-color: #6610f2;
}

.direct-chat-purple .right > .direct-chat-text {
    background: #6f42c1;
    border-color: #6f42c1;
    color: #fff;
}

.direct-chat-purple .right > .direct-chat-text::after, .direct-chat-purple .right > .direct-chat-text::before {
    border-left-color: #6f42c1;
}

.direct-chat-pink .right > .direct-chat-text {
    background: #e83e8c;
    border-color: #e83e8c;
    color: #fff;
}

.direct-chat-pink .right > .direct-chat-text::after, .direct-chat-pink .right > .direct-chat-text::before {
    border-left-color: #e83e8c;
}

.direct-chat-red .right > .direct-chat-text {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.direct-chat-red .right > .direct-chat-text::after, .direct-chat-red .right > .direct-chat-text::before {
    border-left-color: #dc3545;
}

.direct-chat-orange .right > .direct-chat-text {
    background: #fd7e14;
    border-color: #fd7e14;
    color: #1f2d3d;
}

.direct-chat-orange .right > .direct-chat-text::after, .direct-chat-orange .right > .direct-chat-text::before {
    border-left-color: #fd7e14;
}

.direct-chat-yellow .right > .direct-chat-text {
    background: #ffc107;
    border-color: #ffc107;
    color: #1f2d3d;
}

.direct-chat-yellow .right > .direct-chat-text::after, .direct-chat-yellow .right > .direct-chat-text::before {
    border-left-color: #ffc107;
}

.direct-chat-green .right > .direct-chat-text {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.direct-chat-green .right > .direct-chat-text::after, .direct-chat-green .right > .direct-chat-text::before {
    border-left-color: #28a745;
}

.direct-chat-teal .right > .direct-chat-text {
    background: #20c997;
    border-color: #20c997;
    color: #fff;
}

.direct-chat-teal .right > .direct-chat-text::after, .direct-chat-teal .right > .direct-chat-text::before {
    border-left-color: #20c997;
}

.direct-chat-cyan .right > .direct-chat-text {
    background: #17a2b8;
    border-color: #17a2b8;
    color: #fff;
}

.direct-chat-cyan .right > .direct-chat-text::after, .direct-chat-cyan .right > .direct-chat-text::before {
    border-left-color: #17a2b8;
}

.direct-chat-white .right > .direct-chat-text {
    background: #fff;
    border-color: #fff;
    color: #1f2d3d;
}

.direct-chat-white .right > .direct-chat-text::after, .direct-chat-white .right > .direct-chat-text::before {
    border-left-color: #fff;
}

.direct-chat-gray .right > .direct-chat-text {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.direct-chat-gray .right > .direct-chat-text::after, .direct-chat-gray .right > .direct-chat-text::before {
    border-left-color: #6c757d;
}

.direct-chat-gray-dark .right > .direct-chat-text {
    background: #343a40;
    border-color: #343a40;
    color: #fff;
}

.direct-chat-gray-dark .right > .direct-chat-text::after, .direct-chat-gray-dark .right > .direct-chat-text::before {
    border-left-color: #343a40;
}

.card {
    display: flex;
    align-items: center;
    background-color: #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
}
.card p {
    margin: 10px;
    font-size: 30px;
}
.card img {
    margin:10px;
    width: 40px;
}
.card > div {
    padding: 10px;
    width: 100%;
}
.card div strong {
    font-size: 18px;
}
.card .card-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.d-inline-block {
    display: inline-block;
}
.buyer-form .input-group {
    width: 100%;
}
.buyer-form .input-group-addon {
    width: 41px;
}
.d-block {
    display: block;
}
.d-flex {
    display: flex;
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}
.align-items-end {
    align-items: flex-end;
}
.flex-1 {
    flex: 1;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mb-0 {
    margin-bottom: 0;
}
.pb-1 {
    padding-bottom: 0.25rem;
}
.pb-2 {
    padding-bottom: 0.5rem;
}
.pb-3 {
    padding-bottom: 1rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-3 {
    padding: 1rem;
}
.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}
.text-center {
    text-align: center;
}
.flex-wrap {
    flex-wrap: wrap;
}
.small-red {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: red;
}
.statistics .card div > span {
    font-size: 14px;
}
.text-red {
    color: #f00;
}
.rating-container {
    line-height: 1;
}
.rating-xl {
    font-size: 12px;
}
.theme-krajee-svg.rating-xl .krajee-icon, .theme-krajee-svg.rating-xl .krajee-icon-clear {
    width: 4rem;
    height: 4rem;
}
.table-borderless tbody+tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
    border: 0 !important;
    padding: 0.5rem !important;
}
.w-auto {
    width: auto;
}

.card-reviews {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 10px;
    overflow: hidden;
}
.card-reviews .card-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,.125);
    background: #fafafa;
}
.card-reviews .card-header .num {
    font-size: 24px;
    display: inline;
    margin-right: 1rem;
}
.card-reviews .score {
    display: flex;
    align-items: center;
}
.card-reviews .score .score-num {
    font-size: 24px;
    padding-top: 5px;
}
.card-reviews .card-body {
    padding: 1rem;
}
.card-reviews .card-body td {
    border-top: 0;
}
.rating-md {
    font-size: 24px;
}
.review-chk {
    margin: 0 1rem 0 0 !important;
}
.reviews .rating-input {
    display: none;
}
.reviews .review {
    margin: 2rem 0;
}
.reviews .car-model {
    margin-top: 1rem;
    font-size: 16px;
    font-weight: bold;
}
.centerdot {
    font-size: 28px;
    position: relative;
    top: 0.5rem;
    line-height: 5px;
}
.my-nav > li > a {
    padding: 15px 8px;
}

.comments {

}
.comments .comment {
    margin-bottom: 1rem;
}
.comments .comment .text {
    background: #f0f0f0;
    border-radius: 1rem;
    padding: 1rem;
}
tr.unread td {
    font-weight: bold;
}
.text-white {
    background-color: #fff !important;
}
.cursor-notallowed {
    cursor: not-allowed;
}
.cursor-pointer {
    cursor: pointer;
}
.bid-price {
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.bid-price img {
    margin-right: 1rem;
}

/* ---------------------------------------------------

Project : CSS Checkbox Switch
Author : Partha Kar (https://www.facebook.com/partha.creativemind)
Version : 1.0
Release Dtae : 15 November, 2017

---------------------------------------------------- */


.checkbox.checkbox-switch {
    padding: 0;
    margin: 0;
}

.checkbox.checkbox-switch label,
.checkbox-inline.checkbox-switch {
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.checkbox.checkbox-switch label input,
.checkbox-inline.checkbox-switch input {
    display: none;
}
.checkbox.checkbox-switch label span,
.checkbox-inline.checkbox-switch span {
    width: 35px;
    border-radius: 20px;
    height: 18px;
    border: 1px solid #dbdbdb;
    background-color: rgb(255, 0, 0);
    border-color: rgb(223, 0, 0);
    box-shadow: rgb(223, 0, 0) 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.checkbox.checkbox-switch label span:before,
.checkbox-inline.checkbox-switch span:before {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(255,255,255);
    content: " ";
    top: 0;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.checkbox.checkbox-switch label > input:checked + span:before,
.checkbox-inline.checkbox-switch > input:checked + span:before {
    left: 17px;
}


/* Switch Default */
.checkbox.checkbox-switch label > input:checked + span,
.checkbox-inline.checkbox-switch > input:checked + span {
    background-color: rgb(180, 182, 183);
    border-color: rgb(180, 182, 183);
    box-shadow: rgb(180, 182, 183) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch > input:checked:disabled + span {
    background-color: rgb(220, 220, 220);
    border-color: rgb(220, 220, 220);
    box-shadow: rgb(220, 220, 220) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch label > input:disabled + span,
.checkbox-inline.checkbox-switch > input:disabled + span {
    background-color: rgb(232,235,238);
    border-color: rgb(255,255,255);
}
.checkbox.checkbox-switch label > input:disabled + span:before,
.checkbox-inline.checkbox-switch > input:disabled + span:before {
    background-color: rgb(248,249,250);
    border-color: rgb(243, 243, 243);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Switch Light */
.checkbox.checkbox-switch.switch-light label > input:checked + span,
.checkbox-inline.checkbox-switch.switch-light > input:checked + span {
    background-color: rgb(248,249,250);
    border-color: rgb(248,249,250);
    box-shadow: rgb(248,249,250) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Dark */
.checkbox.checkbox-switch.switch-dark label > input:checked + span,
.checkbox-inline.checkbox-switch.switch-dark > input:checked + span {
    background-color: rgb(52,58,64);
    border-color: rgb(52,58,64);
    box-shadow: rgb(52,58,64) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch.switch-dark label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch.switch-dark > input:checked:disabled + span {
    background-color: rgb(100, 102, 104);
    border-color: rgb(100, 102, 104);
    box-shadow: rgb(100, 102, 104) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Success */
.checkbox.checkbox-switch.switch-success label > input:checked + span,
.checkbox-inline.checkbox-switch.switch-success > input:checked + span {
    background-color: rgb(40, 167, 69);
    border-color: rgb(40, 167, 69);
    box-shadow: rgb(40, 167, 69) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch.switch-success label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch.switch-success > input:checked:disabled + span {
    background-color: rgb(153, 217, 168);
    border-color: rgb(153, 217, 168);
    box-shadow: rgb(153, 217, 168) 0px 0px 0px 8px inset;
}

/* Switch Danger */
.checkbox.checkbox-switch.switch-danger label > input:checked + span,
.checkbox-inline.checkbox-switch.switch-danger > input:checked + span {
    background-color: rgb(200, 35, 51);
    border-color: rgb(200, 35, 51);
    box-shadow: rgb(200, 35, 51) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch.switch-danger label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch.switch-danger > input:checked:disabled + span {
    background-color: rgb(216, 119, 129);
    border-color: rgb(216, 119, 129);
    box-shadow: rgb(216, 119, 129) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Primary */
.checkbox.checkbox-switch.switch-primary label > input:checked + span,
.checkbox-inline.checkbox-switch.switch-primary > input:checked + span {
    background-color: rgb(0, 105, 217);
    border-color: rgb(0, 105, 217);
    box-shadow: rgb(0, 105, 217) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch.switch-primary label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch.switch-primary > input:checked:disabled + span {
    background-color: rgb(109, 163, 221);
    border-color: rgb(109, 163, 221);
    box-shadow: rgb(109, 163, 221) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Info */
.checkbox.checkbox-switch.switch-info label > input:checked + span,
.checkbox-inline.checkbox-switch.switch-info > input:checked + span {
    background-color: rgb(23, 162, 184);
    border-color: rgb(23, 162, 184);
    box-shadow: rgb(23, 162, 184) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch.switch-info label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch.switch-info > input:checked:disabled + span {
    background-color: rgb(102, 192, 206);
    border-color: rgb(102, 192, 206);
    box-shadow: rgb(102, 192, 206) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Warning */
.checkbox.checkbox-switch.switch-warning label > input:checked + span,
.checkbox-inline.checkbox-switch.switch-warning > input:checked + span {
    background-color: rgb(255, 193, 7);
    border-color: rgb(255, 193, 7);
    box-shadow: rgb(255, 193, 7) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checkbox-switch.switch-warning label > input:checked:disabled + span,
.checkbox-inline.checkbox-switch.switch-warning > input:checked:disabled + span {
    background-color: rgb(226, 195, 102);
    border-color: rgb(226, 195, 102);
    box-shadow: rgb(226, 195, 102) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}




@media (max-width: 768px) {
    .row2 {
        flex-direction: column;
    }
    .row2 .w-100 {
        margin-top: 10px;
    }

    .col-img {
        width: 100%;
    }

    .col.actions {
        white-space: normal;
    }
    .col.actions a {
        display: block;
        margin-bottom: 5px;
    }

    .footer-menu {
        position: fixed;
        z-index: 2;
        bottom: 0;
        width: 100%;
        display: flex;
        background-color: #4472c4;
        padding: 10px;
        justify-content: space-between;
    }
    .footer-menu div {
        margin: 0 10px;
        position: relative;
    }
    .footer-menu div.big {
        width: 32px;
    }
    .footer-menu div.big div {
        position: absolute;
        background-color: #4472c4;
        border: solid 1px #666;
        bottom: 0;
        padding: 15px;
        border-radius: 50%;
        left: -34px;
    }
    .footer-menu div.big div img {
        width: 48px;
    }
    .footer-menu div .badge {
        position: absolute;
        left: 25px;
        top: 0;
        background-color: #f00;
    }
    .footer-menu img {
        width: 32px;
    }
}

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

.select2-container--krajee-bs3 {
    z-index: 9999;
}
.badge-duplicate {
    background-color: #ff0a8e;
}

.badge-idle {
    background-color: #ff0a8e;
}

.badge-offer {
    background-color: #0a74ff;
}
.fa-beat-fade {
    font-size: 24px;
    color: #ff9900;
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

.star-checkbox {
    display: inline-block;
    cursor: pointer;
}

.hidden-checkbox {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.star-icon {
    font-size: 24px;
    color: grey;
}

.hidden-checkbox:checked + .star-icon {
    color: #ec971f;
}
.star-checkbox-big .star-icon {
    font-size: 36px;
}
.star-checkbox {
    margin-right: 10px;
}
.leftbar, .rightbar {
    position: absolute;
    top: 112px;
    height: 100vh;
    z-index: 1;
}
.leftbar {
    left: 0;
}
.rightbar {
    right: 0;
}
@media (min-width: 1600px) {
    .leftbar,
    .rightbar {
        display: inline;
    }
}
.disabled {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
.text-admin h3 {
    margin-top: 0px !important;
}


@media (max-width: 768px) {
    .footer-menu {
        position: fixed;
        z-index: 2;
        bottom: 0;
        width: 100%;
        display: flex;
        background-color: rgba(1, 5, 107, 50) !important;
        padding: 10px;
        padding-bottom: 15px;
        justify-content: space-between;
    }
    .footer-menu div {
        margin: 0 10px;
        position: relative;
        text-align: center;
    }
    .footer-menu div .badge {
        position: absolute;
        left: 36px;
        top: 0;
        background-color: #f00;
    }
    .footer-menu img {
        width: 25px;
        display: block;
        margin: 0px auto;
    }
    .footer-menu a {
        color: #fff;
    }
}