@keyframes breatheGold {
    0%, 100% {
        filter:
            drop-shadow(0 0 1px rgba(255,215,120,.9))
            drop-shadow(0 0 6px rgba(255,180,60,.25))
            drop-shadow(0 0 14px rgba(255,120,25,.1))
            drop-shadow(0 5px 14px rgba(0,0,0,.65));
    }

    50% {
        filter:
            drop-shadow(0 0 2px rgba(255,235,160,1))
            drop-shadow(0 0 16px rgba(255,190,70,.85))
            drop-shadow(0 0 34px rgba(255,140,35,.55))
            drop-shadow(0 5px 14px rgba(0,0,0,.65));
    }
}

.logoimg {
    width: 300px !important;
    height: 90px !important;
    margin: 0px auto !important;
    display: block !important;
    object-fit: contain !important;
    animation: breatheGold 3s ease-in-out -0.2s infinite !important;
}

.appbar {
    grid-area: appbar !important;
    height: 90px !important;
    display: grid !important;
    place-items: center !important;
}

@media only screen and (max-width: 1000px) {
    .logoimg {
        width: 280px !important;
        height: auto !important;
    }

    .appbar {
        height: 100px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logoimg {
        animation: none !important;
        filter:
            drop-shadow(0 0 1px rgba(255,225,140,.95))
            drop-shadow(0 0 11px rgba(255,185,65,.55))
            drop-shadow(0 0 22px rgba(255,130,30,.3))
            drop-shadow(0 5px 14px rgba(0,0,0,.65)) !important;
    }
}

.modal-dialog {
    background: #000;
    border: 3px solid #ab0102;
    border-radius: 10px;
    margin-top: 15px !important;
}

@media only screen and (max-width: 768px) {
    .modal-dialog {
        margin-top: 78px !important;
    }
}

.modal-content {
    text-align: center !important;
    padding: 8px !important;
}

.modal-header {
    display: block !important;
    text-align: center;
    padding: 0 !important;
    border-bottom: 3px solid #ab0102 !important;
}

.modal-btn,
.modal-btn:hover {
    padding: 0 10px;
    font-weight: 700;
    height: 30px;
}

.modal-footer {
    display: block !important;
    border-top: 3px solid #ab0102 !important;
}

.modal-btn {
    background: #ab0102;
    border: 1px solid #ab0102;
    color: #fff;
    border-radius: 3px;
}

.modal-btn:hover {
    background: #000;
    border: 1px solid #ab0102;
    color: #ab0102;
    border-radius: 3px;
}

.sc-1au8ryl-0 {
    visibility: hidden;
}

.modal-content {
    background-color: #fff0 !important;
    cursor: pointer !important;
    border: 0 !important;
}

.imgpop {
    border: 0 !important;
    aspect-ratio: 0 !important;
    object-fit: cover !important;
}