@media screen and (min-width: 375px){
    html {
        font-size: 14.0625px;   
    }
}
@media screen and (min-width: 360px){
    html {
        font-size: 13.5px;
    }
}
@media screen and (min-width: 320px){
    html {
        font-size: 12px;
    }
}
html {
    font-size: 16px;
}

html,body {
    width: 100%;
    height: 100%;
}
body{ 
    height: calc(100% - 58px);
    padding-top: 58px;
}

.line-height{
    line-height: 2rem;
}
.line-height-sm{
    line-height: 1.6rem;
}
.line-height-xs {
    line-height: 1.2rem;
}

.padding{
    padding: 1rem;
}
.padding-top{
    padding-top: 1rem;
}
.padding-bottom{
    padding-bottom: 1rem;
}
.padding-left{
    padding-left: 1rem;
}
.padding-right{
    padding-right: 1rem;
}


.margin{
    margin: 1rem;
}
.margin-top{
    margin-top: 1rem;
}
.margin-bottom{
    margin-bottom: 1rem;
}
.margin-left{
    margin-left: 1rem;
}
.margin-right{
    margin-right: 1rem;
}
.margin-xs{
    margin: 0.6rem;
}
.margin-top-xs{
    margin-top: 0.6rem;
}
.margin-bottom-xs{
    margin-bottom: 0.6rem;
}
.margin-left-xs{
    margin-left: 0.6rem;
}
.margin-right-xs{
    margin-right: 0.6rem;
}

.text-yellow{
    color: rgba(255,213,0,1);
}
.text-black{
    color: black;
}
.text-blue{
    color: #1A6EC7;
}
.text-white{
    color: white;
}
.text-grey{
    color: grey;
}
.text-darkgrey{
    color: darkgrey;
}

.text-bold{
    font-weight: bold;
}

.text-xs{
    font-size: 0.6rem;
}
.text-sm{
    font-size: 0.8rem;
}
.text-df{
    font-size: 1rem;
}
.text-lg{
    font-size: 1.2rem;
}
.text-xl{
    font-size: 1.4rem;
}
.text-xxl{
    font-size: 1.6rem;
}
.text-xxxl{
    font-size: 1.8rem;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center; 
}

.content{
    height: 100%; 
}
.title{
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 1rem;
}
.luxbar{
    z-index: 999;
}
.luxbar-brand {
    font-size: 1rem !important;
}

hr.solid {
    border-top: 1px solid #bbb;
    margin: 1.6rem 0rem;
}

@keyframes mouse-anim-drop {
    0% {opacity:0;top:5px;}
    30% {opacity:1;top:0px;}
    100% {opacity:0;top:-5px;}
}
@keyframes mouse-anim-drop {
    0% {opacity:0;top:5px;}
    30% {opacity:1;top:0px;}
    100% {opacity:0;top:-5px;}
}
.next-icon{ 
    width:30px;
    height:30px; 
    animation-delay: 0s;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: mouse-anim-drop;
    animation-play-state: running;
    animation-timing-function: linear;
    margin-left: auto;
    margin-right: auto;
    position: relative; 
}
.next-icon>img{
    height: 100%;
    width: 100%;
}

.button{
    background-color: #FFD500;
    border: none;    
    color: black;
    padding: 0.8rem 1.6rem;
    text-align: center;    
    text-decoration: none;
    display: inline-block;
    font-size: 1rem; 
    border-radius: 4px;
}