* {
    font-family: "Nunito", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.custom-checkbox-refund,
.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox-refund input,
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox-refund .checkmark,
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #e2e0e0;
}

.custom-checkbox-refund input:checked~.checkmark,
.custom-checkbox input:checked~.checkmark {
    background-color: #FF7A64;
    border-color: #FF7A64;
}

.custom-checkbox-refund .checkmark:after,
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    background-image: url(/web_assets/frontend/image/check-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 10px;
    top: 4px;
    left: 2px;
}

.custom-checkbox-refund input:checked~.checkmark:after,
.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.status-container {
    left: 42%;
}

.active-toggle {
    border: 1px solid #E8E8E8 !important;
    background-color: white;
    border-radius: 8px;
}

.scrollbar-thin {
    scrollbar-width: thin;
    scrollbar-color: #3C3F40 transparent;
}

.scrollbar-thin::-webkit-scrollbar {
    height: 4px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 9999px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: transparent;
}

.cropper-drag-box {
    border-radius: 10px;
    height: 100%;
    width: auto;
}

.cropper-container.cropper-bg {
    background-size: 5%;
    min-height: 100%;
}

.box-2>.result {
    min-height: 400px;
    height: 100%;
}

.absolute-element {
    position: static;
}

.close-popup-mobile {
    background-color: transparent;
    position: absolute;
    top: 10px;
    right: 8px;
    left: auto;
    height: 2.5rem;
    width: 2.5rem;
    display: none;
    justify-content: center;
    align-items: center;
}

.flex-basis-custom {
    flex-basis: 50% !important;
}

@media(max-width: 1060px) {
    .status-container:not(.home-status-container) {
        left: 30% !important;
    }
}

@media(min-width: 920px) {
    .absolute-element {
        position: absolute;
    }
}

@media(min-width: 768px) {
    .cropper-container>.box-2 {
        height: calc(100% - 45px);
    }

    body.premium-users #chat-widget-container {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 9999 !important;
    }

    body:not(.premium-users) #chat-widget-minimized {
        display: none !important;
    }
}

@media(max-width: 767px) {
    #chat-widget-container {
        display: none !important;
    }
}

@media(max-width: 640px) {
    .set-scrollbar::-webkit-scrollbar {
        width: 0px !important;
    }

    .set-scrollbar::-webkit-scrollbar-track {
        background-color: #E8E8E8;
        border-radius: 4px;
    }

    .set-scrollbar::-webkit-scrollbar-thumb {
        background: #3C3F40;
        border-radius: 4px;
    }
}

@media(width < 640px) {
    .close-popup-mobile {
        display: flex;
    }

}

@media(max-width: 500px) {
    .cropperbtns {
        justify-content: space-between !important;
    }
}

@media(max-width: 350px) {
    .premium-popup-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media(max-width: 360px) {
    .small-device-flexWrap {
        flex-wrap: wrap !important;
    }

    .alertBoxMessageContainerPremium {
        max-width: calc(100% - 30px);
    }
}