/* CSS FOR ALL + HEADER + FOOTER */
/* @font-face {
    font-family: 'Anton';
    src: url('/v7/assets/fonts/Anton-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

/* @font-face {
    font-family: 'AmericanCaptain';
    src: url('/v7/assets/fonts/AmericanCaptain.ttf') format('truetype');
} */

/* @font-face { */
    /* font-family: 'AvenirNextLTPro-Regular'; */
    /* src: url('/v7/assets/fonts/Avenir_Next_Pro_2025/AvenirNext.ttc') format('opentype');
    src: url('/v7/assets/fonts/Avenir_Next_Pro_2025/AvenirNextLTPro-Regular_20250414.otf') format('opentype'); */
    /* src: url('/v7/assets/fonts/Avenir_Next_Pro_2025/AvenirNext-Regular-08.ttf') format('opentype'); */
/* } */

/* @font-face {
    font-family: 'AvenirNextLTPro-Bold'; */
    /* src: url('/v7/assets/fonts/Avenir_Next_Pro_2025/daiko-regular.ttc') format('opentype'); */
    /* src: url('/v7/assets/fonts/Avenir_Next_Pro_2025/AvenirNextLTPro-Bold.otf') format('opentype'); */
    /* src: url('/v7/assets/fonts/Avenir_Next_Pro_2025/AvenirNext-Bold-01.ttf') format('opentype');
}

@font-face {
    font-family: 'AvenirNextLTPro-BoldIt';
    src: url('/v7/assets/fonts/Avenir_Next_Pro_2025/AvenirNext-BoldItalic-02.ttf') format('opentype');
} */

/* START GEMERAL */

:root {
    --primary: #8cc43e;
    --active: #a5d168;
    --background-primary: #000001;
    --text-1: #ffffff;
    --text-2: #000000;
    --border-1: #ffffff;
}


/* START scroll bar css */

body::-webkit-scrollbar {
    width: 8px;
    background-color: #000000;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    height: 30px;
    outline: 1px solid slategrey;
    transition: ease-in-out 0.3s;
    cursor: pointer;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
    height: 30px;
    outline: 1px solid slategrey;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}


/* END scroll bar css */

html,
body {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    position: relative;
    font-size: 16px;
    background-color: var(--background-primary);
    /* background-image: url("/v7/assets/images/background-page.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover; */
    color: var(--text-1);
    font-weight: 400;
}

a {
    color: var(--primary);
    text-decoration: none !important;
}

strong {
    font-weight: 500;
}

a:hover,
a:active {
    color: var(--active) !important;
}

img {
    width: 100%;
}


/* START HEADER */

header.fekit-header-h-1 {
    z-index: 99999;
    background: rgba(0, 0, 0, 0);
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0.25rem 0;
    transition: all ease-in-out 0.3s;
}

header.fekit-header-h-1.active {
    padding: 0.2rem 0;
    background: rgba(0, 0, 0, 1);
}

header.fekit-header-h-1.active .navbar-brand img {
    height: 3rem;
}

header.fekit-header-h-1 .navbar-brand img {
    height: 3.5rem;
    image-orientation: from-image;
    transition: all ease-in-out 0.3s;
    width: auto;
}

.overlay {
    opacity: 0;
    position: inherit;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: rgb(0 0 0 / 80%);
    transition: all ease-in-out 0.5s;
    cursor: pointer;
}

header.fekit-header-h-1 .navbar {
    padding: 0rem 0;
}

header.fekit-header-h-1 .navbar-collapse {
    justify-content: flex-end;
}

header.fekit-header-h-1 .navbar-nav .dropdown .dropdown-menu {
    background: #000000;
    border-color: var(--primary);
    border-radius: 0;
}

header.fekit-header-h-1 .navbar-nav .dropdown .dropdown-menu:hover,
header.fekit-header-h-1 .navbar-nav .dropdown .dropdown-menu:active,
header.fekit-header-h-1 .navbar-nav .dropdown .dropdown-menu:focus {
    display: block;
}

header.fekit-header-h-1 .dropdown:hover .dropdown-menu,
header.fekit-header-h-1 .dropdown:active .dropdown-menu,
header.fekit-header-h-1 .dropdown:focus .dropdown-menu {
    display: block;
}

header.fekit-header-h-1 a.dropdown-item {
    color: white;
}

header.fekit-header-h-1 .dropdown-item:hover,
header.fekit-header-h-1 .dropdown-item:active {
    background: #000000;
    color: var(--primary);
}

header.fekit-header-h-1 .nav-item .nav-link {
    font-family: "Montserrat", sans-serif;
    color: #9d9d9d;
    transition: all ease-in-out 0.15s;
    text-transform: uppercase;
    font-weight: 400;
}

header.fekit-header-h-1 .nav-item svg {
    width: 22px;
    margin-right: 0.5rem;
    color: white;
}

@media (min-width: 1200px) {
    header.fekit-header-h-1 .navbar-nav {
        align-items: center;
    }
    header.fekit-header-h-1 .dropdown-menu {
        background: var(--primary);
        border: none;
        /* box-shadow: 0px 0px 5px black; */
        margin-top: 0rem;
    }
    header.fekit-header-h-1 .dropdown-item {
        color: white;
    }
    header.fekit-header-h-1 .dropdown-item:hover,
    header.fekit-header-h-1 .dropdown-item:active,
    header.fekit-header-h-1 .dropdown-item:focus {
        background: var(--primary);
        color: white;
    }
    header.fekit-header-h-1 .dropdown-toggle:after {
        display: none;
        border-top: 0;
    }
    header.fekit-header-h-1 li.nav-item {
        padding: 0rem 0.25rem;
        font-size: 1rem;
        text-transform: uppercase;
        font-weight: 400;
        position: relative;
        margin: 0 1rem;
        text-align: center;
        transition: all ease-in-out 0.3s;
    }
    header.fekit-header-h-1 li.nav-item:after {
        content: "";
        display: block;
        height: 2px;
        width: calc(100% + 6px);
        background: var(--primary);
        position: absolute;
        border-bottom: 0;
        left: -3px;
        opacity: 0;
        transition: all ease-in-out 0.3s;
    }
    header.fekit-header-h-1 li.nav-item:hover:after,
    header.fekit-header-h-1 li.nav-item:active:after,
    header.fekit-header-h-1 li.nav-item.active:after {
        opacity: 1;
    }
    header.fekit-header-h-1 li.nav-item:hover,
    header.fekit-header-h-1 li.nav-item:active,
    header.fekit-header-h-1 li.nav-item.active .nav-link {
        color: var(--primary) !important;
    }
    .nav-item .nav-link {
        padding: 0 0 !important;
    }

    header.fekit-header-h-1 li.nav-item:last-child {
        margin-right: 0;
    }
}

@media (max-width: 1200px) {
    header.fekit-header-h-1 .navbar-toggler svg {
        width: 25px;

    }
    li.nav-item.dropdown.nav-button .dropdown-toggle::after,
    li.nav-item.dropdown.nav-button .dropdown-toggle svg {
        display: none !important;
    }
    header.fekit-header-h-1 .navbar-toggler {
        width: 40px;
        order: 1;
        z-index: 99;
    }
    header.fekit-header-h-1 .navbar-toggler {
        color: white;
    }
    header.fekit-header-h-1 .offcanvas-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        padding: 1rem 1rem;
        transition: transform 0.3s ease-in-out;
        transform: translateX(calc(-100% - 10rem));
        z-index: 91;
        background: #000000;
        width: 40%;
    }
    header.fekit-header-h-1 .offcanvas-collapse.offcanvas-collapse--open {
        transform: translateX(-1rem);
    }
    header.fekit-header-h-1 .offcanvas-collapse a.nav-link {
        color: white;
        border-bottom: 1px solid var(--primary);
    }
    header.fekit-header-h-1 .offcanvas-collapse a.nav-link:hover,
    header.fekit-header-h-1 .offcanvas-collapse a.nav-link:active,
    header.fekit-header-h-1 .offcanvas-collapse .active a.nav-link {
        color: var(--primary);
    }
    header.fekit-header-h-1 .navbar-nav .dropdown .dropdown-menu {
        background: #000000;
        display: block;
        border: none;
        padding: 0 1rem;
    }
    header.fekit-header-h-1 a.dropdown-item {
        border-bottom: 1px solid #ffffffa1;
    }
    header.fekit-header-h-1 .navbar {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
}

header.fekit-header-h-1 .navbar-toggler svg.fa-bars {
    color: rgba(0,0,0,0);
    background-image: url(/v7/assets/images/202510/hambuger.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    margin-left: -10px;
}

@media (max-width: 680px) {
    header.fekit-header-h-1 .offcanvas-collapse {
        width: 80%;
    }
    header.fekit-header-h-1 .tool-bar-wraper {
        padding: 0 0;
    }
    header.fekit-header-h-1 .tool-bar-item {
        margin-left: 0;
        margin-right: 0;
    }
}


/* START FOOTER */

footer {
    background: black;
    padding: 1rem 0 1.5rem;
}

.footer__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.footer__info-hotline {
    font-size: 1.7rem;
    color: #94c83d;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    font-weight: 500;
    /* letter-spacing: 3px; */
    width: 66%;
    margin-left: auto;
}

    .footer__info-hotline.d-lg-block {
        padding-left: 34%;
    }

.footer__info-email {
    font-size: 1.15rem;
    color: black;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    font-weight: 400;
    /* letter-spacing: 2px; */
    width: 66%;
    margin-left: auto;
    margin-top: 5px;
}

.footer__logo.partnerlogo {
    width: 6rem;
    margin-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding-right: 1rem;
    /* padding-top: 0.2rem; */
}

.footer__logo.monster {
    width: 9rem;
}

@media (max-width: 680px) {
    footer {
        /* background-color: rgba(0, 0, 0, 0.9); */
    }
    /* .footer__logo {
        width: 100px;
    } */
    .footer__info-hotline {
        font-size: 1.07rem;
        /* letter-spacing: 1px; */
    }
    .footer__info-email {
        font-size: 0.56rem;
        margin-top: 5px;
    }
    .footer__logo.partnerlogo {
        width: 4rem;
        margin-right: 0.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        padding-right: 0.5rem;
    }
    .footer__logo.monster {
        width: 5rem;
    }
}


/* END FOOTER */


/* START TITLE */

.daiko-title h1 {
    font-family: "Montserrat", sans-serif;
    color: var(--text-1);
    text-align: center;
    font-size: 2rem;
}


/* END TITLE */


/* START BUTTON */


/* END BUTTON */

.modal {
    background: rgb(0 0 0 / 70%);
}

.modal-content {
    background-image: url("/v7/assets/images/202510/background_page.webp");
    background-color: #000000;
    /* background-image: url("/v3/assets/images/background-store-list.jpg"); */
    background-repeat: no-repeat;
    background-position: 50% 35%;
    background-size: 150%;
    border: 4px solid var(--primary) !important;
    box-shadow: 0 0px 10px rgb(202 96 59 / 70%);
    border-radius: 3px !important;
    position: relative;
    padding: 1rem 0 2rem;
    text-align: center;
}

.modal-content::after {
    display: none;
}

.modal-content::before {
    border: none !important;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content div {
    position: relative;
    z-index: 10;
}

#reward-modal .box-reward-modal {
    padding-top: 0rem !important;
}

@media (max-width: 680px) {
    .modal-content::before {
        display: block !important;
    }
    .modal-content {
        /* border: none !important;
        box-shadow: none !important; */
        background-size: 250%;
        background-position: center;
    }
    .daiko-title h1 {
        font-size: 1.8rem;
    }
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
    outline: none;
}

span.select2.select2-container.select2-container--default:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #ffffff !important;
    color: #000000;
}

.select2-results__option.select2-results__option--selectable {
    color: #ffffff;
}

.select2-container--default .select2-results__option--disabled {
    color: #ffffff;
}

html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    outline: none !important;
}

.form-control:focus {
    border-color: #A9D83D !important;
}

input:focus {
    outline: none;
}

*:focus {
    outline: none;
}

@media (max-width: 900px) {
    .footer__info {
        width: 66%;
    }
}