﻿@font-face {
    font-family: regular;
    src: url("../../Content/fonts/GTWalsheimProRegular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: bold;
    src: url("../../Content/fonts/GTWalsheimProUltraBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: medium;
    src: url("../../Content/fonts/GTWalsheimProMedium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
/*
* {
    padding: 0;
    margin: 0;
    font-family: regular;
}*/


.body_container {
    background-color: rgba(31, 41, 81, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
}

.body_container .popup_container {
    width: 100%;
    height: 100dvh;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .body_container .popup2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        background: #FFFDF2; 
        border: 2px solid #FFE200;
        border-radius: 24px;
        padding: 24px 54px 60px;
        position: relative;
        overflow: hidden;
        opacity: 1;
        pointer-events: auto;
    }

.body_container .background_image {
    position: absolute;
    bottom: -50px;
    right: -23px;
}

.body_container .bg_img {
    height: 185px;
    width: 328px;
}

.body_container .close_poup {
    position: absolute;
    right: 32px;
    top: 32px;
    font-size: 0;
    cursor: pointer;
}

    .body_container .popup_header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-image: url("../../Content/images/gamificacion/bonus.png");
        background-repeat: no-repeat;
        background-size: cover;
        /*padding: 89px 28px 24px;*/
        padding: 89px 28px 17px; /*gc*/
        /*max-width: 430px;*/
        max-width: 470px; /*gc*/
    }

.body_container .header_texts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    /*max-width: 374px;*/
    max-width: 455px;
}

.body_container .title_field {
    display: flex;
    align-items: center;
    justify-content: center;
}

.body_container .title {
    font-family: medium;
    font-size: 40px;
    line-height: 46.4px;
    color: #000000;
    white-space: nowrap;
}

.body_container .description {
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
    text-align: center;
    max-width: 375px; /*gc*/
}

.body_container .description_field { /*gc*/
    max-width: 455px;
    justify-items: center;
}

.body_container .timmer {
    border: 2px solid #FFE200;
    padding: 6px;
    font-family: medium;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    border-radius: 6px;
}

.body_container .days_grid {
    display: flex;
    gap: 16px;
}

.body_container .grid_element {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.6;
}

.body_container .active_grid_element {
    opacity: 1;
}

.body_container .number_icon {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}

.body_container .active_green_line_field {
    position: absolute;
    background-color: #FFE200;
    height: 2px;
    width: 110%;
    transform: rotate(334deg);
    top: 21px;
}

.body_container .next_day_line_field {
    position: absolute;
    height: 2px;
    width: 110%;
    transform: rotate(334deg);
    top: 21px;
    background: repeating-linear-gradient( 24deg, #FFE200 0px, #FFE200 2px, transparent 0, transparent 4px )
}

    .body_container .reward_box {
        width: 90px;
        height: 127px;
        display: flex;
        flex-direction: column;
        clip-path: polygon(0 36%, 103% 0, 100% 100%, 0% 100%);
        background-color: #FFFBD5;
    }

.body_container .active_box {
    border: 2px solid #FFE200;
}

.body_container .next_day_box {
    border: 2px dashed #FFE200;
}

.body_container .disable_box {
    border: 2px solid #F4F4F4;
    background-color: #F4F4F4;
}

.body_container .reward_top_section {
    height: 50px;
}

.body_container .reward_bottom_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.7px;
    padding-bottom: 7px;
}

.body_container .middle_section {
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
    line-height: 11px;
}

.body_container .icon img {
    width: 32px;
    height: 32px;
}

    .body_container .points {
        font-size: 16px;
        line-height: 18px;
        font-family: medium;
        color: #000;
    }

.body_container .collect_button {
    border: none;
    background-color: #FFE200;
    border-radius: 8px;
    padding: 11px 56px;
    color: #000;
    font-family: medium;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1024px) {
    .body_container .popup_container {
        padding: 16px;
    }

    .body_container .close_poup {
        right: 16px;
        top: 16px;
    }

    .body_container .close_button {
        width: 24px;
        height: 24px;
    }

    .body_container .popup {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 16px 56px;
    }

    .body_container .days_grid {
        overflow: scroll;
        width: 100%;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .body_container .days_grid::-webkit-scrollbar {
        display: none;
    }

    .body_container .popup_header {
        /*max-width: 311px;*/
        max-width: 365px;
        /*padding: 61px 21px 0;*/
        padding: 51px 40px 0;
    }

    .body_container .title {
        font-size: 28px;
        line-height: 32px;
    }

    .body_container .description {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 768px) {
    .body_container .background_image {
        display: none;
    }
}

