#loader-wrapper {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 999999999;
}


.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}

.loader::before {
    border-color: #f03355 #0000;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}

.loader::after {
    margin: 8px;
}

@keyframes l16 {
    100% {
        transform: rotate(1turn)
    }
}


.dropzone {
    overflow: hidden !important;
}

.dropzone .fallback {
    position: relative;
}

.dropzone .fallback input {
    position: absolute;
    width: 100%;
    height: 200px;
    transform: scale(5);
    z-index: 1;
}

.product-categories .choices__input--cloned {
    display: none !important;
    cursor: pointer;
}

.maxx {
    width: 500px;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.add-feild {
    max-width: 200px;
}

.remove-feild {
    width: 39px;
    height: 39px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: 2%;
    border-radius: 20% !important;
}

.remove-feild:hover {
    background-color: #22282e;
}

.info-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    font-size: 10px;
    padding: 2px 2.5px 1px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.notification {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.notification-item {
    width: 85% !important;
    margin-right: 15% !important;
    border-radius: 0 !important;
}

.notification-item-without-crossicon {
    width: 95% !important;
    margin-right: 5% !important;
}

.alert {
    --bs-alert-margin-bottom: 0 !important;
    --bs-alert-border-radius: 0 !important
}

.alert p {
    margin-bottom: 0 !important;
}

.alert .btn-close {
    bottom: 0 !important;
    border: none !important;
    outline: none !important;
}

.alert-dismissible {
    padding-right: 0 !important;
}

.btn-close:focus {
    box-shadow: none !important;
}


.alertNote {
    position: fixed;
    width: 100%;
    height: auto;
    max-width: 400px;
    right: 2%;
    bottom: 4%;
    border-radius: 5px;
    color: var(--bs-dark);
    background-color: var(--bs-light);
    box-shadow: 5px 5px 25px 5px rgba(0, 0, 0, 0.08);
}

.alertNote .alert-body {
    border-left: 5px solid var(--bs-primary);
    background-color: var(--bs-white);
    color: var(--bs-black);
    padding: 10px;
}

.alertNote .btn-close {
    position: absolute;
    top: -4px;
    right: -4px;
    padding: 8px;
}