/* Импорт шрифтов через CSS */
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@700&display=swap');

body {
		min-height: 100dvh;
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}



.root {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	color: #666666;
	background: #f5f5f5;
}
.splide__pagination{
	position: relative !important;
	
	margin-top: 16px;
}
.splide__pagination__page.is-active{
	background: #e6873c;
}
  #menuBtn.open span:nth-child(1) {
    transform: rotate(45deg) translateY(-1px);
  }
  #menuBtn.open span:nth-child(2) {
    opacity: 0;
  }
  #menuBtn.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(2px);
  }
    #toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* скрыта по умолчанию */
  padding: 10px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #e6873c;
  color: rgb(250, 250, 250);
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#menuBtn{
    cursor:pointer;
}
.col-light-gray{
	color: #cacaca;
}
.empty-match{
	font-size: 18px;
	grid-column: 1/-1;
	text-transform: uppercase;
	color: #151515;
}
.animate-grow {
      width: 0;
      animation: grow 1.2s forwards;
    }
    @keyframes grow {
      to {
        width: var(--w);
      }
    }

    /* Анимация круга */
    @keyframes drawCircle {
      to {
        stroke-dashoffset: 0;
      }
    }
    .privacy ol {
list-style: decimal;
  padding-left: 20px;
  color: #282828;
}
.privacy ul {
  list-style: disc;
    padding-left: 20px;
  }
  .privacy h2{
    text-align: center;
    color: #ffffff;
    margin-bottom: 16px;
  }
 
 
  .contact-info-privacy{
display: flex;
flex-direction: column;
gap: 8px;
  }
  .privacy ol>li{
    margin-bottom: 32px;
  }
  .privacy li{
    margin-bottom: 8px;
  }
 .custom-select {
      position: relative;
      width: 127px;
      user-select: none;
    }
    .select-selected {
      border-bottom: 1px solid ;
      padding: 10px;
    color: #000000;
      cursor: pointer;
      font-size: 14px;
    }
    .custom-select{
        width: 120px;
    }
    .select-selected:after {
      content: "▼";
      position: absolute;
      right: 10px;
      top: 12px;
      font-size: 12px;
      pointer-events: none;
    }
    .select-items {
      position: absolute;
      background-color: #ffffff;
     border:1px solid #ddd;
      border-radius: 8px;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      display: none;
      max-height: 200px;
      overflow-y: auto;
    }

    .select-items div {
      padding: 10px;
      cursor: pointer;
      position: relative;
       border-bottom:1px solid #ccc;
       font-size: 12px;

    }
    .select-item {
  position: relative;
  padding-right: 20px; /* место под индикатор */
}
  .select-items div:hover {
      background-color: #e6873c;
      color:#fff;
    }
    .custom-select.open .select-items {
      display: block;
    }

    /* Индикатор матча в списке дней */
    .has-match-indicator::after {
      content: "●";
      color: #ff5252;
      font-size: 12px;
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
    }

    .selected-info {
      margin-top: 5px;
      font-size: 32px;
      font-weight: bold;
      color: #151515;
      margin-bottom: 16px;
      text-align: center;
    }
    .filters{
      display: flex;
      align-items: center;
      gap: 16px;
    }

#toTopBtn.show {
  display: block;
  opacity: 0.8;
}

#toTopBtn:active {
  opacity: 1;
}
.container {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 1rem;
}

.splide {
	display: none;

	@media screen and (max-width: 767px) {
		display: block;
	}
}

.splide__arrow--prev {
	left: 0;
}

.splide__arrow--next {
	right: 0;
}


