*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container{
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.container:has(.login_form){
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center; 
}
@media only screen and (min-width: 576px){
    .container{
        max-width: 540px;
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media only screen and (min-width: 768px){
    .container{
        max-width: 720px;
    }
}
@media only screen and (min-width: 992px){
    .container{
        max-width: 960px;
    }
}
@media only screen and (min-width: 1200px){
    .container{
        max-width: 1140px;
    }
}
@media only screen and (min-width: 1400px){
    .container{
        max-width: 1250px;
    }
}
:root {
    --url:'../images/flags/';
    --small-radius: 4px;
    --radius-big: 30px;
    --white: #FFF;
    --green: #87FFBE;
    --lite-green: #E7FFF2;
    --bg: #F3F3F3;
    --bg-black: #0E1310;
    --lite-grey: #FBFBFB;
    --dark-grey: #D7D7D7;
    --txt-white: #FBFBFB;
    --txt-black1: #191A1A;
    --txt-black2: #0E1310;
    --txt_blue: #0032B2;
    --txt-grey: #919292;
    --txt-dark-grey: #5F6060;
    --divider: #EBEBEB;
    --red: #E7002A;
    --transition: .3s all ease;
}
.d-flex{
    display: flex;
}
.justify-content-between{
    justify-content: space-between;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: Shentox;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    font-style: normal;
    color: var(--txt-black1);
    background-color: var(--bg);
}
.wrapper{
    overflow: hidden;
}
.modal_back{
    content: '';
    inset: 0px;
    z-index: 1;
    background: linear-gradient(0deg, rgba(25, 26, 26, 0.80) 0%, rgba(25, 26, 26, 0.80) 100%);
}
.modal_back.fixed{
    position: fixed;
}
/* HEADER */
header{
    background: var(--bg-black);
    transition: var(--transition);
    position: relative;
    height: 80px;
    z-index: 3;
}
header:has(.mobile_menu){
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
}
header:has(.mobile_menu)+*{
    margin-top: 80px;
}
header:has(.mobile_menu)+.empty{
    margin-bottom: 0;
}
.header_row{
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 17px 0px;
}
.header_middle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header_links{
    display: flex;
    align-items: center;
    gap: 40px;
}
.brand_logo{
    display: block;
    flex: 0 0 auto;
}
.header_links{
    list-style: none;
}
.header_links a{
    font-size: 17px;
    line-height: 135%;
    font-weight: 300;
    color: var(--txt-white);
    text-decoration: none;
    transition: .3s all ease;
}
.header_links li.active a{
    color: var(--green);
}
.header_links li:hover a{
    color: var(--green);
}
.hamburger,
.mobile_header{
    display: none;
}
.header_right{
    display: flex;
    align-items: center;
    gap: 40px;
}
.header_right .header_item{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 300;
    color: #F5F5F5;
    flex: 0 0 auto;
    text-decoration: none;
}
.header_right .user_id{
    position: relative;
}
.header_right .user_id::before{
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: -8px;
    top: 50%;
    transform: translate(-100%, -50%);
}
.header_right .user_id.active::before{
    background-color: #00E76A;
}
.header_right .user_id.deactive::before{
    background-color: var(--red);
}
.header_right .user_id.disable::before{
    background-color: var(--dark-grey);
}
.header_right .header_item path{
    transition: var(--transition);
}
.header_right .header_item.green svg rect{
    fill: var(--green);
}
.header_right .header_item.red svg rect{
    fill: var(--red);
}
.header_right a.header_item.log_out:hover path{
    fill: var(--red);
}
.header_right a.header_item:hover,
.header_right a.header_item.active{
    color: var(--green);
}
.header_right a.header_item:hover path,
.header_right a.header_item.active path{
    fill: var(--green);
}
.mobile_menu{
    display: none;
}
.btn_{
    display: inline-block;
    font-size: 17px;
    line-height: 135%;
    color: var(--txt-black1);
    border-radius: var(--small-radius);
    background-color: var(--bg);
    text-decoration: none;
    padding: 12px 30px;
    transition: var(--transition);
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
}
.btn_:hover{
    background-color: #CEFFE4;
	color: var(--txt-black2);
}
.btn_:active{
    background-color: #69E1A0;
}
.btn_.disabled,
.btn_:disabled  {
    background-color: #D7D7D7;
    color: #C3C3C3;
}
.btn_green{
    background-color: var(--green);
}
.btn_red{
    background-color: var(--red);
    color: var(--white);
}
.btn_cancel{
    background-color: var(--bg);
}
/* ABOUT */
.about{
    padding: 60px 0 90px 0;
    background-color: var(--lite-grey);
}
.section_top{
    display: flex;
    gap: 10px;
    align-items: flex-end;
    margin: 0 0 40px 0;
}
.section_title{
    font-size: 50px;
    line-height: 110%;
}
.section_desc{
    font-size: 17px;
    line-height: 135%;
}
.section_top .section_title{
    text-transform: uppercase;
    font-size: 80px;
    color: var(--txt-black1);
    max-width: 614px;
    width: 100%;
}
.about .section_top .section_title{
    max-width: 831px;
}
.section_top .section_title span{
    color: var(--txt_blue);
}
.section_top .section_desc{
    color: var(--txt-black1);
    margin: 0 0 20px 0;
}
.about_slider{
    overflow: visible;
}
.about_slider .swiper-wrapper{
    margin: 0 0 20px 0  ;
}
.swiper-pagination-fraction{
    width: auto;
    position: initial;
    z-index: 1;
    font-size: 17px;
    line-height: 110%;
    font-weight: 600;
    color: var(--dark-grey);
}
.swiper-pagination-current{
    color: var(--bg-black);
}
.about_slider .swiper-slide{
    display: flex;
    justify-content: center;
    position: relative;
    opacity: 0;
}
.about_slider .swiper-slide.swiper-slide-active{
    opacity: 1;
}
.about_slider .slider_text{
    position: absolute;
    font-size: 17px;
    line-height: 135%;
    color: var(--txt-black2);
    width: 350px;
    padding: 20px;
    border-radius: var(--small-radius);
    background-color: var(--lite-grey);
    box-shadow: 0px 4px 44px 0px rgba(29, 29, 29, 0.04), 0px 4px 34px 0px rgba(69, 69, 69, 0.04);
    border: 1px solid var(--dark-grey);
}
.about_slider .slider_text1{
    left: 7%;
    top: 11%;
}
.about_slider .slider_text2{
    left: 7%;
    bottom: 26%;
}
.about_slider .slider_text3{
    right: 4%;
    top: 37%;
}
.about_slider .slider_text4 {
    right: 4%;
    top: 0%;
}
.about_slider .slider_text5{
    left: 7%;
    top: 12%;
}
.about_slider .slider_text6 {
    left: 7%;
    bottom: 10%;
}
.about_slider .slider_text7 {
    right: 4%;
    bottom: 12%;
}
.about_slider .slider_text8 {
    right: 4%;
    top: 17%;
}
.about_slider .slider_text9 {
    left: 7%;
    top: 28%;
}
.about_slider .slider_text10 {
    right: 4%;
    top: 0%;
}
.about_slider .slider_text11 {
    right: 4%;
    bottom: 0%;
}
.about_slider .slider_text12 {
    left: 7%;
    top: 28%;
}
.about_slider .slider_text1::after{
    position: absolute;
    content: '';
    width: 211px;
    height: 16px;
    right: -14%;
    top: -22px;
    background-image: url(../images/icons/about1_after.svg);
}
.about_slider .slider_text2::after{
    position: absolute;
    content: '';
    width: 165px;
    height: 18px;
    right: 0%;
    bottom: -22px;
    background-image: url(../images/icons/about2_after.svg);
}
.about_slider .slider_text3::after{
    position: absolute;
    content: '';
    width: 240px;
    height: 18px;
    left: -18%;
    bottom: -22px;
    background-image: url(../images/icons/about3_after.svg);
}
.about_slider .slider_text4::after{
    position: absolute;
    content: '';
    width: 240px;
    height: 18px;
    left: -18%;
    bottom: -22px;
    background-image: url(../images/icons/about3_after.svg);
}
.about_slider .slider_text5::after{
    position: absolute;
    content: '';
    width: 211px;
    height: 16px;
    right: -14%;
    top: -22px;
    background-image: url(../images/icons/about1_after.svg);
}
.about_slider .slider_text6::after{
    position: absolute;
    content: '';
    width: 165px;
    height: 18px;
    right: 0%;
    bottom: -22px;
    background-image: url(../images/icons/about2_after.svg);
}
.about_slider .slider_text7::after{
    position: absolute;
    content: '';
    width: 240px;
    height: 18px;
    left: -18%;
    bottom: -22px;
    background-image: url(../images/icons/about3_after.svg);
}
.about_slider .slider_text8::after{
    position: absolute;
    content: '';
    width: 240px;
    height: 18px;
    left: -18%;
    background-image: url(../images/icons/about3_after.svg);
    top: -22px;
    transform: rotateX(180deg);
}
.about_slider .slider_text9::after{
    position: absolute;
    content: '';
    width: 211px;
    height: 16px;
    right: -14%;
    top: -22px;
    background-image: url(../images/icons/about1_after.svg);
}
.about_slider .slider_text10::after {
    position: absolute;
    content: '';
    width: 240px;
    height: 18px;
    left: -18%;
    bottom: -22px;
    background-image: url(../images/icons/about3_after.svg);
}
.about_slider .slider_text11::after {
    position: absolute;
    content: '';
    width: 240px;
    height: 18px;
    left: -18%;
    background-image: url(../images/icons/about3_after.svg);
    top: -22px;
    transform: rotateX(180deg);
}
.about_slider .slider_text12::after {
    position: absolute;
    content: '';
    width: 165px;
    height: 18px;
    right: 0%;
    bottom: -22px;
    background-image: url(../images/icons/about2_after.svg);
}
.about_slider .slider_image{
    padding: 20px;
    border-radius: var(--small-radius);
    border: 1px solid var(--dark-grey);
    background: #FFF;
    text-align: center;
}
.about_slider .slider_image img{
    width: 370px;
    height: auto;
}
.slider_actions{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 280px;
}
.slider_actions .navigation{
    display: flex;
    gap: 8px;
}
.slider_actions .navigation div{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.slider_actions .navigation div:hover{
    background-color: #87FFBE;
}
.slider_actions .navigation div path{
    stroke: var(--dark-grey);
}
.slider_actions .navigation div:hover path{
    stroke: var(--bg-black);
}
.slider_actions .navigation div:last-child svg{
    transform: rotate(180deg);
}
.slider_actions .navigation div.swiper-button-disabled{
    background-color: transparent;
}
.slider_actions .navigation div.swiper-button-disabled:hover{
    background-color: transparent;
}
.slider_actions .navigation div.swiper-button-disabled path{
    stroke: var(--dark-grey);
}
/* PLANS */
.plans{
    padding: 80px 0 90px 0;
}
.plans .section_title span{
    color: var(--txt_blue);
}
.plans_row{
    display: flex;
    align-items: flex-start;
    gap: 114px;
}
.plan_items{
    display: flex;
    gap: 10px;
}
.plan_item{
    padding: 20px;
    border: 1px solid var(--dark-grey);
    border-radius: var(--small-radius);
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 305px;
}
.plan_item .plan_title{
    font-size: 30px;
    line-height: 110%;
    font-weight: 600;
    color: var(--txt-black1);
}
.plan_item ul{
    list-style: none;
}
.plan_item ul li{
    font-size: 17px;
    line-height: 135%;
    position: relative;
    margin: 0 0 12px 0;
    padding: 0 0 0 22px;
}
.plan_item ul li::after{
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--txt_blue);
}
.plan_item .plan_price{
    font-size: 30px;
    line-height: 110%;
    font-weight: 600;
    color: var(--txt-grey);
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan_item .plan_price span{
    font-size: 50px;
    color: var(--txt-black1);
    background-color: var(--green);
    padding: 15px 8px;
}
/* BUY */
.buy{
    padding: 91px 0;
    position: relative;
    z-index: 1;
}
.buy::before{
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--txt_blue);
    z-index: -1;
}
.buy .section_title{
    margin: 0 0 20px 0;
    color: var(--txt-white);
    font-weight: 600;
}
.buy .section_title span{
    color: var(--green);
}
.buy .buy_bg2{
    display: none;
}
.buy .buy_bg{
    position: absolute;
    height: 100%;
    right: 50%;
    top: 0;
    transform: translate(100%, 0);
    z-index: -1;
}
/* FOOTER */
footer{
    background-color: var(--bg-black);
    text-align: center;
    height: 80px;
}
.footer_row{
    padding: 29px 0;
}
.footer_row a,
.footer_row div{
    display: inline-block;
    font-size: 17px;
    line-height: 135%;
    text-decoration: none;
    color: var(--txt-dark-grey);
    text-decoration: none;
    transition: var(--transition);
}
.footer_row a:hover{
    color: var(--green);
}
.footer_row div{
    margin: 0 20px 0 0;
    position: relative;
}
.footer_row div::after{
    position: absolute;
    content: '|';
    color: #FFF;
    right: -14px;
}
/* LOGIN */
.login_form{
    width: 406px;
    border-radius: var(--small-radius);
    background: var(--white);
    padding: 40px;
}
.form_title{
    font-size: 30px;
    font-weight: 700;
    line-height: 110%;
    color: var(--txt_blue);
    margin: 0 0 20px 0;
    text-align: center;
}
.input{
    width: 100%;
    position: relative;
}
.login_form .input.email{
    margin: 0 0 10px 0;
}
.input input,
.input textarea,
.input select{
    width: 100%;
    font-family: Shentox;
    font-size: 17px;
    height: 48px;
    font-weight: 400;
    line-height: 135%;
    color: var(--bg-black);
    border: none;
    outline: none;
    padding: 20px 20px 5px 20px;
    border-radius: var(--small-radius);
    border: 1px solid var(--divider);
    background: var(--lite-grey);
    transition: var(--transition);
}
.input input.error,
.input select.error,
.input textarea.error{
    border-color: var(--red);
}
.input input.valid,
.input select.valid,
.input textarea.valid{
    border-color: var(--divider);
}
.input input:focus,
.input select:focus,
.input textarea:focus{
    border-color: var(--green);
}
.input .for_label,
.login_form .input .aye{
    position: absolute;
}
.input .for_label{
    left: 20px;
    top: 14px;
    font-size: 17px;
    line-height: 135%;
    font-weight: 300;
    color: var(--txt-grey);
    transition: var(--transition);
    cursor: text;
    user-select: none;
    -webkit-user-select: none;
}
.input:has(input:not(:placeholder-shown)) .for_label,
.input:has(input:focus) .for_label,
.input:has(textarea:not(:placeholder-shown)) .for_label,
.input:has(textarea:focus) .for_label{
    font-size: 14px;
    line-height: 90%;
    top: 8px;
    color: var(--dark-grey);
}
.login_form .input .aye{
    right: 20px;
    top: 25px;
    transform: translate(0, -50%);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
}
.login_form .input .aye.active{
    opacity: 1;
}
.login_form .input.password + label{
    margin: 10px 0 0 0;
}
.login_form label{
    font-size: 17px;
    font-weight: 400;
    line-height: 135%;
}
.login_form label.error{
    color: var(--red);
    background-image: url(../images/icons/error_icon.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: left center;
    padding: 2px 0 2px 30px;
    margin: 10px 0 0 0;
    display: block;
}
.login_form button{
    border: none;
    width: 100%;
    margin: 20px 0;
    cursor: pointer;
	font-family: Shentox;
}
.login_form hr{
    color: #EBEBEB;
}
.foorm_footer{
    padding: 8px 0 0 0;
    border-top: 1px solid #EBEBEB;
    font-size: 17px;
    line-height: 135%;
    color: var(--bg-black);
    text-align: center;
}
.foorm_footer a{
    display: inline-block;
    margin: 0 0 0 12px;
    color: var(--bg-black);
    text-decoration: none;
    transition: var(--transition);
}
.foorm_footer a:hover{
    color: var(--txt_blue);
}
/* DASHBOARD */
.brand_logo{
    text-transform: uppercase;
    font-size: 26px;
    line-height: 120%;
    font-weight: 800;
    color: var(--lite-grey);
}
main{
    min-height: calc(100lvh - 160px);
}
body:has(.mobile_menu) main{
    padding: 60px 0 140px 0;
}
body:has(.mobile_menu) main.empty{
    padding-bottom: 0;
    position: relative;
}
.dashboard{
    position: relative;
}
.dashboard .section_title{
    max-width: 614px;
    width: 100%;
}
.dashboard .section_desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.section_bg{
    width: 100%;
    height: auto;
    position: absolute;
    min-height: calc(100lvh - 348px);
    object-fit: cover;
    object-position: 66% 50%;
    bottom: 0;
}
.section_bg2{
    display: none;
}
.section_tools{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 40px 0;
}
.upload_form label{
    display: inline-flex;
    gap: 2px;
    align-items: center;
    font-size: 17px;
    line-height: 135%;
    font-weight: 700;
    color: var(--txt_blue);
    position: relative;
    cursor: pointer;
}
.upload_form label input{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.section_tools .form_desc{
    font-size: 14px;
    line-height: 135%;
    font-weight: 400;
    color: var(--txt-grey);
    width: 100%;
}
.section_tools .link_to_file{
    display: inline-flex;
    gap: 1px;
    align-items: center;
    font-size: 17px;
    line-height: 135%;
    font-weight: 400;
    color: var(--bg-black);
    text-decoration: none;
}
.section_tools .link_to_file svg{
    padding: 10px;
    width: 40px;
    height: 40px;
}
.dashboard_content{
    background-color: transparent;
}
.dashboard_tools{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0 20px;
    background-color: var(--white);
}
.search_input{
    position: relative;
    max-width: 510px;
    width: 100%;
}
.search_input button{
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 100%;
    padding: 0 20px;
}
.search_input input{
    width: 100%;
    padding: 8px 64px 6px 20px;
    border-radius: var(--small-radius);
    border: 1px solid var(--divider);
    background: var(--lite-grey);
    height: 50px;
    font-family: Shentox;
    font-style: normal;
    font-size: 17px;
    line-height: 135%;
    font-weight: 300;
    color: var(--bg-black);
    outline: none;
}
.search_input input::placeholder{
    color: var(--dark-grey);
}
.filter{
    display: flex;
    align-items: center;
    gap: 20px;
}
.filter .show_count{
    position: relative;
}
.filter .show_count ul{
    position: absolute;
    top: 100%;
    left: 0;
    width: 160px;
    opacity: 0;
    visibility: hidden;
    padding: 20px;
    border-radius: var(--small-radius);
    background-color: var(--lite-grey);
    box-shadow: 0px 4px 44px 0px rgba(29, 29, 29, 0.04), 0px 4px 34px 0px rgba(69, 69, 69, 0.04);
    transition: var(--transition);
    list-style: none;
    z-index: 1;
}
.filter .show_count .current.active + ul{
    opacity: 1;
    visibility: visible;
}
.filter .show_count ul li{
    padding: 6px 0px 6px 10px;
}
label:has(input[type='radio']){
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 135%;
    font-weight: 300;
    cursor: pointer;
    position: relative;
}
label:has(input[type='radio']) svg circle:last-child{
    fill: transparent;
}
label:has(input[type='radio']) svg circle:first-child{
    stroke: var(--bg-black);
}
label:has(input[type='radio']):has(input:checked) svg circle:last-child{
    fill: var(--txt_blue);
}
label:has(input[type='radio']):has(input:checked) svg circle:first-child{
    stroke: var(--txt_blue);
}
label:has(input[type='radio']) input[type='radio']{
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
}
.filter .show_count .current{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    line-height: 135%;
    font-weight: 600;
    padding: 12px 20px;
    color: var(--dark-grey);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--divider);
}
.filter .show_count .current:hover,
.filter .show_count .current.active{
    color: var(--txt_blue);
    border-color: var(--txt_blue);
}
.filter .show_count .current svg path,
.filter .date_input svg path,
.filter .show_count .current svg{
    transition: var(--transition);
}
.filter .show_count .current:hover svg path,
.filter .show_count .current.active svg path{
    stroke: var(--txt_blue);
}
.filter .show_count .current.active svg{
    transform: rotateX(180deg);
}
.filter .date_input{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--divider);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.filter .date_input:hover{
    border-color: var(--txt_blue);
}
.filter .date_input input{
    font-family: Shentox;
    font-style: normal;
    font-size: 17px;
    line-height: 135%;
    font-weight: 600;
    color: var(--dark-grey);
    border: none;
    cursor: pointer;
    outline: none;
}
.filter .date_input:hover input{
    color: var(--txt_blue);
}
.dashboard:has(.pagination){
    padding-bottom: 90px;
}
.dashboard_content .for_table_padding{
    padding: 10px 20px 20px 20px;
    background-color: var(--white);
    overflow-x: auto;
}
.dashboard_content table{
    width: 1200px;
    border-collapse: collapse;
}
.dashboard_content thead{
    position: relative;
    border-bottom: 1px solid var(--txt_blue);
}
.dashboard_content tr th,
.dashboard_content tr td{
    padding: 10px 6px 10px 0;
    text-align: left;
    font-family: Shentox;
    font-style: normal;
    font-size: 17px;
    line-height: 135%;
    transition: var(--transition);
}
.dashboard_content th{
    font-weight: 700;
    vertical-align: middle;
}

.dashboard_content th span  svg{
    vertical-align: middle;
    margin: 0 0 0 4px;
}
.dashboard_content th.active span,
.dashboard_content th:hover span{
    color: var(--txt_blue);
}
.dashboard_content th svg,
.dashboard_content th svg path{
    transition: var(--transition);
}
.dashboard_content th.active span svg{
    transform: rotateX(180deg);
}
.dashboard_content th:hover span  svg path,
.dashboard_content th.active span  svg path{
    stroke: var(--txt_blue);
}
.dashboard_content td:nth-child(1){
    width: 115px;
}
.dashboard_content td:nth-child(3){
    max-width: 160px;
}
.dashboard_content td:nth-child(4),
.dashboard_content td:nth-child(5){
    max-width: 110px;
}
.dashboard_content td:nth-child(8){
    max-width: 90px;
}
.dashboard_content tbody tr{
    border-bottom: 1px solid var(--divider);
}
.dashboard_content tbody tr:nth-child(odd){
    background-color: var(--lite-grey);
}
.dashboard_content tbody td:last-child a{
    display: inline-flex;
}
.dashboard_content tbody td:last-child path{
    transition: var(--transition);
}
.dashboard_content tbody td:last-child a:hover svg path{
    stroke: var(--txt_blue);
}
th:has(.droplist){
    position: relative;
}
.droplist{
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    padding: 20px;
    border-radius: var(--small-radius);
    background-color: var(--lite-grey);
    box-shadow: 0px 4px 44px 0px rgba(29, 29, 29, 0.04), 0px 4px 34px 0px rgba(69, 69, 69, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
th.active .droplist{
    opacity: 1;
    visibility: visible;
}
.droplist ul{
    list-style: none;
    padding: 0 20px;
    margin: 12px 0 0 0;
}
.droplist ul > li:first-child{
    margin: 0 0 12px 0;
}
.droplist ul ul > li:first-child{
    margin: 0;
}
.droplist ul .letter + ul{
    padding: 0;
    margin: 12px 0;
    height: 0;
    transition: .4s ease height;
}
.droplist ul .letter + ul li{
    height: 0;
    overflow: hidden;
}
.droplist ul .letter.active + ul{
    margin: 12px 0;
}
.droplist ul .letter.active + ul li{
    height: auto;
}
label:has(input[type='checkbox']){
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 300;
    line-height: 135%;
    padding: 6px 0px 7px 10px;
    cursor: pointer;
}
label:has(input[type='checkbox']) svg{
    flex: 0 0 auto;
}
label:has(input[type='checkbox']) input{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
label:has(input[type='checkbox']) input + svg path{
    fill: transparent;
    transition: var(--transition);
}
label:has(input[type='checkbox']) input + svg path:first-child{
    stroke: black;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
label:has(input[type='checkbox']):has(input:checked) input + svg path{
    fill: var(--txt_blue);
}
label:has(input[type='checkbox']):has(input:checked) input + svg path:first-child{
    stroke-opacity: 0;
}
.droplist .letter{
    border-bottom: 1px solid;
    padding: 0 0 8px 0;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 600;
}
.droplist .letter:hover,
.droplist .letter.active{
    color: var(--txt_blue);
    border-color: var(--txt_blue);
}
.droplist .for_scroll{
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 253px;
}
.droplist .for_scroll::-webkit-scrollbar{
    width: 4px;
}
.droplist .for_scroll::-webkit-scrollbar-track {
    background: transparent; 
}
.droplist .for_scroll::-webkit-scrollbar-thumb {
    background: var(--dark-grey);
    border-radius: 10px;
}
.droplist .for_scroll::-webkit-scrollbar-thumb:hover {
    background: var(--txt-dark-grey);
}
.droplist .btns{
    display: flex;
    gap: 10px;
    margin: 20px 0 0 0;
}
.droplist .btns button{
    padding: 12px 30px;
    border-radius: var(--small-radius);
    color: var(--txt-black1);
    font-family: Shentox;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    border: none;
    cursor: pointer;
}
.droplist .btns button[type='reset']{
    background-color: var(--bg);
}
.droplist .btns button[type='submit']{
    background-color: var(--green);
}
.pagination{
    margin: 40px 0 0 0;
}
.pagination a{
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: var(--bg-black);
    border-radius: var(--small-radius);
    transition: var(--transition);
}
.pagination a.active{
    background-color: var(--green);
}
.pagination a:hover{
    background-color: var(--lite-green);
}
/* PROFILE */
.profile_row{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.profile_col{
    border-radius: var(--small-radius);
    border: 1px solid var(--divider);
    background-color: var(--lite-grey);
    max-width: 562px;
    width: 100%;
}
.profile_col ul{
    list-style: none;
}
.profile_col ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 14px 0;
    font-size: 17px;
    line-height: 135%;
    color: var(--bg-black);
    margin: 0 20px;
    position: relative;
}
.profile_col ul li::after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--divider);
}
.profile_col ul li:first-child{
    padding: 0 0 14px 0;
    margin: 20px 20px 0 20px;
}
.profile_col ul li:last-child{
    padding: 12px 0 0 0;
    margin: 0 20px 26px 20px;
}
.profile_col ul li:last-child::after{
    display: none;
}
.profile_col:last-child li:last-child{
    margin: 20px 0 0 0;
    padding: 9px 20px 14px 20px;
    background-color: var(--white);
    gap: 10px;
        border-radius: 0 0 4px 4px;
}
.profile_col:last-child li:nth-child(4)::after{
    display: none;
}
.profile_col:last-child li:nth-child(4){
    padding: 12px 0 0 0;
}
.profile_col ul li div{
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.profile_col ul li svg{
    flex: 0 0 auto;
}
.profile_col ul li p{
    font-weight: 300;
    text-align: right;
    word-wrap: break-word;
    max-width: 50%;
}
.profile_col li:has(.switch){
    font-size: 24px;
    justify-content: flex-start;
    gap: 20px;
    font-weight: 600;
}
.profile_col li:has(.switch) .switch{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.profile_col li:has(.switch) .switch span{
    transition: var(--transition);
}
.profile_col li:has(.switch) .switch .switch_track{
    height: 24px;
    width: 50px;
    border-radius: var(--radius-big);
    background-color: var(--divider);
    position: relative;
}
.profile_col li:has(.switch) .switch .switch_track::before{
    position: absolute;
    content: '';
    inset: 1px;
    background-color: var(--red);
    border-radius: 50%;
    width: 22px;
    transform: translate(0,0);
    left: calc(0% + 2px);
    transition: var(--transition);
}
.profile_col li:has(.switch) .switch span:last-child{
    color: var(--dark-grey);
}
.profile_col li:has(.switch) .switch:has(input:checked) span:first-child{
    color: var(--dark-grey);
}
.profile_col li:has(.switch) .switch:has(input:checked) span:last-child{
    color: var(--bg-black);
}
.profile_col li:has(.switch) .switch:has(input:checked) .switch_track::before{
    background-color: #00E76A;
    left: calc(50% + 2px);
}
/* CONTACTS */
.contacts .section_top{
    align-items: flex-start;
}
.contacts_row{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}
.contact_item p{
    font-size: 17px;
    line-height: 110%;
    margin: 0 0 12px 0;
    color: var(--bg-black);
    font-weight: 400;
}
.contact_item a,
.contact_item div{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 30px;
    line-height: 135%;
    font-weight: 700;
    color: var(--bg-black);
    text-decoration: none;
}
/* FAQ */
html::-webkit-scrollbar {
    display: none;
}
html{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}
.faq .section_top .section_desc,
.contacts .section_top .section_desc{
    margin: 20px 0 40px 0;
}
.empty .section_top,
.faq .section_top{
    align-items: flex-start;
}
.empty .section_top .section_title,
.faq .section_top .section_title{
    flex: 0 0 auto;
}
body main.faq{
    padding-bottom: 90px;
}
.faq .section_top{
    align-items: flex-start;
}
.faq_block{
    background-color: var(--lite-grey);
    padding: 40px;
    max-width: 75%;
    margin: 0 0 10px 0;
}
.faq_block:last-child{
    margin: 0;
}
.faq_title{
    font-size: 50px;
    line-height: 110%;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.faq_item{
    padding: 12px 10px 14px 10px;
    font-size: 17px;
    line-height: 135%;
    font-weight: 300;
    color: var(--bg-black);
    border-bottom: 1px solid var(--dark-grey);
    transition: var(--transition);
}
.faq_item.open{
    border-color: var(--txt_blue);
}
.faq_item .faq_top{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    font-weight: 700;
    cursor: pointer;
}
.faq_item .faq_top svg,
.faq_item .faq_top svg path{
    transition: var(--transition);
}
.faq_item.open .faq_top svg{
    transform: rotateX(180deg);
    flex: 0 0 auto;
}
.faq_item.open .faq_top svg path{
    stroke: var(--txt_blue);
}
.faq_item .faq_body{
    margin: 0 24px 0 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}
.faq_item .faq_body :first-child{
    margin-top: 20px;
}
.faq_item .faq_body img{
    margin: 20px 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.faq_item .faq_body img:first-child{
    margin-top: 0;
}
.faq_item .faq_body img:last-child{
    margin-bottom: 0;
}
/* ERROR */
.error_page{
    min-height: 100svh;
    background-image: url(../images/error_bg.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.error_page::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(14,19,16,1) 0%, rgba(14,19,16,0) 100%);
    z-index: -1;
}
.error_block{
    padding: 90px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.error_block *{
    max-width: 614px;
}
.error_block h1{
    font-size: 80px;
    line-height: 110%;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lite-grey);
    margin: 0 0 20px 0;
}
.error_block .section_desc{
    color: var(--lite-grey);
    margin: 0 0 10px 0;
}
/* ADD LEAGUES */
.leagues_row{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 11px;
}
.league_block{
    width: calc(33.33% - 7.3px);
    padding: 20px;
    border-radius: var(--small-radius);
    background-color: var(--lite-grey);
}


.league_block .country{
    padding: 12px 0px;
    border-bottom: 1px solid var(--divider);
}
.league_block .country:first-child{
    padding-top: 0;
}
.league_block .letter{
    font-size: 30px;
    line-height: 135%;
    font-weight: 600;
    color: var(--txt_blue);
    border-bottom: 1px solid var(--txt_blue);
    padding: 0 0 6px 0;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}
.league_block .country_top{
    padding: 6px 10px 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    line-height: 135%;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}
.league_block .country.open .country_top,
.league_block .country_top:hover{
    background-color: var(--lite-green);
}
.league_block .country_top div{
    display: flex;
    align-items: center;
    gap: 10px;
}
.league_block .country_title{
    color: var(--bg-black);
}
.league_block .leagues_count{
    color: var(--dark-grey);
    transition: var(--transition);
}
.league_block .country.open .leagues_count,
.league_block .country_top:hover .leagues_count{
    color: var(--txt_blue);
}
.league_block .country.open .leagues_count + svg{
    transform: rotateX(180deg);
}
.league_block .leagues_count + svg,
.league_block .leagues_count + svg path{
    transition: var(--transition);
}
.league_block .country.open .leagues_count + svg path,
.league_block .country_top:hover .leagues_count + svg path{
    stroke: var(--txt_blue);
}

/* ---------- FLAGS ---------- */
@media only screen and (min-width: 0px){
    .flag{
        position: relative;
        width: 28px;
        height: 20px;
    }
    .flag::before{
        content: '';
        position: absolute;
        inset: 0px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .flag-AD::before{
        background-image: url(../images/flags/AD.svg);
    }
    .flag-AE::before{
        background-image: url(../images/flags/AE.svg);
    }
    .flag-AF::before{
        background-image: url(../images/flags/AF.svg);
    }
    .flag-AL::before{
        background-image: url(../images/flags/AL.svg);
    }
    .flag-AM::before{
        background-image: url(../images/flags/AM.svg);
    }
    .flag-AO::before{
        background-image: url(../images/flags/AO.svg);
    }
    .flag-AR::before{
        background-image: url(../images/flags/AR.svg);
    }
    .flag-AT::before{
        background-image: url(../images/flags/AT.svg);
    }
    .flag-AU::before{
        background-image: url(../images/flags/AU.svg);
    }
    .flag-AW::before{
        background-image: url(../images/flags/AW.svg);
    }
    .flag-AX::before{
        background-image: url(../images/flags/AX.svg);
    }
    .flag-AZ::before{
        background-image: url(../images/flags/AZ.svg);
    }
    .flag-AG::before{
        background-image: url(../images/flags/AG.svg);
    }
    .flag-AN::before{
        background-image: url(../images/flags/AN.svg);
    }
    .flag-AI::before{
        background-image: url(../images/flags/AI.svg);
    }
    .flag-BA::before{
        background-image: url(../images/flags/BA.svg);
    }
    .flag-BB::before{
        background-image: url(../images/flags/BB.svg);
    }
    .flag-BD::before{
        background-image: url(../images/flags/BD.svg);
    }
    .flag-BE::before{
        background-image: url(../images/flags/BE.svg);
    }
    .flag-BF::before{
        background-image: url(../images/flags/BF.svg);
    }
    .flag-BG::before{
        background-image: url(../images/flags/BG.svg);
    }
    .flag-BH::before{
        background-image: url(../images/flags/BH.svg);
    }
    .flag-BI::before{
        background-image: url(../images/flags/BI.svg);
    }
    .flag-BO::before{
        background-image: url(../images/flags/BO.svg);
    }
    .flag-BS::before{
        background-image: url(../images/flags/BS.svg);
    }
    .flag-BT::before{
        background-image: url(../images/flags/BT.png);
    }
    .flag-BW::before{
        background-image: url(../images/flags/BW.svg);
    }
    .flag-BY::before{
        background-image: url(../images/flags/BY.svg);
    }
    .flag-BZ::before{
        background-image: url(../images/flags/BZ.svg);
    }
    .flag-BR::before{
        background-image: url(../images/flags/BR.svg);
    }
    .flag-BM::before{
        background-image: url(../images/flags/BM.svg);
    }
    .flag-BJ::before{
        background-image: url(../images/flags/BJ.svg);
    }
    .flag-CA::before{
        background-image: url(../images/flags/CA.svg);
    }
    .flag-CAF::before{
        background-image: url(../images/flags/CAF.svg);
    }
    .flag-CAS::before{
        background-image: url(../images/flags/CAS.svg);
    }
    .flag-CD::before{
        background-image: url(../images/flags/CD.svg);
    }
    .flag-CEU::before{
        background-image: url(../images/flags/CEU.svg);
    }
    .flag-CF::before{
        background-image: url(../images/flags/CF.svg);
    }
    .flag-CG::before{
        background-image: url(../images/flags/CG.svg);
    }
    .flag-CH::before{
        background-image: url(../images/flags/CH.svg);
    }
    .flag-CI::before{
        background-image: url(../images/flags/CI.svg);
    }
    .flag-CL::before{
        background-image: url(../images/flags/CL.svg);
    }
    .flag-CM::before{
        background-image: url(../images/flags/CM.svg);
    }
    .flag-CN::before{
        background-image: url(../images/flags/CN.svg);
    }
    .flag-CNA::before{
        background-image: url(../images/flags/CNA.svg);
    }
    .flag-CO::before{
        background-image: url(../images/flags/CO.svg);
    }
    .flag-COC::before{
        background-image: url(../images/flags/COC.svg);
    }
    .flag-CR::before{
        background-image: url(../images/flags/CR.svg);
    }
    .flag-CSA::before{
        background-image: url(../images/flags/CSA.svg);
    }
    .flag-CU::before{
        background-image: url(../images/flags/CU.svg);
    }
    .flag-CV::before{
        background-image: url(../images/flags/CV.svg);
    }
    .flag-CY::before{
        background-image: url(../images/flags/CV.svg);
    }
    .flag-CZ::before{
        background-image: url(../images/flags/CZ.svg);
    }
    .flag-DE::before{
        background-image: url(../images/flags/DE.svg);
    }
    .flag-DJ::before{
        background-image: url(../images/flags/DJ.svg);
    }
    .flag-DK::before{
        background-image: url(../images/flags/DK.svg);
    }
    .flag-DM::before{
        background-image: url(../images/flags/DM.svg);
    }
    .flag-DO::before{
        background-image: url(../images/flags/DO.svg);
    }
    .flag-DZ::before{
        background-image: url(../images/flags/DZ.svg);
    }
    .flag-EC::before{
        background-image: url(../images/flags/EC.svg);
    }
    .flag-EE::before{
        background-image: url(../images/flags/EE.svg);
    }
    .flag-EG::before{
        background-image: url(../images/flags/EG.svg);
    }
    .flag-ER::before{
        background-image: url(../images/flags/ER.svg);
    }
    .flag-ES::before{
        background-image: url(../images/flags/ES.svg);
    }
    .flag-ET::before{
        background-image: url(../images/flags/ET.svg);
    }
    .flag-EU::before{
        background-image: url(../images/flags/EU.svg);
    }
    .flag-FI::before{
        background-image: url(../images/flags/FI.svg);
    }
    .flag-FM::before{
        background-image: url(../images/flags/FM.svg);
    }
    .flag-FR::before{
        background-image: url(../images/flags/FR.svg);
    }
    .flag-GA::before{
        background-image: url(../images/flags/GA.svg);
    }
    .flag-GB::before{
        background-image: url(../images/flags/GB.svg);
    }
    .flag-GE::before{
        background-image: url(../images/flags/GE.svg);
    }
    .flag-GH::before{
        background-image: url(../images/flags/GH.svg);
    }
    .flag-GI::before{
        background-image: url(../images/flags/GI.svg);
    }
    .flag-GM::before{
        background-image: url(../images/flags/GM.svg);
    }
    .flag-GN::before{
        background-image: url(../images/flags/GN.svg);
    }
    .flag-GQ::before{
        background-image: url(../images/flags/GQ.svg);
    }
    .flag-GR::before{
        background-image: url(../images/flags/GR.svg);
    }
    .flag-GT::before{
        background-image: url(../images/flags/GT.svg);
    }
    .flag-GW::before{
        background-image: url(../images/flags/GW.svg);
    }
    .flag-GY::before{
        background-image: url(../images/flags/GY.svg);
    }
    .flag-GD::before{
        background-image: url(../images/flags/GD.svg);
    }
    .flag-GG::before{
        background-image: url(../images/flags/GG.svg);
    }
    .flag-HK::before{
        background-image: url(../images/flags/HK.svg);
    }
    .flag-HN::before{
        background-image: url(../images/flags/HN.svg);
    }
    .flag-HR::before{
        background-image: url(../images/flags/HR.svg);
    }
    .flag-HU::before{
        background-image: url(../images/flags/HU.svg);
    }
    .flag-ID::before{
        background-image: url(../images/flags/ID.svg);
    }
    .flag-IE::before{
        background-image: url(../images/flags/IE.svg);
    }
    .flag-IN::before{
        background-image: url(../images/flags/IN.svg);
    }
    .flag-IQ::before{
        background-image: url(../images/flags/IQ.svg);
    }
    .flag-IR::before{
        background-image: url(../images/flags/IR.svg);
    }
    .flag-IS::before{
        background-image: url(../images/flags/IS.svg);
    }
    .flag-IT::before{
        background-image: url(../images/flags/IT.svg);
    }
    .flag-JM::before{
        background-image: url(../images/flags/JM.svg);
    }
    .flag-JO::before{
        background-image: url(../images/flags/JO.svg);
    }
    .flag-JP::before{
        background-image: url(../images/flags/JP.svg);
    }
    .flag-KG::before{
        background-image: url(../images/flags/KG.svg);
    }
    .flag-KH::before{
        background-image: url(../images/flags/KH.svg);
    }
    .flag-KM::before{
        background-image: url(../images/flags/KM.svg);
    }
    .flag-KN::before{
        background-image: url(../images/flags/KN.svg);
    }
    .flag-KP::before{
        background-image: url(../images/flags/KP.svg);
    }
    .flag-KW::before{
        background-image: url(../images/flags/KW.svg);
    }
    .flag-KZ::before{
        background-image: url(../images/flags/KZ.svg);
    }
    .flag-LA::before{
        background-image: url(../images/flags/LA.svg);
    }
    .flag-LB::before{
        background-image: url(../images/flags/LB.svg);
    }
    .flag-LC::before{
        background-image: url(../images/flags/LC.svg);
    }
    .flag-LI::before{
        background-image: url(../images/flags/LI.svg);
    }
    .flag-LK::before{
        background-image: url(../images/flags/LK.svg);
    }
    .flag-LR::before{
        background-image: url(../images/flags/LR.svg);
    }
    .flag-LS::before{
        background-image: url(../images/flags/LS.svg);
    }
    .flag-LT::before{
        background-image: url(../images/flags/LT.svg);
    }
    .flag-LU::before{
        background-image: url(../images/flags/LU.svg);
    }
    .flag-LV::before{
        background-image: url(../images/flags/LV.svg);
    }
    .flag-LY::before{
        background-image: url(../images/flags/LY.svg);
    }
    .flag-MA::before{
        background-image: url(../images/flags/MA.svg);
    }
    .flag-MC::before{
        background-image: url(../images/flags/MC.svg);
    }
    .flag-MD::before{
        background-image: url(../images/flags/MD.svg);
    }
    .flag-ME::before{
        background-image: url(../images/flags/ME.svg);
    }
    .flag-MG::before{
        background-image: url(../images/flags/MG.svg);
    }
    .flag-MK::before{
        background-image: url(../images/flags/MK.svg);
    }
    .flag-ML::before{
        background-image: url(../images/flags/ML.svg);
    }
    .flag-MN::before{
        background-image: url(../images/flags/MN.svg);
    }
    .flag-MM::before{
        background-image: url(../images/flags/MM.svg);
    }
    .flag-MR::before{
        background-image: url(../images/flags/MR.svg);
    }
    .flag-MT::before{
        background-image: url(../images/flags/MT.svg);
    }
    .flag-MU::before{
        background-image: url(../images/flags/MU.svg);
    }
    .flag-MV::before{
        background-image: url(../images/flags/MV.svg);
    }
    .flag-MW::before{
        background-image: url(../images/flags/MW.svg);
    }
    .flag-MX::before{
        background-image: url(../images/flags/MX.svg);
    }
    .flag-MY::before{
        background-image: url(../images/flags/MY.svg);
    }
    .flag-MZ::before{
        background-image: url(../images/flags/MZ.svg);
    }
    .flag-NA::before{
        background-image: url(../images/flags/NA.svg);
    }
    .flag-NE::before{
        background-image: url(../images/flags/NE.svg);
    }
    .flag-NG::before{
        background-image: url(../images/flags/NG.svg);
    }
    .flag-NI::before{
        background-image: url(../images/flags/NI.svg);
    }
    .flag-NL::before{
        background-image: url(../images/flags/NL.svg);
    }
    .flag-NO::before{
        background-image: url(../images/flags/NO.svg);
    }
    .flag-NZ::before{
        background-image: url(../images/flags/NZ.svg);
    }
    .flag-OM::before{
        background-image: url(../images/flags/OM.svg);
    }
    .flag-PA::before{
        background-image: url(../images/flags/PA.svg);
    }
    .flag-PE::before{
        background-image: url(../images/flags/PE.svg);
    }
    .flag-PG::before{
        background-image: url(../images/flags/PG.svg);
    }
    .flag-PH::before{
        background-image: url(../images/flags/PH.svg);
    }
    .flag-PL::before{
        background-image: url(../images/flags/PL.svg);
    }
    .flag-PR::before{
        background-image: url(../images/flags/PR.svg);
    }
    .flag-PT::before{
        background-image: url(../images/flags/PT.svg);
    }
    .flag-PW::before{
        background-image: url(../images/flags/PW.svg);
    }
    .flag-PY::before{
        background-image: url(../images/flags/PY.svg);
    }
    .flag-QA::before{
        background-image: url(../images/flags/QA.svg);
    }
    .flag-RO::before{
        background-image: url(../images/flags/RO.svg);
    }
    .flag-RU::before{
        background-image: url(../images/flags/RU.svg);
    }
    .flag-RW::before{
        background-image: url(../images/flags/RW.svg);
    }
    .flag-SA::before{
        background-image: url(../images/flags/SA.svg);
    }
    .flag-SB::before{
        background-image: url(../images/flags/SB.svg);
    }
    .flag-SC::before{
        background-image: url(../images/flags/SC.svg);
    }
    .flag-SD::before{
        background-image: url(../images/flags/SD.svg);
    }
    .flag-SE::before{
        background-image: url(../images/flags/SE.svg);
    }
    .flag-SG::before{
        background-image: url(../images/flags/SG.svg);
    }
    .flag-SI::before{
        background-image: url(../images/flags/SI.svg);
    }
    .flag-SL::before{
        background-image: url(../images/flags/SL.svg);
    }
    .flag-SM::before{
        background-image: url(../images/flags/SM.svg);
    }
    .flag-SN::before{
        background-image: url(../images/flags/SN.svg);
    }
    .flag-SO::before{
        background-image: url(../images/flags/SO.svg);
    }
    .flag-SR::before{
        background-image: url(../images/flags/SR.svg);
    }
    .flag-ST::before{
        background-image: url(../images/flags/ST.svg);
    }
    .flag-SV::before{
        background-image: url(../images/flags/SV.svg);
    }
    .flag-SY::before{
        background-image: url(../images/flags/SY.svg);
    }
    .flag-TD::before{
        background-image: url(../images/flags/TD.svg);
    }
    .flag-TG::before{
        background-image: url(../images/flags/TG.svg);
    }
    .flag-TH::before{
        background-image: url(../images/flags/TH.svg);
    }
    .flag-TJ::before{
        background-image: url(../images/flags/TJ.svg);
    }
    .flag-TL::before{
        background-image: url(../images/flags/TL.svg);
    }
    .flag-TN::before{
        background-image: url(../images/flags/TN.svg);
    }
    .flag-TO::before{
        background-image: url(../images/flags/TO.svg);
    }
    .flag-TR::before{
        background-image: url(../images/flags/TR.svg);
    }
    .flag-TT::before{
        background-image: url(../images/flags/TT.svg);
    }
    .flag-TW::before{
        background-image: url(../images/flags/TW.svg);
    }
    .flag-TZ::before{
        background-image: url(../images/flags/TZ.svg);
    }
    .flag-UA::before{
        background-image: url(../images/flags/UA.svg);
    }
    .flag-UG::before{
        background-image: url(../images/flags/UG.svg);
    }
    .flag-US::before{
        background-image: url(../images/flags/US.svg);
    }
    .flag-UY::before{
        background-image: url(../images/flags/UY.svg);
    }
    .flag-UZ::before{
        background-image: url(../images/flags/UZ.svg);
    }
    .flag-VC::before{
        background-image: url(../images/flags/VC.svg);
    }
    .flag-VE::before{
        background-image: url(../images/flags/VE.svg);
    }
    .flag-VN::before{
        background-image: url(../images/flags/VN.svg);
    }
    .flag-VU::before{
        background-image: url(../images/flags/VU.svg);
    }
    .flag-WS::before{
        background-image: url(../images/flags/WS.svg);
    }
    .flag-International::before{
        background-image: url(../images/flags/International.svg);
    }
    .flag-YE::before{
        background-image: url(../images/flags/YE.svg);
    }
    .flag-ZA::before{
        background-image: url(../images/flags/ZA.svg);
    }
    .flag-ZW::before{
        background-image: url(../images/flags/ZW.svg);
    }
    .flag-HT::before{
        background-image: url(../images/flags/HT.svg);
    }
    .flag-IL::before{
        background-image: url(../images/flags/IL.svg);
    }
    .flag-IM::before{
        background-image: url(../images/flags/IM.png);
    }
    .flag-KE::before{
        background-image: url(../images/flags/KE.svg);
    }
    .flag-KR::before{
        background-image: url(../images/flags/KR.svg);
    }
    .flag-KY::before{
        background-image: url(../images/flags/KY.svg);
    }
    .flag-MO::before{
        background-image: url(../images/flags/MO.svg);
    }
    .flag-MS::before{
        background-image: url(../images/flags/MS.svg);
    }
    .flag-NP::before{
        background-image: url(../images/flags/NP.svg);
    }
    .flag-PK::before{
        background-image: url(../images/flags/PK.svg);
    }
    .flag-PF::before{
        background-image: url(../images/flags/PF.svg);
    }
    .flag-RS::before{
        background-image: url(../images/flags/RS.svg);
    }
    .flag-SZ::before{
        background-image: url(../images/flags/SZ.svg);
    }
    .flag-SK::before{
        background-image: url(../images/flags/SK.svg);
    }
    .flag-SH::before{
        background-image: url(../images/flags/SH.png);
    }
    .flag-TC::before{
        background-image: url(../images/flags/TC.png);
    }
    .flag-TM::before{
        background-image: url(../images/flags/TM.svg);
    }
    .flag-VG::before{
        background-image: url(../images/flags/VG.svg);
    }
    .flag-ZM::before{
        background-image: url(../images/flags/ZM.png);
    }
	.flag-FK::before{
        background-image: url(../images/flags/FK.png);
    }
	.flag-AQ::before{
        background-image: url(../images/flags/AQ.png);
    }
    .flag-AS::before{
        background-image: url(../images/flags/AS.png);
    }
    .flag-BL::before{
        background-image: url(../images/flags/BL.png);
    }
    .flag-BQ::before{
        background-image: url(../images/flags/BQ.svg);
    }
    .flag-BV::before{
        background-image: url(../images/flags/BV.svg);
    }
    .flag-CC::before{
        background-image: url(../images/flags/CC.svg);
    }
    .flag-CK::before{
        background-image: url(../images/flags/CK.svg);
    }
    .flag-CW::before{
        background-image: url(../images/flags/CW.svg);
    }
    .flag-CX::before{
        background-image: url(../images/flags/CX.svg);
    }
    .flag-EH::before{
        background-image: url(../images/flags/EH.svg);
    }
    .flag-FO::before{
        background-image: url(../images/flags/FO.svg);
    }
    .flag-GF::before{
        background-image: url(../images/flags/GF.svg);
    }
    .flag-GP::before{
        background-image: url(../images/flags/GP.png);
    }
    .flag-GS::before{
        background-image: url(../images/flags/GS.png);
    }
    .flag-GU::before{
        background-image: url(../images/flags/GU.png);
    }
    .flag-HM::before{
        background-image: url(../images/flags/HM.svg);
    }
    .flag-IO::before{
        background-image: url(../images/flags/IO.png);
    }
    .flag-JE::before{
        background-image: url(../images/flags/JE.png);
    }
    .flag-KI::before{
        background-image: url(../images/flags/KI.png);
    }
    .flag-MF::before{
        background-image: url(../images/flags/MF.svg);
    }
    .flag-MH::before{
        background-image: url(../images/flags/MH.svg);
    }
    .flag-MP::before{
        background-image: url(../images/flags/MP.png);
    }
    .flag-MQ::before{
        background-image: url(../images/flags/MQ.svg);
    }
    .flag-NC::before{
        background-image: url(../images/flags/NC.svg);
    }
    .flag-NF::before{
        background-image: url(../images/flags/NF.png);
    }
    .flag-NR::before{
        background-image: url(../images/flags/NR.svg);
    }
    .flag-NU::before{
        background-image: url(../images/flags/NU.svg);
    }
    .flag-PM::before{
        background-image: url(../images/flags/PM.png);
    }
    .flag-PN::before{
        background-image: url(../images/flags/PN.png);
    }
    .flag-PS::before{
        background-image: url(../images/flags/PS.svg);
    }
    .flag-RE::before{
        background-image: url(../images/flags/RE.svg);
    }
    .flag-SJ::before{
        background-image: url(../images/flags/SJ.svg);
    }
    .flag-SS::before{
        background-image: url(../images/flags/SS.svg);
    }
    .flag-SX::before{
        background-image: url(../images/flags/SX.png);
    }
    .flag-TF::before{
        background-image: url(../images/flags/TF.svg);
    }
    .flag-TK::before{
        background-image: url(../images/flags/TK.svg);
    }
    .flag-TV::before{
        background-image: url(../images/flags/TV.svg);
    }
    .flag-UM::before{
        background-image: url(../images/flags/UM.png);
    }
    .flag-VA::before{
        background-image: url(../images/flags/VA.png);
    }
    .flag-VI::before{
        background-image: url(../images/flags/VI.png);
    }
    .flag-WF::before{
        background-image: url(../images/flags/WF.svg);
    }
    .flag-YT::before{
        background-image: url(../images/flags/YT.png);
    }
	.flag-FJ::before{
        background-image: url(../images/flags/FJ.svg);
    }
	
}

.leagues_list{
    list-style: none;
    margin: 4px 0 0 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}
.leagues_list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    line-height: 135%;
    font-weight: 400;
    color: var(--bg-black);
    padding: 6px 2px 6px 50px;
    transition: var(--transition);
}
.leagues_list li:hover{
    background-color: var(--lite-green);
}
.leagues_list li a{
    color: var(--bg-black);
    text-decoration: none;
}
.leagues_list .league_actions{
    position: relative;
    display: flex;
    gap: 0 4px;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 0;
    width: min-content;
}
.leagues_list .league_actions:has(.open_settings){
    flex-wrap: nowrap;
}
.leagues_list .league_actions svg,
.leagues_list .league_actions svg path{
    transition: var(--transition);
    cursor: pointer;
}
.leagues_list .league_actions .add_done{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.leagues_list .league_actions .league_add path{
    fill: #0E1310;
    stroke: none;
}
.leagues_list .league_actions .league_add:hover path{
    fill: var(--txt_blue);
}
.leagues_list .league_actions .open_settings:hover path{
    fill: var(--txt_blue);
}
.leagues_list .league_actions .delete_league{
    display: flex;
}
.leagues_list .league_actions .delete_league:hover path{
    fill: var(--red);
}
.leagues_list .league_actions span{
    width: 100%;
    font-size: 14px;
    color: var(--txt-grey);
    text-align: right;
    display: none;
}


.open .leagues_list{
    height: auto;
}
.leagues_list .added .league_actions span{
    display: inline;
    width: min-content;
}
.leagues_list .added .league_actions .add_done{
    opacity: 1;
    visibility: visible;
    position: unset;
}
.leagues_list .added .league_actions .league_add{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.delete_modal{
    padding: 24px;
    border-radius: var(--small-radius);
    background: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(29, 29, 29, 0.04), 0px 4px 34px 0px rgba(69, 69, 69, 0.04);
    max-width: 448px;
    width: 100%;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: .3s opacity ease;
    left: 50%;
    top: 50%;
    z-index: 2;
}
.delete_modal.open{
    opacity: 1;
    visibility: visible;
}
.delete_modal p{
    font-size: 17px;
    line-height: 135%;
    font-weight: 600;
    color: var(--bg-black);
    margin: 0 0 20px 0;
}
.btns_group{
    display: flex;
    gap: 10px;
}

.edit_form{
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 55%;
    left: 50%;
    height: calc(100svh - 20%);
    transform: translate(-50%,-50%);
    border-radius: var(--small-radius);
    background-color: var(--white);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px;
    z-index: 2;
    transition: 0s opacity ease;
}
.edit_form.active{
    visibility: visible;
    opacity: 1;
}
.edit_form .close_modal{
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}
.edit_form h3{
    font-size: 30px;
    line-height: 135%;
    font-weight: 700;
    color: var(--bg-black);
    text-align: left;
}
.edit_form h3 span{
    color: var(--txt_blue);
}
.edit_form .modal_title{
    margin: 0 0 20px 0;
}
.edit_form .edit_row{
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.edit_form .edit_left{
    max-width: 466px;
    width: 100%;
}
.edit_form .edit_right{
    max-width: calc(100% - 476px);
    width: 100%;
}
.edit_form .inputs_block{
    padding: 20px;border-radius: var(--small-radius);
    background-color: var(--lite-grey);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    transition: var(--transition);
}
.edit_form .inputs_block + .inputs_block{
    margin: 10px 0 0 0;
}
.edit_form .inputs_block:has(.markets-container input.error){
    border: 1px solid var(--red);
}
.edit_form .inputs_block h3{
    margin: 0 0 20px 0;
}
.edit_form .inputs_block h4,
.edit_form .delete_label{
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 135%;
    font-weight: 600;
}
.edit_form .delete_label{
    display: none;
}
.edit_form .delete_label.active{
    display: block;
    margin: 40px 0 0 0;
}
.inputs_row{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.edit_form .radios_block{
    display: flex;
    align-items: center;
    gap: 10px;
}
.total_values .input:nth-child(1),
.total_values .input:nth-child(2){
    width: calc(50% - 5px);
}
.total_values .input:nth-child(3),
.total_values .input:nth-child(4){
    width: calc(25% - 7.5px);
}
.total_values .input:nth-child(5){
    width: calc(50% - 5px);
}
.scan .input{
    width: calc(25% - 7.5px);
}
.input input::-webkit-outer-spin-button,
.input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input input[type=number] {
  -moz-appearance: textfield;
}
.inputs_block > div{
    width: 100%;
}
.edit_form .markets-container{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 20px;
}
.edit_form .markets-container label{
    width: calc(33.33% - 13.4px);
    padding: 6px 0px 7px 0px;
    align-items: flex-start;
}
.input textarea{
    resize: none;
    width: 100%;
    height: 120px;
}
.edit_form .btns_group{
    margin: 40px 0 0 0;
}
.delete_label.active ~ .btns_group{
    margin: 20px 0 0 0;
}
.edit_form .btn_{
    border: none;
	font-family: Shentox;
}
.edit_form .btn_cancel:hover{
    background-color: var(--red);
    color: var(--white);
}
.edit_form .events{
    opacity: 0;
    transition: .3s opacity ease;
    display: none;
}
.edit_form .events.active{
    opacity: 1;
}
.edit_form .messages{
    margin: 10px 0 0 0;
}
.edit_form .messages div{
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    line-height: 135%;
    font-weight: 400;
}
.edit_form .messages .active{
    display: flex;
}
.edit_form .messages .m-succes{
    color: var(--txt_blue);
}
.edit_form .messages .m-error{
    color: var(--red);
}
.edit_right .btns_group,
.edit_right .messages{
    display: none;
}
.air-datepicker{
    border-radius: var(--small-radius);
    background: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(29, 29, 29, 0.04), 0px 4px 34px 0px rgba(69, 69, 69, 0.04);
    padding: 24px;
    border: none;
    width: 352px;
}
.air-datepicker-body--day-name{
    font-size: 14px;
    text-transform: lowercase;
    display: block;
    color: var(--dark-grey);
    font-family: Shentox;
}
.air-datepicker-nav{
    gap: 12px;
    justify-content: flex-start;
    border: none;
}
.air-datepicker-nav--title{
    font-family: Poppins;
    font-size: 17px;
    line-height: normal;
    font-weight: 500;
    color: var(--bg-black);
}
.air-datepicker-nav--title:hover {
    background: transparent;
}
.air-datepicker-button:first-child{
    display: inline-block;
    font-size: 17px;
    line-height: 135%;
    color: var(--txt-black1);
    border-radius: var(--small-radius);
    background-color: var(--bg);
    text-decoration: none;
    padding: 12px 30px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}
.air-datepicker-button:last-child{
    position: absolute;
    top: 28px;
    right: 30px;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    color: var(--dark-grey);
}
.air-datepicker-button:last-child:hover{
    background-color: transparent;
}
.air-datepicker-cell{
    font-family: Shentox;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: var(--bg-black);
    border-radius: var(--small-radius);
}
.air-datepicker-cell.-focus-{
    background: var(--green);
}
.air-datepicker-cell.-selected-{
    background: var(--green);
}
.air-datepicker-cell.-selected-.-focus-{
    background: var(--green);
}
.air-datepicker-cell.-in-range-{
    background: var(--lite-green);
}
.air-datepicker--buttons{
    border: none;
    margin: 12px 0 0 0;
}
.air-datepicker-buttons {
    display: flex;
    gap: 10px;
}
.air-datepicker-button{
    height: auto;
}
i.air-datepicker--pointer::after{
    display: none;
}
/* ADMIN PANEL */
body:has(.admin){
    background-color: var(--white);
}
.admin_row{
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.admin_row + .admin_row{
    margin: 12px 0 0 0;
}
.admin_row .left_block,
.admin_row .right_block{
    padding: 24px;
    border-radius: var(--small-radius);
    background-color: var(--lite-grey);
    border: 1px solid transparent;
    max-width: 458px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}
.admin_row .left_block:has(input:focus),
.admin_row .right_block:has(input:focus){
    border-color: var(--txt_blue);
}
.admin_row .block_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin_row .block_top h2{
    font-size: 30px;
    line-height: 135%;
    font-weight: 700;
}
.admin_row .block_top .block_numer{
    font-size: 17px;
    line-height: 135%;
    font-weight: 700;
    color: var(--dark-grey);
}
.admin_row .block_top .block_numer span{
    color: var(--txt-grey);
}
.admin_row form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.admin .input_date input{
    background-image: url(../images/icons/date_icon_black.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center right 10px;
} 
.admin_row:first-child .left_block .input:nth-child(2)~.input{
    width: calc(50% - 5px);
}
.admin_row:first-child .right_block .input:nth-child(-n+2){
    width: calc(50% - 5px);
}
.admin_row:first-child .right_block .input:nth-last-child(-n+2){
    width: calc(50% - 5px);
}
.admin_row:nth-child(3) .right_block .input:nth-child(2){
    width: calc(68% - 5px);
}
.admin_row:last-child .left_block .input:nth-child(2){
    width: calc(68% - 5px);
}
.admin_row:last-child .right_block .input:nth-child(3){
    width: calc(68% - 5px);
}
.for_messages{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.for_messages div{
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    line-height: 135%;
    font-weight: 400;
}
.for_messages .active {
    display: flex;
}
.for_messages .m-error{
    color: var(--red);
}
.for_messages .m-succes {
    color: var(--txt_blue);
}
.air-datepicker-button:last-child{
    transition: var(--transition);
}
.air-datepicker-button:last-child:hover{
    color: var(--bg-black);
}
@media only screen and (max-width: 1400px){
    .about_slider .slider_image img{
        width: 310px;
        height: auto;
    }
    .about_slider .slider_text1,
    .about_slider .slider_text5,
    .about_slider .slider_text6,
    .about_slider .slider_text2,
    .about_slider .slider_text9,
    .about_slider .slider_text12{
        left: 2%;
    }
    .about_slider .slider_text3 {
        right: 2%;
        top: 27%;
    }
    .about_slider .slider_text4,
    .about_slider .slider_text8,
    .about_slider .slider_text7,
    .about_slider .slider_text10,
    .about_slider .slider_text11 {
        right: 2%;
    }
    .slider_actions{
        gap: 230px;
    }
    .edit_form .edit_right{
        max-width: calc(100% - 460px);
    }
    .edit_form .edit_left{
        max-width: 450px;
    }
}
@media only screen and (max-width: 1200px){
    header:has(.mobile_menu)+*{
        padding-bottom: 60px;
    }
    .header_row:has(.header_right),
    .header_row:has(.header_right) .header_links{
        gap: 30px;
    }
    .header_row:has(.header_right) .header_links a{
        font-size: 15px;
    }
    .about .section_title{
        max-width: 607px;
        font-size: 65px;
    }
    .section_title {
        font-size: 45px;
    }
    .about_slider .slider_text{
        width: 300px;
    }
    .about_slider .slider_text1,
    .about_slider .slider_text5,
    .about_slider .slider_text6,
    .about_slider .slider_text2,
    .about_slider .slider_text9,
    .about_slider .slider_text12 {
        left: -2%;
    }
    .about_slider .slider_text3 {
        right: -2%;
    }
    .about_slider .slider_text4,
    .about_slider .slider_text8,
    .about_slider .slider_text7,
    .about_slider .slider_text10,
    .about_slider .slider_text11 {
        right: -2%;
    }
    .plans_row{
        gap: 0;
        justify-content: space-between;
    }
    .search_input{
        max-width: 310px;
    }
    /* LEAGUES */
    .total_values .input:nth-child(3), .total_values .input:nth-child(4) {
        width: calc(50% - 5px);
    }
    .total_values .input:nth-child(5) {
        width: 100%;
    }
    .scan .input {
        width: calc(50% - 5px);
    }
    .edit_form .markets-container label {
        width: calc(50% - 10px);
    }
    .edit_form .edit_right {
        max-width: calc(100% - 460px);
    }
    .edit_form .edit_left {
        max-width: 450px;
    }
}
@media only screen and (max-width: 992px){
    .header_row{
        justify-content: space-between;
        padding: 18.5px 0px;
    }
    .mobile_header{
        position: fixed;
        top: -100%;
        width: 100%;
        left: 0;
        background-color: #191A1A;
        flex-direction: column;
        gap: 40px;
        padding: 0;
        overflow: hidden;
        transition: .4s all;
        z-index: -1;
    }
    header.active .mobile_header{
        padding: 40px 20px;
        top: 77px;
    }
    .header_middle{
        display: none;
    }
    .mobile_header{
        display: block;
    }
    .hamburger{
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 16.5px 0px;
    }
    .hamburger span{
        width: 25px;
        height: 2px;
        border-radius: 10px;
        background-color: var(--green);
        transition: var(--transition);
    }
    .header_links li a{
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .header_links .btn_{
        color: var(--txt-black1);
    }
    .header_row:has(.header_right) .hamburger span{
        background-color: var(--dark-grey);
    }
    header.active{
        background-color: #191A1A;
    }
    .active .hamburger span:first-child{
        transform: rotate(-45deg) translate(-6px, 0);
        transform-origin: center;
    }
    .active .hamburger span:last-child{
        transform: rotate(45deg) translate(-5px, 0);
        transform-origin: center;
    }
    .header_links{
        flex-direction: column;
    }
    .header_left{
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .header_right .header_item:not(:first-child){
        display: none;
    }
    .mobile_menu{
        display: flex;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 20px 23px 20px;
        background-color: var(--bg-black);
    }
    .mobile_menu .tab{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 4px;
        font-size: 14px;
        line-height: 135%;
        font-weight: 300;
        color: var(--txt-grey);
        text-decoration: none;
        transition: var(--transition);
    }
    .mobile_menu .tab.active,
    .mobile_menu .tab:hover{
        color: var(--green);
    }
    .mobile_menu .tab.active svg path,
    .mobile_menu .tab:hover svg path{
        fill: var(--green);
    }
    body:has(.mobile_menu) footer{
        display: none;
    }
    .section_top{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .dashboard .section_top{
        gap: 10px;
    }
    .about_slider .swiper-slide{
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .about_slider .slider_text{
        position: unset;
        width: 100%;
    }
    .about_slider .slider_text::after{
        display: none;
    }
    .about_slider .slider_image{
        order: -1;
        margin: 0 0 10px 0;
        border: none;
    }
    .slider_actions{
        gap: 0;
        justify-content: space-between;
    }
    .plans_row{
        flex-direction: column;
        gap: 20px;
    }
    .plan_items{
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }
    /* DASHBOARD */
    .section_bg{
        min-height: calc(100lvh - 400px);
    }
    .dashboard_content{
        margin: 0;
    }
    .dashboard:has(.pagination) {
        padding-bottom: 180px;
    }
    .dashboard_tools{
        flex-direction: column;
        align-items: flex-start;
    }
    .search_input{
        max-width: 100%;
    }
    .contacts .section_top .section_desc {
        margin: 0px 0 39px 0;
    }
    /* FAQ */
    .faq_block{
        max-width: 100%;
    }
    body main.faq{
        padding-bottom: 140px;
    }
    /* LEAGUES */
    .league_block{
        padding: 20px 10px;
    }
    .leagues_list li{
        padding: 6px 5px 6px 10px;
    }
    .edit_form .edit_row{
        flex-direction: column;
    }
    .edit_form .edit_left,
    .edit_form .edit_right{
        max-width: 100%;
    }
    .edit_left .btns_group,
    .edit_left .messages{
        display: none;
    }
    .edit_right .btns_group{
        display: flex;
        flex-wrap: wrap;
    }
    .edit_right .btns_group div.btn_cancel:hover{
        background-color: var(--txt_blue);
    }
    .edit_right .messages{
        display: block;
    }
    /* ADMIN PANEL */
    .admin_row:first-child .left_block .input:nth-last-child(-n+2),
    .admin_row:nth-child(3) .right_block .input:nth-child(2),
    .admin_row:last-child .left_block .input:nth-child(2),
    .admin_row:last-child .right_block .input:nth-child(3){
        width: 100% !important;
    }
    
}
@media only screen and (max-width: 768px){
    .about {
        padding: 50px 0 80px 0;
    }
    .section_top .section_title{
        font-size: 50px;
    }
    .plans {
        padding: 70px 0;
    }
    .section_tools{
        flex-direction: column;
        gap: 10px;
    }
    .section_tools .form_desc{
        margin: 10px 0 0 0;
        font-size: 14px;
    }
    .dashboard{
        padding: 40px 0 0 0;
    }
    .dashboard .section_top,
    .section_tools{
        margin: 0 0 20px 0;
    }
    .dashboard_content{
        background-color: var(--white);
        padding: 20px;
    }
    .pagination{
        margin: 20px 0 0 0;
    }
    .dashboard_content .for_table_padding{
        padding: 20px 0 0 0;
    }
    .dashboard_tools{
        padding: 0;
    }
    .dashboard_content tr th, .dashboard_content tr td,
    .search_input input,
    .filter .show_count .current,
    .filter .date_input input,
    .upload_form label,
    .section_tools .link_to_file,
    .pagination a{
        font-size: 15px;
    }
    .dashboard_content td:nth-child(1){
        width: 110px;
    }
    .filter{
        width: 100%;
        justify-content: space-between;
    }
    .droplist{
        position: fixed;
        left: 50%;
        top: calc(50% + 10px);
        transform: translate(-50%,-50%);
    }
    th.active .droplist{
        top: 50%;
        z-index: 2;
    }
    body:has(th.active .droplist){
        overflow: hidden;
        position: relative;
    }
    /* FAQ */
    .faq_block{
        padding: 20px;
    }
    /* LEAGUES */
    .leagues_row{
        gap: 10px;
    }
    .league_block{
        width: calc(50% - 5px);
    }
    .league_block .country_top{
        font-size: 15px;
    }
    .leagues_list li{
        padding: 6px 2px 6px 50px;
        font-size: 15px;
    }
    .edit_form{
        padding: 20px 20px 30px 20px;
        top: 100px;
        left: 0;
        height: calc(100vh - 200px);
        transform: none;
        border-radius: 0;
    }
    .edit_form h3{
        font-size: 24px;
    }
    .edit_form .inputs_block h3 {
        margin: 0 0 12px 0;
    }
    .edit_form .inputs_block{
        gap: 12px;
    }
    .edit_form .markets-container{
        max-height: 263px;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .edit_form .markets-container label {
        width: 100%;
    }
    .edit_right .btns_group{
        margin: 10px 0 0 0;
    }
    .edit_form .close_modal{
        display: none;
    }
    /* ADMIN PANEL */
    .admin_row{
        flex-wrap: wrap;
    }
    .admin_row .left_block, .admin_row .right_block{
        max-width: 100%;
    }
    .admin .section_top{
        margin: 0 0 40px 0;
    }
}
@media only screen and (max-width: 576px){
    header .btn_,
    .about .btn_,
    .buy .btn_{
        width: 100%;
    }
    body:has(.mobile_menu) main{
        padding: 40px 0 140px 0;
    }
    .about {
        padding: 40px 0 60px 0;
    }
    .section_top .section_title {
        font-size: 40px;
    }
    .section_desc {
        font-size: 15px;
    }
    .section_top{
        margin: 0 0 60px 0;
    }
    .leagues .section_top{
        margin: 0 0 20px 0;
    }
    .about_slider .slider_image,
    .about_slider .slider_image img{
        width: 100%;
    }
    .about_slider .slider_text{
        font-size: 15px;
        padding: 24px;
    }
    .section_title {
        font-size: 30px;
    }
    .plans {
        padding: 60px 0;
    }
    .plan_item{
        max-width: none;
        width: 100%;
    }
    .plan_item .plan_title {
        font-size: 24px;
    }
    .plan_item ul li {
        font-size: 15px;
    }
    .plan_item ul li::after{
        top: 3px;
    }
    .plan_item .plan_price span {
        font-size: 40px;
        line-height: 100%;
        padding: 6px 8px;
    }
    .plan_item .plan_price {
        font-size: 24px;
    }
    .buy .buy_bg{
        display: none;
    }
    .buy .buy_bg2{
        display: block;
        position: unset;
        width: 100%;
        height: 100%;
        min-height: 360px;
        object-fit: cover;
    }
    .buy::before{
        width: 100%;
    }
    .buy{
        padding: 0 0 60px 0;
    }
    .buy .section_title{
        margin: 40px 0 20px 0;
    }
    footer a{
        font-size: 15px;
    }
    .footer_row{
        padding: 25px 0 35px 0;
    }
    /* LOGIN */
    .login_form{
        width: 100%;
        padding: 20px;
    }
    .input input,
    .input .for_label{
        font-size: 15px;
    }
    /* DASHBOARD */
    .dashboard{
        padding: 40px 0 0 0;
    }
    .dashboard .section_desc{
        -webkit-line-clamp: 4;
    }
    .section_bg{
        width: 100%;
        min-height: calc(100lvh - 335px);
    }
    .leagues_empty .section_bg{
        min-height: calc(100lvh - 400px);
    }
    .section_bg1{
        display: none;
    }
    .section_bg2{
        display: block;
    }
    .dashboard:has(.dashboard_content) .container{
        padding-left: 0;
        padding-right: 0;
    }
    .dashboard:has(.dashboard_content) .section_top,
    .dashboard:has(.dashboard_content) .section_tools{
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
    .droplist .btns {
        flex-direction: column;
    }
    .droplist .btns button {
        width: 100%;
    }
    .filter .date_input{
        gap: 0;
    }
    .filter .date_input input{
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .air-datepicker-overlay{
        background: linear-gradient(0deg, rgba(25, 26, 26, 0.80) 0%, rgba(25, 26, 26, 0.80) 100%);
    }
    .profile_col ul li{
        font-size: 15px;
        gap: 20px;
    }
    .profile_col ul li div{
        max-width: 50%;
    }
    .contacts_row{
        flex-direction: column;
        align-items: flex-start;
    }
    .contact_item p{
        font-size: 15px;
    }
    /* FAQ */
    .faq .container{
        padding-left: 0;
        padding-right: 0;
    }
    .faq .section_top{
        padding: 0 20px;
    }
    .empty .section_top .btn_,
    .faq .section_top .btn_{
        width: 100%;
    }
    .empty .section_top .section_desc{
        margin: 0;
    }
    .contacts .section_top .section_desc{
        margin: 0 0 40px 0;
    }
    .faq .section_top .section_desc{
        margin: 0 0 20px 0;
    }
    .empty .section_top,
    .profile .section_top{
        margin: 0 0 20px 0;
        gap: 10px;
    }
    .empty.leagues_empty .section_top{
        gap: 20px;
        margin: 0 0 30px 0;
    }
    .empty.leagues_empty .section_top .section_desc {
        margin: 0 0 20px 0;
    }
    .faq_title{
        font-size: 30px;
    }
    .faq_item{
        font-size: 15px;
    }
    /* ERROR */
    .error_page{
        background-image: url(../images/error_bg_mobile.png);
        background-position: center;
    }
    .error_page::before{
        height: 30%;
    }
    .error_block{
        padding: 60px 0 0 0;
    }
    .error_block h1{
        font-size: 40px;
    }
    /* LEAGUES */
    .league_block {
        width: 100%;
        padding: 20px;
    }
    .league_block .letter {
        font-size: 24px;
    }
    .delete_modal{
        width: calc(100% - 40px);
    }
    .delete_modal p{
        font-size: 15px;
    }
    .delete_modal .btn_{
        width: calc(50% - 5px);
    }
    .edit_right .btns_group .btn_green,
    .edit_right .btns_group .btn_cancel{
        width: calc(50% - 5px);
    }
    .edit_right .btns_group .btn_:last-child{
        width: 100%;
    }
    /* DASHBOARD */
    .air-datepicker-buttons{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .air-datepicker-button:first-child,
    .air-datepicker-button:nth-child(2){
        width: 100%;
    }
    .admin_row .left_block, .admin_row .right_block{
        padding: 20px;
    }
    .admin .btns_group,
    .admin .btn_{
        width: 100%;
        flex-wrap: wrap;
    }
    .admin .btn_:first-child{
        width: 100%;
    }
    .admin .btn_:first-child ~ .btn_{
        width: calc(50% - 5px);
    }
}