.card-secondary {
    border-radius: .6rem;
    background-color: var(--bs-secondary-background);
    border-color: var(--bs-secondary-background);
    max-width: 22rem;
    margin: auto;
}

.follow-us {
    max-width: 10rem;
}
.follow-us svg {
    fill: #A8A8A8;
    width: 1.4rem;
    height: 1.4rem;
}

.text-gray {
    color: #8E8E8E;
}

.follow-us a:hover svg {
    fill: #0073FF;
}

.py-2-1 {
    padding-top: .7rem !important;
    padding-bottom: .7rem !important;
}

.logo {
    width: 10rem;
    height: 2rem;
    background-image: url("/cdn/img/logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
}

@media (min-width: 760px) {
    .logo {
        width: 14rem;
        height: 3rem;
        background-image: url("/cdn/img/logo.svg");
        background-size: contain;
        background-repeat: no-repeat;
        margin: auto;
    }
}

[data-bs-theme=dark] {
    .text-gray {
        color: #B4B4B4;
    }

    .follow-us svg {
        fill: #4C4C4C;
    }

    .logo {
        background-image: url("/cdn/img/logo-dark.svg");
    }
}

.fs-md {
    font-size: 0.9rem
}

.fs-sm {
    font-size: 0.8rem;
}

.maintenance {
    max-width: 30rem;
}

.maintenance .animation{
    display:inline-block;
}

.maintenance .animation .gear {
    display:block;
    float:left;
    background-size:100% 100%;
    background-repeat:no-repeat;
}

.maintenance .animation .one {
    background-image: url('/cdn/img/icon/gear/1.svg');
    width:3.2rem;
    height:3.2rem;
}

.maintenance .animation .two {
    background-image: url('/cdn/img/icon/gear/3.svg');
    width: 2.8rem;
    height: 2.8rem;
    margin-left: .4rem;

}

.maintenance .animation .three {
    background-image: url('/cdn/img/icon/gear/2.svg');
    width:2.3rem;
    height:2.3rem;
    margin-top: -2rem;
    margin-left: -4.3rem;

}

@keyframes spin-one {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-359deg) ;
        transform: rotate(-359deg) ;
    }
}

.spin-one {
    -webkit-animation: spin-one 1.5s infinite linear;
    animation: spin-one 1.5s infinite linear;
}

@keyframes spin-two {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(359deg);
    }
}

.spin-two {
    -webkit-animation: spin-two 2s infinite linear;
    animation: spin-two 2s infinite linear;
}

.exit-button {
    top: 2%;
    right: 5%;
    padding: .3rem;
}

.exit-button svg {
    width: 1.2rem;
    height: 1.2rem;
}

[data-bs-theme=dark] {
    .exit-button svg {
        fill: #B4B4B4;
    }
}