/* prettier-ignore */
/*# sourceMappingURL=user.css.map */
.navbar-theme {
    background-color: rgba(255, 255, 255, 1);
}

.sliderbg{
    background-color: black;
}

.navbar-dark .navbar-nav .nav-link {;
    color: rgba(255, 255, 255, 1);
    font-size:0.9rem;
    cursor: pointer;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.indicator-arrow2 {
    display: block;
    position: absolute;
    left: 50%;
    height: 0.75rem;
    width: 0.75rem;
    border-left: 2px solid #000;
    border-top: 2px solid #000;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.sticky-bottom {
    position: fixed;
    bottom: 0;
    z-index: 1015;
}

.btn-green{
    padding-top:10px;
    padding-bottom:10px;
    padding-left:20px;
    padding-right:20px;
    font-size:20px;
    background-color: green;
    color: white;
    border: grey;
}

@media (max-width: 768px) {
    .vizifalulogo {
        width: calc(6.5rem + 0.06vw);
        height: auto;
    }
    .icon-bar {
        position: fixed;
        left:0px;
        bottom: -50px;
        width:100px;
        height: 100px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 2000;
        opacity: 0;
    }
}

@media (min-width: 769px) {
    .vizifalulogo {
        width: calc(8rem + 0.06vw);
        height: auto;
    }
    .icon-bar {
        position: fixed;
        left:0px;
        bottom: -50px;
        width:100px;
        height: 100px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 2000;
    }
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.btn-back-to-top{
    width:45px;
    right:28px;
    padding-top:8px;
    bottom: 28px;
    height:50px;
}


.yellowbg{
    background-color: yellow;
    padding:4px;
    font-weight: bold;
}

.loader {
    border: 3px solid black; /* Light grey */
    border-top: 3px solid white; /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    /*  background: linear-gradient(orangered,white); /* W3C */
    animation: spin 1.2s ease-in-out infinite;
    box-shadow:0px 0px 30px rgba(0,0,0,0.4);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.off{
    display:none;
}

.on{
    display:block;
}
