﻿.navbar.has-shadow {
    -webkit-box-shadow: 0 3px 3px green;
    box-shadow: 0 3px 3px green;
}

@media screen and (min-width: 1024px) {
    .navbar-item.has-dropdown.is-active .navbar-link, .navbar-item.has-dropdown:hover .navbar-link {
        background-color: black;
        color: #fff;
    }
}

.navbar-burger {
    margin-left: 4px;
}

@media screen and (max-width: 1023px) {
    .navbar-dropdown {
        display: none;
    }

    .navbar-item.is-hoverable:hover > .navbar-dropdown {
        display: block;
    }

    .navbar-link::after {
        border: 1px solid #3273dc;
        border-right: 0;
        border-top: 0;
        content: " ";
        display: block;
        height: .5em;
        pointer-events: none;
        position: absolute;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: center;
        transform-origin: center;
        width: .5em;
        margin-top: -.375em;
        right: 1.125em;
        top: 50%;
    }
}

.userPhoto {
    max-height: 2.5rem;
    border-radius: 50%;
}

.dot {
    height: 45px;
    width: 45px;
    background-color: #bbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.center {
    margin: auto;
    border: 2px solid #DC2434;
    border-radius: 20px;
    background-color:#F2F2F2;
    padding: 10px;
    position: absolute;
    margin: auto;
    font-size: 1.4rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 80px;
    width: 600px;
    text-align: center;
}

.font-bold {
    font-weight: bold;
}

#loader {
    position: fixed;
    top: 40%;
    z-index: 1;
    text-align: center;
    width: 100%;
}

    #loader div {
        display: inline-block;
        border: 16px solid #f3f3f3;
        border-radius: 50%;
        border-top: 16px solid green;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    #loader div {
        width: 100px;
        height: 100px;
    }
}

@media screen and (min-width: 769px) {
    #loader div {
        width: 150px;
        height: 150px;
    }
}

.alignCenter {
    text-align: center;
}

.positionTopBottom{
    position: fixed;
    top: 42%;
    left: 42%;
}

#alertBox {
    position: relative;
    padding-right: 0.5rem;
    bottom: -100px;
    z-index: 20;
    display: inline-block;
}

.authorization-message strong {
    font-size: 20px;
}

.animate-alert {
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

.iframe-container {
    height: 93vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.styled-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

:root {
    --navbar-bg-color: #ffffff; /* Default fallback value */
}

#navbar {
    background-color: var(--navbar-bg-color);
}


@@keyframes animatebottom {
    from {
        bottom: 0px;
        opacity: 0
    }

    to {
        bottom: -100px;
        opacity: 1
    }
}

.divbrandlogo {
    width: 200px;
    height:50px;
    background-position:center;
}

.brandlogo {
    display: block;
    width: 100%;
}

