.inner-white a {
    color: white;
}

.thumb {
    max-width: 20%;
    ;
}

.btn-remove-item {
    float: inline-end;
}

.loading__box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 300;
    display: none;
}

.loading__box.active {
    display: block;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -40px;
    border: 8px solid #1d5f2b;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border-top: 8px solid #e11700;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
}