body {
    min-height: 100vh !important;
    display: flex;
    flex-direction: column;

    font-family: Arial, Helvetica, sans-serif;
}

body main {
    flex: 1;
}

.login-btn {
    display:block;
    width: 28.8vw;
    height: 8.5333333333vw;
    border: 0.2666666667vw solid #710b0b;
    box-shadow: inset 0 0.2666666667vw 0 0 rgba(255, 255, 255, .5);
    line-height: 8.5333333333vw;
    padding: 0;
    color: #fff;
    border-radius: 1.0666666667vw;
    margin-top: 0.2666666667vw;
    background-image: linear-gradient(-180deg, #ff00a9 0%, #ff00a9 100% 100%);
    border: 0.26667vw solid #810758;
    color: #fff !important;
    text-align: center;
    text-decoration:none;
}

.quickSettings h3 {
    padding: 0.5em;
    margin: 0;
    color: white;
    background-image: linear-gradient(-180deg, #2e4b5e 0%, #243a48 82%);
}

.quickSettings .quickStakes input {
    width: fit-content !important;
    flex: 0 0 auto;
    padding: 0.375rem 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    cursor: pointer;
    text-align: center;
    background: red;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.circle-container {
    position: relative;
    width: 150px;
    height: 150px;
    overflow: hidden;
    background: white;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    animation: moveAndSwap 1.2s infinite ease-in-out;
}

.blue {
    background-color: #3498db;
    top: 50%;
    left: 45%;
}

.red {
    background-color: #e74c3c;
    animation-delay: -0.6s;
    top: 50%;
    left: 60%;
}

@keyframes moveAndSwap {
    0% {
        transform: translate(-50%, -50%) translateX(0);
        z-index: 2;
    }

    25% {
        transform: translate(-50%, -50%) translateX(-20px);
    }

    50% {
        transform: translate(-50%, -50%) translateX(0);
        z-index: 0;
    }

    75% {
        transform: translate(-50%, -50%) translateX(20px);
    }

    100% {
        transform: translate(-50%, -50%) translateX(0);
        z-index: 2;
    }
}

#allBets {
    padding: 1em;
}

#allBets::before {
    content: "";
    display: inline-block;
    width: 48px;
    /* adjust size as needed */
    height: 48px;
    background-image: url("/images/icons/white-poker-chip.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    /* align with text if needed */
}

#quickSettingsButton:active {
    border: none !important;
}

.icon-wrapper {
    display: inline-block;
    transition: transform 0.4s ease !important;
}

#quickSettingsButton:hover .icon-wrapper {
    transform: rotate(360deg) !important;
}

[ng-cloak] {
    display: none !important;
}

.noticeContainer {
    background-image: linear-gradient(-180deg, #2f424d 0%, #141e21 100%);
    color: white;
}

.promot {
}

.promot img {
    position: relative;
}

.customNotification {
    background: #333;
    color: white;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-width: 100%;
    text-align: center;
}
.customNotification.show {
    opacity: 1;
    transform: translateY(0);
}

.customNotification.success {
    background: #28a745;
}
.customNotification.error {
    background: #dc3545;
}
.customNotification.info {
    background: #17a2b8;
}


#headerApp nav > div {
    background-color: rgba(51, 51, 51, 0.4);
    box-shadow: inset 0 1px 0 0 rgb(255 255 255 / 40%);
    /* box-shadow: inset 0 0.2666666667vw 0 0 rgba(255, 255, 255, .5); */
    border-color: #000;
}

.siteHeader {
    background: linear-gradient( -180deg, #414141 0%, #000 100%);
    
}