* {
    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%;
}
.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;
}
@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;
    }
}
@media(min-width: 768px){
    .cropper-container>.box-2{
        height: calc(100% - 45px);
    }
}
.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%;
}
@media(max-width: 500px){
    .cropperbtns{
        justify-content: space-between !important;
    }
}