* {
    font-family: "Nunito", sans-serif;
}

.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;
}

#chat-widget-minimized {
    display: none !important;
}

.status-container {
    left: 42%;
}

@media(max-width: 1060px) {
    .status-container {
        left: 30% !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(max-width: 350px) {
    .premium-popup-buttons{
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}