/*this styles sheet to style common component ex header, footer*/

@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@300;500&family=Ubuntu+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Saira Semi Condensed', sans-serif;
    scroll-behavior: smooth;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999999999;
    overflow: visible;
    background: #000000 url("../assets/web-images/preloader.gif") no-repeat center center;
    background-size: 400px 400px;
}

body {
    width: 100vw;
    overflow-x: hidden;
    background: #F9EBC8;
    color: #111;

}

/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #535264;
}

.banner {
    background: url("../assets/web-images/new-bg1.jpg") no-repeat;
    background-size: 100% 100%;
    width: 100vw;
    height: 100vh;

}

.banner-text {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 70px);
    font-weight: 1000;
    color: #111;
    font-size: 18px;

}

.banner-text h1 {
    margin: 10px 0;
}

.small-banner {
    width: 100vw;
    height: 500px;
    background: url("../assets/web-images/new-bg1.jpg") no-repeat;
    background-size: 100% 100%;
    background-position-y: bottom;
}

.header {
    display: flex;
    width: 80%;
    background: transparent;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin: 0 auto;
    z-index: 10;
    border-bottom: 1px solid #fff;
    transition: .5s;
    padding: 30px 50px 30px 20px;

}

.small-banner-text {
    width: 100%;
    text-align: center;
    padding-top: 70px;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 91px;
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #FFF8F0;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 30%);
    border-bottom: 1px solid rgb(255 255 255 / 25%)
}

#wallet-btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    transition: all 0.5s;
    padding: 11px 32px;
    background: linear-gradient(351.09deg, #F029A0 4.36%, #F0B000 117.5%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 25px;
    overflow: hidden;
    z-index: 0;
    color: #fff;
    cursor: pointer;
}

#wallet-btn:disabled {
    color: #111;
}


.wallet-btn-active {
    cursor: auto;
}

.center-flex-div {
    display: flex;
    justify-content: center;

}

.menu-item {
    color: #111;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 20px;
    cursor: pointer;
}

.menu-item:hover {
    color: #36AE7C;
}

.menu {
    display: flex;
}

#footer {
    padding: 50px 0;
    background-image: url("../assets/web-images/footer-bg.jpg");
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    color: #111;
}

.footer-container {
    width: 80%;
    margin: 0 auto;
}

.footer-top {
    padding: 70px 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #111;
}

.social-media {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    font-size: 18px;
    transition: .5s;
    cursor: pointer;
}

.social-media a {
    text-decoration: none;
    outline: none;
    color: #111;
}

.social-media:hover {
    background: linear-gradient(351.09deg, #F0B000 4.36%, #F029A0 117.5%);
    border-color: transparent;
}

.footer-bottom {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    margin-top: 70px;
}

@media screen and (max-width: 768px) {
    .header {
        width: 100%;
    }

    .menu-item {
        display: none;
    }

    .instruction-steps {
        display: block;

    }

    .instruction-line {
        display: none;
    }

    .instruction-steps-item {
        margin-bottom: 50px;
    }

    .lootbox-img {
        width: 100%;
    }

    .counter-container {
        width: 90%;
    }

    .counter-item {
        width: 100%;
    }

    .character-container {
        width: 95%;
    }

}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    padding-top: 130px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    color: #111;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close-modal-btn {
    /*padding: 10px 15px;*/
    border: none;
    outline: none;
    border-radius: 10px;
    width: 100px;
    height: 70px;
    margin-left: 20px;
}

/*FOR DROP DOWN MENU*/
.profile-button {
    position: relative;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    user-select: none;

}

.dropdown-profile {
    position: absolute;
    right: 0;
    padding: 35px 20px 26px 20px;
    top: 53px;
    overflow: hidden;
    border-radius: 10px;
    background: #14141F;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 3px 16px 0 #2f536d1f;
    opacity: 0; /*hidden by default*/
    visibility: hidden;
    font-size: 16px;
    width: 311px;
    z-index: 10;
    color: #fff;
}

.dropdown-profile.show {
    opacity: 1;
    visibility: visible;
}

.profile-info {
    font-size: 14px;
    line-height: 22px;
    color: #EBEBEB;
    margin-top: 20px;
    margin-bottom: 6px;
}

.username {
    font-family: Arial, serif;
}

.play-btn {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    transition: all 0.5s;
    padding: 11px 32px;
    background: linear-gradient(351.09deg, #F029A0 4.36%, #F0B000 117.5%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 25px;
    overflow: hidden;
    z-index: 0;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.profile-balance {
    font-size: 18px;
    font-weight: bold;
    color: #5142FC;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #3C3C56;
}

.profile-menu {
    margin-top: 20px;
    font-weight: 600;

}

.profile-menu-item {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    letter-spacing: 0.1px;

}

.profile-menu-item i {
    margin-right: 10px;
}

.play-btn:disabled {
    background: #00FADF;
    color: #111;
    cursor: not-allowed;
}
