@charset "UTF-8";
:root {
  --color-white-1: #FFF;
  --color-red-1: #DA0F0D;
  --color-red-2: #A00B0B;
  --color-black-1: #060606;
  --color-black-2: #333;
  --color-grey-1: #e6e6e6;
  --color-grey-2: #dddddd;
  --color-grey-3: #eae9f1;
  --color-grey-4: #f4f4f8;
  --color-grey-5: #fafafa;
  --color-grey-6: #b2b2b2;
  --color-blue-1: #2F2978;
  --color-blue-2: #3A3492;
  --shadow-dark: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  --shadow-light: 0 2rem 5rem rgba(0,0,0,.06);
  --color-green-1: #54a158;
  /* --color-primary-light: #FF3366;
  --color-primary-dark: #BA265D;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --shadow-dark: 0 2rem 6rem rgba(0,0,0,.3);
  --shadow-light: 0 2rem 5rem rgba(0,0,0,.06);
  --line: 1px solid var(--color-grey-light-2);*/
  --line: 1px solid var(--color-grey-1);
}

.skeleton-box {
  display: inline-block !important;
  min-height: 1rem !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: var(--color-grey-3) !important;
  color: var(--color-grey-3) !important;
  border-color: var(--color-grey-3) !important;
  z-index: 5 !important;
}
.skeleton-box__fit-content {
  display: inline-block;
  min-height: 1rem;
  position: relative;
  overflow: hidden;
  background-color: var(--color-grey-3) !important;
  color: var(--color-grey-3) !important;
  border-color: var(--color-grey-3) !important;
  z-index: 5;
  width: fit-content;
}
.skeleton-box__fit-content a {
  color: var(--color-grey-3) !important;
}
.skeleton-box > * {
  visibility: hidden;
  opacity: 0;
}
.skeleton-box a {
  color: var(--color-grey-3) !important;
}
.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 5s infinite;
  content: "";
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.no-select {
  user-select: none;
}

/*FADE IN PAGE LOAD*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  position: relative;
  /*z-index: 1;*/
  opacity: 0; /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*    -webkit-animation-duration: 0.5s;
      -moz-animation-duration: 0.5s;
      animation-duration: 0.5s;*/
}

.fade-in.one {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.fade-in.two {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.fade-in.three {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.fade-in.four {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.fade-in.five {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.fade-in.six {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.news-item p {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.country-card-btn {
  min-width: 12rem;
}

.custom-top-bar {
  width: 100%;
  background: #f8f9fa;
  z-index: 1;
  position: absolute;
}

.top-naivation {
  text-align: center;
  width: 100%;
}

.top-naivation__language-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hs-has-mega-menu {
  position: relative;
}

/*PAGE UNDER CONSTRUCTION*/
.page-under-construction-container {
  display: flex;
  flex-direction: row;
  font-size: 1.6rem;
}

.page-under-construction-container p {
  font-size: 2rem;
  flex: 2;
}

.table-custom {
  background-color: white;
}
.table-custom th {
  color: white;
}
.table-custom thead {
  background-color: #2d374b;
  color: white;
}

.top-content {
  padding-top: 5rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
}

.home-info {
  padding-top: 5rem;
  padding-bottom: 3rem;
  margin-top: 5rem;
  /*   width: 100%;

     @media only screen and (max-width:$bp-medium) {
         padding-top: 3rem;
         padding-bottom: 2rem;
         margin-top: 3rem;
     }*/
}

.home-info-content {
  display: flex;
}
.home-info-content__image {
  flex: 1;
}
.home-info-content__content {
  flex: 4;
}
@media only screen and (max-width: 73.125em) {
  .home-info-content {
    flex-direction: column;
    align-items: center;
  }
  .home-info-content__image {
    flex: 1;
  }
  .home-info-content__content {
    flex: 1;
  }
}

.bg-gradient {
  background: linear-gradient(135deg, #1e1e2f, #2c3e50) !important;
}

.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
}

.contextual-links {
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: rgba(26, 161, 121, 0.06);
}
.contextual-links p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  color: #077C76;
}

.contextual-links:hover p {
  color: #000;
}

.contextual-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bookmaker-star {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.cursor-pointer {
  cursor: pointer;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.nowrap {
  white-space: nowrap;
}

.ellipsis-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.h2-style {
  font-size: 2.25rem;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-top: 0;
  margin-bottom: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2d374b;
}

.h3-style {
  font-size: 1.75rem;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-top: 0;
  margin-bottom: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2d374b;
}

h1 {
  all: unset;
  font-size: 2.75rem;
  font-weight: bold;
  border: 0 solid transparent !important;
}

.navbar-brand-logo {
  min-width: 10rem !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-next, .carousel-control-prev {
  width: 5%;
}

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

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

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

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

.video-responsive {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 съотношение */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.no-focus-style:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

select.form-select-lg {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  min-height: 3rem;
}

.stat-item {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 0.75rem;
  transition: 0.2s ease;
}

.stat-item:hover {
  background-color: #eef3f7;
}

.progress {
  background-color: #e9ecef;
}

.card table > tbody > tr:first-child > td {
  padding-top: 1rem;
}

.card table > tbody > tr:last-child > td {
  padding-bottom: 1rem;
}

.lineups-player-img {
  height: 6rem;
  width: 6rem;
  object-fit: cover;
  border-radius: 6px;
}

.lineups-divider {
  width: 3px;
  background: #f5f7fa;
  height: 100%;
  margin: 0 auto;
}

.lineup-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.lineup-pos {
  font-size: 0.85rem;
  opacity: 0.8;
}

.table-row-custom-background {
  background: #e6e8f5;
}

.card-body.card-teams {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

/*# sourceMappingURL=main.css.map */
