.button2 {
    color: #fff !important;
}

.pb-sm-5,
.py-sm-5 {
    padding-bottom: 0rem !important;
}

.pt-sm-5,
.py-sm-5 {
    padding-top: 0rem !important;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 4, 45, .2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: 1s all;
    opacity: 0;
}

.loading.show {
    opacity: 1;
}

.loading .spin {
    border: 6px solid gray;
    border-top-color: #000;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cart-btn {
    color: #262626 !important;

}