html, body {
    padding: 0;
    margin: 0; 
    font-size: 12px;
}
body {
    background: #0b0d1a url(../images/prosportskz-back.jpg) no-repeat center -70px fixed;
}
a {
    color: #01a0fc;
}
a:hover {
    color: rgb(10, 88, 202);
}
ul,ol,li {
    padding: 0;
    margin: 0;
    list-style: none;
}
/* h1,h2,h3,h4,h5,h6 {
    padding: 0;
    margin: 0;
    font-weight: normal; 
} */

.wcont {
    width: 1130px;
    margin: 0 auto;
}
.breadcrumbs svg {
    width: 5px;
    height: 9px;
    fill: #727272;
}
/*BTN*/
.btn {
    border-radius: 0;
}
.btn.btn-primary {
    background-color: #01a0fc;
    color: #fff;
    transition: all ease-in-out 0.1s;
}
.btn.btn-primary:hover { 
    background-color: #0580e4;
    color: #fff;
}
.btn-sm {
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    padding: 4px 13px; 
}
.btn-lg {
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    padding: 10px 13px; 
}

.btn-primary-outline {
    font-size: 16px;
    padding: 3px 10px 5px;
    margin: 0 5px 5px 0;
    border: 2px solid #ebebed;
    color: #444444;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary-outline svg {
    fill: #444;
    transition: all .3s ease;
    margin-bottom: 4px;
    margin-right: 3px;
}
.btn-primary-outline:hover {
    color: #fff;
    background: rgb(1, 160, 252);
    border-color: rgb(1, 160, 252);
}
.btn-primary-outline:hover svg {
    fill: #fff;
}

/* end:BTN */

/* HEADER */
.header { 
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9; 
}
.header-top {
    background-color: #1f2229;
    height: 36px
}
.header-bottom {
    background-color: #323641;
    height: 40px;
}
.section_blogs .header-bottom {
    background-color: #01a0fc;
}
.section_bets .header-bottom {
    background-color: #00bfcb;
} 
.header-logo-nav {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.header-logo { 
    display: block;
    margin: 0 5px;
}
.header-logo img {
    height: 36px;
    display: block;
}
.header-nav {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
}
.header-nav a {
    color: #fff;
    text-decoration: none;
    border-bottom:  solid 3px transparent;
    line-height: 30px;
    padding: 0 13px;
    transition: color .1s ease;
    padding-top: 3px;
}
.header-nav a.active {
    color: #01a0fc;
    border-bottom: solid 3px #01a0fc;
} 
.header-nav a:hover { 
    color: #01a0fc;
}
.header-auth-link {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-auth-link button,
.header-auth-link a {
    color: #60636f;
    text-decoration: none; 
    line-height: 27px;
    padding: 0 13px;
    transition: color .1s ease;
    background: transparent;
    border: none;
} 
.header-auth-link .singup {
    color: #fff;
}
.header-auth-link button:hover,
.header-auth-link a:hover,
.header-profile:hover a { 
    color: #01a0fc;
}
.header-profile {
    display: flex;
    flex-direction: row; 
} 
.header-auth svg {
    fill: #fff;
    transition: fill .1s ease;
}
.header-auth a:hover svg,
.header-auth svg:hover,
.header-profile:hover svg {
    fill: #01a0fc;
}
.header-nav-category ul {
    display: flex;
    flex-direction: row;
}
.header-nav-category li,
.header-profile {
    position: relative;
    white-space: nowrap;
}
.header-profile {
    z-index: 1;
}
.header-nav-category li>a {
    height: 40px;
    text-transform: uppercase;
    line-height: 40px;
    color: #fff;
    padding: 0 13px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    display: block;
    transition: all ease-in-out 0.1s;
    white-space: nowrap;
} 
.header-nav-category li>a.active,
.header-nav-category li:hover>a { 
    border-bottom: 3px solid #fff;
}
.header-nav-category .header-dropdown,
.header-profile .header-dropdown {
    display: block;
    visibility: hidden;
    position: absolute;
    background: #fff;
    
    transition: all .1s ease-in-out 0s, visibility 0s linear .1s, z-index 0s linear .01s;
    transform: translateY(-1em);
    z-index: -1;
    opacity: 0;
} 
.header-nav-category .header-dropdown li a,
.header-profile .header-dropdown li a {
    line-height: 35px;
}
.header-profile .header-dropdown {
    top: 0;
    transform: translateY(50px);
}
.header-nav-category>ul>li:hover .header-dropdown,
.header-profile:hover .header-dropdown {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s, 0s, .1s;
    box-shadow: 0 3px 90px #00000024;
}
.header-profile:hover .header-dropdown {
    top: 33px;
}
.header-nav-category .header-dropdown a,
.header-profile .header-dropdown a {
    transition: all .1s ease;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    min-width: 75px;
    padding: 3px 20px; 
    border-bottom: solid 1px #01a0fc36;
}
.header-nav-category .header-dropdown a:hover,
.header-profile .header-dropdown a:hover {
    color: #01a0fc;
    background-color: #01a0fc0a;
    border-bottom: solid 1px #01a0fc11; 
}

/* end:HEADER */

.main_content,
.second_content {
    margin: 250px auto 0;
    position: relative;
    z-index: 1;
}
.second_content .post_top__link {
    background: #eee;
}
.second_content .post_top__link .post_top__title,
.second_content .post_top__link .post_top__subtitle { 
    color: #1f2229;
}

.post_top__link { 
    display: flex;
    overflow: hidden; 
    background: #1f2229;
    cursor: default;
    text-decoration: none;
}
.post_top__title {
    color: #fff;
    padding: 15px 20px;
    flex: 1;
}
.post_top__title h2 {
    cursor: pointer;
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    transition: all .1s ease;
} 
.post_top__subtitle {
    color: #a6a7a8;
    font-size: 16px;
    padding: 25px 0 15px;
    line-height: 18px;
}
.post_top__title time {
    color: #a6a7a8;
    font-size: 12px;
}
.post_top__img {
    cursor: pointer; 
    background: #eaebed url(../images/ajax-loader-transparent.gif) no-repeat center center; 
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 800px;
} 
.post_top__img img {
    width: 100%;
}
.hot-img-cont img {
    width: 100%;
}

.section_default {
    background: #fff;
    padding: 20px 20px 30px 20px;
    min-height: 550px;
    position: relative;
}
.fixed_baa {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1;
}
.fixed_baa .bng { 
    max-width: 1130px;
    margin: 0 auto;
    background: transparent; 
}
.fixed_bg_bre {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;

}
.fixed-bra_mob {
    min-height: 117px;
    position: absolute;
    top: 0;
    width: 100%;
}
.fixed-bra_mob .brand_banner {
    margin-top: 32px;
} 
.section_videos,
.section_video_page {
    background: #1f2229;
    padding: 20px 20px 30px 20px;
}
.section_videos .center_column {
    margin: 0;
    max-width: none;
}
.breadcrumbs {
    margin-right: 30px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.breadcrumbs span i {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0, rgba(255,255,255,1) 100%);
    position: absolute;
    width: 100px;
    height: 100%;
    right: 0;
}
.breadcrumbs,
.breadcrumbs a,
.breadcrumbs h1 {
    color: #94999f; 
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}
.breadcrumbs a:hover {
    color: #000;
}
.breadcrumbs svg {
    margin: 0 5px;
}

.block_trends {
    margin: 20px 0; 
}
.block_trends a {
    display: inline-flex;
    padding: 10px 20px;
    border-bottom: solid 3px transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    color: #333333;
    font-weight: 700;
    transition: all ease-in-out 0.2s; 
    margin-right: 10px;
    vertical-align: top;
    align-items: center;
}
.block_trends a:hover {
    color: #fff;
}
.block_trends a img {
    width: 30px;
}
.block_trends .trand_has_img {
    padding: 4px 20px 4px 5px;
}
.block_trends .trand_has_img img {
    width: 100%;
}
.block_trends .trand_img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 3px;
    box-shadow: 0 0 3px #a0cbdf;
    overflow: hidden;
}
.block_trends .all_trends {
    color: #333; 
    background: linear-gradient(90deg, rgba(155, 155, 155, 0.3) 0%, rgba(155, 155, 155,0.1) 71%); 
}
.block_trends .all_trends:hover {
    background-color: rgb(155, 155, 155);
}
.left_column,
.right_column {
    width: 240px;
}
.center_column {
    flex: 1;
    margin: 0 15px;
    max-width: 820px;
} 
.content time {
    color: #a1a4a9;
    font-size: 12px;
}
.aside_title { 
    color: #323641;
    padding-bottom: 5px;
    border-bottom: 2px solid #eaebed;
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}
.aside_title h2 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.news_item {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #eaebed;
}
.news_item__category {
    /* display: flex; */
    /* justify-content: space-between; */
    color: #a1a4a9;
    font-size: 12px;
} 
.news_item__category_sport {
    text-transform: uppercase;
    font-weight: 700; 
}
.news_item__title {
    display: block;
    font-size: 16px;
    line-height: 20px;
    padding-top: 4px;
    color: #242633;
    text-decoration: none;
    transition: all ease-in-out 0.2s;
}
.news_item__title:hover {
    color: #01a0fc;
}
.all_news {
    color: #01a0fc;
    font-size: 12px;
    text-transform: uppercase;
    text-align: right;
    display: inline-block;
    margin-top: 25px;
    font-weight: 700;
    text-decoration: none;
}
.all_news:hover {
    color: #50bfff;
}
.posts_item {
    margin-bottom: 30px; 
    position: relative;
}
.posts_item a {
    text-decoration: none;
    color: #36393f;
    font-size: 16px;
}
.posts_item a:hover .post_item__title {
    color: #0580e4;
    transition: all ease-in-out 0.2s;
}
.post_item__img {
    width: 235px;
    display: block;
    margin-right: 15px;
    position: relative;
    min-height: 136px;
    background: #f9f9f9;
}
.post_item__img img {
    width: 100%;
    display: block;
}
.post_item__category_sport {
    background: #01a0fc;
    position: absolute;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    left: 10px;
    text-transform: uppercase;
    padding: 1px 5px;
    bottom: -5px;
}
.post_item__exclusive {
    background: #ff0000;
    position: absolute;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    left: 10px;
    text-transform: uppercase;
    padding: 1px 5px;
    top: -5px;
}
.post_item__live {
    background: #fff;
    position: absolute;
    color: #bd1818;
    font-size: 14px;
    font-weight: 800;
    right: 0px;
    text-transform: uppercase;
    padding: 1px 5px;
    top: 0px;
    display: flex;
    align-items: center;   
}
.post_item__live b {
    line-height: 21px;
    margin-right: 5px; 
    font-size: 26px;
    animation: flickerAnimation 1s infinite;
    margin-top: -9px;
}
@keyframes flickerAnimation {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}
.post_item__anons {
    flex: 1;
}
.post_item__anons time {
    display: block;
    color: #bcc0c5;
    font-size: 12px;
    margin-top: 10px;
}
.post_item__title {
    display: block;
    color: #202731;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700; 
    margin-top: -5px;
    margin-bottom: 10px;
}
.bets_widget {
    margin-bottom: 30px;
}
.bets_wodget__title {
    font-size: 18px;
    font-weight: 600;
    color: #2b7a7f;
    padding-bottom: 8px;
    text-transform: uppercase;
}
.bets_widget__person {
    color: #a9c3c5;
    font-size: 12px;
    padding: 15px; 
}  
.bets_widget__person b {
    font-size: 14px;
    font-weight: 700;
}
.bets_widget__block {
    text-decoration: none;
    display: block;
    background-color: #2b7a7f;
    position: relative;
    
}
.bets_widget__img img {
    width: 100%;
    display: block;
}
.bets_widget__text {
    color: #fff;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; 
    margin-top: -40px;
    z-index: 3;
    position: relative;
    transition: all ease-in-out 0.1s;
}
.bets_widget__shadow {
    background: linear-gradient(0deg, rgba(43, 122, 127, 1) 0%, rgba(43, 122, 127, 0) 100%);
    position: absolute;
    top: 45px;
    width: 100%;
    height: 136px;
    left: 0;
    z-index: 2;
}
.bets_widget__block:hover .bets_widget__text {  
    transform: scale(1.05);
}

.blogs_widget {
    /* position: sticky;
    top: 86px; */
}
.blogs_widget h2,
.blogs_rate_widget h2 {
    font-size: 18px;
    font-weight: 600;
    color: #01a0fc;
    padding-bottom: 8px;
    text-transform: uppercase;
}
.blogs_item {
    margin-bottom: 20px; 
}
.blogs_item a {
    text-decoration: none;
    display: block; 
}
.blogs_item__img { 
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    min-height: 136px;
    background: #f9f9f9;
    display: block;
}
.blogs_item__img img {
    width: 100%;
}
.blogs_item__category_sport {
    background: #01a0fc;
    position: absolute;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    left: 10px;
    text-transform: uppercase;
    padding: 1px 5px;
    bottom: -5px;
}
.blogs_item__title {
    display: block;
    color: #202731;
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;  
    margin-bottom: 10px; 
    transition: all ease-in-out 0.2s;
}
.blogs_item a:hover .blogs_item__title {
    color: #01a0fc;
}
.blogs_item__person {
    color: #bcc0c5;
    font-size: 12px;
    width: 100%;
}
.blogs_item__person b {
    font-size: 14px;
}

.blogs_rate_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-decoration: none;
    margin-bottom: 20px;
}
.blogs_rate_item_img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    display: block;
}
.blogs_rate_item_img img {
    width: 100%;
}
.blogs_rate_item_name {
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    line-height: 1;
    color: #1f2229; 
    transition: color .3s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    margin-right: 5px; 
}
.blogs_rate_item_rate {
    font-size: 12px;
    text-overflow: ellipsis;
    color: #a2a5aa;
    display: block;
    margin-top: 5px;
    font-weight: normal;
}
.blogs_rate_item_num {
    font-size: 26px;
    font-weight: 800;
    color: #eaebec;
    text-align: right;
    width: 30px;
}
.blogs_rate_item:hover .blogs_rate_item_name { 
    color: #0580e4;
}
.block_blog_autor__item {
    background: linear-gradient(29deg, rgb(1 160 252) 0%, rgb(1 160 252 / 14%) 71%)!important;
    border-bottom-color: rgb(1, 160, 252) !important;
}

.medal_widget {}
.medal_widget__title {
    font-size: 18px;
    font-weight: 600;
    color: #01a0fc;
    padding-bottom: 8px;
    text-transform: uppercase;
}
.modal_winers table {
    width: 100%;
}
.modal_winers th {
    border: 0;
    font-size: 12px;
    font-weight: 300;
    padding-bottom: 5px;
    text-align: left;
}
.modal_winers .gold,
.modal_winers .silver,
.modal_winers .bronze {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.modal_winers .gold {
    background: #f4c426;
}
.modal_winers .silver {
    background: #b1bbc2;
}
.modal_winers .bronze {
    background: #c58064;
}
.medal_gold,
.medal_silver,
.medal_bronze {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}
.medal_gold {
    background: #f4c426;
}
.medal_silver {
    background: #b1bbc2;
}
.medal_bronze {
    background: #c58064;
}
.country_full_name {
    text-transform: uppercase;
    color: #4c4e54;
    font-weight: 700;
    font-size: 20px;
    margin-top: 30px;
}
.country_full_sportsmen {
    color: #4c4e54;
    font-size: 16px;
    margin-top: 10px;
}
.summmedals {
    display: flex;
    align-items: center;
}
.modal_winers .summmedals .gold,
.modal_winers .summmedals .silver,
.modal_winers .summmedals .bronze {
    margin-left: -5px;
    border: 1px solid #fff;
    width: 12px;
    height: 12px;
}
.modal_winers .number {
    text-align: center;
    border-radius: 30px;
    font-size: 12px;
    width: 28px;
    height: 28px;
    background: #f4f4f5; 
    font-weight: 700; 
    line-height: 26px;
    display: block;
    color: #7b7c84;
    margin: 7px 0 6px;
    margin-left: 5px;
}
.modal_winers tbody tr {
    cursor: pointer;
}
.modal_winers tbody tr:hover {
    background: linear-gradient(29deg, rgb(170, 224, 255) 0%, rgb(1 160 252 / 7%) 71%);
    border-bottom-color: rgb(1, 160, 252) !important;
} 
.modal_winers td {
    border-top: 1px solid #f4f4f5;
    font-weight: 600;
    font-size: 14px;
}
.modal_winers .name {
    width: 158px;
    text-overflow: ellipsis; 
}
.modal_winers .name a {
    font-size: 16px;
    font-weight: 400;
    color: #282c32; 
    text-decoration: none;
}
.modal_winers .name a:hover,
.modal_winers tbody tr:hover a {
    color: rgb(10, 88, 202);
}

.post_full { 
    font-size: 14px;
    font-family: Tahoma, Arial, Helvetica, sans-serif!important;
}
.post_full .post_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 10px 0 25px;
    color: #202731;
    display: block;
}
.post_full .post_top__img {
    cursor: default;
    margin-bottom: 20px;
}
.post_full .post_title {
    text-decoration: none;
}
.post_full a.post_title:hover {
    color: #01a0fc;
}
.follow-block {
    display: flex;
    justify-content: space-between;
    background: #d5edfa;
    padding: 20px;
    color: #282c32;
    margin: 20px 0;
    text-decoration: none;
    transition: all ease-in-out 0.1s;
}
.follow-block:hover {
    background: #a9e1ff;
}
.follow-block .social-share svg {
    fill: #3e404b;
    transition: all ease-in-out 0.3s;
}
.follow-block:hover .social-share svg {
    transform: scale(1.2);
}

.change_lang2 {
    position: absolute;
    top: 0;
    right: 50px;
    font-size: 18px;
    padding: 4px 13px 1px;
    display: none;
    text-decoration: none;
    color: #fff;
}
.change_lang2 img {
    width: 36px;
}
.post_full  {
    padding-right: 20px;
}
.feed_text {  
}
.feed_text iframe {
    max-width: 100%;
}

.feed_text p>img, 
.feed_text div>img {  
    width: 100%!important;
    height: auto!important;
}
.feed_text p a,
.feed_text h4 a {  
    color: #01a0fc!important;
    text-decoration: underline;
    margin: 0!important;
    padding: 0!important;
}
.feed_text p a:hover,
.feed_text h4 a:hover {
    text-decoration: none;
}
.feed_text,
.feed_text * {
    font-family: Tahoma, Helvetica, sans-serif!important;
    font-size: 16px!important;
}
.feed_text h4 a {
    margin-bottom: 2px;
    display: inline-flex;
}
.feed_source {
    font-size: 12px;
    color: #a1a4a9;
}
.feed_rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.feed_rating_like,
.feed_rating_dislike {
    border-radius: 50%;
    border: 3px solid #ebebed;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.feed_rating_like:hover {
    border-color: #01a0fc;
}
.feed_rating_dislike:hover {
    border-color: #bd1818;
}
.feed_rating_like svg {
    fill: #01a0fc;
    margin-bottom: 2px;
    transition: all .3s ease;
}
.feed_rating_like:hover svg {
    transform: scale(1.3);
}
.feed_rating_count {
    margin: 5px 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #01a0fc;
} 
.feed_rating_dislike svg {
    fill: #bd1818;
    transition: all .3s ease;
}
.feed_rating_dislike:hover svg {
    transform: scale(1.3);
}
.autor_person {
    display: flex;
    margin-left: 45px;
    text-decoration: none;
    align-items: center;
    color: #01a0fc;
}
.autor_person:hover {
    color: #000;
}
.autor_person_avatar {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyNSc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBmaWxsPScjYTJhNWE5JyBkPSdNMTkuNTgyIDI0Ljk5NHYtLjc5N0MxOS4xNjUgMjEuODA1IDE3LjI5OCAxOSAxNCAxOUg4Yy0zLjI5OCAwLTQuNzQ4IDIuNjM4LTUuNTgyIDUuMTk3di43OTdhMTcuMzYgMTcuMzYgMCAwIDEtMi40MTQtMS41MjVDLjM1NiAxOS41MjIgMy45MDYgMTYgOCAxNmg2YzQuMDk0IDAgNy42NDMgMy41MjIgNy45OTUgNy40NjlhMTcuMjkgMTcuMjkgMCAwIDEtMi40MTMgMS41MjV6bS0yLjQ3LTE4LjQ3M2MwIDMuNjAyLTIuOTYgNi41MjItNi42MTIgNi41MjJzLTYuNjEyLTIuOTItNi42MTItNi41MjJDMy44ODggMi45MiA2Ljg0OCAwIDEwLjUgMHM2LjYxMiAyLjkyIDYuNjEyIDYuNTIxek02Ljk5NCA2LjUwNWEzLjUwMSAzLjUwMSAwIDAgMCAzLjUwNiAzLjQ5NyAzLjUwMSAzLjUwMSAwIDAgMCAzLjUwNi0zLjQ5N0EzLjUwMiAzLjUwMiAwIDAgMCAxMC41IDMuMDA3YTMuNTAyIDMuNTAyIDAgMCAwLTMuNTA2IDMuNDk4eicvPjwvc3ZnPg==") no-repeat top left;
    background-position: center;
    border-radius: 50%;
    border: 3px solid #ebebed;
    width: 38px;
    height: 38px;
    overflow: hidden;
}
.autor_person_avatar img {
    width: 100%;
}
.autor_person_name {
    margin-left: 15px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
}
.feed_socials {
    margin-left: auto;
}
.feed_socials a {
    opacity: 0.7;
    transition: all .3s ease;
    text-decoration: none;
    margin-left: 6px;
}
.feed_socials a:hover {
    opacity: 1; 
}
.feed_socials a svg {
    transition: all .3s ease;
}
.feed_socials a:hover svg {
    transform: scale(1.2);
}
.feed_tags {
    padding: 5px 0;
}
.feed_tags a {
    font-size: 16px; 
    padding: 3px 10px 5px;
    margin: 0 5px 5px 0;
    border: 2px solid #ebebed;
    color: #949597;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
}
.feed_tags a:hover {
    color: #fff;
    background: rgb(1, 160, 252);
    border-color: rgb(1, 160, 252);
}
.feed_comments {}
.feed_comments_title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #282c32;
    margin: 30px 0 10px;
}
.feed_comments_auth {
    background: #eee;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #727272;
}
.feed_comments_auth button {
    border: none;
    background: transparent;
    color: #01a0fc;
}
.feed_comments_auth button:hover {
    color: rgb(13, 110, 253);
}
.feed_comment_input textarea {
    font-size: 16px;
    padding: 20px 25px;
    border-radius: 0;
    border-width: 3px;
}
.preloader_news {
    background: url(../images/ajax-loader-transparent.gif) center center no-repeat #eee;
    padding: 50px 20px;
    text-align: center; 
    margin-top: 20px;
}
.preloader2_news {
    background: url(../images/ajax-loader-transparent.gif) center center no-repeat #fff; 
    text-align: center; 
    margin-top: 20px;
    height: 100px;
} 
.preloader3_news {
    background: url(../images/ajax-loader-transparent.gif) center center no-repeat transparent; 
    text-align: center; 
    margin-top: 20px;
    height: 100px;
}
.comment_item {
    border-bottom: solid 1px #eee;
    padding: 20px 0;
}

.event_header,
.blog_autor_header {
    background: #1f2229;
    padding: 25px 40px 0 40px; 
    display: flex;
    flex-direction: row;
}
.blog_autor_header {
    padding-bottom: 25px;
}
.event_logo,
.blog_autor_logo { 
    border-radius: 5px;
    width: 68px;
    height: 68px;
    margin-right: 30px;
}
.blog_autor_logo_img {
    overflow: hidden;
    border-radius: 5px;
}
.blog_autor_logo {
    position: relative;
}
.change_avatar {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 26px;
    height: 25px;
    border: none;
    background-color: #1f2229; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
.change_name {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 25px;
    border: none;
    background-color: #1f2229; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
.event_logo img,
.blog_autor_logo img {
    width: 100%;
    border-radius: 5px;
}
.event_title_nav {
    display: flex;
    flex-direction: column; 
}
.event_title,
.blog_autor_title {
    color: #fff;
    font-size: 36px;
    margin: 0;
    font-weight: 700;
    line-height: 50px;
    width: 685px;
    word-spacing: unset;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    display: inline-block;
}
.blog_autor_title {
    width: auto;
    overflow:visible;
    padding-right: 40px;
}
.event_nav,
.blog_nav {
    display: flex;
    flex-direction: row;
    margin-left: -20px;
}
.blog_nav {
    margin-bottom: -25px;
}
.event_nav a,
.blog_nav a {
    text-decoration:none;
    text-transform: uppercase;
    font-size: 14px;
    color: #ffffff;
    padding: 8px 20px 13px 20px;
    border-bottom:  solid 3px transparent;
    transition: all .3s ease;
}
.event_nav a.active,
.event_nav a:hover,
.blog_nav a.active,
.blog_nav a:hover {
    border-color: #FFF;
    color: #FFFF;
}
.blog_autor_subtitle {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}
.autor_edit_blog {
    border-radius: 50%;
    border: 3px solid #01a0fc;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    position: absolute;
    bottom: 5px;
    right: 0;
    opacity: 0;
}
.posts_item .feed_rating {
    opacity: 0;
    position: absolute;
    right: 50px;
    bottom: 0;
}
.posts_item .feed_rating_like, .posts_item .feed_rating_dislike {
    width: 28px;
    height: 28px;
}
.posts_item .feed_rating_count {
    font-size: 17px;
}
.posts_item:hover .autor_edit_blog,
.posts_item:hover .feed_rating {
    opacity: 1;
}
.blog_show_count {

}
.blog_show_count {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSc1NCcgaGVpZ2h0PSczMCc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBmaWxsPScjZWJlYmVkJyBkPSdNMjYgMzBDMTAgMzAgMCAxNSAwIDE1UzExIDAgMjcgMHMyNyAxNSAyNyAxNS0xMiAxNS0yOCAxNXptLjUtMjNhOC41IDguNSAwIDEwLjAwMSAxNy4wMDFBOC41IDguNSAwIDAwMjYuNSA3em0wIDEzYTQuNSA0LjUgMCAxMTAtOSA0LjUgNC41IDAgMDEwIDl6Jy8+PC9zdmc+") no-repeat left center;
    background-size: 17px 11px;
    padding-left: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
    margin-left: 10px;
    color: #bcc0c5;
}
.autor_edit_blog:hover {
    background-color: #01a0fc;
}
.autor_edit_blog:hover svg {
    transform: scale(1.3);
} 
.autor_edit_blog svg {
    fill: #01a0fc; 
    margin-left: 3px;
}
.autor_edit_blog:hover svg {
    fill: #fff; 
}
.search_block {
    background-color: #23262c;
    padding: 25px 40px 0;
}
.search_block .block_title {
    color: #fff;
}
.srarch_block_control input {
    background: transparent;
    border:none;
    border-bottom: 3px solid #36393f;
    outline: none;
    color: #e9e9e9;
    padding: 6px 0;
    flex: 1;
    font-size: 16px;
}
.srarch_block_control input::-webkit-search-cancel-button {
    -webkit-appearance: none; 
    height: 15px;
    width: 15px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
}
.srarch_block_control button {
    width: 250px;
    padding: 8px;
    margin-left: 20px; 
}
.search_filter_category button {
    background: transparent;
    color: #8f9194;
    margin-top: 10px;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-right: 15px;
    border-bottom: solid 3px transparent;
}
.search_filter_category button.active,
.search_filter_category button:active,
.search_filter_category button:focus {
    border-bottom: solid 3px #01a0fc;
    color: #01a0fc;
}
.search_filter_category button:hover {
    color: #01a0fc;
}
.filter_search_content {
    display: flex;
    flex-direction: row;
}
.filter_search_content select {
    border-radius: 0;
    border-width: 3px;
    font-size: 14px;
}

.media_items {
    grid-template-rows: auto auto;
    grid-auto-columns: 1fr;
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.media_item {
    display: block;
    text-decoration: none;
}
.media_item_img {
    display: block;
    overflow: hidden;
    max-height: 142px;
    min-height: 142px;
    background-color: #202731;
}
.media_item_img img {
    width: 100%;
}
.media_item_title {
    display: block;
    color: #ffffffb4;
    font-size: 16px;
    line-height: 17px;
    font-weight: 700;
    padding: 10px; 
    transition: all ease-in-out 0.2s;
}
.media_item:hover .media_item_title {
    color: #fff;
}

.videos_item {
    margin-bottom: 20px; 
}
.videos_item a {
    text-decoration: none;
    display: block; 
}
.videos_item__img { 
    margin-bottom: 10px;
    position: relative;
}
.videos_item__img img {
    width: 100%;
}
.videos_item__category_sport {
    background: #01a0fc;
    position: absolute;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    left: 10px;
    text-transform: uppercase;
    padding: 1px 5px;
    bottom: -5px;
}
.videos_item__title {
    display: block;
    color: #ffffffb4;
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;  
    margin-bottom: 10px; 
    transition: all ease-in-out 0.2s;
}
.videos_item a:hover .videos_item__title {
    color: #fff;
} 
.video_page_full {}
.video_page_full .post_title {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0 25px;
    color: #fff;
    line-height: 34px;
}
.video_page_full .feed_comments_title {
    color: #fff;
}
.video_page_full .comment_item {
    color: #cdcdcd;
    font-size: 15px;
    border-bottom: solid 1px #363636;
}
.video_page_full .feed_comments_auth {
    background: #2e2e2e;
    color: #cdcdcd;
}

.video_widget {}
.video_widget .video_item {
    display: block;
}
.video_widget .video_item__img { 
    background: #eaebed url(../images/ajax-loader-transparent.gif) no-repeat center center;
    position: relative; 
    display: block; 
    overflow: hidden;
}
.video_widget .video_item__img img {
    width: 100%;
}
.video_widget  a {
    text-decoration: none;
} 
.video_widget .video_item__category_sport {
    background: #1f2229;
    position: absolute;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    left: 10px;
    text-transform: uppercase;
    padding: 1px 5px;
    bottom: -5px;
} 
.video_widget .blogs_item__title {
    color: #202731;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    padding: 15px 15px 0 0;
    position: relative;
    transition: all ease-in-out 0.2s;
}  
.video_widget a:hover .blogs_item__title {
    color: #01a0fc;
}
.svg-icon_play path:first-child,
.svg-icon_play path:last-child {
    fill: #ffffff9f;
    transition: all ease-in-out 0.2s;
}
.video_widget a:hover .svg-icon_play path:first-child,
.video_widget a:hover .svg-icon_play path:last-child {
    fill: #BDD2EF;
}
.svg-icon_play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
}

.header-search {
    position: relative;
    display: none;
}
.header-search input {
    border-width: 2px;
    border-radius: 0;
    font-size: 16px;
    padding-right: 40px;
}
.header-search input::-webkit-search-cancel-button {
    -webkit-appearance: none; 
    height: 15px;
    width: 15px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
}
.header-search .button_search {
    position: absolute;
    top: 7px;
    right: 7px;
    border: none;
    background-color: transparent;
}
.section_block_default {
    font-size: 16px;
}
.section_block_default img {
    max-width: 100%;
}

.page-text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
}
.page-text dt {
    font-weight: bold;
}
.page-text dl {
    width: 30%;
}
.page-text dd {
    padding: 0;
    margin: 0;
}
@media (max-width: 767px) {
    .page-text {
        padding: 0 15px;
        gap: 10px;
    }
    .page-text dl {
        width: 50%;
    }
}

/* .medallist  {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.medallist th { 
    font-weight: 700; 
    padding: 22px 0 22px 3px;
}
.medallist td {
    color: #202731;
    text-align: center;
    border-top: 1px solid #e8e8e9;
    font-size: 14px;
}
.medallist td:first-child {
    width: 40px;
    padding: 22px 0 22px 3px;
} */

.medallist  {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.medallist td {
    color: #202731;
    text-align: center;
    border-top: 1px solid #e8e8e9;
    font-size: 14px;
    vertical-align: middle;
}
.medallist th { 
    font-weight: 700; 
    padding: 22px 0 22px 3px;
}
.medallist td:first-child {
    width: 40px;
    padding: 22px 0 22px 3px;
}
.medallist tbody tr:hover {
    background: linear-gradient(29deg, rgb(170 224 255 / 30%) 0%, rgb(1 160 252 / 2%) 71%);
    border-bottom-color: rgb(1, 160, 252) !important;
} 
.medallist a {
    text-decoration: none;
}
.about-title, .contacts-phone, .contacts-title {
    font-weight: 600;
    font-size: 18px;
    color: #a1a4a9;
    text-transform: uppercase;
}
.contacts-phone {
    font-weight: 700;
    font-size: 26px;
    color: #202731;
}
.contacts-address { 
    width: 310px;
    padding: 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    margin-top: 40px;
}
.contacts-address small {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #a1a4a9;
}
.search_btn {
    background-color: transparent;
    border: none;
    padding: 0 13px;
}
.search_header {
    height: 31px;
    margin-right: 3px; 
    z-index: 2; 
}
.search_header .inout_show {
    opacity: 1;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: all ease-in 0.2s;
}
.search_header.active .inout_show {
    width: 266px;
    opacity: 1;
}
.search_header input {
    position: absolute;
    right: 0;
    top: 0;
    outline: none;
    border: none;
    padding: 4px 15px 4px;
    font-size: 15px;
    min-width: 250px;
}
.search_header .search_go {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    border: none;
    padding: 0px 13px 3px;
}
.search_header .search_go:hover {
    background: linear-gradient(-90deg, rgb(170, 224, 255) 3%, rgb(1 160 252 / 7%) 71%);
}
.search_header .search_go svg {
    fill: #424242;
}
.trends_item {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 40px;
}
.alltrend_hot_post {
    display: block;
    position: relative;
}
.alltrend_hot_post_img {
    width: 100%;
}
.alltrend_hot_post_title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 20px;
    padding-bottom: 40px; 
}
.alltrend_hot_post_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all ease-in-out 0.4s;
    opacity: 1;
    height: 100px;
    z-index: 1;
}
.trends_item:hover .alltrend_hot_post_title::after {
    height: 150px;
}
.alltrend_hot_text {
    position: relative;
    z-index: 2;
}
.alltrend_hot_post_sport {
    position: absolute;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    left: 20px;
    top: -15px;
    text-transform: uppercase;
    padding: 1px 5px;
    z-index: 2;
}
.all_trends_item_descr {
    position: absolute;
    bottom: 0;
    display: flex;
    padding: 10px 20px 20px;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    z-index: 2;
}
.alltrends_item_img {
    border-radius: 16px;
    margin-right: 20px;
    width: 64px;
}
.all_trends_item_descr h3 {
    color: #fff;
    font-size: 36px;
    margin: 0 auto 0 0;
    line-height: 1;
    font-weight: 700;
}
.change_lang {
    font-size: 18px;
    padding: 2px 13px 1px;
}
.footer {
    background: #1f2229;
    color: #3e404b;
    padding: 10px 0 15px;
    position: relative;
    z-index: 1;
}
.footer .yearold {
    color: #3e404b;
    margin-right: 10px;
    font-weight: 800;
    font-size: 16px;
}
.footer_nav a {
    transition: all .3s ease;
    color: #fff;
    font-size: 12px;
    padding: 0 13px;
    display: inline-flex;
    line-height: 30px;
    text-decoration: none;
}
.footer_nav a:hover {
    color: #01a0fc;
}
.footer_social {
    white-space: nowrap;
}
.footer_social a {
    opacity: .5;
    margin-right: 5px;
    text-decoration: none;
}
.footer_social a:hover {
    opacity: 1
}
.footer_copy {
    font-weight: 600;
    font-size: 10px;
    line-height: 11px;
    padding: 0 40px;
}
.footer_apps {
    display: flex;
    flex-direction: column;
}
.footer_apps a {
    text-decoration: none;
    color: #fff;
    font-size: 12px; 
    transition: all 0.3s ease-in-out;
}
.footer_apps a svg {
    float: left;
    margin-right: 10px;
    fill: #fff;
}
.footer_apps a:hover {
    color: #0580e4;
} 
.footer_copy_logo {
    font-size: 14px;
}
.footer_copy_logo svg {
    margin-right: 10px;
}
.team-head,
.team-head:hover {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 32px 32px 48px; 
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #000000;
    color: #fff;
    font-weight: 600;
}
.team-head.no_start {
    background: #2c2c2c;
}
.team-head .stat-main {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.team-head .stat-main .stat-desc {
    margin: auto;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}
.team-head .stat-main .stat-date {
    margin: 12px auto 16px;
    /* font-family: Inter SemiBold; */
    font-size: 16px;
    line-height: 20px;
}
.team-head .stat-main .stat-players {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.team-head .stat-main .stat-players .sportsman {
    color: #fff;
    /* font-family: Roboto Flex; */
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding-top: 30px;
}
.team-head .stat-main .match-score {
    margin: 0 63px;
    /* font-family: Inter Bold; */
    font-size: 44px;
    line-height: 56px;
}
.team-head .stat-main .stat-date_bet .game-info {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 8px 15px;
    border-radius: 12px 12px 0 0;
    background: #fff;
    -webkit-transform: translate(-50%, 48px);
    transform: translate(-50%, 48px);
    min-width: 192px;
}
.game-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}