﻿#header .container-fluid {
    padding: 10px 30px;
}
#header {
    z-index: 1021;
}
.logo {
    background-size: contain;
    background-repeat: no-repeat;
    height: 55px;
    width: 100px;
}
body {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
#btnLogin {
    margin-left: auto;
}
#idiomas {
    position: relative;
}
.dropdown-idioma {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#idiomas .nav-idioma ul li {
    padding: 0;
}
#idiomas .nav-idioma ul li a {
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    display: block;
    margin: 1rem auto;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid var(--bs-primary);
    border-color: var(--bs-primary) transparent var(--bs-primary) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
footer {
    width: 100%;
    text-align: center;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
    background-color: #0000001c;
    border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #999999; 
    border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #858585; 
}
[data-bs-theme=dark] {
    --bs-body-bg: #101010;
    --bs-tertiary-bg-rgb: 20, 20, 20;
    --bs-secondary-bg-rgb: 24, 24, 24;
    --bs-border-color: #1e1e1e;
}
[data-bs-theme=light] {
    --bs-secondary-bg-rgb: 244, 246, 247;
}
svg circle.loader {
    stroke: var(--bs-primary)!important;
}
.bg-primary {
    background-color: var(--bs-primary)!important;
}
.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    border-radius: 2rem;
    padding: 0.5rem 2rem;
}
.btn-favorite {
    border-radius: 50%;
}
.btn-favorited {
    border-radius: 50%;
    color: var(--bs-red);
}
.btn-favorited:hover {
    color: var(--bs-red)!important;
}