/*
Theme Name: BYSCOUT
Version: 1.0
Author URI: https://docode.pro
*/

@font-face{
	font-family:'Inter';
	src:url('/wp-content/themes/docode_theme/fonts/Inter-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal
}

@font-face{
	font-family:'Inter';
	src:url('/wp-content/themes/docode_theme/fonts/Inter-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal
}

@font-face{
	font-family:'Inter';
	src:url('/wp-content/themes/docode_theme/fonts/Inter-SemiBold.ttf') format('truetype');
	font-weight:600;
	font-style:normal
}



:root {
	--bl: #000;
	--wh: #fff;
	--l-blue: #9DCEFF;
	--blue: #234572;
--d-blue: #16283E;--m-blue: #0C1929;--red: #FF5A5B;
--tl-grey: #9B9B9B;
}

:focus {
	outline: none;
}

::placeholder{
	color: var(--bl);
}

liss:focus {
	
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: 'Inter';
	font-size: 16px;
}
button, input, select, textarea {
	
}

a {
	transition: .3s;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

[type="date"], [type="password"], [type="text"], [type="tel"], [type="email"], [type="number"], textarea, select {
	border: none;
	height: 30px;
	padding: 7px 10px;
	border-radius: 5px;
	margin-right: 10px;
	flex: 1;
}

textarea {
	
}

[type=button]:not(:disabled), 
[type=reset]:not(:disabled), 
[type=submit]:not(:disabled), 
button:not(:disabled) {
    transition: 0.3s;
    cursor: pointer;
    color: var(--wh);
    border: none;
    background: var(--blue);
    height: 30px;
    border-radius: 5px;
    padding: 0 20px;
}

[type=button]:not(:disabled):hover, 
[type=reset]:not(:disabled):hover, 
[type=submit]:not(:disabled):hover, 
button:not(:disabled):hover {
	
}

p, ul {
    margin-bottom: 20px;
}

h1, .h1 {
	font-size: 72px;
	font-weight: 600;
	line-height: 105%;
}

h2, .h2 {
	font-size: 60px;
	font-weight: 600;
	line-height: 125%;
}

h3, .h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 125%;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
    max-width: 100%;
}

img.to_svg{
	display: none;
}

/**** HEADER *****/
.header_row {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.header_logo {
    width: 236px;
    margin-right: auto;
}

.menu-main_menu-container {
    margin: auto 0;
}

.ul_main_menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ul_main_menu li {
    margin: 0 20px;
}

.login_logout {
    display: flex;
    align-items: center;
}

.user_name {
    margin-right: 10px;
    color: var(--wh);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.user_name a {
    color: var(--wh);
    text-decoration: underline;
}

.user_name a:hover {
    color: var(--l-blue);
}

header {
    background: var(--d-blue);
}

.ul_main_menu a {
    color: var(--wh);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.ul_main_menu a:before {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--l-blue);
    bottom: 0;
    position: absolute;
    transition: 0.3s;
}

.ul_main_menu a:hover {
    color: var(--l-blue);
}

.ul_main_menu a:hover:before {
    width: 100%;
}

a.logout_lnk svg {
    width: 22px;
}

a.logout_lnk {
    margin-left: 10px;
}

a.logout_lnk svg path {
    fill: var(--wh);
    transition: 0.3s;
}

a.logout_lnk:hover svg path {
    fill: var(--l-blue);
}

.user_name svg path {
    fill: var(--wh);
}

.user_name svg {
    width: 20px;
    margin-left: 10px;
}

.search_wrap {
    margin-left: auto;
    margin-right: 25px;
    position: relative;
}

.search_wrap svg {
    width: 20px;
    cursor: pointer;
	display: block;
}

.search_wrap svg path {
    transition: 0.3s;
    fill: var(--wh);
}

.search_wrap svg:hover path {
    fill: var(--l-blue);
}

.header_search_form {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
}

.search_open .header_search_form {
    display: block;
}

.header_search_form form {
    display: flex;
    align-items: center;
    padding: 6px 20px;
    background: var(--l-blue);
    border-radius: 10px;
    width: 350px;
}

.s_form_close {
    margin-left: 10px;
}

.header_search_form .s_form_close svg {
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
}

.header_search_form .s_form_close svg path, .header_search_form .s_form_close svg rect {
    stroke: var(--red);
    transition: 0.3s;
}

.header_search_form .s_form_close svg:hover path, .header_search_form .s_form_close svg:hover rect {
    stroke: var(--blue);
}

[type=button]:not(:disabled):hover, [type=reset]:not(:disabled):hover, [type=submit]:not(:disabled):hover, button:not(:disabled):hover {
    background: var(--d-blue);
}
		
/***** END HEADER *******/

/***** FOOTER ******/
footer {
    background: var(--d-blue);
    line-height: 150%;
}

.footer_row {
    display: flex;
    padding: 40px 0;
    flex-wrap: wrap;
}

.footer_logo {
    width: 235px;
    margin-right: auto;
}

.footer_logo svg path, .footer_logo svg circle {
    fill: var(--tl-grey);
    stroke: var(--tl-grey);
}

.footer_copywrite {
    margin-left: auto;
    color: var(--wh);
    font-size: 14px;
}

.footer_copywrite a {
    color: var(--red);
    margin-left: 10px;
}

.footer_copywrite a:hover {
    text-decoration: underline;
}

.footer_info {
    color: var(--wh);
}

.footer_left_side {
    width: 25%;
    padding-right: 20px;
    color: var(--wh);
}

.footer_info {
    width: 21%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
}

.footer_list a {
    color: var(--wh);
    text-decoration: underline;
    margin-bottom: 10px;
    display: block;
}

.footer_title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer_fight_side {
    width: 25%;
    padding-left: 20px;
    color: var(--wh);
}

.footer_info_item {
    font-weight: 600;
    margin-top: 20px;
    opacity: 0.7;
}

.footer_copywrite {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #fff6;
    opacity: 0.7;
    flex-wrap: wrap;
}

.copy_right {
    display: flex;
}

.footer_list a:hover {
    color: var(--l-blue);
}

.footer_txt {
    opacity: 0.7;
}
/******* END FOOTER ******/





/****** ENTER *******/
main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    background: var(--m-blue);
}

section.enter {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.docode_lk_enter {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.docode_lk_enter > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.docode_lk_form {
    position: relative;
    width: 50%;
    margin-left: auto;
    background: rgba(157, 206, 255, 0.70);
    padding: 60px;
}

.docode_lk_title {
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 75px */
    text-align: center;
    margin-bottom: 40px;
    color: var(--blue);
}

#loginform p {
    position: relative;
    margin-bottom: 40px;
}

#loginform label {
    position: absolute;
    top: 10px;
    /* left: 20px; */
    transition: 0.3s;
}

#loginform label.onfocus {
    font-size: 10px;
    top: 0;
}

#loginform input {
    width: 100%;
    display: block;
    height: 40px;
    padding: 0;
}

#loginform input[type=text], #loginform input[type=password] {
    background: transparent;
    border-bottom: 2px solid var(--blue);
    border-radius: 0;
}

p.login-remember {
    display: none;
}

#loginform input#wp-submit {
    padding: 20px;
    height: auto;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
}
/****** END ENTER ********/

/****** CF7 *******/
.f_wrap {
    display: flex;
    position: relative;
    flex: 30%;
    margin: 0 20px;
}

.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 100px;
}

.f_wrap label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    flex: 100%;
}

.f_wrap p {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.f_wrap span {
    display: flex;
    width: 100%;
}

.f_wrap span.wpcf7-spinner {
    width: 24px;
    position: absolute;
    right: 0;
    top: 3px;
}

.f_wrap span.wpcf7-list-item {
    align-items: center;
    margin-left: 0;
}

span.wpcf7-list-item.first.last input {
    display: none;
}

.f_wrap span.wpcf7-list-item-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.f_wrap span.wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--wh);
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 4px;
}

.f_wrap span.wpcf7-list-item-label:after {
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 4px;
    background: transparent;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    transition: 0.3s;
}

.f_wrap span.wpcf7-list-item-label:hover:after {
    background: var(--tl-grey);
}

.f_wrap span.wpcf7-list-item-label.checked:after {
    background: var(--blue);
}

.f_wrap [type=submit]:not(:disabled) {
    width: 100%;
    background: var(--l-blue);
    color: var(--bl);
    text-transform: uppercase;
    font-weight: 600;
}

.f_wrap [type=submit]:not(:disabled):hover {
    background: var(--wh);
}


.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -18px;
}

.agent_form_title {
    margin: 0 100px 40px;
    text-align: center;
    font-size: 20px;
}

.agent_form_gdpr p {
    margin: 20px 120px 0;
    font-size: 14px;
}

.agent_form_gdpr a {
    color: var(--l-blue);
    text-decoration: underline;
}

.agent_form_gdpr a:hover {
    color: var(--wh);
}

/****** END CF7 ******/

/****** LEAGUES ******/
.league_row {
    display: flex;
    flex-wrap: wrap;
}

.league_row > a {
    flex: 1;
    position: relative;
    padding: 100px;
    height: 780px;
    display: flex;
    justify-content: center;
    color: var(--wh);
    font-size: 72px;
    font-weight: 600;
}

.league_row > a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.league_title {
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.grad_darker {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(35, 69, 114, 0.00) 0%, rgba(14, 29, 48, 0.73) 60.94%, rgba(12, 25, 41, 0.80) 100%);
    transition: 0.3s;
    top: 0;
    left: 0;
}

.league_row > a:hover .grad_darker {
    opacity: 0;
}

.league_row > a:hover {
    color: var(--l-blue);
}
/******* END LEAGUES *******/

/****** ANY LAEGUE ********/
.teams_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}

.team_card {
    width: calc(25% - 60px);
    margin: 0 30px 60px;
    color: var(--wh);
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid var(--Text-Light-Blue, #9DCEFF);
}

.team_card_img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 40px;
    border-bottom: 1px solid var(--Text-Light-Blue, #9DCEFF);
    background: rgba(157, 206, 255, 0.20);
    backdrop-filter: blur(11px);
    padding: 40px;
    transition: 0.3s;
}

a:hover .team_card_img {
    background: rgba(151, 71, 255, 0.20);
}

.team_card_img img {
    position: absolute;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    object-fit: contain;
}

.team_card_txt {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    padding: 40px;
}

.league_tabs.tabs_row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.any_tab_content {
    padding: 20px 0;
    display: none;
}

.any_tab_content.active {
    display: block;
}

.any_tab {
    padding: 10px 0;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--wh);
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

.any_tab.active {color: var(--l-blue);}

section.taxonomy_section {
    padding: 50px 0;
    background: var(--m-blue);
}

.any_tab:before {
    content: '';
    position: absolute;
    height: 3px;
    width: 0;
    display: block;
    background: var(--wh);
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.any_tab.active:before {
    width: 100%;
    background: var(--l-blue);
}

.any_tab:hover:before {
    width: 100%;
}

.any_tab:after {
    content: '';
    display: block;
    position: absolute;
    width: 3px;
    height: 48px;
    background: var(--wh);
    top: 22px;
    right: -25px;
}

.any_tab:last-child:after {
    display: none;
}

a.club_lnk {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: max-content;
    color: var(--wh);
}

.turnir_club {
    width: 20px;
    height: 20px;
    position: relative;
}

.turnir_club img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    left: 0;
    text-align: 0;
}

a.club_lnk span {
    flex: 1;
    margin-left: 10px;
}

.table_cell.num_cell {
    flex: 20;
}

.table_cell.club_cell {
    flex: 200;
}

a.club_lnk:hover {
    color: var(--l-blue);
}

.table_row.table_head {
    background: var(--d-blue);
    color: var(--l-blue);
}

.table_row:nth-child(2n) {
    background: var(--blue);
}
/****** END ANY LAEGUE ********/

/****** ANY TEAM ******/
.team_logo {
    padding-right: 40px;
    border-right: 3px solid var(--l-blue);
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
}

.club_thumbnail {
    position: absolute;
    width: 100%;
    height: 250px;
}

section.team_page {
    padding: 50px 0;
    background: var(--m-blue);
}

.any_wrap {border-radius: 50px;background: rgba(157, 206, 255, 0.20);flex: 100;/* overflow: hidden; */padding: 40px;color: var(--wh);display: flex;margin-bottom: 20px;flex-wrap: wrap;/* align-items: center; */}

.team_logo img {
    width: 210px;
    min-height: 250px;
    margin: 0;
    position: relative;
    object-fit: contain;
    object-position: bottom;
}

.club_thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team_char_title {
    font-size: 25px;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.team_char {
    margin-left: 40px;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.team_char_txt {
    width: 50%;
    text-align: center;
    margin-bottom: 40px;
}

.team_right.any_wrap {
    flex: 50;
    margin-left: 10px;
}

.team_char_txt.w-100 {
    width: 100%;
}

.team_logo.trener_logo {
    padding: 0;
    border: none;
    width: 100%;
    text-align: center;
}

.team_row {
    display: flex;
    flex-wrap: wrap;
}

.league_tabs.tabs_row .any_tab {
    font-size: 24px;
}

.league_tabs.tabs_row .any_tab:after {
    display: none;
}

.char_name {
    color: var(--l-blue);
    margin-bottom: 10px;
}

.char_desc {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.char_desc svg {
    margin-left: 10px;
}

.char_desc svg.left_foot path:first-child {
    fill: var(--bl);
}

.char_desc svg.left_foot path:last-child {
    fill: var(--l-blue);
}

.char_desc a {
    color: var(--wh);
    text-decoration: underline;
    margin-bottom: 10px;
}

.char_desc a:hover {
    color: var(--l-blue);
}

.members_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

a.team_member_card {
    display: flex;
    flex-direction: column;
    width: 160px;
    margin: 0 15px 30px;
    color: var(--wh);
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid var(--Text-Light-Blue, #9DCEFF);
}

.teams_row.archive_team a {
    width: 170px;
}

.teams_row.archive_team {
    margin: 0 -15px;
}

.member_card_foto {
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    border-bottom: 1px solid var(--Text-Light-Blue, #9DCEFF);
    transition: 0.3s;
}

a:hover .member_card_foto {
    background: rgba(151, 71, 255, 0.20);
}

.member_card_foto img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.member_card_txt {
    padding: 20px;
    text-align: center;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member_card_born {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.5;
}

.member_card_title {
    margin-bottom: auto;
}

.team_devide {
    color: var(--wh);
    border-radius: 40px;
    border: 1px solid var(--Text-Light-Blue, #9DCEFF);
    background: var(--Text-Dark-Blue, #234572);
    margin: 0 15px 30px;
    position: relative;
    width: 60px;
}

.team_devide span {
    position: absolute;
    text-transform: uppercase;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    top: 50%;
    left: 50%;
}

div#chemes {
    margin-bottom: -60px;
}

.sheme_card {
    margin: 0 30px 60px;
    width: calc(33.333% - 60px);
    text-align: center;
    border: 1px solid;
    border-radius: 10px;
    overflow: hidden;
}

.sheme_card_title {
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    background: var(--d-blue);
}

.app_table {
    border-top: 2px solid var(--l-blue);
    border-left: 2px solid var(--l-blue);
    color: var(--wh);
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

.table_row {
    display: flex;
}

.table_row.table_head {
    font-weight: 600;
    text-transform: uppercase;
}

.table_cell {
    border-right: 2px solid var(--l-blue);
    border-bottom: 2px solid var(--l-blue);
    flex: 100;
    padding: 10px;
	overflow-wrap: anywhere;
}

.table_row.table_head .table_cell:last-child {
    border-top-right-radius: 20px;
}

.table_row:last-child .table_cell:first-child {
    border-bottom-left-radius: 20px;
}

.table_row:last-child .table_cell:last-child {
    border-bottom-right-radius: 20px;
}

.tabs_wrap {
    width: 100%;
}

select.team_year_filter,
select.member_year_filter{
    border-radius: 8px;
    border: 1px solid var(--Text-Light-Blue, #9DCEFF);
    background: var(--Background-Dark-Blue, #16283E);
    font-size: 14px;
    text-align: center;
    color: var(--l-blue);
    width: 200px;
    margin-bottom: 20px;
}

.team_top_result,
.member_top_result{
    width: 100%;
    overflow: auto;
    padding-bottom: 20px;
}

table.app_table_true th, table.app_table_true td {
    border-bottom: 1px solid var(--l-blue);
    border-right: 1px solid var(--l-blue);
    padding: 5px 10px;
    text-align: center;
    font-size: 14px;
    width: max-content;
    white-space: nowrap;
}

td, th, table {
    border: none;
}

table.app_table_true tr {
    background: var(--d-blue);
}

table.app_table_true tr:nth-child(2n) {
    background: var(--blue);
}

.video_row {
    display: flex;
}

.video_left {
    width: 30%;
}

.video_right {
    padding: 0 0 0 40px;
    flex: 1;
}

.responsive-video {
    position: sticky;
    top: 20px;
}

table.app_table_true {
    border-top: 1px solid var(--l-blue);
    border-left: 1px solid var(--l-blue);
    border-radius: 8px;
    overflow: hidden;
}

table.app_table_true a {
    color: var(--wh);
    text-decoration: underline;
}

table.app_table_true a:hover {
    color: var(--l-blue);
}

.video_category {
    border: 1px solid var(--d-blue);
    padding: 10px;
    margin-bottom: 10px;
    background: var(--d-blue);
    border-radius: 8px;
}

.video_category.open {
    border-color: var(--l-blue);
}

.video_cat_title {
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    text-transform: uppercase;
}

.video_cat_title:hover {
    color: var(--l-blue);
}

.video_cat_list {
    display: none;
    border-top: 1px solid var(--l-blue);
    margin-top: 10px;
}

.video_category.open .video_cat_list {
    display: block;
}

.video_cat_link {
    padding: 10px 0 0;
    cursor: pointer;
    color: var(--wh);
}

.video_cat_link.active {
    color: var(--l-blue);
}


/****** END ANY TEAM ******/


/****** ENY MEMBER ****/
.member_position_img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.member_position_img svg {
    width: 100%;
    position: relative;
    height: auto;
}

.member_position_img img {
    position: absolute;
    height: 100%;
    object-fit: contain;
    left: 50%;
    transform: translateX(-50%);
}

.member_position_img svg g {
    opacity: 0;
}


/******** END ANY MEMBER *******/

/******* ARCHIVE MEMBERS ********/
.archive_title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin: 40px;
    color: var(--wh);
}

section.taxonomy_section h1 {
    font-size: 36px;
    color: var(--wh);
}
/****** END ARCHIVE MEMBERS ********/


.bl-scroll::-webkit-scrollbar, 
.bl-scroll::-webkit-scrollbar-thumb, 
.bl-scroll::-webkit-scrollbar-track {
    width: 5px;
    border: none;
    background: #fff;
}

.bl-scroll::-webkit-scrollbar-button, 
.bl-scroll::-webkit-scrollbar-track-piece, 
.bl-scroll::-webkit-scrollbar-corner, 
.bl-scroll::-webkit-resizer {
    display: none;
}

.bl-scroll::-webkit-scrollbar-button, 
.bl-scroll::-webkit-scrollbar-track-piece, 
.bl-scroll::-webkit-scrollbar-corner, 
.bl-scroll::-webkit-resizer {
    display: none;
}

.bl-scroll::-webkit-scrollbar, 
.bl-scroll::-webkit-scrollbar-thumb, 
.bl-scroll::-webkit-scrollbar-track {
    width: 5px;
    border: none;
    background: #fff;
}

.bl-scroll::-webkit-scrollbar-track {
    background-repeat: repeat-y;
    background-size: contain;
}

.bl-scroll::-webkit-scrollbar, 
.bl-scroll::-webkit-scrollbar-thumb, 
.bl-scroll::-webkit-scrollbar-track {
    width: 5px;
	height: 5px;
    border-radius: 40px;
    border: none;
    background: #fff1;
}

.bl-scroll::-webkit-scrollbar-button, 
.bl-scroll::-webkit-scrollbar-track-piece, 
.bl-scroll::-webkit-scrollbar-corner, 
.bl-scroll::-webkit-resizer {
    display: none;
}

.bl-scroll::-webkit-scrollbar-thumb {
    background-color: var(--d-blue);
}

/*** PAGE ***/
section.page_title {
    padding: 40px 0;
}

section.page_title h1 {
    font-size: 40px;
}

.wp_editor h2, .wp_editor h3 {
    margin-bottom: 20px;
}

.wp_editor ul, .wp_editor ol, .wp_editor p {
    margin-bottom: 20px;
}

.wp_editor {
    padding: 0 0 60px;
}
/*** END PAGE ***/

@media(max-width: 1100px){
	.team_card {
	    width: calc(50% - 60px);
	}
	
	.app_table {
	    width: 1100px;
	}

	.app_table_wrap {
	    max-width: 100%;
	    overflow: auto;
	}

	.league_row > a {
	    height: 300px;
	    padding: 30px;
	    align-items: center;
	}

	.league_tabs.tabs_row .any_tab {
	    font-size: 20px;
	}

	.team_char_txt {
	    width: 100%;
	}
	
	.team_char_title {
	    font-size: 20px;
	}

	.footer_left_side {
	    width: 100%;
	    padding: 0 0 40px;
	}
	
	.footer_info {
	    width: 50%;
	    margin: 0 0 40px;
	    padding: 0;
	}
	
	.footer_fight_side {
	    width: 100%;
	    padding: 0;
	}

	.teams_row.archive_team a {
	    width: calc(33.33% - 30px);
	}

	section.page_title h1 {
	    font-size: 24px;
	}
	
	.wp_editor h2 {
	    font-size: 20px;
	}
	
	.wp_editor h3 {
	    font-size: 18px;
	}
	
	.wp_editor {
	    font-size: 14px;
	}
}

@media(max-width:700px){
	.user_name svg {
	    display: none;
	}
	
	.header_logo {
	    width: 80px;
	    margin-right: auto;
	    display: flex;
	    align-items: center;
	}

	.ul_main_menu a {
	    font-size: 12px;
	}
	
	.ul_main_menu li {
	    margin: 0 10px 0 0;
	    text-align: center;
	}

	.menu-main_menu-container {
	    order: 3;
	    width: 100%;
	    margin-top: 10px;
	}
	
	.header_row {
	    flex-wrap: wrap;
	}
	
	.user_name {
	    display: none;
	}
	
	.league_row > a {
	    font-size: 30px;
	}
	
	.footer_info {
	    width: 100%;
	}
	
	.copy_left {
	    width: 100%;
	    margin-bottom: 20px;
	}

	.any_tab {
	    width: 100%;
	}
	
	.league_tabs.tabs_row {
	    flex-wrap: wrap;
	}
	
	.teams_row {
	    margin: 0;
	}
	
	.team_card {
	    width: 100%;
	    margin: 0 0 40px;
	}

	.any_wrap {
	    width: 100%;
	    flex: 100%;
	}
	
	.team_logo {
	    width: 100%;
	    border-right: none;
	    border-bottom: 3px solid var(--l-blue);
	    padding: 0 0 40px;
	    margin-bottom: 40px;
	}
	
	.team_char {
	    margin: 0;
	}
	
	.team_devide {
	    margin: 0 15px 20px;
	    width: 100%;
	    height: 40px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    text-align: center;
	}
	
	.team_devide span {
	    transform: none;
	    position: relative;
	    left: 0;
	    top: 0;
	}
	
	a.team_member_card {
	    /* margin: 0 0 40px; */
	    width: calc(50% - 30px);
	}
	
	.member_card_foto {
	    height: 200px;
	}
	
	.any_wrap {
	    padding: 40px 20px;
	    border-radius: 20px;
	}
	
	.sheme_card {
	    margin: 0 0 40px;
	    width: 100%;
	}
	
	.video_row {
	    flex-wrap: wrap;
	}
	
	.video_left {
	    width: 100%;
	    margin: 0 0 40px;
	}
	
	.video_right {
	    padding: 0;
	    width: 100%;
	    flex: 100%;
	}

	.header_search_form form {
	    width: 100%;
	}
	
	.search_wrap {
	    position: static;
	}
	
	.header_search_form {
	    top: 80px;
	    width: 100%;
	}

	section.taxonomy_section h1 {
		font-size: 26px;
	}

	section.enter {
	    padding: 40px 0;
	}
	
	
	.docode_lk_form {
	    width: 100%;
	    padding: 20px;
	}
	
	.docode_lk_title {
	    font-size: 40px;
	    margin-bottom: 20px;
	}

	.wpcf7-form {
	    margin: 0;
	}
	
	.f_wrap {
	    flex: 100%;
	    max-width: 100%;
	    margin: 0;
	}

	.agent_form_title {
	    margin: 0 0 40px;
	}
	
	.agent_form_gdpr p {
	    margin: 20px 0 0;
	}
	
	.agent_form {
	    width: 100%;
	}
	
	[type="date"], [type="password"], [type="text"], [type="tel"], [type="email"], [type="number"], textarea, select {
	    margin: 0;
	    width: 100%;
	}
}

@media(max-width: 360px){
	a.team_member_card {
		width: 100%;
	}
}


