﻿#header .container-fluid {
    padding: 10px 30px;
}

#header {
    background-color: #fff;
    z-index: 1021;
}
.logo {
    background-size: contain;
    background-repeat: no-repeat;
    height: 55px;
    width: 100px;
}
body {
    height: 100%;
    width: 100%;
    background-color: #fff;
}
#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;
}
#idiomas .nav-idioma ul li a:hover {
    background-color: #e9ecef;
}
.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 #774af9;
    border-color: #774af9 transparent #774af9 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
footer {
    width: 100%;
    background-color: #fff;
    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; 
}