.range-time-symbol {
    text-align: center;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    padding-top: 0.4rem !important;
}

.time-periods .timepicker-nearest.from .datetimepicker-input {
    border-right: 0px !important;
    border-radius: 0px !important;
}

.time-periods .timepicker-nearest.to .datetimepicker-input {
    border-left: 0px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.range-date-symbol {
    text-align: center;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    padding-top: 0.4rem !important;
}

.date-periods input.datepicker.from {
    border-right: 0px !important;
    border-radius: 0px !important;
}

.date-periods input.datepicker.to {
    border-left: 0px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.ajax-loading {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999999999999999999999999999999999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.34);
    overflow-x: hidden;
    transition: 0.5s;
    display: block;
    overflow: hidden;
}

.select2-selection__choice {
    background-color: #007bff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select2-results__option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

select[readonly].select2-hidden-accessible+.select2-container {
    pointer-events: none;
    touch-action: none;
}

select[readonly].select2-hidden-accessible+.select2-container .select2-selection {
    background: #eee;
    box-shadow: none;
}

select[readonly].select2-hidden-accessible+.select2-container .select2-selection__arrow,
select[readonly].select2-hidden-accessible+.select2-container .select2-selection__clear {
    display: none;
}

.text-decoration-line-through {
    -webkit-text-decoration-line: line-through;
    /* Safari */
    text-decoration-line: line-through;
}

.content-custom {
    margin-left: 10px;
}

.content-wrapper {
    display: none;
}

.link-modal {
    cursor: pointer !important;
    color: #007bff !important;
}

#confirmModalId {
    z-index: 1051;
}

.upload-image-icon {
    /* display: none; */
    position: absolute;
    top: 15px;
    right: 10px;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #007bff;
    color: white;
    font-size: 15px;
    padding: 1px 7px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
}

.remove-image-icon {
    /* display: none; */
    position: absolute;
    top: 15px;
    right: -15px;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgb(214, 0, 0);
    color: white;
    font-size: 15px;
    padding: 1px 7px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
}

.badge-custom {
    min-width: 50px !important;
    display: inline-block !important;
}

.badge-total-custom {
    min-width: 75px !important;
}

.badge-custom-lp-status {
    min-width: 80px !important;
    display: inline-block !important;
}

.badge-custom-chat-request-status {
    min-width: 115px !important;
    display: inline-block !important;
}

.title-detail {
    font-weight: bold;
    font-size: 1rem;
}

/*start 2024-06-05 new by okaeri-job */
.main-footer {
    bottom: 1px;
    position: fixed;
    width: -moz-available;
    width: -webkit-fill-available;
}

/*end 2024-06-05 new by okaeri-job */

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bell-blink {
    animation: blink 1s infinite;
}

.disabled,
.readonly {
    background-color: #a0919114;
    opacity: 1;
}

.required-span {
    color: red;
    font-size: smaller;
    padding-left: 0.25rem;
}

.range-wrap {
    position: relative;
}

input[type="range"] {
    -webkit-appearance: none;
    margin: 20px 0;
    width: 100%;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #03a9f4;
    border-radius: 25px;
}

input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 1);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #03a9f4;
}

output[class="range-value"] {
    background: #03a9f4;
    color: white;
    padding: 0px 12px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    top: -30%;
    transform: translateX(-50%);
}