/* menu Color inactive: #583450 */
/* menu Color active: #2E0124 */
/* Accent orange: #F79E18 */

html {
    box-sizing: border-box;
    font-size: 100%;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

#app {
    display: flex;
    height: 100vh;
}

#app > div:first-child {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.d-none {display: none;}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p {
    margin: 0;
    color: #ffffff;
}

h1, h2, h3 {color: #ffffff;}

ul {
    list-style-type: none;
    padding: 0;
}

button {
    cursor: pointer;
}

.flex-row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.flex-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bold {
   font-weight: 700!important;
}

.no-scroll {
    overflow: hidden!important;
}





/* MENU */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #1c0628;
    align-items: center;
    z-index: 10;
    /* border-bottom: 2px solid #180000; */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header_right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo img {
    max-width: 140px;
}


.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    transition: transform 0.5s ease;
    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-toggle:focus {
    outline: none !important;
}

.menu-toggle div {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: 0.3s;
}

.menu-toggle:hover div,
.menu-toggle:active div,
.menu-toggle:focus div {
    background-color: #F89F18;
}

.menu-toggle.active .bar1 {
    transform: rotate(-45deg) translate(-7px, 5px);
    background-color: #F89F18;
}

.menu-toggle.active .bar2 {
    opacity: 0;
    background-color: #F89F18;
}

.menu-toggle.active .bar3 {
    transform: rotate(45deg) translate(-7px, -5px);
    background-color: #F89F18;
}

.nav-menu {
    position: fixed;
    left: 0;
    top: 74px;
    width: 100%;
    /* height: 100%; */
    background: linear-gradient(158.27deg, #0C092A 12.94%, #2E0124 98.22%);
    display: flex;
    justify-content: center;
    /* align-items: center; */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px 10px;
    box-sizing: border-box;
    z-index: 2;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu ul {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 460px;
    /* min-width: 400px; */
    display: flex;
    flex-direction: column;
    height: fit-content;
    margin-top: 0;
    /* justify-content: space-between; */
}

.nav-menu ul h1 {
    font-family: "Nanotech LLC";
    text-align: left;
    color: #ffffff;
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* .nav-menu,
.nav-menu ul {
    height: calc(100% - 81px);
} */

.nav-menu {
    height: calc(100% - 73px);
}

.nav-menu ul li {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

.nav-menu ul li a {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    text-align: left;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-menu ul li a:focus,
.nav-menu ul li:focus {
    outline: none !important;
}

.nav-menu ul li a:not(:first-child) {margin-top: 10px;}

.nav-menu ul li a .flex-column {
    width: 100%;
    max-width: 300px;
}

.nav-menu ul li img {
    max-width: 25px;
    margin-right: 15px;
}

.nav-menu ul li .menu_title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.nav-menu ul li .menu_desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 5px;
    font-weight: 200;
}

.nav-menu ul li i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    margin-left: auto;
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.nav-menu ul li a:hover i {
    transform: translateX(8px); /* Move the last item 5px to the right */
}

/* .nav-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    transition: 0.2s;
    border: 2px solid #F79E18;
    border-radius: 10px;
    padding: 18px 10px;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transition: 0.1s;
}

.nav-menu ul li a:hover {
    color: #140728;
    background-color: #F79E18;
}

.outline_register_item {
    box-sizing: border-box;
    padding: 12px 8px 16px 8px;
    background-color: #ffffff39;
    border: 2px solid #ffffff71;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 18px;
    position: relative;
    overflow: hidden; 
}

.outline_register_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%; 
    width: 140%; 
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    animation: shine 1.5s linear infinite; 
    will-change: transform;
}




.nav-menu ul .register_item {
    padding: 15px 25px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #F79E18;
    border: none;
    box-shadow: 0px -3px #FAC972, 0 9px #D1571B;
}

.nav-menu ul .register_item:hover {
    color: #ffffff;
}

.nav-menu ul .register_item:active {
    background-color: #F79E18;
    box-shadow: 0 5px #D1571B;
    box-shadow: 0px 0px #FAC972, 0 5px #D1571B;
    transform: translateY(4px);
    -webkit-transform: translateY(4px);
}


.nav-menu ul .log_in_item {
    color: #F79E18;
} */

.language-selector {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.language-selector:focus {
    outline: none !important;
}

.language-selector img {
    max-width: 40px;
    transition: transform 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.language-selector img:focus {
    outline: none !important;
}

.language-selector i {
    transition: transform 0.4s ease;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.language-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    background-color: white;
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 3;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    margin: 5px 0;
}

.language-dropdown li a {
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    display: block;
    transition: 0.2s;
}

.language-dropdown li a:hover {
    background-color: #F79E18;
    color: white;
    border-radius: 5px;
}

/* Rotate animations */
.language-selector img.rotate {
    transform: rotate(180deg);
}

.language-selector i.rotate {
    transform: rotate(180deg);
}

.vert_sep {
    border-right: 1px solid #583450;
    height: 30px;
    margin-right: 25px;
}


header.logged .header_right img {
    max-width: 40px;
    transition: transform 0.4s ease;
    margin-right: 5px;
    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header.logged .header_right img:focus {outline: none !important;}

header.logged .notification {margin-right: 10px;}

#languageIcon {max-width: 37px;}

/* END MENU */


/* HOME */

main {
    /* background: rgb(103,39,59); */
    background: #0C092A;
    /* background: radial-gradient(circle at top left, rgba(103,39,59,1) 0%, #1F0527 30%); */
    background: linear-gradient(158.52deg, #0C092A 12.82%, #2E0124 84.59%);
    /* height: calc(100vh - 72px); */
    padding: 10px 15px;
    overflow-x: hidden;
    flex-grow: 1;
    position: relative;
    overflow-y: auto;
}

.img_glow_left {
    position: absolute;
    top: -50vw;
    left: -50vw;
    max-width: 95vw;
    /* z-index: 0; */
}

section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.usr_home {
    justify-content: space-between;
    margin-top: 20px;
}

.usr_home img {
    max-width: 60px;
}

.left_usr_home {
    align-items: start;
}

.left_usr_home .row1 {
    align-items: center;
}

.left_usr_home .salutation {
    opacity: 0.8;
    color: #ffffff;
    font-size: 18px;
}

.left_usr_home .row2 {
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.left_usr_home .row2 img {
    /* max-width: 50px;
    margin-right: 10px; */
}

.left_usr_home .row2 .user_img_bg {
    background-color: #28273B;
    max-width: 60px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.left_usr_home .row2 .name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.left_usr_home .row3 {width: fit-content;}

.left_usr_home .row3 .lvl_badge {
    align-items: center;
    background: radial-gradient(111.74% 98.47% at 13.53% 10.61%, #59EBFF 0%, #2EA8FF 70%, #2182D1 100%);
    border-radius: 38px;
    width: auto;
    padding: 5px 15px 5px 5px;
    margin-top: 20px;
    cursor: pointer;
}

.left_usr_home .row3 .lvl_badge.lvl2 {
    background: radial-gradient(91.16% 91.16% at 24.82% 20.86%, #7BFFC2 0%, #0A6977 75%, #00484F 100%);
}

.left_usr_home .lvl_badge img {
    max-width: 40px;
    margin-right: 3px;
}
.left_usr_home .lvl_badge p {
    font-size: 16px;
    font-weight: 700;
}



.left_usr_home .bg_border .flex-row {align-items: center;}

.left_usr_home .bg_border {
    background: rgba(244, 244, 244, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    border-radius: 25px;
    padding: 7px 10px;
    /* min-height: 45px; */
    margin-top: 20px;
    margin-left: 15px;
    display: flex;
    position: relative;
    cursor: pointer;
}

.bg_border.points_no_click {cursor: default!important;}

.left_usr_home .bg_border img {
    max-width: 30px;
    margin-right: 7px;
}

.left_usr_home .bg_border p {
    font-size: 16px;
    font-weight: 700;
}

.points_img_anim {
    animation: zoomInOut 2s infinite; /* Animation duration: 2 seconds, infinite loop */
}






#home_games_left .box {
    box-sizing: border-box;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 160.58%); */
    background: rgb(135,57,76);
    background: linear-gradient(180deg, rgba(135,57,76,0.9) 0%, rgba(47,25,56,0.8) 99%);
    border-radius: 16px;
    padding: 20px;
    margin-top: 50px;
}

#home_games_left .title {
    font-size: 30px;
    font-weight: 700;
}

#home_games_left .title span {
    background: rgb(250,210,24);
    background: linear-gradient(90deg, rgba(250,210,24,1) 0%, rgba(238,110,60,1) 99%);
    -webkit-background-clip: text; /* For Chrome, Safari, and Opera */
    -webkit-text-fill-color: transparent; /* For Chrome, Safari, and Opera */
    background-clip: text; /* Standard property */
    color: transparent; /* Fallback */
}

#home_games_left .points {
    opacity: 0.7;
    font-size: 18px;
    margin-top: 13px;
}

.outline_fancy_btn {
    box-sizing: border-box;
    padding: 10px 8px 16px 8px;
    background-color: #ffffff39;
    border: 2px solid #ffffff71;
    width: 100%;
    z-index: 1;
    margin: 20px auto;
    border-radius: 18px;
    position: relative;
    overflow: hidden; 
}


.fancy_btn {
    font-family: 'IBM Plex Mono';
    padding: 15px 25px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #F79E18;
    border: none;
    box-shadow: 0px -3px #FAC972, 0 9px #D1571B;
    display: block;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    transition: 0.1s;
    width: 100%;
}


.outline_fancy_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;  
    width: 140%; 
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.6), transparent); 
    transform: skewX(-25deg);
    z-index: 2;
    animation: shine 1.5s linear infinite;
    will-change: transform;
    z-index: 0;
}


.pause-animation::before {
    animation: none; /* Stop the animation */
    background: transparent;
}

.fancy_btn:hover {
    color: #ffffff;
}

.fancy_btn:active {
    background-color: #F79E18;
    box-shadow: 0 5px #D1571B;
    box-shadow: 0px 0px #FAC972, 0 5px #D1571B;
    transform: translateY(4px);
    -webkit-transform: translateY(4px);
    
}

.fancy_btn:focus {
    animation: none;
}


#home_games_left .flex-row {
    justify-content: center;
    align-items: center;
    /* margin-top: 30px; */
    margin: 30px auto 0 auto;
}

#home_games_left .flex-row img {
    max-width: 27px;
    margin-right: 10px;
    cursor: pointer;
}

#home_games_left .get_more_quiz {
    font-size: 18px;
    background: rgb(250,210,24);
    background: linear-gradient(90deg, rgba(250,210,24,1) 0%, rgba(238,110,60,1) 99%);
    -webkit-background-clip: text; /* For Chrome, Safari, and Opera */
    -webkit-text-fill-color: transparent; /* For Chrome, Safari, and Opera */
    background-clip: text; /* Standard property */
    color: transparent; /* Fallback */
    font-weight: 700;
    cursor: pointer;
  
}


.get_more_quiz_row {
    transition: 0.3s;
    width: fit-content;
}

.get_more_quiz_row:hover,
.get_more_quiz_row:focus {
    transform: scale(1.1);
}


#home_invite .box {
    background: rgb(97,91,195);
    background: linear-gradient(90deg, rgba(97,91,195,1) 0%, rgba(151,133,238,1) 99%);
    border-radius: 16px;
    padding: 40px 20px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    
}

#home_invite .box i {
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
}

#home_invite .box:hover i {
    transform: translateX(8px);
    -webkit-transform: translateX(8px);
}


/* #home_invite .box.flex-row {
    width: auto;
} */

#home_invite img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the image */
    /* Optionally, set the width and height of the image */
    max-width: 200px; /* Example size */
    height: auto; /* Keeps the aspect ratio */
    left: -55px; /* Align it to the left, or set another alignment as needed */
}

#home_invite .flex-column {
    justify-content: center;
}

#home_invite .col1 {
    width: 200px;
}

#home_invite .col3 {width: auto;}

#home_invite .heading {
    font-size: 22px;
    font-weight: 700;
}

#home_invite .text {
    font-size: 18px;
    margin-top: 10px;
    padding-right: 30px;
}

#home_invite i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

#prizes_carousel {
    padding-bottom: 50px;
    /* ???? */
    display: grid;
}

#prizes_carousel h1 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;

    /* Prize single image */
    margin-bottom: 0;
}

.swiper-container {
    width: 100%;
    height: auto;
    /* padding: 10px; */
    overflow-x: hidden;
    direction: rtl;
    cursor: grab;
}

/* .avatar-swiper .swiper-container {
    direction: ltr;
} */
  
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: end;
    background: #ececec;
    border-radius: 20px;
    width: 200px;  /* Set the width to 300px */
    min-height: 200px; /* Set the height to 300px */
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    /* padding: 20px; */
    opacity: 1;
}

  
.carousel-item {
    text-align: center;
}
  
.swiper-slide:not(.swiper-slide-active) {
    opacity: 0.4;
}


#prizes_carousel .carousel-item h3 {
    margin: 0;
    color: #2E0124;
    font-weight: 700;
    font-size: 18px;
}
#prizes_carousel .carousel-item p {
    color: #818181;
    margin-top: 10px;
    font-size: 16px;
}



.outline_fancy_btn.inactive {
    padding: 8px;
}
.outline_fancy_btn.inactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%; 
    width: 5%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.6); 
    transform: skewX(-25deg); 
    z-index: 2;
    filter: blur(10px); 
    animation: none;
    -webkit-animation: none; 
}

.inactive .fancy_btn {
    padding: 20px 25px;
    font-size: 24px;
    text-align: center;
    cursor: no-drop;
    outline: none;
    color: rgba(255, 255, 255, .4);
    background: linear-gradient(180deg, #242048 0%, #191636 100%);
    border: none;
    box-shadow: none;
    display: block;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
    /* max-width: 440px; */
}

.inactive .fancy_btn:hover {
    color: rgba(255, 255, 255, .4);
}

.inactive .fancy_btn:active {
    background: linear-gradient(180deg, #242048 0%, #191636 100%);
    box-shadow: none;
    transform: none;
    -webkit-transform: none;
}

/* GET STARTED */

main.gs {
    background: radial-gradient(circle at top left, rgba(103,39,59,1) 0%, #1F0527 0%);
    padding: 0;
}


section#gs_top {
    max-width: 100%;
    /* margin-top: -10px; */
    
}
#gs_top {
    position: relative;
    background-image: linear-gradient(to top, #1F0527, rgba(31, 5, 39, 0)), url("../images/gs/gs_bg.png"); 
    background-position: center center;
    background-size: 100vw auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 30vh;
    z-index: 0;
}

#gs_content {
    /* background-image: url('../images/gs/glow.png'), url('../images/gs/sparkles.png');
    background-position: center -5vh, center 0vh;
    background-size: cover, contain; 
    background-repeat: no-repeat, no-repeat; 
    position: relative;
    z-index: 1;
    padding-top: 5vh;
    box-sizing: border-box; */
    padding-left: 15px;
    padding-right: 15px;
}

#gs_content h1,
#gs_content h2 {
    font-family: "Nanotech LLC";
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    position: relative;
    z-index: 1;
} 

/* GET STARTED */
#gs_content h1 {
    font-weight: normal;
}

#gs_content h2 {
    font-weight: bold;
    margin-top: -5px;
}

#gs_content p {
    font-size: 18px;
    text-align: center;
    margin: 10px auto 50px auto;
    font-weight: 300;
    max-width: 380px;
}

#gs2_content {
    margin-top: 30px;
}
#gs2_content p {
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    
}
#gs2_content p:nth-child(2) {margin-top: 5px;}

#gs2_content p span {
    font-family: "Nanotech LLC";
    font-weight: bold;
}

.gs2 #prizes_carousel {
    margin-top: 50px;
}

.gs2 #btns_sect {
    margin-top: 50px;
}

#prizes_carousel .carousel-item img,
.prizes_swiper_cont .carousel-item img {
    max-width: 100%;
    border-radius: 0;
}


.login_btn {
    font-family: 'IBM Plex Mono';
    padding: 20px 25px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: transparent;
    border: 2px solid #F79E18;
    border-radius: 12px;
    display: block;
    width: 100%;
    transition: 0.2s;
    font-weight: 700;
}

.login_btn:hover,
.login_btn:focus {
    background-color: #F79E18;
}

.disclaimer {
    font-size: 14px;
    text-align: center;
    font-weight: 200;
    margin: 40px auto;
    color: #ffffff;
}

/* MODAL */
/* Modal overlay styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(158.27deg, rgba(12, 9, 42, 0.9) 12.94%, rgba(46, 1, 36, 0.9) 98.22%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 10px;
}

/* Modal content styling */
.modal-content {
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;

    transform: scale(0.9);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 10;
    max-height: 97vh; 
    /* margin-bottom: 200px; */
    padding: 1px;
    /* margin-top: 20px; */
    /* overflow-y: auto;
    scrollbar-width: none; */
}

.modal-content::-webkit-scrollbar {
    scrollbar-width: none;

}

.modal-card {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(344.71deg, rgba(36, 47, 56, 0) 15.66%, #242F38 96.58%), #040E15;
    border: 1px solid #242F38;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    display: block;
    width: 100%;
}

.modal-card .banner {
    width: 100%;
    height: 250px;
    /* background-image: url('../images/modal_levels/modal-level1.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.modal-card .content {
    padding: 10px 15px 1px 15px;
    position: relative;
    z-index: 1;
}

.modal-card .content h1 {
    color: #ffffff;
    font-family: "Nanotech LLC";
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 0;
}

.modal-card .content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4em;
    margin: 10px auto 20px auto;
}

.outer-modal-card {
    padding: 10px 15px;
}

.blue .fancy_btn {
    background: linear-gradient(180deg, #657F9D 0%, #38485C 100%);
    box-shadow: 0px -3px #92A5BA, 0 9px #222F3E;
}

.blue .fancy_btn:active {
    background: linear-gradient(180deg, #657F9D 0%, #38485C 100%);
    box-shadow: 0 5px #222F3E;
    box-shadow: 0px 0px #92A5BA, 0 5px #222F3E;
}

.blue.outline_fancy_btn::before {
    animation: none;
    background: transparent;
}

.outline_fancy_btn.blue {margin-top: 10px;}



.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}



/* REGISTER */
main.register {
    text-align: center;
}

main.register section {
    max-width: 400px;
}

main.register h1 {
    font-size: 32px;
    color: #ffffff;
}

.steps_sect.flex-row {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.step {
    background: rgb(225,178,87);
    background: linear-gradient(90deg, rgba(225,178,87,1) 0%, rgba(206,135,41,1) 100%);
    border: 3px solid #F3D18D;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.step.active {
    opacity: 1;
}

.horiz_line {
    background-color: #3C2641;
    height: 2px;
    width: 100%;
    margin-left: 4px;
    margin-right: 4px;
}

.register_mobile {
    max-width: 60px;
    margin: 30px auto 10px auto;
}

main.register p,
.modal-content.register p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    margin: 30px auto 0 auto;
}

input {
    font-family: 'Montserrat';
    width: 100%;
    /* min-height: 55px; */
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    outline: none;
    border: none;
    font-size: 14px;
    color: #000000;
    /* margin-top: 20px; */
    padding: 25px 10px 10px 10px;
}

/* input::placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {color: #666666;} */
input::placeholder {
    color: transparent; 
}

.input-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}
  

.placeholder-label {
    position: absolute;
    top: 50%;                 
    left: 0;                  
    width: 100%;              
    transform: translateY(-50%);
    text-align: center;       
    font-size: 14px;          
    color: #666666;           
    pointer-events: none;     
    transition: all 0.3s ease; 
    background-color: transparent;
    padding: 0;               
}
  
.input-container.focused .placeholder-label {
    top: 7px; 
    left: 0px; 
    transform: translate(0, 0); 
    font-size: 12px;
    color: #000000;
}

@keyframes onAutoFillStart {
    from {}
    to {}
  }
  
  input:-webkit-autofill {
    animation-name: onAutoFillStart;
    animation-duration: 0.001s; 
    animation-fill-mode: both;
  }

  @keyframes onAutoFillEnd {
    from {}
    to {}
  }
  
  input:not(:-webkit-autofill) {
    animation-name: onAutoFillEnd;
    animation-duration: 0.001s;
    animation-fill-mode: both;
  }

input.has_error,
select.has_error {
    border: 3px solid #E1594D;
}

.avatar_sect.has_error {
    border: 3px solid #E1594D;
    border-top: 0;
}

.avatar_sect_title.has_error {
    border: 3px solid #E1594D;
    border-bottom: 0;
}


.error_text {
    color: #E1594D;
    font-size: 14px;
    margin-top: 7px;
    font-weight: 700;
}

.outline_fancy_btn.continue {
    margin-top: 30px;
}

.text_links {
    color: #EBA32E;
    font-weight: 700;
}



.remember_checkbox label {
    padding-left: 6px;
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.remember_checkbox label:before {
    content: '';
    background: url('../images/register/unchecked.svg') no-repeat;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.remember_checkbox input {
    display: none
}

.remember_checkbox input:checked+label:before {
    content: '';
    background: url('../images/register/checked.svg') no-repeat;
}

.modal-content.register .content img {
    max-width: 80px;
    margin: 0 auto;
}

.modal-content.register .modal-card .content {
    padding: 20px 30px 0 30px;
}

.close-btn,
.back-to-home {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 2;
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}




/* Select Operator */
main.register p.operator_title {margin-top: 60px;}
.operator-selection {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.operator-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 30px;
    cursor: pointer;
}

.operator-option img {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.operator-option input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 26px;               
    height: 26px;              
    border: 2px solid #EBA32E; 
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}

.custom-radio::before {
    content: "";
    width: 13px;               
    height: 13px;
    background-color: #EBA32E; 
    border-radius: 50%;
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}


.operator-option input[type="radio"]:checked + .custom-radio::before {
    transform: translate(-50%, -50%) scale(1); 
}

.operator-option:hover .custom-radio {
    border-color: #9E6E1F;
}

.op_promo_img {
    max-width: 170px;
    margin: 30px auto;
    border-radius: 20px;
}



.fb_btn .fancy_btn {
    background: linear-gradient(180deg, #369AFB 0%, #369AFB 100%);
    box-shadow: 0px -3px #6EA4FA, 0 9px #4574B3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.fb_btn .fancy_btn:active {
    background: linear-gradient(180deg, #369AFB 0%, #369AFB 100%);
    box-shadow: 0 5px #4574B3;
    box-shadow: 0px 0px #6EA4FA, 0 5px #4574B3;
}

.fb_btn.outline_fancy_btn::before {
    animation: none;
    background: transparent;
}

.fb_btn .fancy_btn img {
    max-width: 20px;
    margin-right: 10px;
}

.error_text.par {
    font-weight: 700;
    font-size: 14px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 220px;
    margin: 20px auto 10px auto;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #3C2641; 
    margin: 0 10px; 
}

.divider span {
    font-weight: bold; 
    color: #ffffff;     
    font-size: 18px;  
}

.select-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
}

select {
    text-align: center;
}

.custom-select {
    font-family: 'Montserrat';
    width: 100%;
    min-height: 55px;
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    outline: none;
    border: none;
    font-size: 14px;
    color: #000000;
    margin-top: 20px;
    appearance: none; 
    padding: 0 10px;  
    text-align-last: center;
}

.custom-select:invalid {
    color: #666666; 
}

.custom-icon {
    position: absolute;
    right: 15px;
    top: 40px;
    /* transform: translateY(-50%); */
    font-size: 18px; /* Set icon font size */
    color: #666666;  /* Icon color */
    pointer-events: none; /* Make icon unclickable */
}


.avatar_sect_title {
    background-color: #ffffff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 30px;
}


.avatar_sect {
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px 10px;
}

.avatar_sect_title h2 {
    font-size: 16px;
    margin: 0 auto;
    font-weight: 400;
    color: #000000;
}





.avatar-swiper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.avatar-swiper .swiper-wrapper {align-items: center;}

.carousel-item img {
    max-width: 80px; /* Limit image width */
    width: 100%;      /* Make image responsive */
    height: auto;
    border-radius: 50%; /* Optional: make images circular */
}
.selected_avatar {
    border: 3px solid #EBA32E; /* Customize border color and size */
    padding: 5px;
    border-radius: 50%;
}

.carousel-item .user_img_bg {
    background-color: #77597F;
    padding: 0px;
    overflow: hidden;
    border-radius: 50%;
}

.avatar-swiper .swiper-slide,
.prizes-swiper .swiper-slide {
    min-height: auto;
    padding: 0;
    background: transparent;
}



.avatar-swiper .swiper-slide:not(.swiper-slide-active),
.prizes-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 1;
}


.avatar-swiper .swiper-button-next,
.avatar-swiper .swiper-button-prev,
.prizes-swiper .swiper-button-next,
.prizes-swiper .swiper-button-prev {
    transform: scale(0.5);
    color: #4D4D4D;
}


/* LEVELS */
section.levels h1 {
    font-family: "Nanotech LLC";
    text-align: left;
    color: #ffffff;
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 0px;
}

/* Life Image */

/* position: absolute;
width: 361px;
height: 265px;
left: calc(50% - 361px/2);
top: 179px;

background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%), url(image.png);
border-radius: 12px; */
.lvl_sect.mt-50 {margin-top: 50px;}

.lvl_sect {margin: 25px auto;}


.lvl_1 {background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/levels/lvl1.png');}
.lvl_2 {background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/levels/lvl2.png');}
.lvl_3 {background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/levels/lvl3.png');}
.lvl_4 {background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/levels/lvl4.png');}

.lvl_banner {
    position: relative;
    width: 100%;
    padding-top: 66%; 
    background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;  
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    
}

.lvl_text {
    position: absolute;
    left: 20px;
    bottom: 15px;
    font-family: 'Nanotech LLC';
}

.lvl_text h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #FFFFFF;
    margin: 0;
}

.lvl_text p {
    font-size: 20px;
}

.lvl_desc {
    font-size: 14px;
    color: #ffffff;
    margin-top: 20px;
    line-height: 24px;
}




/* LOGIN */
main.login {text-align: center;}
main.login section {max-width: 400px;}

main.login h1 {
    font-size: 32px;
    color: #ffffff;
}

.info_links {
    text-align: right;
    margin: 40px auto 50px auto;
}

.info_links a {
    color: #EBA32E;
}

.pin_forgot.flex-row {
    justify-content: end;
    align-items: center;
}

.pin_forgot img {
    max-width: 30px;
}

.pin_forgot {margin-bottom: 10px;}

.last_line_login {
    margin: 40px auto;
}

.modal-content.login .content img {
    max-width: 80px;
    margin: 0 auto;
}

.modal-content.reg_after_login .content img {
    max-width: 50px;
    margin: 20px auto 30px auto;
} 
.modal-content.login .modal-card .content {
    padding:30px;
}
.modal-content.login p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    margin: 30px auto 0 auto;
}

.last_line.login {
    margin: 0 auto 30px auto;
}

/* FORGOT PASS */

main.forgot {text-align: center;}
main.forgot section {max-width: 400px;}

main.forgot h1 {
    font-size: 32px;
    color: #ffffff;
}

main.forgot p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    margin: 30px auto 0 auto;
}

main.forgot h2 {
    color: #ffffff;
    font-size: 25px;
    margin-top: 30px;
}

.info_stetement {
    max-width: 30px;
    margin: 30px auto -25px auto;
}

/* HOW IT WORKS */
main.how_it_works h1 {
    font-size: 32px;
    margin: 30px auto 40px auto;
}

.how_sect {
    margin: 20px auto 40px auto;
}

.how_sect h2 {
    font-size: 20px;
}

.how_sect p {
    font-size: 16px;
}



/* LEVEL UP */
.banner .lvl_up_logo {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 170px;
}

.gift_points_box {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(241, 163, 39, 1);
    padding: 10px;
    min-width: 130px;
    max-width: fit-content;
    height: auto;
    box-shadow: 0 0 5px rgba(241, 163, 39, 0.8),  /* Outer glow */inset 0 0 5px rgba(241, 163, 39, 0.5); /* Inner glow */
    margin: 30px auto;
}

.gift_points_box .header {
    color: #ffffff;
    font-weight: 500;
    position: absolute;
    top: -10px; 
    left: 50%;
    transform: translateX(-50%);
    background: #0A141A;
    width: 100%;
    max-width: 100px;
    font-size: 14px;
}

.gift_points_box p.points {
    color: #F1A327;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.gift_points_box .flex-row {
    align-items: center;
    justify-content: center;
}

.gift_points_box img {
    max-width: 30px;
    margin-left: 10px;
}

.section_for_sound {
    margin-top: 20vh;
}

/* POSTGAME */
.postgame .image_half {
    max-width: 250px;
    /* margin: -15px auto -100px auto; */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.postgame .modal-card {margin-top: -90px;}

.postgame .content .top_title { 
    margin-top: 50px;
    font-size: 24px;
    font-weight: 700;
}


.flex-row.more_quizes_sect  {
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.more_quizes_sect img {
    max-width: 27px;
    margin-right: 10px;
    cursor: pointer;
}

.more_quizes_sect p.get_more_quiz {
    font-size: 18px;
    background: rgb(250, 210, 24);
    background: linear-gradient(90deg, rgba(250, 210, 24, 1) 0%, rgba(238, 110, 60, 1) 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    cursor: pointer;
    margin: 0;
}

.modal-card .results_numb h1 {
    font-weight: 700;
    margin: 0;
}

.modal-card .results_numb {
    margin: 10px auto 20px auto;
}

.modal-card .results_numb p {
    margin: 0;
    font-size: 12px;
}

.divider_vert {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin: 5px auto;
}

.modal-card .results_numb .correct {color: #77C702;}
.modal-card .results_numb .wrong {color: #FE4C4B;}


.points_and_ans .card {
    background: #FFFFFF0D;
    border-radius: 10px;
}

.points_and_ans .container {
    display: flex;
    box-sizing: border-box;
    padding: 10px;
    align-items: stretch;
}

/* .points_and_ans .container.points {margin-top: 10px;} */

.points_and_ans .container.points.selected {
    border: 2px solid #FF9D00;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.points_and_ans .container.answers.selected {
    border: 2px solid #FF9D00;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.flex-50 {flex: 1;}

.points_and_ans .card h1,
.points_and_ans .card h2,
.points_and_ans .card p {margin: 0;}

.points_and_ans .card h1 {
    font-size: 30px;
    font-weight: 700;
}

.points_and_ans .card .left img {
    max-width: 30px;
    
    margin-left: 5px;
}

.points_and_ans .card .left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.points_and_ans .card .right {
    text-align: left;
    margin-left: 10px;
}

.points_and_ans .card h2 {font-size: 16px;}
.points_and_ans .card p {font-size: 12px; margin-top: 7px;}

.points_and_ans .card span {font-weight: 700;}

.fancy_btn.mini_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fancy_btn.mini_text span {
    font-size: 16px;
    font-weight: 400;
}
/* 
.postgame .outline_fancy_btn.play {
    margin-top: 30px;
} */

.content .current_lvl p {
    margin: 15px auto 0px auto;
}
.current_lvl p span {
    font-weight: 700;
    color: #FF9D00;
}

/* UNSUBSCRIBE - RESUBSCRIBE */
.modal-card .content h2 {font-size: 20px;}

.modal-content.unsub .content img {
    max-width: 80px;
    margin: 20px auto;
}

.modal-content.unsub .content p,
.modal-content.resub .content p {font-size: 16px;}

.modal-content.unsub .content h1,
.modal-content.resub .content h1 {font-weight: 700; word-break: break-word;}

.modal-content.unsub .cancel,
.modal-content.resub .cancel {margin-top: 10px;}

.modal-content.unsub .unsub_btn,
.modal-content.resub .resub_btn {margin-top: 30px;}

.modal-content.unsub p span,
.modal-content.unsub p a,
.modal-content.resub p span,
.modal-content.resub p a,
.modal-content.resub h1 span {
    font-weight: 700;
    color: #FF9D00;
}
.modal-content.unsub span.white_bold,
.modal-content.resub span.white_bold {
    font-weight: 700;
    color: #ffffff;
}

.modal-content .modal_simple_img {
    max-width: 40px;
    margin: 25px auto;
}


/* terms */

main.terms_page h1 {
    font-size: 32px;
    margin: 30px auto 0px auto;
}

.terms_page h2 {
    font-size: 20px;
}

.terms_page ul {
    color: #ffffff;
    list-style-type: disc;
    padding-left: 15px;
    padding-right: 15px;
}

.terms_page ul li {
    margin: 10px;
}

.terms_sect {
    margin: 20px auto 40px auto;
}

.updated_date {
    margin: 25px auto 30px auto;
    color: rgba(255, 255, 255, 0.5);
}


/* GAME MODALS */
.game_modals .modal-card .content h1 {
    color: #FF9D00;
    font-weight: 700;
}
.game_modals .modal-card .content h2 {
    margin-top: 0;
}

.game_modals.mc p {
    font-size: 16px;
    margin: 30px auto;
}

.light_blue .fancy_btn {
    background: linear-gradient(180deg, #00B3F8 0%, #00B3F8 100%);
    box-shadow: 0px -3px #4DCAFA, 0 9px #2E8CBA;
}


.light_blue .fancy_btn:active {
    background: linear-gradient(180deg, #00B3F8 0%, #00B3F8 100%);
    box-shadow: 0 5px #4DCAFA;
    box-shadow: 0px 0px #92A5BA, 0 5px #2E8CBA;
}

.light_blue.outline_fancy_btn::before {
    animation: none;
    background: transparent;
}

.game_modals .user_img_bg {
    display: block;
    margin: 40px auto 15px auto;
    background-color: #8FD6E7;
    max-width: 120px;
    height: 120px;
    border-radius: 100px;
    border: 7px solid #131D24;
    padding: 5px;
    outline: 1px solid #FF9D00;
    overflow: hidden;
}

.game_modals .user_img_bg img {
    margin-top: 10px;
}

.game_modals.rg p {
    font-size: 16px;
}

.game_modals p.user_name {
    font-weight: 700;
    font-size: 18px;
}

.game_modals .outline_fancy_btn.resume {margin-top: 30px;}


/* BONUS PHASES */
.bonus_phases .box {
    display: flex;
    align-items: center; 
    gap: 10px; 
    border: 1px solid #FF9D00;
    border-radius: 16px;
    padding: 10px 20px 10px 10px;
    background-color: #3E1C39;
    margin: 0 auto 30px auto;
}

.bonus_phases img {
    width: 20%; 
    max-width: 65px; 
}

.bonus_phases .bonus_txt {
    width: 50%; 
    margin-left: 20px;
}

.bonus_phases .bonus_timer {
    width: 30%; 
    text-align: right; 
}
.bonus_phases h3 {
    font-size: 20px;
    margin: 0;
}

.bonus_phases p {
    margin-top: 10px;
    font-size: 16px;
}

.bonus_phases .bonus_timer {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FF9D00;
}

.bonus_modal .bonus_img {
    max-width: 100px;
    margin: 20px auto;
}

.bonus_modal .content h1 {
    margin-top: 10PX;
    font-weight: 700;
}

.bonus_modal .bonus_time h2 {
    color: #FF9D00;
    margin: 20px auto 0px auto;
}

.bonus_modal .bonus_time p {
    font-size: 16px;
    margin: 10px auto;
}

.timer_box .bonus_timer {
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 150px;
    border-radius: 16px;
    margin: 5px auto;
    font-size: 20px;
    font-weight: 700;
    color: #FF9D00;
    padding: 10px 5px;
}

.bonus_modal .text {
    margin: 30px auto 30px auto;
}
.bonus_modal .text p {font-size: 14px;}

.bonus_modal.cal .bonus_time p {margin: 25px auto 30px auto;}

.bonus_modal .gift_points_box .header {
    background: rgb(20,30,37);
    background: linear-gradient(180deg, rgba(20,30,37,1) 0%, rgba(19,29,36,1) 100%);
    max-width: 70px;
}

.bonus_modal .gift_points_box p.points {font-size: 22px;}

.bonus_modal .gift_points_box .flex-row {margin: 5px auto;}


/* INVITE FRIENDS */
/* generic for modals */
.modal-content .content h1 {
    font-weight: 700;
}

.modal_invite .invite_mob_img {
    max-width: 60px;
    margin: 25px auto;
}

.modal_invite .invite_txt span {
    font-weight: bold;
    color: #FF9D00;
}

.modal_invite h3 {margin-top: 30px;}

.modal_invite input {margin-top: 0;}

/* generic for modals */
/* .modal-content .fancy_btn {padding: 10px 25px;} */
.modal-content .fancy_btn {padding: 10px;}

.modal_invite h3.invite_email {
    margin-top: 50px;
}

.modal_invite .tab-button.active {
    background: #C0AAE0;
}

.modal_invite .tab-button {font-size: 16px; color: #C0AAE0;}

.outline_btn {
    font-family: 'IBM Plex Mono';
    padding: 20px 25px;
    font-size: 22px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: transparent;
    border: 2px solid #F79E18;
    border-radius: 12px;
    display: block;
    width: 100%;
    transition: 0.2s;
    font-weight: 700;
}

.outline_btn:hover,
.outline_btn:focus {
    background-color: #F79E18;
}

.outline_btn.skip {
    padding: 15px 25px;
    margin-bottom: 20px;
}

/* 404 */

.modal_404 .image_404 {
    max-width: 200px;
    margin: 20px auto;
}

/* Other Pages */
.zb_modal .modal-card .content p {
    margin: 20px auto 30px auto;
    font-size: 16px;
}

.postgame.zb_modal .content .top_title {
    font-size: 22px;
    margin-top: 60px;
}

.modal-card .content h3.title {
    font-size: 24px;
}



.modal_404 h3 {font-size: 22px;}
.modal_404 .go_to_home {
    margin-top: 50px;
}

.progress-container {
    width: 100%;
    height: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
  
.progress-bar {
    height: 100%;
    width: 0;
    background-color: #77597F;
    transition: width 1s ease-in-out;
}

.modal_games_left .modal-card .content p {font-size: 16px;}

.modal_games_left .modal-card span {color: #F79E18;}

.modal_games_left .modal-card .progress_unlocked p {
    font-size: 14px;
    flex: 1 1 50%;   
}

.modal_games_left .progress_unlocked .flex-row {justify-content: space-between;}
.modal_games_left .progress_unlocked {margin: 30px auto 20px auto;}
.modal_games_left p.games_won {margin-left: 0; text-align: left;}
.modal_games_left p.points_to_lvl {margin-right: 0; text-align: right;}

.modal_games_left .modal-card {
    margin-top: -90px;
}

.modal_games_left .content h3.title {
    margin-top: 50px;
}

.modal_games_left .image_half {
    max-width: 250px;
    /* margin: -15px auto -100px auto; */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how_to_win .modal-card img {
    max-width: 100px;
    margin: 0 auto;
}

.how_to_win .modal-card h3 {
    margin: 30px auto;
}


/* Other Modals */

.other_modals .modal-card .content p {font-size: 16px;}
.other_modals .modal-card .content img {
    max-width: 100px;
    margin: 20px auto;
}

.other_modals .modal-card .content .outline_fancy_btn {
    margin-top: 40px;
}

main.page_w_loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main.page_w_loader h1 {
    margin-top: 50px;
}

.please_wait .modal-content .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.please_wait .modal-content .content h3 {
    margin-top: 40px;
}

.other_modals.add_icon .modal-card .content img {
    max-width: 120px;
    margin: 0;
}

.other_modals.add_icon button {
    padding: 0;
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}

.remember_checkbox.dont_show label {
    margin-bottom: 15px;
    text-align: left;
}

.other_modals.welcome_back .content .top_title {margin-top: 65px;}

.other_modals.promotion .modal-card .content img {
    max-width: 220px;
    margin-bottom: 30px;
}


/* NOTIFICATIONS */
main.notifications h1 {
    font-size: 32px;
    margin: 30px auto 40px auto;
}

.notifications .notif_top {
    justify-content: space-between;
    font-size: 16px;
    align-items: center;
}

.notifications .notif_top .notif_numb {width: 100%;}

.notifications .notif_top .mark_read {
    justify-content: end;
    width: 100%;
}
section.boxes_sect {
    margin-top: 30px;
    margin-bottom: 30px;
}

.notifications .notif_top .mark_read p {color: #F79E18; cursor: pointer;}
.notifications .notif_top .mark_read img {max-width: 20px;}

.notifications .boxes_sect .box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 15px;
    margin-top: 20PX;
}

.notifications .boxes_sect .flex-row.box {
    align-items: center;
}

.notifications .boxes_sect .flex-column {
    justify-content: center;
}

.notifications .boxes_sect img {
    max-width: 70px;
}

.notifications .boxes_sect .noti_img {
    margin-right: 15px;
}

.notifications .boxes_sect .flex-row.top_row {
    justify-content: space-between;
}

.boxes_sect .top_row .new {
    color: #FF0000;
    font-size: 14px;
}

.boxes_sect .top_row .date_time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.boxes_sect .noti_content h3 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 18px;
}

.boxes_sect .noti_content p {font-size: 14px;}

.boxes_sect .noti_content p span {color: #F79E18;}

.modal_rank .modal-card img {
    max-width: 100px;
    margin: 0 auto;
}
.modal_rank .modal-card p {font-size: 16px;}
.modal_rank .modal-card p span {color: #F79E18;}


.bonus_modal.new_friend .bonus_time p {
    margin: 25px auto 30px auto;
}

.bonus_modal.new_friend .bonus_time p span {color: #F79E18;}

.clear_noti.outline_fancy_btn::before {
    background: transparent;
}

.clear_noti.outline_fancy_btn {
    margin-top: 40px;
}



/* PROFILE */
main.profile h1 {
    font-size: 32px;
    margin: 30px auto 0px auto;
}
main.profile h2 {
    font-size: 24px;
    margin-top: 35px;
}

main.profile section {
    /* max-width: 400px; */
}

.profile .avatar-swiper {max-width: 80%;}


.profile .user_img_bg {
    display: block;
    /* margin: 40px auto 15px auto; */
    background-color: #77597F;
    /* max-width: 120px;
    height: 120px; */
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
    /* max-width: 80px;
    height: 80px; */
}

.profile .carousel-item img {
    border-radius: 0;
    max-width: 85px;
}
.profile .user_img_bg.selected {
    background-color: #573C5F;
    border: 2px solid #F79E18;
}

.profile .avatar_sect {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    margin-bottom: 35px;
    /* ???? */
    display: grid;
}

.profile .avatar-swiper .swiper-button-next, 
.profile .avatar-swiper .swiper-button-prev {color: #ffffff;}

.profile .edit_opt_box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    margin-top: 20px;
}

.profile .edit_opt_box {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px;
}

.profile .edit_opt_box h3 {
    margin: 0; 
    font-size: 16px;
    color: #F79E18;
}

.edit_opt_box i {
    color: #ffffff;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
}

a.edit_opt_box:hover i {
    transform: translateX(5px); 
}

.edit_opt_box p {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
}




.row-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    gap: 5px;
}

.row-option {
    cursor: pointer;
    color: #ffffff; 
    padding: 0px 5px;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 16px;
}
  
.row-selector span:not(.row-option) {
    color: #ffffff;
    font-weight: 300;
}
  
.row-option.selected {
    color: #F79E18;
    font-weight: 700;
}

.profile .other_options {
    margin-bottom: 30px;
}

.profile .other_options h3 {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
}

main.profile_main {padding: 0;}


.profile_main .top_banner {
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center center!important;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.profile_main .top_banner.lvl1 {background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/levels/lvl1.png');}
.profile_main .top_banner.lvl2 {background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/levels/lvl2.png');}
.profile_main .top_banner.lvl3 {background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/levels/lvl3.png');}
.profile_main .top_banner.lvl4 {background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/levels/lvl4.png');}


.profile_main .edit_prof img {
    max-width: 24px;
    margin-right: 5px;
}

.profile_main .edit_prof {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF26;
    background-color: #F4F4F41A;
    border-radius: 10px;
    width: fit-content;
    padding: 5px;
    position: absolute;
    top: 15px;
    right: 15px;
    transition: transform 0.3s ease;
    transition: 0.3s;
}

.profile_main .edit_prof:hover,
.profile_main .edit_prof:focus {
    transform: scale(1.1);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(255,255,255,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255,255,255,0.75);
    box-shadow: 0px 0px 5px 0px rgba(255,255,255,0.75);   
}

.profile_main .edit_prof p {font-size: 14px;}

/* .profile_main .top_banner .prof_avatar {
    max-width: 200px;
    position: absolute;
    bottom: 0;
    left: 20px;
} */


/* Avatar container for radial shine */
.profile_main .top_banner .avatar-container {
    position: absolute; 
    bottom: 0;
    left: 20px;
    width: 200px; 
    height: 200px; 
}
  
/* Radial shine effect */
.profile_main .top_banner .avatar-container::before {
    content: '';
    position: absolute;
    width: 290px; 
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 0; 
    top: 80%; 
    left: 50%;
    transform: translate(-50%, -50%); 
}
  
/* Avatar image */
.profile_main .top_banner .prof_avatar {
    max-width: 200px;
    width: 100%; 
    height: auto; 
    position: relative; 
    z-index: 1; 
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}


.profile_main .top_banner_info {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 160.58%);
    border-top: 0;
    border-radius: 0px 0px 24.1871px 24.1871px;
    padding: 15px;
    border: 1.01px solid;
    border-image-source: linear-gradient(276.89deg, rgba(255, 255, 255, 0.1) -1.18%, rgba(255, 255, 255, 0) 100%);
}

/* Modal Background */

.profile_main .bg_border {
    background: rgba(244, 244, 244, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    border-radius: 25px;
    padding: 7px 10px;
    margin-top: 20px;
    margin-right: 15px;
    display: flex;
    position: relative;
    cursor: pointer;
}

.profile_main .bg_border img {
    max-width: 25px;
    margin-right: 7px;
    margin-right: 0;
    margin-left: 5px;
}
.profile_main .bg_border img.plus_btn {max-width: 20px;}
.profile_main .bg_border p {
    font-size: 16px;
    font-weight: 700;
}

.profile_main .top_banner_info img {
    max-width: 25px;
}



.profile_main .bg_border .flex-row {
    align-items: center;
}

.profile_main .top_banner_info .country {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
}

.profile_main .top_banner_info .name {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.profile_main .lvl_bar_sect .flex-row {
    align-items: center;
    width: auto;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 13px;
}
.profile_main .lvl_bar_text .flex-row p {
    margin-left: 10px;
    font-size: 14px;

}

.profile_main .lvl_bar_sect .progress-bar {
    background-color: #ffffff;
}

.profile_main .lvl_bar_sect .progress-container {
    /* background-color: rgba(255, 255, 255, .1); */
    background-color: #3F2E4A;
    border-radius: 5px;
    height: 15px;
    
}

.profile_main .lvl_bar_sect .flex-row.progress {
    flex-wrap: nowrap;
    gap: 5px;
}


  
.profile_main section.tabs {
    padding: 10px 15px;
}
/* Tab buttons container */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width:100%;
    margin: 20px auto 30px auto;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, 0.1);
}

/* Tab buttons */
.tab-button {
    flex: 1; 
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    font-size: 16px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.tab-button.active {
    background: #ffffff;
    border-bottom: none; 
    border-radius: 10px;
    color: #1F0527;
}

/* Tab content */
.tab-content {display: none;}
/* .tab-content.active {display: block; max-width: 500px; margin: 0 auto;} */
.tab-content.active {display: block;}

.profile_main .stats_box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 50px auto 30px auto;
}

.profile_main .stats_box .title {
    color: #ffffff;
    font-size: 16px;
}


.profile_main .stats_box .numb {
    font-weight: 700;
    color: #F79E18;
    font-size: 16px;
    margin-top: 5px;
}

.profile_main .stats_box .stats_row {margin-top: 15px;}


.achievements_books {
    max-width: 500px;
    margin: 0 auto;
}
.achievements_box .unlocked_txt {
    font-weight: 700;
    font-size: 20px;
    margin: 25px auto -12% 0;
    max-width: 40%;
}

.achievements_books {margin-top: 17%;}

.achievements_box .unlocked_txt span {color: #F79E18;}

.achievements_box .your_result_txt {
    font-size: 16px;
    text-align: center;
    max-width: 65%;
    margin: -4% auto 0 auto;
}

.achievements_box .your_result_txt span {font-weight: 700;}

.achievement_badges {
    margin: 30px auto;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    gap: 25px;
    justify-content: center;
}

.achievement_badges .badge {
    /* margin: 10px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90px;
}

.achievement_badges .badge p {
    font-weight: 700;
    font-size: 14px;
    /* max-width: 80px; */
    margin: 7px auto 0 auto;
    text-align: center;
    word-break: normal;
}

.achievement_badges .badge img {
    max-width: 90px;
    margin: 0 auto;
}

.profile_main #home_invite {
    margin: -10px auto 30px auto;
}

.profile_main section#home_invite {
    padding: 10px 15px;
}

.other_user_prof h1 {
    font-size: 32px;
    margin: 15px auto 0px auto;
}
.user_prof_box {
    background-color: #2C1D3C;
    border-radius: 15px;
    padding: 15px;
    margin-top: 30px;
}

.user_prof_box .user_img_bg {
    display: block;
    /* margin: 40px auto 15px auto; */
    background-color: #77597F;
    border-radius: 15px;
    padding: 0px;
    overflow: hidden;
}


.user_prof_box .user_img_bg img {
    border-radius: 0;
    max-width: 140px;
    margin-right: 10px;
}

.user_prof_box .country {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
}

.user_prof_box .name {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0px;
    margin: 10px 0;
}

.user_prof_box img {max-width: 25px;}
.user_prof_box .points p {
    font-size: 14px;
    font-weight: 700;
    margin-left: 8px;
}

.user_prof_box .flex-row {
    align-items: center;
}

.user_prof_box .flex-column {
    margin-left: 20px;
    word-break: break-all;
}


.user_prof_box .lvl_title {margin-top: 15px;}
.user_prof_box .lvl_title p {
    font-size: 14px;
    margin-left: 5px;
}


main.other_user_prof h2 {
    font-size: 24px;
    margin-top: 35px;
}

.other_user_prof .stats_box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    margin: 10px auto 30px auto;
}

.other_user_prof .stats_box .title {
    color: #ffffff;
    font-size: 16px;
}

.other_user_prof .stats_box .numb {
    font-weight: 700;
    color: #F79E18;
    font-size: 16px;
    margin-top: 5px;
}

.other_user_prof .stats_box .stats_row {
    margin-top: 15px;
}

.other_user_prof .back_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(244, 244, 244, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 100%;
    max-width: 40px;
    height: 40px;
    cursor: pointer;
    margin-top: 10px;
}

.other_user_prof .back_btn i {
    color: #ffffff;
}

.other_user_prof .back_btn i {
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
}

.other_user_prof .back_btn:hover i {
    transform: translateX(-4px);
    -webkit-transform: translateX(-4px);
}

.modal_change_info .content h3 {
    margin-bottom: 40px;
}

.modal_change_info .content .update_info {
    margin-top: 30px;
}

.modal_change_info .content p.succ_upd {
    font-weight: 700;
    color: #77C702;
}
.modal_change_info .content .upd_disclaime {margin: 20px auto 0 auto;}

.modal_change_info .content .upd_disclaimer img {
    max-width: 30px;
    margin: 20px auto 0 auto;
}

.modal_change_info .content .upd_disclaimer p {
    text-align: center;
}

a.forgot_pin {
    text-align: right;
    color: #EBA32E;
    font-size: 16px;
    margin-left: auto;
    display: block;
    margin-top: 10px;
}


/* ACHIEVEMENTS */

/* lvl images */
/* .modal-content.modal-achievement .banner_top.lvl1 {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/lvl1.png');
}
.modal-content.modal-achievement .banner_top.lvl2 {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/lvl2.png');
}
.modal-content.modal-achievement .banner_top.lvl3 {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/lvl3.png');
}
.modal-content.modal-achievement .banner_top.lvl4 {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/lvl4.png');
} */

/* Achievements images */
/* .modal-content.modal-achievement .banner_top.astudent {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/astudent.png');
}
.modal-content.modal-achievement .banner_top.bigbrain {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/bigbrain.png');
}
.modal-content.modal-achievement .banner_top.streakboss {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/streakboss.png');
}
.modal-content.modal-achievement .banner_top.streakhero {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/streakhero.png');
}
.modal-content.modal-achievement .banner_top.streakwonder {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/streakwonder.png');
}
.modal-content.modal-achievement .banner_top.turbobrain {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/turbobrain.png');
}
.modal-content.modal-achievement .banner_top.warrior {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/warrior.png');
} */




/* ACHIEVEMENTS */
/* lvl images */
.modal-content.modal-achievement .banner_top.SCHOOL_OF_LIFE {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/SCHOOL_OF_LIFE.png');
  }
  .modal-content.modal-achievement .banner_top.LIBRARY_OF_KNOWLEDGE {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/LIBRARY_OF_KNOWLEDGE.png');
  }
  .modal-content.modal-achievement .banner_top.HOUSE_OF_WISDOM {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/HOUSE_OF_WISDOM.png');
  }
  .modal-content.modal-achievement .banner_top.MINISTRY_OF_FUTURE {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/MINISTRY_OF_FUTURE.png');
  }
  /* Achievements images */
  .modal-content.modal-achievement .banner_top.A_STUDENT {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/A_STUDENT.png');
  }
  .modal-content.modal-achievement .banner_top.BIG_BRAIN {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/BIG_BRAIN.png');
  }
  .modal-content.modal-achievement .banner_top.STREAK_BOSS {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/STREAK_BOSS.png');
  }
  .modal-content.modal-achievement .banner_top.STREAK_HERO {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/STREAK_HERO.png');
  }
  .modal-content.modal-achievement .banner_top.STREAK_WONDER {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/STREAK_WONDER.png');
  }
  .modal-content.modal-achievement .banner_top.TURBO_BRAIN {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/TURBO_BRAIN.png');
  }
  .modal-content.modal-achievement .banner_top.WARRIOR {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4)), url('../images/images_unlocked/WARRIOR.png');
  }

.modal-content.modal-achievement .banner_top {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 250px;
    position: relative;
    overflow: hidden;
}


.modal-content.modal-achievement.locked .banner_top {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.modal-content.modal-achievement .content {
    background: linear-gradient(158.27deg, #0C092A 12.94%, #2E0124 98.22%);
    border-radius: 24px 24px 0px 0px;
    margin-top: -20px;
}

.modal-content.modal-achievement .ach_modal_center {
    max-width: 100px;
    background-color: #0C092A;
    padding: 10px;
    margin: -50px auto 0 auto;
    border-radius: 50%;
}

.modal-content.modal-achievement h1 {margin: 10px auto 30px auto;}

.modal-content.modal-achievement p {font-size: 16px;}

.modal-content.modal-achievement .gift_points_box .header {
    background-color: #200527;
}

.modal-content.modal-achievement .gift_points_box {margin: 35px auto 50px auto;}

.modal-content.modal-achievement .progress_numb {
    text-align: left;
    margin: 20px auto 5px auto;
    font-weight: 700;
}

/* WINNERS */
main.winners h1 {
    font-size: 32px;
    margin: 30px auto 0px auto;
}

main.winners .title_tag {
    font-size: 16px;
    margin: 30px auto 0 auto;
}

.winners section.box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 15px;
    margin-top: 30px;
}

.winners section.box h3 {
    font-size: 22px;
    color: #F79E18;
    font-weight: 700;
    margin: 0 auto 15px auto;
}
.winners section.box .no_win {
    font-size: 18px;
    margin-top: 10px;
}
.winners section.box .next_win {
    margin-top: 15px;
    font-size: 16px;
}

.winners section.box .last_upd {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}


.winners section.box.grand_prize h3,
.winners section.box.weekly_prize h3 {
    margin: 0 auto;
}



.winners section.box.weekly_prize  {margin-bottom: 50px;}

.winners .prize_user_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 10px 20px 0;
}

.winners .prize_user_row .user_img_bg {
    background-color: #A482AC;
    max-width: 70px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    cursor: pointer;
}

.winners .prize_user_row .user_info  {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-right: auto;
    /* width: 100%; */
}

.winners .prize_user_row .user_info .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    cursor: pointer;
}

.winners .prize_user_row .col_mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.winners .prize_user_row .user_info .cash {
    font-size: 16px;
    font-weight: 400;
}

.winners .prize_user_row .date_box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-left: 10px;
    font-size: 16px;
}

.winners .prize_user_row .date {
    font-weight: 700;
}

.load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    font-size: 29px;
    font-weight: 700;
    line-height: 20px;
    padding: 3px 10px 7px 10px;
    background-color: #F79E18;
    border-radius: 20px;
    color: #fff;
    box-shadow: none;
    text-align: center;
    width: 100%;
    max-width: 60px;
    margin: 20px auto 35px auto;
    
}

/* PRIZES */
main.prizes h1 {
    font-size: 32px;
    margin: 30px auto;
}

.prizes .title_tag {
    font-size: 18px;
    margin: 30px auto 0 auto;
}

.prizes .title_tag b {color: #F79E18;}

.prizes .box_prize {
    padding: 20px;
    border-radius: 16px;
    margin-top: 30px;
}

.prizes .box_prize h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.prizes .box_prize p {
    font-size: 16px;
    margin: 15px auto;
}

.prizes .box_prize .img_placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, .1);
    font-size: 16px;
    max-width: 170px;
    height: 140px;
    margin-top: 10px;
}
.prizes .box_prize .img_placeholder p {
    color: rgba(255, 255, 255, .4);
}

.prizes .box_prize.col_grand {
    background: rgb(104,22,200);
    background: linear-gradient(90deg, rgba(104,22,200,1) 20%, rgba(90,71,223,1) 65%, rgba(44,112,248,1) 100%);
}
.prizes .box_prize.col_monthly {
    background: rgb(197,78,134);
    background: linear-gradient(90deg, rgba(197,78,134,1) 20%, rgba(238,94,121,1) 100%);
}
.prizes .box_prize.col_weekly {
    background: rgb(47,143,196);
    background: linear-gradient(90deg, rgba(47,143,196,1) 20%, rgba(106,176,205,1) 100%);   
    margin-bottom: 40px;
}

.prizes .tab-button {font-weight: 400;}

.prizes .box_rank {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 15px;
    margin: 30px auto 40px auto;
    position: relative;
}

.prizes .prize_user_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 40px 20px 0;
}
.prizes .prize_user_row:last-child {border-bottom: none;}

.prizes .prize_user_row .user_img_bg {
    background-color: #A482AC;
    max-width: 70px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    cursor: pointer;
}

.prizes .prize_user_row .user_info  {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-right: auto;
    /* width: 100%; */
}

.prizes .prize_user_row .user_info .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    cursor: pointer;
}

.prizes .prize_user_row .col_mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.prizes .prize_user_row .user_info .cash {
    font-size: 16px;
    font-weight: 400;
}

.prizes .prize_user_row .date_box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 100;
}

.prizes .prize_user_row .date {
    font-weight: 700;
}

.prizes .box_rank.your_rank .col_mobile {
    flex-direction: column;
}
.prizes .box_rank .rank_and_points {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: 100;
}

.prizes .box_rank.your_rank .prize_user_row {border: none;}

.prizes .box_rank .you_txt {
    font-size: 16px;
    color: #F54441;
    font-weight: 700;
}

.prizes .box_rank h3 {
    color: #F79E18;
    font-size: 22px;
    margin: 0 auto 10px auto;
}
/* .prizes .box_rank h3 span {
    font-size: 24px;
} */

.prizes .tab-content {
    margin: 40px auto;
}

.prizes .prizes_swiper_cont {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    position: relative;
}

.prizes .prizes-swiper .img_placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, .1);
    font-size: 16px;
    width: 140px;
    height: 130px;
    margin-top: 10px;
}
.prizes-swiper .swiper-button-next, .prizes-swiper .swiper-button-prev {
    color: #ffffff;
}

.prizes .prizes-swiper .img_placeholder p {
    color: rgba(255, 255, 255, .4);
}

.prizes .prizes-swiper .carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.prizes .prizes-swiper .carousel-item h4 {
    color: #ffffff;
    margin: 20px auto 10px auto;
}

.prizes .prizes-swiper .carousel-item p {
    font-size: 16px;
    font-weight: 100;
}


.prizes-swiper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.prizes .empty_leader {
    font-size: 18px;
    text-align: center;
    margin: 30px auto;
}


/* STORE */

main.store {
    padding-bottom: 50px;
}

main.store h1 {
    font-size: 32px;
    margin: 30px auto 20px auto;
}

.store .store_box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    padding: 16px;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}

.store .store_box:hover,
.store .store_box:focus {
    box-shadow: 0 0 20px rgba(99,67,81,1);
    box-shadow: 0 0 20px rgba(99,67,81,1);
    background-color: rgba(255, 255, 255, 0.2);
}

.store .store_box img {
    max-width: 100px;
    margin-right: 15px;
}

.store .store_box .title {
    font-weight: 700;
    font-size: 18px;
}

.store .store_box .desc {
    font-size: 14px;
    font-weight: 300;
    margin: 10px 0 15px 0;
}

.store .store_box .desc span {color: #f79e18;}

.store .store_box .price {
    font-size: 18px;
    font-weight: 700;
}

.store .store_box .best_tag {
    color: #F54441;
    font-size: 14px;
    margin-top: 10px;
}

.store .store_box .flex-row {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.store .store_box a {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
}

.store .disclaimer p {text-align: left;}

.active_bonus .bonus_sect .flex-row {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.active_bonus .bonus_sect .flex-row h3 {
    margin: 7px 10px 0 0;
}

.active_bonus .bonus_sect .bonus_timer {
    color: #f79e18;
    font-weight: 700;
    margin-top: 7px;
}

.active_bonus .bonus_sect p {
    font-size: 14px;
    margin-top: 15px;
}
.active_bonus .strikethrough {
    color: #7B5085;
    text-decoration: line-through;
}

.store.vers2 .store_box_sect {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.store.vers2 .store_box a {
    margin: 0 auto;
}

.store.vers2 .bonus_sect {
    margin-bottom: 20px;
}

.store.vers2 .store_box {

    flex-direction: column;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 160.58%);
    width: 100%;
    max-width: 48%;
    margin-top: 0;
}

.store.vers2 .store_box:hover,
.store.vers2 .store_box:focus {
    box-shadow: 0 0 20px rgba(99,67,81,1);
    box-shadow: 0 0 20px rgba(99,67,81,1);
    background-color: rgba(255, 255, 255, 0.1);
}

.store.vers2 .store_box .flex-column,
.store.vers2 .store_box .price {
    text-align: center;
    margin: 0 auto;
}




/* modals */
.confirm_purch .content .games-to-price {
    font-size: 16px;
    margin: 30px auto;
}

.confirm_purch .games-to-price span {color: #f79e18;}

.rest .modal-card .content p {font-size: 16px;}

.rest .modal-card .outline_fancy_btn {margin-top: 40PX;}

.modal-card .content .mt-40 {margin-top: 25px;}



/* FOOTER */
footer {
    background-color: #0C092A;
    padding: 20px 10px;
    box-sizing: content-box;
    text-align: center;
}

footer .flex-row {
    justify-content: center;
    align-items: center;
}

footer a {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

footer .vert_sep {
    border-right: 1px solid #ffffff;
    height: 13px;
    margin: 0 13px;
}

/* SPINNER LOADER */
.dot-spinner {
    --uib-size: 6rem;
    --uib-speed: .9s;
    --uib-color: #f79e18;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 18%;
    width: 18%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {transform: rotate(45deg);}
.dot-spinner__dot:nth-child(2)::before {animation-delay: calc(var(--uib-speed) * -0.875);}
.dot-spinner__dot:nth-child(3) {transform: rotate(90deg);}
.dot-spinner__dot:nth-child(3)::before {animation-delay: calc(var(--uib-speed) * -0.75);}
.dot-spinner__dot:nth-child(4) {transform: rotate(135deg);}
.dot-spinner__dot:nth-child(4)::before {animation-delay: calc(var(--uib-speed) * -0.625);}
.dot-spinner__dot:nth-child(5) {transform: rotate(180deg);}
.dot-spinner__dot:nth-child(5)::before {animation-delay: calc(var(--uib-speed) * -0.5);}
.dot-spinner__dot:nth-child(6) {transform: rotate(225deg);}
.dot-spinner__dot:nth-child(6)::before {animation-delay: calc(var(--uib-speed) * -0.375);}
.dot-spinner__dot:nth-child(7) {transform: rotate(270deg);}
.dot-spinner__dot:nth-child(7)::before {animation-delay: calc(var(--uib-speed) * -0.25);}
.dot-spinner__dot:nth-child(8) {transform: rotate(315deg);}
.dot-spinner__dot:nth-child(8)::before {animation-delay: calc(var(--uib-speed) * -0.125);}



/* Prize single image */
.prize_single_img {
    text-align: center;
}

.prize_single_img  img {
    margin: -20px auto 0 auto;
    display: block;
}

.prize_single_img .prize_title {
    font-size: 25px;
    color: #F79E18;
    font-weight: 600;
    max-width: 400px;
    margin: -30px auto 0 auto;
}

.prize_single_img .prize_desc {
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    margin: 15px auto 0 auto;
    max-width: 400px;
}

/* Prizes */

.prizes .prizes_swiper_cont {
    width: 100%;
    max-width: 500px;
    margin: 0px auto 15px auto;
    position: relative;
}

.box_prize.col_monthly .prize_single_img img {
    max-width: 500px;
    margin-left: 0;
}



/* glow */

.modal_glow {
    animation: boxShadowMod 1.3s infinite ;
    -webkit-animation: boxShadowMod 1.3s infinite ;
    border-radius: 24px;
}

.modal_glow2 {
    animation: boxShadowMod2 1.3s infinite ;
    -webkit-animation: boxShadowMod2 1.3s infinite ;
    border-radius: 24px;
}





@media only screen and (max-width: 992px) {
    /* Get Started */
    #gs_top {
        background-size: 140vw auto;
    }

}



@media only screen and (max-width: 767px) {
    .img_glow_left {
        top: -40vw;
        left: -40vw;
    }
    
}

@media only screen and (max-width: 570px) {
    .store.vers2 .store_box {
        max-width: 47%;
    }
}


@media only screen and (max-width: 500px) {
    
    
    /* MENU */
    header {padding: 10px;}
    .logo img {max-width: 120px;}
    .language-selector img, 
    header.logged .header_right img, #languageIcon {max-width: 30px;}

    .language-selector i {
        font-size: 13px;
        margin-right: 10px;
    }
    .vert_sep {margin-right: 20px;}
    .menu-toggle {width: 25px;}
    
    .nav-menu {
        height: calc(100% - 57px);
        top: 58px;
    }

    .nav-menu ul li a .flex-column {max-width: 200px;}
    .nav-menu ul li {padding: 10px;}


    .nav-menu {
        padding: 20px 10px;
    }

    .nav-menu ul {
        padding-left: 3vw;
        padding-right: 3vw;
    }
    .nav-menu ul li {margin-top: 10px;}

    .nav-menu ul .register_item {
        /* padding: 0; */
        font-size: 18px;
    }

    .nav-menu ul .register_item {padding: 10px 25px;}
    .language-dropdown {top: 27px;}


    /* Home */

    #prizes_carousel .swiper-container {
        margin-left: -20px;
        margin-right: -20px;
        box-sizing: content-box;
        padding: 20px;
    }

    .usr_home {margin-top: 12px;}
    .left_usr_home .salutation {font-size: 16px;}
    .left_usr_home .row2 .name {font-size: 20px;}
    .left_usr_home .lvl_badge p {font-size: 14px;}

    .left_usr_home .lvl_badge img {max-width: 30px;}
    .left_usr_home .bg_border img {max-width: 25px;}
    .left_usr_home .row2 img {margin-right: 5px;}

    #home_games_left .title {font-size: 25px;}
    #home_games_left .points {font-size: 16px;}

    #home_games_left .get_more_quiz,
    .more_quizes_sect p.get_more_quiz {font-size: 16px;}

    .fancy_btn {padding: 10px 25px; font-size: 18px;}

    #home_games_left .flex-row img,
    .more_quizes_sect img {max-width: 25px;}

    #home_invite .box {padding: 20px;}

    #home_invite .text {font-size: 14px;}
    #home_invite .heading {font-size: 20px;}

    #home_invite img {
        left: -45px;
        max-width: 150px;
    }

    #home_invite .col1 {
        width: 140px;
    }
    #prizes_carousel h1 {font-size: 25px;}

    .swiper-slide {
        min-height: 190px;
    }

    #prizes_carousel .carousel-item h3 {font-size: 16px;}
    #prizes_carousel .carousel-item p {font-size: 14px;}


    .inactive .fancy_btn {
        padding: 15px 25px;
        font-size: 20px;
    }


    /* GET STARTED */
    #gs_top {
        background-size: 220vw auto;
    }
    #gs_content p {font-size: 16px;}
    

    #gs2_content p {font-size: 18px;}
    .gs2 #prizes_carousel {margin-top: 20px;}

    /* .gs2 .outline_fancy_btn {
        margin: -15px auto 15px auto;
    } */

    .login_btn {
        font-size: 20px;
        padding: 15px;
    }

    .disclaimer {
        font-size: 14px;
        margin: 30px auto;
    } 

    /* MODAL */
    .modal-card .banner {
        height: 200px;
        background-position: center;
    }

    .modal-card .content h1,
    main.register h1, 
    main.forgot h1,
    main.how_it_works h1 ,
    main.terms_page h1,
    main.notifications h1,
    main.profile h1,
    main.other_user_prof h1,
    main.winners h1,
    main.prizes h1,
    main.store h1  {font-size: 26px;}

    main.profile h2,
    main.other_user_prof h2 {font-size: 22px;}


    .modal-content {margin-top: 20%;}
    /* .modal-content {margin-top: 0px;} */

    /* Register */
    .step {
        border-radius: 40px;
        min-width: 40px;
        height: 40px;
    }

    .register_mobile {max-width: 40px;}

    main.register p.operator_title {margin-top: 40px;}
    .op_promo_img {max-width: 140px;}

    .fb_btn .fancy_btn {padding: 10px 5px;}


    /* HOW IT WORKS */
    .how_sect p {
        font-size: 14px;
    }

    .terms_sect p,
    .terms_page ul li,
    .updated_date {
        font-size: 14px;
    }

    .modal_games_left .modal-card {
        margin-top: -75px;
    }

    /* POSTGAME */
    .postgame .image_half,
    .modal_games_left .image_half {
        max-width: 160px;
        /* margin: -15px auto -90px auto; */
    }
    .modal-card .content p {margin: 5px auto 15px auto;}
    
    .modal-card .results_numb {margin: 10px auto;}
    .postgame .modal-card {margin-top: -80px;}
    .points_and_ans .container {padding: 10px 5px 5px 5px;}

    .points_and_ans .container h2 {font-size: 16px;}

    /* BONUS PHASES */
    .bonus_phases h3 {font-size: 18px;}
    .bonus_phases p {font-size: 14px;}
    .bonus_phases img {max-width: 65px;}
    .bonus_phases .bonus_txt {margin-left: 6px; width: 60%;}
    .bonus_phases p {margin-top: 5px;}

    .bonus_phases .box {
        padding: 10px 15px 10px 10px;
        /* flex-wrap: wrap; */
    }

    /* LEVELUP */

    .gift_points_box p.points {margin: 0;}
    .gift_points_box img {max-width: 25px; }
    #modalLevels .modal-card .content h1 {margin-top: 5px;}

    #modalLevels .modal-card .banner {height: 160px;}
    #modalLevels .banner .lvl_up_logo {
        bottom: 15px;
        max-width: 150px;
    }

    #modalLevels .modal-content .fancy_btn {
        padding: 10px 5px;
    }


    /* INVITE FRIENDS */

    /* generic */
    .modal-content ::placeholder {font-size: 12px;}
    .outline_btn {font-size: 18px;}

    /* OTHER */
    .remember_checkbox.dont_show label {font-size: 14px;}
    .modal-card .content h3.title {font-size: 22px;}

    /* PROFILE */
    
    .achievements_box .unlocked_txt {font-size: 5vw;}

    .profile_main .top_banner .avatar-container {
        width: 150px;
        height: 150px;
    }
    .profile_main .top_banner .prof_avatar {max-width: 150px;}
    .profile_main .top_banner {height: 220px;}
    .profile_main .top_banner_info .name,
    .user_prof_box .name {
        font-size: 20px;
    }

    .profile_main .top_banner_info .country,
    .user_prof_box .country {font-size: 14px;}

    .profile_main .bg_border {margin-top: 10px;}
    .profile_main .lvl_bar_sect .flex-row {margin-top: 10px;}
    .profile_main .lvl_bar_sect .progress-container {height: 10px;}
    .achievement_badges {padding: 0;}


    .user_prof_box .flex-column {
        margin-left: 10px;
    }
    /* .user_prof_box .user_img_bg img {width: 120px;} */

    .modal_invite .invite_mob_img {
        max-width: 50px;
        margin: 10px auto 20px auto;
    }
    
    .modal_invite h1 {margin-top: 10px;}
    .modal_invite input {padding: 20px 10px 10px 10px;}
    .modal_invite h3.invite_email {margin-top: 30px;}
    .modal_invite h3 {margin-bottom: 0;}
    .modal_invite .input-container {margin-top: 12px;}

    .modal_invite .tab-buttons {margin: 20px auto 20px auto;}

    /* winners */

    .tab-button {padding: 10px;}

    .winners .prize_user_row .user_info .name,
    .prizes .prize_user_row .user_info .name {font-size: 16px;}

    .winners .prize_user_row .user_info .cash,
    .winners .prize_user_row .date_box,
    .prizes .box_rank .you_txt,
    .prizes .prize_user_row .date_box,
    .prizes .box_rank .rank_and_points {font-size: 14px;}

    .winners .prize_user_row .user_img_bg,
    .prizes .prize_user_row .user_img_bg {max-width: 60px; margin-right: 10px;}

    /* PRIZES - LEADERBOARDS */
    .prizes .prize_user_row {
        padding: 20px 10px 20px 0;
    }

    .prizes .empty_leader {
        font-size: 16px;
    }
    
    /* STORE */

    .store .store_box {padding: 10px;}
    .store .store_box img {max-width: 85px;}
    .store .store_box .best_tag {margin-top: 5px;}
    .store .store_box .desc {margin: 6px 0 10px 0;}

    .close-btn,
    .back-to-home {
        width: 25px;
        height: 25px;
    }


    .modal_invite .tab-button {font-size: 14px;}

    a.forgot_pin {font-size: 14px;}

    .clear_noti.outline_fancy_btn .fancy_btn {
        font-size: 18px;
    }


    /* Prize single image */
    

    .prize_single_img  img {
        margin: -15px auto 0 auto;
    }

    .prize_single_img .prize_title {
        font-size: 22px;
        margin: -20px auto 0 auto;
    }

    .prize_single_img .prize_desc {
        font-size: 16px;
        margin: 15px auto 0 auto;
    }
  
    
}


@media only screen and (max-width: 400px) {
    .bonus_phases .box {
        padding: 10px;
        flex-wrap: wrap;
    }
    .bonus_phases .bonus_timer {
        width: 100%;
    }

    /* winners */
    .winners .prize_user_row .col_mobile {
        flex-direction: column;
    }

    .winners .prize_user_row .date_box {margin-left: 0; flex-direction: row; margin-top: 15px;}
    .winners .prize_user_row .date {margin-left: 7px;}
}

@media only screen and (max-width: 360px) {
    .nav-menu ul li a {padding: 14px 10px;}
    .outline_register_item {padding: 9px 6px 13px 6px;}

    .nav-menu {
        height: calc(100% - 54px);
        top: 55px;
    }

    .nav-menu ul li {
        padding: 0px;
    }

    header.logged .header_right img {
        margin-right: 0;
    }
    header.logged .vert_sep {margin-right: 10px;}

    .logo img {
        max-width: 110px;
    }

    /* Home */
    #home_games_left .title {font-size: 20px;}
    #home_games_left .points {font-size: 14px;}
    #home_games_left .get_more_quiz,
    .more_quizes_sect p.get_more_quiz {font-size: 15px;}
    .fancy_btn {font-size: 20px;}
    #home_invite img {
        left: -40px;
        max-width: 130px;
    }
    #home_invite .col1 {width: 110px;}
    .swiper-slide {
        min-height: 170px;
    }

    /* Register */

    main.register p {font-size: 14px;}
    .disclaimer {font-size: 12px;}

    .modal-content.register .modal-card .content {
        padding: 15px 15px 0 15px;
    }

    .modal-content.unsub .content p {font-size: 14px;}

    .profile_main .top_banner_info .name, .user_prof_box .name {
        font-size: 18px;
    }

    .store.vers2 .store_box {
        max-width: 100%;
    }

    header.logged .header_right img {margin-right: 1px;}

    .clear_noti.outline_fancy_btn .fancy_btn {
        font-size: 14px;
    }
    
}



/* Animations */

@keyframes shine {
    0% {transform: translateX(-120%);}
    50% {transform: translateX(120%);}
    100% {transform: translateX(120%);}
}


@keyframes zoomInOut {
    0%, 100% {transform: scale(1);}
    50% {transform: scale(0.9);}
}

@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes boxShadowMod {
    0% {box-shadow: 0 0 10px rgba(255,157,0,0.5);}
    /* 10% {box-shadow: 0 0 12px rgba(255,157,0,0.9);}
    20% {box-shadow: 0 0 14px rgba(255,157,0,0.8);}
    30% {box-shadow: 0 0 16px rgba(255,157,0,0.7);} */
    40% {box-shadow: 0 0 30px rgba(255,157,0,0.6);}
    /* 50% {box-shadow: 0 0 20px rgba(255,157,0,0.5);} */
    60% {box-shadow: 0 0 30px rgba(255,157,0,0.6);}
    /* 70% {box-shadow: 0 0 16px rgba(255,157,0,0.7);}
    80% {box-shadow: 0 0 14px rgba(255,157,0,0.8);}
    90% {box-shadow: 0 0 12px rgba(255,157,0,0.9);} */
    100% {box-shadow: 0 0 10px rgba(255,157,0,0.5);}
}

@keyframes boxShadowMod2 {
    0% {box-shadow: 0 0 10px rgba(119,89,127,0.5);}
    40% {box-shadow: 0 0 30px rgba(119,89,127,0.5);}
    60% {box-shadow: 0 0 30px rgba(119,89,127,0.5);}
    100% {box-shadow: 0 0 10px rgba(119,89,127,0.5);}
}


