﻿.selected-option {
    border: #ffffff solid 2px !important;
    box-shadow: rgba(0,0,0,0.1) 5px 5px;
    background-color: #0cbc87 !important;
    color: #ffffff;
}

.waitingDlg {
    width: 100%;
    height: 20%;
    position: fixed;
    top: 20%;
    left: 0;
    background-color: #dadada;
    opacity: 0.95;
    text-align: center;
    z-index: 11000;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.35);
    z-index: 5000;
}

.longRunningDlg {
    width: 100%;
    height: 40%;
    position: fixed;
    top: 20%;
    left: 0;
    background-color: #ffffff;
    opacity: 0.95;
    text-align: center;
    z-index: 205;
    padding-bottom: 50px;
}

.longRunningOverlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.35);
    z-index: 201000;
}

.clay {
    background: var(--clay-background, rgba(0, 0, 0, 0.005));
    border-radius: var(--clay-border-radius, 32px);
    box-shadow: var(--clay-shadow-outset, 8px 8px 16px 0 rgba(0, 0, 0, 0.25)), inset var(--clay-shadow-inset-primary, -8px -8px 12px 0 rgba(0, 0, 0, 0.25)), inset var(--clay-shadow-inset-secondary, 8px 8px 12px 0 rgba(255, 255, 255, 0.4));
}

.swiper {
    width: 80vw;
    height: 80vh;
}
.hand {
    cursor: pointer !important;
}

.page-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s .2s ease-in-out;
    transition: all .4s .2s ease-in-out;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

[data-bs-theme="dark"] .page-loading {
    background-color: #0b0f19;
}

.page-loading.active {
    opacity: 1;
    visibility: visible;
}

.page-loading-inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    opacity: 0;
}

.page-loading.active > .page-loading-inner {
    opacity: 1;
}

.page-loading-inner > span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: #9397ad;
}

[data-bs-theme="dark"] .page-loading-inner > span {
    color: #fff;
    opacity: .6;
}

.page-spinner {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: .75rem;
    vertical-align: text-bottom;
    border: .15em solid #b4b7c9;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
}

[data-bs-theme="dark"] .page-spinner {
    border-color: rgba(255,255,255,.4);
    border-right-color: transparent;
}

@-webkit-keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Spin animation */
@-webkit-keyframes hero-spin {
    100%

{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

}

@keyframes hero-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.hero-animation-spin {
    -webkit-animation: hero-spin 35s linear infinite;
    animation: hero-spin 35s linear infinite;
}
/* Fade animation */
@-webkit-keyframes hero-fade {
    0%, 100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

@keyframes hero-fade {
    0%, 100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.hero-animation-fade {
    -webkit-animation: hero-fade 4s ease-in infinite;
    animation: hero-fade 4s ease-in infinite;
}

.hero-animation-delay-1,
.hero-animation-delay-2,
.hero-animation-delay-3 {
    opacity: 0;
}

.hero-animation-delay-1 {
    animation-delay: .75s;
}

.hero-animation-delay-2 {
    animation-delay: 1.5s;
}

.hero-animation-delay-3 {
    animation-delay: 2s;
}
