html::-webkit-scrollbar {
    width: 0px; /* For Chrome, Safari, and Opera */
}
a {
    text-decoration: none;
}
img {
    width: 100%;
    height: auto;
    aspect-ratio: attr(width) / attr(height);
} 
/*.btn-check:active+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    background-color: #fff;
    color: #0d6efd;
    border-color: #0d6efd;
}*/

label.btn-outline-primary:hover {
    background-color: #fff;
    color: #0d6efd;
    border-color: #0d6efd;
}
.navbar {
    min-height: 100px;
    padding-top:0;
    padding-bottom:0;
}
.container-app {
    padding-top: 100px;
    padding-bottom: 76px;
    /*    padding-left: 10px;
        padding-right: 10px;*/
}
.btn-app {
    line-height: 54px;
    padding-top: 0;
    padding-bottom: 0;
}
.col-cat {
    padding: 5px;
}
.footer-app .col {
    padding: 10px 5px;
}
.header-app h2 {
    margin: 0;
    line-height: 72px;
}
.header-app .col {
    padding: 5px;
    padding-top: 10px;
}
.container-product {
    padding-top: 105px;
}
.container-category {
    padding-top: 105px;
}
.container-products {
    padding-top: 105px;
}
.container-products .col-cat a {
    margin-bottom: 10px;
}

#content, #cover {
    height: 100%;
}
#content.on {
    filter: blur(20px);
}
#cover.on {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1666;
    background: rgba(255, 255, 255, 0.7);
}
.lds-dual-ring {
    display: none;
    width: 64px;
    height: 64px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
}
#cover.on .lds-dual-ring {
    display: inline-block;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid red;
    border-color: red transparent red transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
.cover-anim {
    display: none;
    width: 64px;
    height: 64px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: 10px;
    color: red;
}

.img-fluid {
    border: none;
}

#cover.on .cover-anim {
    display: block;
}
.cover-anim img {
    margin-top: 20px;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}