﻿.LogoNav {
    height: 120px;
}

.ImgProducts {
    max-height: 250px;
    object-fit: contain;
}

.DecProducts {
    font-size: 12px;
    color: #000 !important;
}

.LowerContectCustom {
    padding: 0 !important;
    position: unset !important;
    background: none !important;
    border: solid 3px #ffbf37;
    border-radius: 20px;
}

.ProductsList {
    justify-content: center;
    display: flex;
    align-items: end;
}

.MenuCate {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .MenuCate {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    .MenuCate {
        display: block;
    }
}

@media screen and (width: 768px) {
    .MenuCate {
        display: flex;
    }
}

@media screen and (max-width: 420px) {
    .MenuCate {
        display: flex;
    }
}

.PointerSet {
    cursor: pointer;
}

.SpinnerText{
    color:#FFFFFF;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    color: white;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #ff6f29;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
