:root
{
    --color-primary: #0F233C;
    --color-secondary: #00B4A2;
    --color-gray: #a0a0a0;
    --color-light-gray: rgb(242, 243, 244);
    --gradiant-primary: linear-gradient(to right, rgb(0, 178, 160) 0%, rgb(0, 178, 160) 50%, rgb(0, 157, 146) 78%);
    --games-titles-color:#2FB7A5;
}

@font-face {
    font-family: 'Hellix';
    src: url('../fonts/Hellix-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('../fonts/Hellix-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


.header-section {
    background: transparent;
}

.flex-container {
    display: flex;
    padding-top: 0;
    padding-right: 32px;
    /* background: linear-gradient(to right, rgb(0, 178, 160) 0%, rgb(0, 157, 146) 57%, rgb(0, 157, 146) 78%); */
    background: var(--gradiant-primary);
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;    
}

.logo-main-container {
    padding-left: 64px;
    padding-top: 62px;
    padding-bottom: 32px;
    width: 450px;
}

#logo-mobile,
#games-opt,
#cart-opt,
#menu-opt{
    display: none;
}

.logo-main-container img {
    width: 100%;
}

.promotion-container {
    display: none;
}

.container-new-right-text {
    width: 180px;
    text-align: left;
    padding-top: 24px;
}

.new-text-right {
    color: white;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    font-family: 'Hellix', sans-serif;
    font-weight: normal;
    font-style: normal;
}


.light-p {
    font-weight: 300;
    font-family: 'Hellix', sans-serif;
    font-size: 37px;
    color: white;
    margin: 0;
}

.white-section {
    width: 18px;
    margin-left: auto;
    margin-right: 34px;
    background: rgb(242, 243, 244);
}

 
.span-light {
    font-weight: 300;
}

.span-bold {
    font-weight: 700;
}

.container-info-actions{
    gap: 56px;
    display:  flex;
    padding-top: 2px;

}

.container-main-actions {
    background-color: rgb(242, 243, 244);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 78px 12px 78px;
    gap: 48px;
    margin-top: 6px;
    border-top: 1px solid #a0a0a0;
    border-bottom: 1px solid #a0a0a0;
}

.button-results {
    border: none;
    padding: 0;
    background-color: transparent;
    color: gray;
    font-weight: 300;
    font-size: 21px;
    font-family: 'AvantGarde', sans-serif;
    cursor: pointer;
}

.container-usr-balance {
    display: flex;
    align-items: center;
    gap: 22px;
}

.text-username-balance {
    color: gray;
    font-size: 21px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: none !important;
}

.name-balance-adjust{
    margin-top: -4px;
}

.cursor-pointer {
    cursor: pointer;
}

.username-span {
    font-weight: 700;
}

.container-main-actions ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    margin: 0;
    gap: 16px;
}

.container-main-actions ul li {
    color: gray;
    font-size: 21px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.container-main-actions ul li::before {
    content: "•";
    font-size: 26px;
    line-height: 1;
    margin-right: 12px;
    margin-top: 3px;
    color: gray;
    flex-shrink: 0;
}

.container-main-actions ul li:first-child::before {
    content: "";
    margin-right: 0;
}


#register-action{
    font-weight: 600;
}

.container-main-actions ul li:nth-child(4)::before {
    content: "";
    margin-right: 0;
}

.white-bold {
    font-weight: 700;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.7s ease-in-out;
    transform: translateX(100%);
    font-weight: 400;
    font-style: normal;
    overflow: auto;
}

.side-menu.visible {
    transform: translateX(0);

}

.container-icon-close {
    padding-right: 50px;
    padding-top: 30px;
    min-height: 96px;
    text-align: right;
}

.container-img {
    width: 42px;
    margin-left: auto;
    filter: brightness(0) saturate(100%) invert(0%) sepia(11%) saturate(5304%) hue-rotate(328deg) brightness(65%) contrast(92%);
}

.container-img img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.games-names {
    padding-right: 100px;
}

.games-names button {
    border: none;
    padding: 0;
    background-color: transparent;
    color: #373737;
    font-weight: 300;
    display: block;
    font-size: 22px;
    font-family: 'AvantGarde', sans-serif;
    margin-bottom: 17px;
    margin-left: auto;
    cursor: pointer;
}

.games-names button:last-child {
    margin-bottom: 24px;
}

.games-names button:hover {
    color: #00B4A2;
}

.other-sections {
    background-color:rgb(242, 243, 244);
    padding: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #a0a0a0;
}

.other-sections>ul {
    list-style: none;
    display: flex;
    justify-content: left;
    gap: 16px;
    margin: 0;
}

.other-sections>ul>li {
    color: gray;
    font-size: 19px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.other-sections>ul>li::before {
    content: "•";
    font-size: 30px;
    line-height: 1;
    margin-right: 2px;
    color: gray;
    flex-shrink: 0;
    padding-top: 6px;
}

.other-sections>ul>li:first-child::before {
    content: "";
    margin-right: 0;
}

.modal-backdrop-message-promotion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.content-visible {
    display: flex;
}

.modal-promotion {
    background-color:#2FB7A5;
    padding: 24px 46px 36px 46px;
    border-radius: 25px;
    width: 560px;
    font-weight: 300;
    color: white;
    position: relative;
}

.container-icon-close-promotion {
    width: 44px;
    margin-left: auto;
}

.container-icon-close-promotion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.title-promoion {
    margin: 0px 0 32px 0;
    text-transform: none;
}

.title-promoion > p {
    margin: 0;
    font-size: 24px;
}

.title-promoion  span {
    font-weight: 700;
}

.text-promotion-description {
    font-size: 18px;
    margin: 0 0 24px 0;
    text-transform: none;
}

.text-promotion-description span {
    font-weight: 700;
    text-transform: none;
}

.text-conditions {
    margin: 0;
    font-size: 12.5px;
    text-transform: none;
}

.button-promotion {
    display: flex;
    margin: 32px auto 0 auto;
    font-size: 24px;
    font-weight: 700;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'AvantGarde', sans-serif;
    background-color: transparent;
}


@media(min-width:760px) and (max-width: 1190px) {

    .logo-main-container {
        width: 320px;
        padding-left: 34px;
    }

    .flex-container {
        padding-right: 28px;
    }


    .container-main-actions {
        gap: 24px;
        padding-right: 36px;
        padding-left: 36px;
    }

    .container-main-actions>ul {
        gap: 8px;
    }

    .container-main-actions>ul>li {
        font-size: 17px;
    }

    .container-main-actions>ul>li::before {
        margin-right: 8px;
    }

    .text-username-balance {
        font-size: 18px;
    }

    .other-sections ul{
        padding-left: 18px;
    }

    .other-sections>ul>li {
        font-size: 16px;
    }

    .modal-promotion {
        width: 420px;
    }

    .container-icon-close-promotion {
        width: 37px;
        margin-bottom: 12px;
    }

    .title-promoion > p {
        font-size: 20px;
    }

    .text-promotion-description {
        font-size: 16px;
    }

    .button-promotion {
        font-size: 20px;
    }

    .container-main-actions ul {
        gap: 12px;
    }

    .container-info-actions {
        gap: 18px;
    }

    .container-usr-balance {
        gap: 14px;
    }

    .button-results,
    .container-main-actions ul li

    {
        font-size: 18px;
    }
}

@media(min-width:760px) and (max-width: 814px) {
    .logo-main-container {
        width: 282px;
    }
}


@media(max-width: 759px) {

    #logo-web,
    #menu-dsk-opt,
    #cart-dsk-opt,
    #games-list-trigger,
    .container-usr-balance{
        display: none;
    }

    #logo-mobile,
    #games-opt,
    #cart-opt,
    #menu-opt{
        display: block;
    }
    .header-section {
        background: transparent;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .header-section {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .flex-container {
        display: block;
        background:transparent;
        border-top-left-radius: 0;
        border-top-right-radius: 0;  
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 38px;
        padding-bottom: 8px;
    }

    .logo-main-container {
        width: 265px;
        min-width: auto;
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .promotion-container {
        display: block;
        text-align: center;
        background:var(--gradiant-primary);
        color: white;
        font-weight: 300;
        font-size: 16px;
        padding: 12px;
     }
     
     .pt-02 {
        padding-top: 2px;
     }

     .promotion-container p {
        margin: 0;
     }

     .container-promotion-img {
        gap: 6px;
        display: flex;
        cursor: pointer;
        align-items: center;
        justify-content: center;
     }

     .container-promotion-img img {
        width: 13.5px;
     }

    .icon-common{
        width: 22px;
        height: 22px;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(57%) sepia(0%) saturate(84%) hue-rotate(225deg) brightness(89%) contrast(85%);
    }

    .filter-white{
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(20%) hue-rotate(0deg) brightness(104%) contrast(100%);
    }


    .container-usr-balance-mob {
        gap: 12px;
        display: flex;
        padding-right: 9px;
        align-items: center;
        text-transform: none;
        justify-content: right;
    }

    .container-main-actions {
        padding: 10px 18px 4px 18px;
        overflow: auto;
        border-top: none;
        margin-bottom: 2px;
        margin-top: 2px;
    }

    .container-main-actions>ul {
        gap: 6px;
    }

    .container-main-actions>ul>li {
        font-size: 15px;
    }

    .container-main-actions>ul>li::before {
        margin-right: 4px;
        font-size: 20px;
    }

    .text-username-balance {
        font-size: 13px;
        white-space: nowrap;
    }

    .other-sections {
        overflow: auto;
        padding: 10px;
    }

    .other-sections>ul {
        padding-left: 0;
        gap: 6px;
    }

    .other-sections>ul>li {
        font-size: 14px;
        white-space: nowrap;
    }

    .other-sections>ul>li::before {
        font-size: 24px;
    }

    .side-menu {
        width: 100%;
    }

    .games-names button {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .games-names button:hover {
        font-size: 17px;
    }

    .container-img {
        width: 36px;
    }

    .button-results {
        font-size: 16.5px;
    }

    .modal-promotion {
        width: 75%;
        padding: 16px 30px 24px 30px;
    }

     .container-icon-close-promotion {
        width: 34px;
        margin-bottom: 12px;
    }
    
    .title-promoion > p {
        font-size: 17px;
    }

    .text-promotion-description {
        font-size: 15px;
        margin: 0 0 18px 0;
    }

    .button-promotion {
        font-size: 17px;
    }

    .text-conditions {
        font-size: 10.5px;
    }
}

@media (min-width: 901px) and (max-width: 1190px) {
    .header-section {
        width: 800px;
        margin-left: auto;
        margin-right: auto;

    }
}

@media (min-width: 809px) and (max-width: 900px) {

    .header-section {
        width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 760px) and (max-width: 808px) {
    .header-section {
        width: 718px;
        margin-left: auto;
        margin-right: auto;
    }
}