* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn_login {
    position: absolute;
    bottom: var(--bottom_login_button);
    left: var(--left_login_button);
    transform: translate(-50%, -50%);
}

.custom_btn {
    background: #fff !important;
    border: 1px solid #6b0f14 !important;
    color: #6b0f14 !important;
    animation: wiggle 2s 2s infinite !important;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 1000px;
    box-shadow: 0px 0px 0px 10px #6b0f14 !important;
    transition: 0.5s all ease-in-out !important;
    font-size: 20px;
}

@keyframes wiggle {

    5%,
    50% {

        transform: scale(1);

    }

    10% {

        transform: scale(0.9);

    }

    15% {

        transform: scale(1.15);

    }

    20% {

        transform: scale(1.15) rotate(-5deg);

    }

    25% {

        transform: scale(1.15) rotate(5deg);

    }

    30% {

        transform: scale(1.15) rotate(-3deg);

    }

    35% {

        transform: scale(1.15) rotate(2deg);

    }

    40% {

        transform: scale(1.15) rotate(0);

    }
}

.bg_mob {
    display: none;
}

@media screen and (orientation: portrait) {
    .bg_desktop {
        display: none;
    }

    .bg_mob {
        display: block;
    }

    .btn_login {
        bottom: var(--mob_bottom_login_button);
        left: var(--mob_left_login_button);
    }
}

#exampleModalCenter .modal-dialog {
    max-width: 980px;
}

#exampleModalCenter .modal-content {
    background-color: #2b2b28;
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    filter: brightness(0) invert(1);
}

#exampleModalCenter label {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 12px;
}

#exampleModalCenter .form-control {
    background: #2b2b28;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0;
    height: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#exampleModalCenter .form-control:focus {
    box-shadow: none;
}

.google-cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #fff;
    padding: 10px 16px;
    font-weight: 500;
    color: #3c4043;
    cursor: pointer;
}

.google-cal-btn img {
    width: 18px;
    height: 18px;
}

.ok-btn {
    margin-top: 16px;
}

.btn_lobby {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: #fdb833;
    color: #6d4a07;
    animation: ring-button 3s infinite;
    transform: translate(-50%, -50%);
}

.btn_lobby:after {
    background: rgba(253, 184, 51, 0.25);
    border: solid 1px rgba(253, 184, 51, 0.25);
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    content: "";
    border-radius: 50%;
    animation: ring-line 2.95s infinite;
}

.btn_lobby:before {
    background: rgba(242, 166, 20, 0.9);
    border: solid 1px rgba(242, 166, 20, 1);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    width: 30px;
    height: 30px;
    content: "";
    border-radius: 50%;
    animation: ring-line 2.90s infinite;
}

@keyframes ring-button {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.4);
        -ms-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ring-line {
    0% {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }

    90% {
        -webkit-transform: scale(1.4);
        -ms-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

.btn_lobby1 {
    bottom: 41%;
    left: 31%;
}

.lobby_squirrel {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 70%;
    bottom: 10%;
}

.lobby_squirrel img {
    animation: ring-button 3s infinite;
}

@media screen and (orientation: portrait) {
    .btn_lobby {
        display: none;
    }

    .lobby_squirrel {
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        bottom: 0%;
    }
}

.btn_add_menu {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 55px;
    font-size: 28px;
    z-index: 1050;
    background-color: transparent;
    border: none;
    outline: none;
    transition: opacity 0.2s ease;
}

@media (max-width: 767px) {
    .btn_add_menu {
        display: flex;
    }
}

.btn_add_menu.hide-btn {
    display: none !important;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-close-btn {
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #000;
    cursor: pointer;
    padding: 0 8px;
}

.custom-close-btn:hover {
    color: #555;
}

.offcanvas-body .nav-link {
    font-size: 18px;
    padding: 12px 10px;
    color: #000;
    border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-link:hover {
    background: #f5f5f5;
}

.video-main {
    right: var(--web_video_left_right);
    top: var(--web_video_top_bottom);
    max-width: var(--web_video_width);
    margin: auto;
    position: absolute;
    left: 0;
}

.video-container {
    position: relative;
    padding-bottom: var(--web_video_height);
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (orientation: portrait) {
    .video-main {
        right: var(--mob_video_left_right);
        top: var(--mob_video_top_bottom);
        max-width: var(--mob_video_width);
        margin: auto;
        position: absolute;
        left: 0;
    }

    .video-container {
        position: relative;
        padding-bottom: var(--mob_video_height);
        height: 0;
    }
}


.logo-ticker {
    width: 100%;
    overflow: hidden;
    background: #fff;
    position: relative;
    white-space: nowrap;
}

.logo-ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 20s linear infinite;
    will-change: transform;
}

.logo-ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px 30px;
}

.logo-ticker-item img {
    width: 180px;
    height: auto;
    display: block;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.back_button button,
.back_button button:hover {
    background-color: #5B1C1E;
    border-radius: 8px;
    position: absolute;
    top: 20%;
    left: 40px;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    padding-left: 9px;
}

.back_button button img {
    filter: brightness(0) invert(1);
}


.question_button button,
.question_button button:hover {
    background-color: #5B1C1E;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    padding-left: 9px;
}

.question_button button img {
    filter: brightness(0) invert(1);
}

.question_button{
    position: absolute;
    bottom: var(--web_question_top_bottom);
    right: var(--web_question_left_right);
    transform: translate(-50%, -50%);
}

.question-popup {
    display: none;
    position: absolute;
    bottom: 50px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    z-index: 1000;
}

@media screen and (orientation: portrait) {

    .question_button button,
    .question_button button:hover {
        bottom: var(--mob_question_top_bottom);
    }

    .question-popup {
        bottom: 150px;
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -2;
}

.wrapper .row section {
    background: #fff;
    border-radius: 5px;
    width: calc(50% - 40px);
    padding: 20px;
    position: relative;
}

.wrapper section .bottom a {
    text-decoration: none;
    background: #011583;
    color: #fff;
    padding: 7px 15px;
    border-radius: 5px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.wrapper .center-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #fff;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.wrapper .row-2 {
    justify-content: flex-end;
}

.row-1 section .icon {
    top: 15px;
    right: -60px;
}

.row section .icon {
    position: absolute;
    background: #f2f2f2;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #01167c;
    font-size: 17px;
    box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.row-2 section .icon {

    top: 15px;

    left: -60px;

}

.btn_c {
    background-color: #011583;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
}

@media screen and (orientation: portrait) {
    .wrapper .row section {
        width: 100%;
    }

    .wrapper .center-line,
    .row section::before,
    .row section .icon {
        display: none;
    }

    .wrapper .center-line {
        left: 40px;
    }

    .wrapper .row {
        margin: 10px 0;
    }
}
