

/* Start:/local/templates/hockey/assets/css/footer.css?17574052873097*/
.footer {
    background-color: var(--color-primary);
    color: var(--text-color-white);
    padding: 40px var(--main-padding);
    margin-top: 148px;
}

.footer-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    /* flex: 1 1 25%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 130px;
}
.footer-contacts{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-contact-info, .footer-social-info, .footer-buttons{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    justify-content: flex-end;
}
.footer-social-info svg path{
    fill: var(--text-color-white);
}
.footer-social-info div{
    display: flex;
    align-items: center;
}
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    width: 100%;
    min-width: 0px;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-buttons button:hover {
    background-color: #666;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
}
.footer-logo {
    height: 130px;
}
.footer-logos img {
    height: 60px;
}
.footer-top{
    display: none !important;
}
.footer-right .footer-contacts, .footer-left{
    display: flex !important;
}
.logos-block{
    display: flex;
    max-width: 100%;
}
.footer-logos-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto; /* или задай фиксированную ширину, если надо */
}

.footer-logos-swiper img {
    max-width: 100%;
    max-height: 60px; /* ограничь высоту логотипа */
    height: auto;
    object-fit: contain; /* чтобы не растягивались */
}

.footer-buttons a{
    font-size: 14px;
}
@media (max-width: 1300px) {
    .footer-container .menu {
        display: flex !important;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer-container {
        flex-direction: column;
    }
    .footer-top{
        display: flex !important;
        gap: 20px;
    }
    .footer-right .footer-contacts, .footer-left{
        display: none !important;
    }
    .footer-right .menu{
        display: none !important;
    }
    .footer-contacts{
        justify-content: flex-start;
    }
    .footer-logo {
        height: 95px;
    }
    
}
@media (max-width: 661px) {

    .footer-logo {
        height: 70px;
    }
    .footer-logos {
        justify-content: center;
    }
    .footer-contact-info, .footer-social-info, .footer-buttons {
        flex-wrap: wrap;
    }
}

/* End */


/* Start:/local/templates/hockey/assets/css/header.css?17572890267589*/
.mob-menu{
    display: none !important;
}
.pc-menu{
    display: flex !important;
}

header{
    width: 100%;
    max-height: 164px;
    margin-bottom: 35px;
}
.top-bar {
    width: 100%;
    height: 44px;
    padding-left: var(--main-padding);
    padding-right: var(--main-padding);
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.name-site {
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--color-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin: 0px;
}
.social-block {
    position: absolute;
    right: var(--main-padding);
    display: flex;
    gap: 24px;
    align-items: center;
    height: 44px;
}
.social-block a{
    display: flex;
    align-items: center;
}
.main-header{
    background-color: var(--color-primary);
    width: 100%;
    height: 120px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-left: var(--main-padding);
    padding-right: var(--main-padding);
}
.logo {
    flex: 0 0 auto;
}
.menu {
    flex: 1 1 auto;
    display: flex;
    gap: 5px;
    justify-content: space-between;
}
.menu a{
    color: var(--text-color-white);
    font-size: var(--text-size-s);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.menu a{
    color: var(--text-color-white) !important;
    font-weight: 900;
}
/* Бургер */
.burger {
    display: none;
    flex-direction: row;
    gap: 14px;
    cursor: pointer;
    width: max-content;
    margin-left: auto;
}
.burger span{
    color: var(--text-color-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
/* Затемнение */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* фон */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
    display: flex;
    justify-content: flex-end;
}

/* Контент мобильного меню */
.mobile-menu-content {
    width: 80%;
    max-width: 320px;
    background-color: #fff;
    height: 100%;
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* меню сверху, соцсети снизу */
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    position: relative;
}

/* Показ активного меню */
.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

/* Кнопка закрытия */
.close-btn-menu {
    position: absolute;
    top: 30px;
    right: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    width: 24px;
    height: 24px;
}

/* Ссылки меню */
.menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu a {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}
.gap-soc{
    gap: 24px !important;
}
/* Адаптация для мобильных */
@media (max-width: 1610px) {
    .main-header {
        height: 90px;
    }
    .menu a {
        font-size: 15px;
    }
    .logo a img{
        width: 111px;
    }
}
@media (max-width: 1300px) {
    .top-bar{
        display: none !important;
    }
    .mob-menu {
        display: flex !important;
        top: 10px !important;
        position: relative;
    }
    .pc-menu {
        display: none !important;
    }
    .burger {
        display: flex;
    }
    .menu {
        display: none !important;
    }
    .main-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        width: 100%;
        height: 78px;
    }
    .social-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding-top: 20px;
        position: unset;
        height: auto;
        gap: 0px;
    }
    .logo{
        display: flex;
        align-items: center;
        gap: 18px;
    }
    .logo a img{
        width: 57px;
        height: 85px;
    }
    .name-site {
        font-size: var(--text-size-s);
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        color: var(--text-color-white);
        position: unset;
        left: unset;
        transform: unset;
    }
    /* Соц. блок */
    .sponsor a img,
    .sponsor a svg {
        width: 40px;
        height: auto;
    }
    .sponsor a{
        flex: 1 !important;
    }
}
@media (max-width: 661px) {
    .top-bar{
        display: flex !important;
    }
    .top-bar .name-site{
        display: block !important;
    }
    .top-bar .social-block{
        display: none !important;
    }
    .main-header .name-site{
        display: none !important;
    }
    .name-site {
        font-size: var(--text-size-s);
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        color: var(--color-primary);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .mob-menu {
        top: 0px !important;
    }
    header {
        margin-bottom: 15px;
    } 
}
/* popup auth --------------------------------------------------------------------*/
.auth-modal {
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);

  /* Центрирование через Flexbox */
  justify-content: center;
  align-items: center;
}

.auth-modal-content {
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  margin: 20px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-out;
}

.auth-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.auth-close:hover {
  color: #333;
}

.auth-modal-content h2 {
  margin-bottom: 25px;
  font-size: var(--text-size-m);
  color: var(--text-color-black);
  text-align: center;
}

.auth-modal-content label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color-gray);
  font-weight: 500;
  font-size: var(--text-size-s);
}

.auth-modal-content input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-modal-content input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  outline: none;
}

.auth-modal-content button {
  width: 100%;
  padding: var(--btn-padding);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-s);
  font-size: var(--text-size-s);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.auth-modal-content button:hover {
  background-color: #2563eb;
}

@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* End */


/* Start:/local/templates/hockey/assets/css/main.css?175740823867868*/
/* баннер -------------------------------------------------------------------*/
.banners-block {
    width: 100%;
    height: 660px;
    border-radius: var(--border-radius-l);
    overflow: hidden;
    position: relative;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /*width: 75%;*/
    width: 180%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, rgba(0, 0, 0, 70%), transparent);
}

.banner-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    color: white; 
}
.banner-content h1{
    margin-bottom: 24px;
}
.banner-content p{
    margin-bottom: 40px;
}
.banner-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4; 
    text-overflow: ellipsis;
}

.banner-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5; 
    text-overflow: ellipsis;
}

.banner-button {
    background-color: var(--color-primary);
    display: inline-flex;
    padding: var(--btn-padding);
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: var(--border-radius-s);
    cursor: pointer;
    font-size: var(--text-size-s);
    color:  var(--text-color-white);
    position: relative;
    bottom: 20px;
}
.banner-button:hover {
    background-color: var(--btn-primary-hover);
}
.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 60px;
    z-index: 3;
    text-align: left;
}

.custom-pagination {
    position: absolute;
    bottom: 60px !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    z-index: 5;
}

.custom-pagination .swiper-pagination-bullet {
    flex: 1;
    height: 4px;
    background-color: var(--color-bg-gray-max);
    border-radius: 2px;
    opacity: 1;
    transition: background-color 0.3s;
}

.custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.swiper-banners-main .swiper-button-next, .swiper-banners-main .swiper-button-prev {
    color: #fff;
}
@media (max-width:768px) {
    .swiper-banners-main .swiper-button-prev {
        left: -3px;
    }
    .swiper-banners-main .swiper-button-next {
        right: -3px;
    }
    .swiper-banners-main .swiper-button-next:after, .swiper-banners-main .swiper-button-prev:after {
        font-size: 20px;
    }
}
.swiper-banners-main .swiper-button-next, .swiper-banners-main .swiper-button-prev {
    color: #fff;
}
/* блок новостей ----------------------------------------------------*/

.news-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: repeat(3, 1fr);
}
.news-card {
    background-color: #fff;
    border-radius: var(--border-radius-l);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s;
}
.news-image {
    width: 100%;
    height: 100%;
    max-height: 280px;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius-l);
}
.news-info{
    padding: 16px;
}
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.news-title {
    font-size: var(--text-size-m);
    margin: 0;
    max-width: 70%;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.news-date {
    font-size: var(--text-size-s);
    color: var(--text-color-black);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: var(--text-color-gray);
    margin-bottom: 12px;
}
.main-news   .news-tags{
    margin-top: 20px !important;
    margin-bottom: unset !important;
}
.main-block-news{
    display: contents;
}
.news-description {
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: var(--text-color-black);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.btn-block-news{
    padding: 0 16px 16px 16px;
}
.news-button {
    width: 100%;
    align-self: flex-start;
    padding: var(--btn-padding);
    background-color: var(--color-primary);
    color: var(--text-color-white);
    border: none;
    border-radius: var(--border-radius-s);
    cursor: pointer;
    font-size: var(--text-size-s);
}
.news-button:hover {
    background-color: var(--btn-primary-hover);
}
/* блок матчей ----------------------------------------------------*/

.sort-header-block, .sort-header-block-lenta, .sort-header-block-stasistik-team-match{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.sort-left{
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.sort-block,
.filther-block,
.sort-block-result,
.sort-block-result-lenta,
.sort-block-result-stasistik-team-match {
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* для плавности на iOS */
    cursor: grab;
    user-select: none;

    /* скрыть скроллбар (кроссбраузерно) */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE и Edge */
}
.sort-block-result:active {
  cursor: grabbing;
}

.sort-block::-webkit-scrollbar,
.filther-block::-webkit-scrollbar,
.sort-block-result::-webkit-scrollbar,
.sort-block-result-lenta::-webkit-scrollbar,
.sort-block-result-stasistik-team-match::-webkit-scrollbar {
    display: none;               /* Chrome, Safari */
}
.filther-block span{
    display: flex;
    align-items: center;
}
/* панель фильтрации ------------------------- */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

/* Показ затемнения */
.filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Панель фильтрации */
.filter-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 465px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  padding: 24px;
  overflow-y: auto;
}
.header-panel-filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.name-filter{
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
/* Показ панели */
.filter-overlay.active .filter-panel {
  transform: translateX(0%);
}

/* Кнопка закрытия */
.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Стрелка */
.arrow-svg {
  transition: transform 0.3s ease;
}

/* Вращение стрелки */
.arrow-svg.rotated {
  transform: rotate(180deg);
}
/* конец панели фильтрации ----------------------------------------- */

/* начало вып. списка  ---------------------------------------------------*/
.filter-panel{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.filter-settings-block{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.filter-dropdown, .season-dropdown {
  position: relative;
}
.save-filter-btn{
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.save-filter-btn button{
    width: 100%;
}
.settings-block{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.filter-trigger, .season-filter-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--btn-padding);
  background: var(--color-bg-gray-max);
  border-radius: var(--border-radius-s);
  cursor: pointer;
  position: relative;
  width: 100%;
}
.season-filter-trigger{
    background-color: var(--color-primary) !important;
    width: 255px;
}
.season-filter-trigger span{
    color: var(--text-color-white);
}
.season-filter-trigger span svg path{
    stroke: var(--text-color-white);
}
.trigger-label, .season-trigger-label{
    font-size: var(--text-size-s);
    color: var(--text-color-black);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.trigger-arrow, .season-trigger-arrow{
    display: flex;
    align-items: center;
  transition: transform 0.3s ease; 
}

.filter-dropdown.open .trigger-arrow,  .season-dropdown.open .season-trigger-arrow{
  transform: rotate(180deg);
}

.filter-dropdown.selected .trigger-arrow, .season-dropdown.selected .season-trigger-arrow {
  display: none; 
}
.trigger-arrow svg path, .season-trigger-arrow svg path{
    stroke: var(--text-color-black);
}
.trigger-clear, .season-trigger-clear {
  display: none;
  color: #888;
  font-size: 20px;
  cursor: pointer;
}

.filter-dropdown.selected .trigger-clear, .season-dropdown.selected .season-trigger-clear {
  display: inline;
}

.filter-dropdown.selected .filter-trigger, .season-dropdown.selected .season-filter-trigger {
  background: var(--color-primary-3);
}


.filter-flyout, .season-filter-flyout {
    position: absolute;
    top: 120%;
    left: 0;
    /* min-width: 180px; */
    background: var(--color-primary-2);
    border-radius: var(--border-radius-s);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 10;
    width: 100%;
    max-height: calc(3 * 60px);
    overflow-y: auto;
}

.filter-flyout::-webkit-scrollbar, .season-filter-flyout::-webkit-scrollbar {
  width: 6px;
}

.filter-flyout::-webkit-scrollbar-thumb, .season-filter-flyout::-webkit-scrollbar-thumb {
  background-color: rgb(255, 255, 255);
  border-radius: 3px;
}

.filter-dropdown.open .filter-flyout, .season-dropdown.open .season-filter-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.flyout-option, .season-flyout-option {
    padding: var(--btn-padding);
    cursor: pointer;
    font-size: var(--text-size-s);
    color: var(--text-color-white);
    border-radius: var(--border-radius-s);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;       
    overflow: hidden;          
    text-overflow: ellipsis;     
    max-width: 100%;
}

.flyout-option:hover, .season-flyout-option:hover {
  background: var(--color-primary-3);
  color: var(--text-color-black);
}

/* конец вып. списка  --------------------------------------------------------------------*/
.match-cub-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 20px;
    width: 100%;
}
.match-card {
    background-color: #fff;
    border-radius: var(--border-radius-m);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
}
.match-card-header-playoff {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.match-header{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.match-date-time {
    display: flex;
    flex-direction: column;
    font-size: var(--text-size-s);
    font-weight: 500;
}
.match-date, .match-time{
    font-size: var(--text-size-s);
    font-style: normal;
    line-height: 130%;
    color: var(--text-color-black);
}
.match-date{
    font-weight: 600;
}
.match-time{
    font-weight: 400;
}
.match-tags {
    display: flex;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: var(--text-color-white);
    border: none;
    border-radius: var(--border-radius-s);
    font-size: var(--text-size-s);
}
.match-mesto{
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.match-teams {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin: 24px 0px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-score, .background-fon {
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    color: var(--text-color-black);
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    transition: font-size .25s ease-in-out;
    width: 48px;
    background-color: var(--color-bg-gray-min);
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    min-width: 48px;
}
.background-fon {
    color: var(--text-color-white) !important;
    background-color: var(--color-primary) !important;
    width: 38px !important;
    height: 38px !important;
}
.win{
    background-color: var(--color-bg-gray-max);
}
.team-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
}
.user-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
}
.team-name {
    font-size: var(--text-size-m);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.team-name-player-static{
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.match-card-footer {
    text-align: left;
}

.match-review-btn {
    background-color: var(--color-primary);
    color: var(--text-color-white);
    padding: var(--btn-padding);
    border: none;
    border-radius: var(--border-radius-s);
    font-size: var(--text-size-s);
    cursor: pointer;
    width: 100%;
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: center;
    white-space: nowrap;
}
.match-review-btn:hover {
    background-color: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
}
/* для списка ------- */
.match-list-block .match-teams {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    margin: 0px;
}
.match-list-block .team-row:first-child {
  justify-content: flex-end;
}

.match-list-block .team-row:last-child {
  justify-content: flex-start;
}
.match-list-block .team-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.match-list-block .match-mesto{

}

.match-list-block .team-row:first-child .colum500px {
    order: 1;
}
/* .match-list-block .team-row:first-child .team-logo {
    order: 2;
} */
.match-list-block .team-row:first-child .team-score {
    order: 3;
}
.match-list-block .team-row:last-child .team-score {
    order: 1;
}
.match-list-block .team-row:last-child .colum500px {
    order: 2;
}
/* .match-list-block .team-row:last-child .team-name {
    order: 3;
} */


.match-list-block .match-card {
  display: grid;
  grid-template-columns: auto 1fr 201px;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
  width: 100%;
  margin-bottom: 16px;
}
.match-list-block .match-card:last-child{
    margin-bottom: 0px;
}
.match-list-block .match-card-header {
  font-size: var(--text-size-s);
  font-weight: 500;
  color: var(--text-color-black);
}
.match-list-block .match-card-header-playoff {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.match-list-block .team-score {
  font-size: var(--text-size-s);
  padding: 4px 10px;
  min-width: 48px;
}

.match-list-block .match-card-footer {
  justify-self: end;
}

.all-match, .all-photo, .all-video{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

/* детальные новости ---------------------------------------------------------------*/

.detail-block {
    display: flex;
    gap: 40px;
}
/* Левая большая новость */
.main-news {
    flex: 2;
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-l);
}
.main-news-photo img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-m);
    display: block;
    margin-bottom: 15px;
}
.main-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}
.main-news-title {
    font-size: var(--text-size-l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    flex: 1;
}

.main-news-date {
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.main-news-subtitle {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-top: 0;
    margin-bottom: 15px;
    color: #555;
}
.main-news-description {
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    color: #333;
}
/* Правая колонка с другими новостями */
.other-news {
    flex: 1;
    position: sticky;
    top: 20px;
    height: fit-content;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
aside .news-card{
    border-radius: var(--border-radius-m);
}
.social-link-block{
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: end;
}
.block-link{
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-item-link:not(:first-of-type) span svg path {
    fill: var(--text-color-white);
}
.social-item-link span{
    display: flex;
    align-items: center;
}
.social-item-link{
    display: flex;
    width: 60px;
    height: 60px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    aspect-ratio: 1/1;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-s);
    cursor: pointer;
}

/* соревнования ------------------------------------------------------------*/

.competitions, .sport-school, .referee-school {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* justify-content: space-between; */
}

.competitions__card, .sport-school__card, .referee-school__card {
    flex: 0 1 calc(33.333% - 13.34px);
    background: white;
    border-radius: var(--border-radius-m);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.sport-school__card, .referee-school__card {
    flex: 0 1 calc(25% - 15px) !important;
}
.competitions__card:hover, .sport-school__card:hover, .referee-school__card:hover  {
    transform: translateY(-5px);
}
.flex-break {
    flex-basis: 100%;
    height: 0;
    margin: 0;
    padding: 0;
}
.competitions__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-m);
}
.sport-school__img, .referee-school__img{
    width: 100%;
    height: 190px;
    object-fit: contain;
    display: block;
    border-radius: var(--border-radius-m);
}
.competitions-info, .sport-school-info, .referee-school-info  {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    justify-content: space-between;
    width: 100%;
}
.sport-school-info{
    align-items: center !important;
}
.competitions__title, .sport-school__title, .referee-school__title  {
    font-size: var(--text-size-m);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
}
.sport-school__title {
    text-align: center;
}
.competitions__date, .referee-school__date  {
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

/* таблица список резулт ------------------------------------------------------------------*/

.table *, .table-player *, 
.table-player-golkiper *, 
.table-score-team *, 
.table-worker *, 
.table-referer *, 
.table-match-lenta *, 
.table-statistic-match *,
.table-statistic-team-1-table *,
.table-statistic-team-2-table *,
.table-rukovodstvo *,
.table-player-team *{
  box-sizing: border-box;
}

.table, .table-player, 
.table-player-golkiper, 
.table-score-team, 
.table-worker, 
.table-player-statistic, 
.table-referer, 
.table-match-lenta, 
.table-statistic-match,
.table-statistic-team-1-table,
.table-statistic-team-2-table,
.table-rukovodstvo,
.table-player-team {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.table-rukovodstvo {
    border-right: 1px solid #000;
    border-radius: 20px;
}
.table-header,
.table-row,

.table-header-player,
.table-row-player,

.table-header-match-lenta,
.table-row-match-lenta,

.table-header-player-golkiper,
.table-row-player-golkiper,

.table-header-score-team,
.table-row-score-team,

.table-header-player-statistic,
.table-row-player-statistic,

.table-header-referee,
.table-row-referee,

.table-header-statistic-match,
.table-row-statistic-match,

.table-header-worker,
.table-row-worker,

.table-header-statistic-team-1-table,
.table-row-statistic-team-1-table,

.table-header-statistic-team-2-table,
.table-row-statistic-team-2-table,

.table-header-rukovodstvo,
.table-row-rukovodstvo,

.table-header-player-team,
.table-row-player-team
{
  display: grid;
  align-items: center;
  margin-bottom: 12px;
  padding: 18px 24px;
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-m);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.table-header-rukovodstvo,
.table-row-rukovodstvo
{
  margin-bottom: 0px !important;
  border-radius: 0px;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.table-row:hover,
.table-row-player:hover,
.table-row-match-lenta:hover,
.table-row-player-golkiper:hover,
.table-row-player-statistic:hover,
.table-row-referee:hover,
.table-row-statistic-match:hover,
.table-row-score-team:hover,
.table-row-worker:hover,
.table-row-statistic-team-1-table:hover,
.table-row-statistic-team-2-table:hover,
.table-row-player-team:hover
{
    background-color: var(--color-bg-gray-max); 
}
.table-header, 
.table-header-player, 
.table-header-match-lenta, 
.table-header-player-golkiper, 
.table-header-score-team, 
.table-header-worker, 
.table-header-player-statistic, 
.table-header-referee, 
.table-header-statistic-match,
.table-header-statistic-team-1-table,
.table-header-statistic-team-2-table,
.table-header-player-team
{
    background-color: transparent !important;
    padding: 18px 24px 0px 24px !important;
}
.table-header-rukovodstvo {
    background-color: var(--color-primary);
    padding: 0px !important;
    color: var(--text-color-white);
}
.cell, .cell-player, 
.cell-match-lenta, 
.cell-player-golkiper, 
.cell-score-team, 
.cell-worker, 
.cell-player-statistic, 
.cell-referee, 
.cell-statistic-match,
.cell-statistic-team-1-table,
.cell-statistic-team-2-table,
.cell-rukovodstvo, 
.cell-player-team
{
  text-align: center;
  padding: 4px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cell-rukovodstvo {
    white-space: wrap;
    height: -webkit-fill-available;
}
.cell-rukovodstvo {
    border-left: 1px solid var(--text-color-black);
    border-top: 1px solid var(--text-color-black);
    border-bottom: 1px solid var(--text-color-black);
}
.table-row-rukovodstvo{
    padding: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.table-header-rukovodstvo .cell-rukovodstvo{
    padding: 0px;
}
.table-header-rukovodstvo{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.table-header-rukovodstvo .cell-rukovodstvo:nth-child(1) {
    border-top-left-radius: 20px;
}
.table-row-rukovodstvo .cell-rukovodstvo:nth-child(1) {
    border-bottom-left-radius: 20px;
}
.table-header-rukovodstvo .cell-rukovodstvo:nth-child(7) {
    border-top-right-radius: 20px;
}
.table-row-rukovodstvo .cell-rukovodstvo:nth-child(7) {
    border-bottom-right-radius: 20px;
}
.table-header-rukovodstvo .cell-rukovodstvo:nth-child(1),
.table-header-rukovodstvo .cell-rukovodstvo:nth-child(2) {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-row-rukovodstvo .cell-rukovodstvo{
    padding: 18px 0px;
    border-top: 0px !important;
}
.table-row-rukovodstvo .cell-rukovodstvo:nth-child(3),
.table-row-rukovodstvo .cell-rukovodstvo:nth-child(4),
.table-row-rukovodstvo .cell-rukovodstvo:nth-child(5),
.table-row-rukovodstvo .cell-rukovodstvo:nth-child(6),
.table-row-rukovodstvo .cell-rukovodstvo:nth-child(7) {
    padding: 13px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.cell-match-lenta{
    white-space: normal !important;
}
.user-img, .center-position {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cell.name, 
.cell-player.name, 
.cell-match-lenta-name, 
.cell-player-golkiper.name, 
.cell-score-team.name,
.cell-worker.name,  
.cell-player-statistic.name, 
.cell-referee.name, 
.cell-statistic-match.name
.cell-player-team.name{
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  overflow: hidden;
}
.number{
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    color: var(--text-color-black);
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    transition: font-size .25s ease-in-out;
    width: 48px;
    background-color: var(--color-bg-gray-min);
}
.day-week{
    padding: 15px 0px !important;
    border-bottom: 1px solid var(--text-color-black);
}
.data-week{
    padding: 8px 0px !important;
    font-size: 18px;
}
.team-name {
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    text-align: left;
}

.cell:first-child, 
.cell-player:first-child, 
.cell-player-golkiper:first-child, 
.cell-worker:nth-child(2), 
.cell-player-statistic:first-child, 
.cell-referee:first-child, 
.cell-statistic-match:first-child,
.cell-statistic-team-1-table:first-child,
.cell-statistic-team-2-table:first-child,
.cell-player-team:first-child
{
    text-align: left;
}
.cell.name {
    text-align: left;
}
.table-info-block{
    padding-left: var(--main-padding);
    padding-right: var(--main-padding);
}
.table-info-block p {
    max-width: 100%;
    font-size: var(--text-size-s);
    color: var(--text-color-gray);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
    text-align: center;
}
.nowrap {
    white-space: nowrap;
}
.colum{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.table-header,
.table-row {
    grid-template-columns: 50px 1fr repeat(11, 67px) !important;
}

.table-header-player,
.table-row-player {
  grid-template-columns: auto 200px repeat(6, 60px) !important; 
}

.table-header-match-lenta, .table-row-match-lenta {
    grid-template-columns: 115px 1fr 120px 1fr 115px ! important;
}

.table-header-match-lenta > div:nth-child(1),
.table-row-match-lenta > div:nth-child(1) {
    text-align: left;
}

.table-header-match-lenta > div:nth-child(2),
.table-row-match-lenta > div:nth-child(2),
.table-header-match-lenta > div:nth-child(3),
.table-row-match-lenta > div:nth-child(3),
.table-header-match-lenta > div:nth-child(4),
.table-row-match-lenta > div:nth-child(4) {
    text-align: center;
}

.table-header-match-lenta > div:nth-child(5),
.table-row-match-lenta > div:nth-child(5) {
    text-align: right;
}

.table-header-player-golkiper, 
.table-row-player-golkiper {
    grid-template-columns: auto 200px 250px 60px 60px 60px 60px 60px !important;
}
.table-header-player-statistic, 
.table-row-player-statistic {
    grid-template-columns: auto 60px 60px 60px 60px 60px !important;
}
.table-header-referee,
.table-row-referee  {
  grid-template-columns: auto 200px 250px 60px 60px 65px !important; 
}

.table-header-rukovodstvo,
.table-row-rukovodstvo
{
    grid-template-columns: 1fr 240px 160px 140px 140px 140px 140px !important; 
}

.refere-table .table-header-rukovodstvo,
.refere-table .table-row-rukovodstvo 
{
    grid-template-columns: 1fr 200px 150px 150px 150px 150px 150px !important;
}
@media (max-width: 1366px) {
    .refere-table .table-header-rukovodstvo, .refere-table .table-row-rukovodstvo {
        grid-template-columns: 1fr 180px 135px 135px 135px 135px 135px !important;
    }
}
.table-header-statistic-match,
.table-row-statistic-match  {
  grid-template-columns: auto 60px 60px 60px 65px 60px 60px 60px !important; 
}

.table-header-statistic-team-1-table,
.table-row-statistic-team-1-table  {
  grid-template-columns: auto 170px 170px 80px 100px !important;
}

.table-header-score-team,
.table-row-score-team{
  grid-template-columns: 1fr 1fr 1fr 1fr !important; 
}

.table-header-worker,
.table-row-worker{
  grid-template-columns: auto 1fr auto !important; 
}

.table-header-statistic-team-2-table,
.table-row-statistic-team-2-table {
  display: grid;
  grid-template-columns: auto 165px 165px 60px 60px 60px 150px !important;
}

.table-statistic-team-2-table.hidden-ob .table-header-statistic-team-2-table,
.table-statistic-team-2-table.hidden-ob .table-row-statistic-team-2-table {
  grid-template-columns: auto 165px 165px 60px 60px 150px !important;
}

.table-header-player-team,
.table-row-player-team {
  grid-template-columns: 1fr repeat(7, 60px) !important;
}

.column-ob {
  /* скрываем ячейки этого столбца */
  display: block;
}

.hidden-ob .column-ob {
  display: none !important;
}

.school-search {
  position: relative;
  width: 100%;
}

.school-search input {
  width: 100%;
  padding: var(--btn-padding);
  font-size: var(--text-size-s);
  box-sizing: border-box;
  border-radius: var(--border-radius-m);
  border: none;
  color: var(--text-color-gray);;
}

.school-search svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: var(--text-color-gray);
  cursor: pointer;
}

/* деталка школы информация -----------------------------------------------------*/
.information-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.information-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.information-logo {
    width: auto;
    height: 128px;
    object-fit: contain;
}

.information-title {
    font-size: var(--text-size-xl);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.information-heading {
    font-size: var(--text-size-l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.information-description {
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.information-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.information-actions span{
    display: flex;
    align-items: center;
}
/* деталка школы информация -----------------------------------------------------*/
.player-info-block{
    padding: 50px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-l);
}
.player-main-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.info-player{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.player-hvat-block, .player-ampula-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 300px;
}
.name-block-info-player, .age-player{
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.info-block-player, .name-player{
    font-size: var(--text-size-l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}
.big-image-player{
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
}

/* документы --------------------------------------------------------------------------------------*/
.document-group {
  margin-bottom: 24px;
  border-radius: var(--border-radius-m);
}

.document-header {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-m);
    padding: var(--btn-padding);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    position: sticky;
    top: 0px;
}
.document-header span{
    display: flex;
    align-items: center;
}
.document-header span svg path{
    stroke: var(--text-color-black);
}
.toggle-arrow {
  transition: transform 0.3s ease;
}

.document-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  border-radius: var(--border-radius-m);
  margin-top: 0;
}

.document-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 36px;
    margin: 24px 0px;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-m);
    align-items: center;
}

.document-group:last-child{
    margin-bottom: 0px;
}
.download-icon {
    text-decoration: none;
    font-size: 18px;
    background-color: var(--color-primary);
    padding: 2px 4px;
    border-radius: var(--border-radius-s);
}
.document-name{
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
/* комитет ------------------------------------------------------------------------------------------------------------*/
.committee-documents {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.committee-documents__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-m);
    gap: 10px;
}

.committee-documents__date,
.committee-documents__title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.committee-documents__actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.committee-documents__btn {
    font-size: 22px;
    color: var(--color-primary);
}

/* карта -----------------------------------------------------------------------------------------------------------------------*/
.map-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-block iframe {
    width: 100%;
    height: 800px;
    border: none;
    pointer-events: none;
    border-radius: 16px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    color: var(--text-color-white);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    user-select: none;
    transition: background 0.3s;
}
/* матч -----------------------------------------------------------------------------------------------------------------------*/
.match-banner {
  max-width: 100%;
  margin: auto;
  padding: 80px 20px;
  background: var(--color-bg-white);
  border-radius: var(--border-radius-m);
  text-align: center;
}

.match-detail-tags {
  margin-bottom: 24px;
}
.match-tag {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--text-color-white);
  padding: var(--btn-padding);
  margin: 0 5px;
  border-radius: var(--border-radius-s);
  font-size: var(--text-size-s);
}

.match-title, .date-time {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--text-color-black);
}

.match-info {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.location{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color-gray);
}

.match-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}
.match-score .team-left {
  justify-self: end;
}

.match-score .score {
  justify-self: center;
}

.match-score .team-right {
  justify-self: start;
}
.team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-logo-match {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.team-name-match {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.score {
  text-align: center;
}
.final-score {
    display: flex;
    justify-content: center;
    align-items: center;
}
.half-score {
    font-size: 16px;
    color: var(--text-color-gray);
    display: flex;
    gap: 8px;
    justify-content: center;
}



/* прямая трансляция -----------------------------------------------------------------------------------------------------------------------*/
.match-live-wrapper {
    max-width: 100%;
    margin: 20px 0;
}

.match-live-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background-color: #000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.match-live-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

.match-live-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.time-block-lenta{
    display: flex;
    align-items: center;
    justify-content: center;
}
.time-period {
    background-color: var(--color-primary);
    color: var(--text-color-white);
    width: min-content;
    padding: 11px 22px;
    border-radius: var(--border-radius-s);
    display: flex;
    align-items: center;
    gap: 3px;
}

/*чекбокс стобика -----------------------------------------------------------------------------------------------------------------------*/
.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    cursor: pointer;
    justify-content: flex-end;
}

.custom-checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    display: inline-block;
    position: relative;
    padding: 14px;
    
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 12px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: translate(75%, 33%) rotate(45deg);
    display: none;
}

.custom-checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
    background-color: transparent;
    border-color: var(--color-primary);
}

.custom-checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox::after {
    display: block;
}

.column-ob {
    /* этот класс будет скрыт */
}

.hidden-ob .column-ob {
    display: none !important;
}
.block768{
    display: none !important;
}
.none768{
    display: block !important;
}

.match-list-block .colum500px, .match-list-block .colum500pxRev{
    display: flex;
    flex-direction: row;
    align-items: center;
    /* flex-wrap: wrap; */
    flex-wrap: nowrap;
    justify-content: center;
}
.match-list-block .colum500pxRev{
   flex-direction: row-reverse !important; 
}
.colum500px, .colum500pxRev{
    display: flex;
    align-items: center;
    gap: 10px;
}
.table .team-name {
    text-align: left !important;
}
.season-team{
    display: none;
    grid-column: 1 / -1;
    text-align: center;
}
.container-team-match {
    width: 100%;
    overflow: hidden;
}
.table-match-lenta-left, .table-match-lenta-right {
    width: 50%;
}
.table-match-lenta-left {
    float: left;
    padding-right: 10px; 
}
.table-match-lenta-right {
    float: right;
    padding-left: 10px; 
}
.table-header-match-lenta {
    display: flex;
    background-color: #f0f0f0;
    font-weight: bold;
}
.table-row-match-lenta {
    display: flex;
}
.cell-match-lenta {
    flex: 1;
    text-align: center;
}
.time-block-lenta {
    display: inline-flex;
    align-items: center;
}
.time-period span {
    margin: 0 2px;
}
/* пагинация ------------------------------------------------------------------------------------------------*/
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination button {
    padding: 10px 16px;
    background-color: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.pagination button:hover{
    background-color: var(--color-primary);
    color: white;
}
.pagination .active {
    background-color: var(--color-primary);
    color: white;
}
/* конец пагинация ------------------------------------------------------------------------------------------------*/

/* СТАРТ О ФЕДЕРАЦИИ ------------------------------------------------------------------------------------------------*/
.accordion {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.accordion__header {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-m);
    padding: var(--btn-padding);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    position: sticky;
    top: 0px;
    transition: background-color 0.3s;
}

.accordion__header:hover {
  background-color: #e0e0e0;
}

.accordion__icon {
    display: flex;
    transition: transform 0.3s ease;
    align-items: center;
}
.accordion__icon svg path {
    stroke: var(--text-color-black);
}
.accordion.open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion.open .accordion__content {
  max-height: 1000px;
}

/* Карточки */
.sport-school {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0px;
}

.sport-school__card {
  display: flex;
  align-items: center;
  width: calc(50% - 8px);
  background-color: #fff;
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}

.sport-school__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sport-school__img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.competitions__title {
  font-size: 16px;
  margin: 0 0 4px;
}

.competitions__date {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}
.accordion .competitions__title, .accordion .competitions__date{
    font-size: var(--text-size-s);
}
/* КОНЕЦ О ФЕДЕРАЦИИ ------------------------------------------------------------------------------------------------*/
/* СТАРТ КАК СТАТЬ СУДЬЕЙ ------------------------------------------------------------------------------------------------*/
.judge-block {
    padding: 30px 0px;
}

.judge-container {
    max-width: 100%;
    margin: 0 auto;
}

.judge-text {
    font-size: var(--text-size-s);
    margin-bottom: 20px;
}

.judge-photo-wrapper {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.judge-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 33.33%;
}
@media (max-width: 964px) {
    .judge-photo {
        width: calc(50% - 10px);
    }
    .judge-photo-wrapper {
        flex-wrap: wrap;
    }
}
@media (max-width: 964px) {
    .judge-photo {
        width: 100%;
    }
}
/* КОНЕЦ КАК СТАТЬ СУДЬЕЙ ------------------------------------------------------------------------------------------------*/
/* НАЧАЛО ДОКУМЕНТЫ ------------------------------------------------------------------------------------------------*/
.documents-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    flex-direction: column;
}

.document-card {
    transition: transform 0.2s;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-m);
    padding: var(--btn-padding);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px; /*mm*/
}
.block-name-docs{
    display: flex;
    align-items: center;
    gap: 20px;
}
.document-actions{
}

.document-card:hover {
    transform: translateY(-5px);
}

.document-icon {
    width: 50px;
    height: 50px;
}

.document-name {
    font-size: var(--text-size-s);
    word-break: break-word;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .document-card {
        flex: 1 1 calc(33.33% - 20px); /* 3 cards per row */
    }
}

@media (max-width: 768px) {
    .document-card {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row */
    }
}

@media (max-width: 480px) {
    .document-card {
        flex: 1 1 100%; /* 1 card per row */
    }
}
/* КОНЕЦДОКУМЕНТЫ ------------------------------------------------------------------------------------------------*/
/* ВЫБОР ГОДА ------------------------------------------------------------------------------------------------*/
.birth-year-selection h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.year-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 16px;
}

.year-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background-color: #e0e0e0;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    transition: background 0.3s;
    white-space: nowrap;
    gap: 10px;
}

.year-btn::after {
    content: "›";
    font-size: 30px;
    color: #555;
}

.year-btn:hover {
    background-color: #d0d0d0;
}
/* КОНЕЦ ВЫБОР ГОДА ------------------------------------------------------------------------------------------------*/
/* ПОЛИТИКА КОНДИФИЦИАЛЬНОСТИ ------------------------------------------------------------------------------------------------*/
.text-block ul{
    margin-left: 40px !important;
}
.text-block {
    font-size: var(--text-size-s) !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 15px 0 30px !important;
    padding: 15px !important;
    background: var(--color-bg-white) !important;
    border-left: 4px solid var(--color-primary) !important;
    border-radius: var(--border-radius-s) !important;
}
/* КОНЕЦ ПОЛИТИКА КОНДИФИЦИАЛЬНОСТИ ------------------------------------------------------------------------------------------------*/


/* Адаптация для мобильных */
@media (max-width: 1555px){
    .social-block {
        gap: 12px;
    }
}
@media (max-width: 1366px){
    .news-block {
        grid-template-columns: repeat(2, 1fr);
    }  
    .big-image-player {
        width: 250px;
        height: 250px;
    }
    .player-info-block {
        padding: 20px 20px;
    }  
    .info-block-player, .name-player {
        font-size: var(--text-size-m);
    }
    .sport-school__card, .referee-school__card {
        flex: 0 1 calc(33.33% - 14px) !important;
    }
    .map-block iframe {
        height: 600px;
    }
    .match-list-block .match-card-header {
        flex-direction: column;
    }
    .cell-rukovodstvo{
        font-size: 18px;
    } 
    .data-week{
        font-size: 15px;
    }
    .table-header-rukovodstvo, .table-row-rukovodstvo {
        grid-template-columns: 1fr 189px 135px 110px 110px 110px 110px !important;
    }
}
@media (max-width: 1150px){
    .competitions__card, .sport-school__card, .referee-school__card {
        flex: 0 1 calc(50% - 10px);
    }
    .number {
        width: 40px;
    }
    .team-logo {
        width: 40px;
        height: 40px;
    }
    .table-header, .table-row, .table-header-player, .table-row-player, .table-header-match-lenta, .table-row-match-lenta, .table-header-player-golkiper, .table-row-player-golkiper, .table-header-score-team, .table-row-score-team, .table-header-player-statistic, .table-row-player-statistic, .table-header-referee, .table-row-referee, .table-header-statistic-match, .table-row-statistic-match, .table-header-worker, .table-row-worker, .table-header-statistic-team-1-table, .table-row-statistic-team-1-table, .table-header-statistic-team-2-table, .table-row-statistic-team-2-table, .table-header-player-team, .table-row-player-team {
        padding: 5px 10px !important;
        font-size: 18px;
    }
    .team-name, .match-date, .match-time, .match-tags {
        font-size: 18px;
    }
    .match-tags {
        padding: 6px 10px; 
    }
    .team-name-player-static {
        font-size: 18px;
    }
    .table-header,
    .table-row {
        grid-template-columns: 50px 1fr repeat(11, 58px) !important;
    }
    .table-header-player,
    .table-row-player {
        grid-template-columns: auto 140px 200px repeat(4, 49px) !important 
    }
    .table-header-player-golkiper, .table-row-player-golkiper {
        grid-template-columns: 1fr 170px 165px repeat(5, 49px) !important;
    }
    .table-header-player-statistic, .table-row-player-statistic {
        grid-template-columns: 1fr repeat(5, 49px) !important;
    }
    .table-header-referee, .table-row-referee {
        grid-template-columns: 1fr 100px 165px repeat(3, 55px) !important;
    }
    .cell-player-golkiper, .cell-player-statistic, .cell-referee{
        white-space: wrap;
    }
    .table-header-player-team,
    .table-row-player-team {
        grid-template-columns: 1fr repeat(7, 52px) !important;
    }
    .committee-documents__btn, .committee-documents__date, .committee-documents__title {
        font-size: 18px;
    }
    .user-logo {
        width: 40px;
        height: 40px;
    }
    .match-list-block .match-card-header {
        align-items: flex-start;
    }
    .match-list-block .btn-live, .match-list-block .match-review-btn {
        padding: 10px;
    }
    .match-list-block .match-card {
        grid-template-columns: 200px 1fr 150px;
    }
    .match-list-block .team-score {
        width: 40px;
        min-width: 40px;
    }
    .team-score {
        width: 40px;
        min-width: 40px;
    }
}
@media (max-width: 1024px){
    .block768{
        display: block !important;
    }
    .none768{
        display: none !important;
    }
    .match-list-block .match-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .match-list-block .match-card-header,
    .match-list-block .match-card-footer {
        align-self: stretch;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        width: unset;
    }
    .list-match768{
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap:30px;
    }
    .match-cub-block {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .match-teams {
        margin: 12px 0px;
    }
    .main-news-header {
        flex-direction: column-reverse;
    }
    .detail-block {
        flex-direction: column;
    }
    .main-news {
        padding: 16px;
    }
    .cell-player{
        white-space: wrap;
    }
    .table-header > div:nth-child(5),
    .table-header > div:nth-child(7),
    .table-header > div:nth-child(8),
    .table-header > div:nth-child(9),
    .table-header > div:nth-child(11),
    .table-row > div:nth-child(5),
    .table-row > div:nth-child(7),
    .table-row > div:nth-child(8),
    .table-row > div:nth-child(9),
    .table-row > div:nth-child(11) {
        display: none !important;
    }
    .table-header,
    .table-row {
        grid-template-columns: 50px 1fr repeat(6, 45px) !important;
    }
    .sport-school__card, .referee-school__card {
        flex: 0 1 calc(50% - 14px) !important;
    }
    .time-period {
        padding: 2px 8px;
    }
    #block-match-sostav-team .table-header-match-lenta, #block-match-sostav-team .table-row-match-lenta {
        grid-template-columns: 1fr 133px 138px ! important;
    }
    .table-header-match-lenta, .table-row-match-lenta {
        grid-template-columns: 171px 1fr 90px 115px ! important;
    }
    .time-period {
        gap: 0px;
    }
    .container-team-match {
        display: flex;
        flex-direction: column;
    }
    .table-match-lenta-left, .table-match-lenta-right {
        width: 100% !important;
        padding: 0px !important;
    }
    .table-header-match-lenta, .table-row-match-lenta {
        display: grid;
    }
    .table-header-statistic-team-2-table, .table-row-statistic-team-2-table {
        grid-template-columns: 1fr 87px 132px 41px 47px 41px 119px !important;
    }
    .table-statistic-team-2-table.hidden-ob .table-header-statistic-team-2-table,
    .table-statistic-team-2-table.hidden-ob .table-row-statistic-team-2-table {
        grid-template-columns: 1fr 87px 132px 47px 41px 119px !important;
    }
    .cell-rukovodstvo{
        font-size: 14px;
    } 
    .data-week{
        font-size: 13px;
    }
    .table-header-rukovodstvo, .table-row-rukovodstvo {
        grid-template-columns: 1fr 125px 105px 83px 86px 80px 83px !important;
    }
    .background-fon {
        width: 25px !important;
        height: 25px !important;
        font-size: 13px;
    }
    
}
@media (max-width: 768px){
    .banner-content {
        padding: 24px;
        max-width: 100%;
        justify-content: space-between;
    }
    .banner-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 170%;
    }
    .custom-pagination {
        position: absolute;
        bottom: 24px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .banner-button {
        width: 100%;
        margin-bottom: 40px;
    }
    .banners-block {
        height: 486px;
    }
    .social-item-link {
        width: 40px;
        height: 40px;
    }
    .competitions__card, .sport-school__card, .referee-school__card {
        flex: 0 1 calc(100%);
    }
    .table-header-player, .table-row-player {
        grid-template-columns: auto 140px 145px repeat(4, 49px) !important;
    }
    .table-header-player-golkiper > div:nth-child(2),
    .table-row-player-golkiper > div:nth-child(2) {
        display: none !important;
    }
    .table-header-player-golkiper, .table-row-player-golkiper {
        grid-template-columns: 1fr 165px repeat(5, 49px) !important;
    }
    .table-header-player-statistic, .table-row-player-statistic {
        grid-template-columns: 1fr repeat(5, 41px) !important;
    }
    .table-header-referee, .table-row-referee {
        grid-template-columns: 1fr 70px 140px repeat(3, 55px) !important;
    }
    .cell-player-statistic, .cell-player-referee {
        padding: 4px 4px;
    }
    .committee-documents__btn, .committee-documents__date, .committee-documents__title {
        font-size: 14px;
    }
    .committee-documents__actions a svg, .document-item a svg{
        width: 17px;
        height: 17px;
    }
    .map-block iframe {
        height: 400px;
    }
    .team-name-match, .match-title, .date-time {
        font-size: 28px;
    }
    .location {
        font-size: 20px;
    }
    .match-score .team-left {
        justify-self: start;
        flex-direction: row-reverse;
    }
    .match-score {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 12px;
        width: max-content;
        margin: 0 auto;
        max-width: 100%;
    }
    .score {
        grid-row: span 2;
        align-items: center;
    }
    .team-left,
    .team-right {
        flex-direction: row;
        gap: 8px;
        justify-content: flex-start;
    }
    .team-left {
        grid-column: 2;
        grid-row: 1;
    }
    .team-right {
        grid-column: 2;
        grid-row: 2;
    }
    .final-score {
        flex-direction: column;
    }
    .team-logo-match {
        width: 60px;
        height: 60px;
    }
    .half-score{
        display: none;
    }
    .final-score .team-score {
        width: 64px;
        font-size: 24px;
    }
    .team-name-match{
        text-align: left;
    }
    .match-banner {
        padding: 40px 20px;
    }  
    .cell-statistic-team-1-table, .cell-statistic-team-2-table {
        white-space: wrap; 
    }
    .table-header-statistic-team-1-table, .table-row-statistic-team-1-table {
        grid-template-columns: 1fr 137px 132px 60px 81px !important;
    }
}
@media (max-width: 661px) {
    .sort-block, .filther-block, .sort-block-result, .sort-block-result-lenta, .sort-block-result-stasistik-team-match {
        width: 100%;
        flex-wrap: wrap;
    }
    .match-cub-block {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .team-name {
        white-space: wrap;
        text-align: center;
    }
    .filter-panel {
        width: 100%;
    }
    .news-image {
        max-height: 240px;
        min-height: 180px;
    }
    .news-card {
        height: auto;
        justify-content: unset;
    }
    .match-tags {
        display: flex;
        padding: 8px 10px;
    }
    .news-button {
        margin-top: 0px;
    }
    .news-block {
        grid-template-columns: repeat(1, 1fr);
    }
    .filter-dropdown, .season-dropdown {
        width: 100%;
    }
    .filter-trigger, .season-filter-trigger {
        width: 100% !important;
    }
    .table-header, .table-row, .table-header-player, .table-row-player, .table-header-match-lenta, .table-row-match-lenta, .table-header-player-golkiper, .table-row-player-golkiper, .table-header-score-team, .table-row-score-team, .table-header-player-statistic, .table-row-player-statistic, .table-header-referee, .table-row-referee, .table-header-statistic-match, .table-row-statistic-match, .table-header-worker, .table-row-worker, .table-header-statistic-team-1-table, .table-row-statistic-team-1-table, .table-header-statistic-team-2-table, .table-row-statistic-team-2-table, .table-header-player-team, .table-row-player-team {
        font-size: 14px;
    }
    .table-header-player-team, .table-row-player-team {
        grid-template-columns: 1fr repeat(4, 50px) !important;
    }
    .table-header, .table-row {
        grid-template-columns: 25px 1fr repeat(6, 24px) !important;
    }
    .table .table-header .cell, .table .table-row .cell {
        padding: 0px !important;
    }
    .team-name {
        font-size: 14px;
    }
    .team-logo {
        width: 35px;
        height: 35px;
    }
    .number {
        width: 25px;
    }
    .season-team{
        display: block;
    }
    .table-header-player > div:nth-child(2),
    .table-row-player > div:nth-child(2) {
        display: none !important;
    }
    .table-header-player, .table-row-player {
        grid-template-columns: auto 115px repeat(4, 42px) !important;
    }
    .table-header-player-golkiper, .table-row-player-golkiper {
        grid-template-columns: 1fr 110px repeat(5, 42px) !important;
    }
    
    .table-header-referee > div:nth-child(2),
    .table-header-referee > div:nth-child(3),
    .table-row-referee > div:nth-child(2),
    .table-row-referee > div:nth-child(3),

    .table-header-player-team > div:nth-child(4),
    .table-header-player-team > div:nth-child(7),
    .table-header-player-team > div:nth-child(8),
    .table-row-player-team > div:nth-child(4),
    .table-row-player-team > div:nth-child(7),
    .table-row-player-team > div:nth-child(8) {
        display: none !important;
    }
    .table-header-player-statistic, .table-row-player-statistic {
        grid-template-columns: 1fr repeat(5, 34px) !important;
        grid-auto-rows: auto;
    }
    .table-header-referee, .table-row-referee {
        grid-template-columns: 1fr repeat(3, 46px) !important;
        grid-auto-rows: auto;
    }
    .team-name-player-static {
        font-size: 14px;
    }
    .big-image-player {
        width: 150px;
        height: 150px;
    }
    .sport-school__card, .referee-school__card {
        flex: 100% !important;
    }
    .committee-documents__actions {
        gap: 10px;
    }
    .document-item, .document-header {
        padding: 10px 16px;
    }
    #block-match-sostav-team .table-header-match-lenta, #block-match-sostav-team .table-row-match-lenta {
        grid-template-columns: 1fr 110px 111px ! important;
    }
    .table-header-match-lenta, .table-row-match-lenta {
        grid-template-columns: 115px 1fr 90px 115px ! important;
    }
    .table-header-statistic-match, .table-row-statistic-match {
        grid-template-columns: 1fr repeat(7, 45px) !important;
    }   
    .cell-statistic-match {
        white-space: wrap;
    }
    .table-header-statistic-team-1-table > div:nth-child(3),
    .table-row-statistic-team-1-table > div:nth-child(3) {
        display: none !important;
    }
    .table-header-statistic-team-1-table, .table-row-statistic-team-1-table {
        grid-template-columns: 1fr 61px 50px 65px !important;
    }
    .table-header-statistic-team-2-table, .table-row-statistic-team-2-table {
        grid-template-columns: 1fr 61px 110px 36px 40px 36px 60px !important;
    }
    .table-statistic-team-2-table.hidden-ob .table-header-statistic-team-2-table,
    .table-statistic-team-2-table.hidden-ob .table-row-statistic-team-2-table {
        grid-template-columns: 1fr 61px 110px 40px 36px 60px !important;
    }
    .information-logo {
        height: 100px;
    }
    .information-title {
        font-size: 32px;
    }
    .custom-checkbox-wrapper {
        font-size: 16px;
    }
    .custom-checkbox {
        padding: 10px;
    }
    .custom-checkbox::after {
        transform: translate(30%, 10%) rotate(45deg);
    }
    .team-name, .match-date, .match-time, .match-tags, .match-list-block .btn-live, .match-list-block .match-review-btn {
        font-size: 14px;
    }
    #matches-container .team-name{
        font-size: 18px;
    }
}
@media (max-width: 532px) {
    .year-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 500px) {
    .match-list-block .team-score {
        padding: 0px;
    }
    .match-list-block .match-review-btn {
        width: max-content;
    }
    .match-list-block .colum500px, .match-list-block .colum500pxRev{
        display: flex;
        flex-direction: column !important;
        align-items: center;
    }
    .btn-live svg{
        width: 20px !important;
        height: 20px !important;
    }
    .banners-block {
        height: 445px;
    }
    .social-link-block {
        justify-content: center;
    }
    .table-header-player, .table-row-player {
        grid-template-columns: 1fr 90px repeat(4, 34px) !important;
    }
    .cell, .cell-player, .cell-match-lenta, .cell-player-golkiper, .cell-score-team, .cell-worker, .cell-player-statistic, .cell-referee, .cell-statistic-match, .cell-statistic-team-1-table, .cell-statistic-team-2-table{
        padding: 4px 4px;
    }
    .table-header-player-golkiper, .table-row-player-golkiper {
        grid-template-columns: 1fr 95px repeat(5, 34px) !important;
    }
    .table-header-player-statistic, .table-row-player-statistic {
        grid-template-columns: 1fr repeat(5, 34px) !important;
        grid-auto-rows: auto;
    }
    .table-header-referee, .table-row-referee {
        grid-template-columns: 1fr repeat(3, 38px) !important;
        grid-auto-rows: auto;
    }
    .big-image-player {
        width: 90px;
        height: 90px;
    }
    .information-actions a, .information-actions a .btn-fill{
        width: 100%;
    }
    .team-name-match, .match-title, .date-time {
        font-size: 22px;
    }
    .location {
        font-size: 18px;
    }
    .team-logo-match {
        width: 50px;
        height: 50px;
    }
    .final-score .team-score {
        width: 56px;
        font-size: 20px;
    }
    #block-match-sostav-team .table-header-match-lenta, #block-match-sostav-team .table-row-match-lenta {
        grid-template-columns: 1fr 101px 56px ! important;
    }
    .table-header-match-lenta, .table-row-match-lenta {
        grid-template-columns: 80px 1fr 80px 85px ! important;
    }
    .user-logo {
        width: 35px;
        height: 35px;
    }
    .table-header-statistic-match > div:nth-child(7),
    .table-header-statistic-match > div:nth-child(8),
    .table-row-statistic-match  > div:nth-child(7),
    .table-row-statistic-match  > div:nth-child(8) {
        display: none !important;
    }
    .table-header-statistic-match, .table-row-statistic-match {
        grid-template-columns: 1fr repeat(5, 37px) !important;
    }
    .table-header-statistic-team-2-table > div:nth-child(3),
    .table-row-statistic-team-2-table > div:nth-child(3) {
        display: none !important;
    }
    .table-header-statistic-team-2-table, .table-row-statistic-team-2-table {
        grid-template-columns: 1fr 53px 28px 32px 28px 52px !important;
    }
    .table-statistic-team-2-table.hidden-ob .table-header-statistic-team-2-table,
    .table-statistic-team-2-table.hidden-ob .table-row-statistic-team-2-table {
        grid-template-columns: 1fr 53px 32px 28px 52px !important;
    }
    .information-logo {
        height: 85px;
    }
    .match-list-block .team-row {
        align-items: baseline;
    }
    .match-cub-block .block768 {
        display: none !important;
    }
    .match-cub-block .none768 {
        display: block !important;
    }
}
@media (max-width: 410px) {
    .match-list-block .match-tags {
        padding: 0px !important;
        background-color: transparent;
        color: var(--text-color-black);
    }
    .information-title {
        font-size: 24px;
    }
    .information-logo {
        height: 70px;
    }
}
/* End */


/* Start:/local/templates/hockey/assets/css/root.css?17572890265371*/
:root {
    --color-primary: #1257D5;
    --color-primary-2: #5F89D4;
    --color-primary-3: #e0e9ff;

    --primary-main-bg: #f4f4f4;
    --color-bg-white: #FFFFFF;
    --color-bg-gray-min: #EDEDED;
    --color-bg-gray-max: #D3D3D3;

    --btn-primary-hover: #1b4da7;

    /* кнопка трансляции*/
    --color-live-btn: #D51216;
    --btn-live-hover: #b10e11;

    /* цвет текстов */
    --text-color-white: #FFFFFF;
    --text-color-black: #000000;
    --text-color-gray: #666666;

    /* размер текстов */
    --text-size-xl: 64px;
    --text-size-l: 48px;
    --text-size-m: 24px;
    --text-size-s: 18px;

    --main-padding: 80px;
    --btn-padding: 18px 36px;

    /* radius */
    --border-radius-l: 32px;
    --border-radius-m: 16px;
    --border-radius-s: 8px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--primary-main-bg);
    font-family: 'Inter Tight', sans-serif !important;
    overflow-x: hidden;
}
body {
    background-color: var(--primary-main-bg);
    font-family: 'Inter Tight', sans-serif !important;
}
section{
    margin-top: 25px;
}
.container{
    padding-left: var(--main-padding);
    padding-right: var(--main-padding);
}
main{
    padding-left: var(--main-padding);
    padding-right: var(--main-padding);
}
h1{
    font-size: var(--text-size-l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
h2{

}
p{
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a:hover, a:focus {
    color: inherit;
    text-decoration: none;
}
.header-block{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}
.header-section{
    font-size: var(--text-size-xl);
    color: var(--text-color-black);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btn-fill, .btn-transparent, .btn-live{
    display: flex;
    padding: var(--btn-padding);
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: var(--border-radius-s);
    font-size: var(--text-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    width: fit-content;
    white-space: nowrap;
}
.btn-fill{
    background-color: var(--color-primary);
    color: var(--text-color-white);
    border: 2px solid var(--color-primary);
}
.btn-fill:hover{
    background-color: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
}

.btn-transparent{
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-transparent:hover{
    background-color: var(--color-primary);
    color: var(--text-color-white);
    border: 2px solid var(--color-primary);
}
.btn-transparent:hover svg path {
    stroke: #fff;
}
.btn-live{
    background-color: var(--color-live-btn);
    color: var(--text-color-white);
    border: none;
    width: 100%;
}
.btn-live:hover{
    background-color: var(--btn-live-hover);
}
.btn-live span{
    display: flex;
    align-items: center;
}
.icon{
    padding: 18px !important;
}
.breadcrumbs{
    padding-left: var(--main-padding);
    padding-right: var(--main-padding);
}
.breadcrumbs-item, .breadcrumbs span{
    font-size: var(--text-size-s);
    color: var(--text-color-gray);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.margiin16bottom{
    margin-bottom: 16px;
}
.margiin16top{
    margin-top: 16px;
}
.margin32bottom{
    margin-bottom: 32px
}
.p48{
    font-size: var(--text-size-l) !important;
    margin-top: 20px;
}
.justify-start{
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap:8px;
}
.user{
    border-radius: 50%;
    border: 2px solid var(--color-bg-gray-max);
}
@media(max-width:1366px){
    :root {
        --main-padding: 40px;
    }
}
@media(max-width:768px){
    :root {
        /* размер текстов */
        --text-size-xl: 44px;
        --text-size-l: 38px;
        --text-size-m: 18px;
        --text-size-s: 16px;

        --main-padding: 20px;
        --btn-padding: 14px 24px;

        /* radius */
        --border-radius-l: 32px;
        --border-radius-m: 16px;
        --border-radius-s: 8px;
    }
    .icon{
        padding: 14px !important;
    }
}
@media(max-width:500px){
    :root {
        /* размер текстов */
        --text-size-xl: 34px;
        --text-size-l: 28px;
        --text-size-m: 16px;
        --text-size-s: 14px;

        --main-padding: 20px;
        --btn-padding: 14px 12px;

        /* radius */
        --border-radius-l: 32px;
        --border-radius-m: 16px;
        --border-radius-s: 8px;
    }
    .icon{
        padding: 8px !important;
    }
}
@media(max-width:661px){
    .btn-fill, .btn-transparent, .btn-live{
        flex: 1;
    }
}

.error-block {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-block .error-code {
    font-size: 160px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}

.error-block .error-message {
    font-size: 16px;
    margin-bottom: 30px;
}
/* End */


/* Start:/local/templates/hockey/components/bitrix/menu/main_menu/style.css?17550022934*/





/* End */


/* Start:/local/templates/hockey/components/bitrix/breadcrumb/main/style.min.css?1755585263467*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */


/* Start:/local/templates/hockey/components/bitrix/menu/footer_menu/style.css?17550022934*/





/* End */


/* Start:/local/templates/hockey/components/bitrix/news.list/team-logo-footer/style.css?1757400589150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */
/* /local/templates/hockey/assets/css/footer.css?17574052873097 */
/* /local/templates/hockey/assets/css/header.css?17572890267589 */
/* /local/templates/hockey/assets/css/main.css?175740823867868 */
/* /local/templates/hockey/assets/css/root.css?17572890265371 */
/* /local/templates/hockey/components/bitrix/menu/main_menu/style.css?17550022934 */
/* /local/templates/hockey/components/bitrix/breadcrumb/main/style.min.css?1755585263467 */
/* /local/templates/hockey/components/bitrix/menu/footer_menu/style.css?17550022934 */
/* /local/templates/hockey/components/bitrix/news.list/team-logo-footer/style.css?1757400589150 */
