.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
}

html{
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::after
*::before{
  box-sizing: inherit;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  color: var(--main-color);
}

li{
  list-style: none;
}

.container{
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

body{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: 14px;
  line-height: 1.4;
  color: #1B1B1B;
  background-color: #101010;
  overflow-x: hidden;
}

:root {
  --main-color: #cf814d;
}

.header {
  background-image: url('../images/7.jpeg');
  /* background-attachment: fixed;  */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.top__header{
  position: absolute;
  margin-top: -850px;
}
.content {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 24px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 70px; 
  /* width: calc(85% - 85px);  */
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 50px;
  margin: 0 auto; 
  border-radius: 50px;
  z-index: 30;
  -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 0.5px solid #fff;
    align-items: center;
}

.logo img{
  max-width: 150px;
}
.menu {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}
.menu__list {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  gap: 20px;
}

.menu__link {
  font-family: "Bebas Neue", sans-serif;
  color: #ffff;
  font-size: 23px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: color 0.24s;
  letter-spacing: .2em;
}

.menu__link::after {
  content: '';
  position: absolute;
  left: -5%;
  bottom: 18px; 
  height: 1px; 
  width: 110%;
  background-color: #ffff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease-in-out;
}

.menu__link:hover::after {
  transform: scaleX(1);
}
.link {
  font-family: "Bebas Neue", sans-serif;
  color: #ffff;
  font-size: 16px;
  text-transform: uppercase;
}

/* бургер меню */
.open{
  display: flex!important;
}
.burger{
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}
.burger span{
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #ffffff;
}
.burger::before, .burger::after{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--main-color);
  transition: all 0.3s ease 0s;
}
.burger::before{
  top: 0;
}
.burger::after{
  bottom: 0;
}
.burger.active span{
  transform: scale(0);
}
.burger.active::before{
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger.active::after{
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}
@media (max-width: 1600px) {
  .burger{
    display: flex;
    cursor: pointer;
  }
  .menu{
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border: 1px solid var(--main-color);
    animation: burgerAnimation 0.4s;
    border-radius: 50px;
    padding: 300px;
    background-image: url('../images/7.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 20px 0px var(--main-color);
  }
  .menu ul{
    flex-direction: column;
    row-gap: 30px;
  }

  .menu__link {
    font-family: "Bebas Neue", sans-serif;
    color: rgb(255, 255, 255);
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.24s ease 0s;
    letter-spacing: 0.2em;
    top: -250px;
  }
  .menu__link::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 20px; 
    height: 1px; 
    width: 110%;
    background-color: #ffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease-in-out;
  }
  .menu__link:hover::after {
    transform: scaleX(1);
  }
  .translator {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 20px;
    color: var(--main-color);
    margin-top: -180px;
    margin-bottom: 30px;
  }
}
@keyframes burgerAnimation{
  from {opacity: 0;}
  to {opacity: 1;}
}

.translator{
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  gap: 20px;
  color: var(--main-color);
  
}
@media (min-width: 1569px) {
  .translator{
    margin-left: 40px;
  }
}
@media (min-width: 1600px) {
  .translator{
    margin-left: 30px;
  }
}

.translator a:hover {
  color: #fff; /* Обычный цвет для всех ссылок */
  text-decoration: none; /* Убираем подчеркивание */
  transition: 1s ease;
}

.translator a {
  color: var(--main-color); /* Обычный цвет для всех ссылок */
  text-decoration: none; /* Убираем подчеркивание */
}

.translator a.active {
  color: white; 
}

.btn {
  font-family: "Bebas Neue", sans-serif;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  padding: 10px 30px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900px;
  color: #ffff;
  border-radius: 50px;
  transition: 1s ease;
  letter-spacing: .2em;

}
@media (min-width: 1569px) {
  .btn{
    margin-left: 30px;
  }
}

.btn:hover{
  font-family: "Bebas Neue", sans-serif;
  border: 1px solid var(--main-color);
  --tw-shadow: 0 0px 20px 0px var(--main-color) inset;
  --tw-shadow-colored: inset 0 0px 20px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  color: #fff;
}

.header__title{
  font-family: "Bebas Neue", sans-serif;
  display: flex;
  justify-content: center;
  color: var(--main-color);
  color: transparent;
  -webkit-text-stroke: 2px var(--main-color);
  font-size: 300px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .15em;
  line-height: 3;
  font-weight: 400;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-52%); }
}

.marquee {
  white-space: nowrap;
  box-sizing: border-box;
}

.header__img{
  position: absolute;
  top: 60%; /* Позиция сверху */
  left: 50%; /* Позиция слева */
  transform: translate(-50%, -50%); /* Для центровки изображения по центру */
  width: 1100px; /* Пример фиксированной ширины */
  height: auto; /* Автоматическая высота для сохранения пропорций */
  z-index: 1; /* Убедитесь, что изображение отображается поверх других элементов */
}

.pfoto {
  position: relative; /* Это необходимо для абсолютного позиционирования псевдоэлементов */
}

.pfoto:before,
.pfoto:after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;
}

.pfoto:before {
  top: -30%; /* Смещение псевдоэлемента выше верхнего края родителя */
  background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 1) 100%);
}

.pfoto:after {
  bottom: -30%; /* Смещение псевдоэлемента ниже нижнего края родителя */
  background: linear-gradient(0deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 1) 100%);
}

.pfoto{
  height: auto;
  background-color: #101010;
  scroll-margin-top: -150px;
}

.pfoto__text{
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-size: 28px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: .2em;
}

.pfoto__title{
  text-align: center;
  margin-top: 100px;
  color: #fff;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: .2em;
}

.horizontal-line{
  position: relative;
  border-top: 1px solid var(--main-color);
  width: 250px;
  clear: both;
  margin: 0 auto;
  display: block;
}

.horizontal-line:after {
  background: repeat 0 var(--main-color);
  content: "";
  height: 10px;
  right: 0%;
  margin: -6px auto auto -6px;
  position: absolute;
  transform: rotate(-45deg);
  width: 10px;
}

.horizontal-line:before {
  background: repeat 0 var(--main-color);
  content: "";
  height: 10px;
  left: 0%;
  margin: -6px auto auto -6px;
  position: absolute;
  transform: rotate(-45deg);
  width: 10px;
}

.swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 100px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 500px;
  height: auto;
}

.swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.book {
  background-image: url('../images/1-5.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  height: auto;
  scroll-margin-top: 100px;
}

.book__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 150px;
  margin-bottom: 100px;
}

.swiper {
  grid-column: 1 / 2;
}

.book__content {
  grid-column: 2 / 3;
  z-index: 1;
  margin-top: -110px;
}

.book__title {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  max-width: 750px;
  font-size: 50px;
  margin-bottom: 20px;
  letter-spacing: .1em;
}

.book__title span{
  font-family: "Bebas Neue", sans-serif;
  color: var(--main-color);
  font-size: 50px;
}

.book__text {
  color: #fff;
  font-size: 21px;
  margin-bottom: 40px;
}

.book .btn{
  width: 350px;
  position: absolute;
  z-index: 20;
}

.book__content-name {
  position: absolute;
  bottom: 0px; 
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; 
  padding: 5px; 
  border-radius: 5px; 
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 0.5px solid #fff;
  letter-spacing: .2em;
  width: 300px;
}

.book__name{
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  color: var(--main-color);
  text-transform: uppercase;
  text-align: center;
}

.book__descr{
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  color: #fff;
  text-align: center;
}
.book__descr span{
  color: var(--main-color);
}

.swiper-slide__hehtg{
  font-family: "Bebas Neue", sans-serif;
  font-size: 150px;
  color: transparent;
  text-align: center;
  line-height: 1;
  font-weight: 400;
  -webkit-text-stroke: 2px var(--main-color);
  z-index: 2;
  margin-top: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-slidetext__hehtg{
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  z-index: 3;
  margin-top: 2px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: .2em;
}

.service{
  height: auto;
  background-color: #101010;
  scroll-margin-top: 100px;
}

.service__inner{
  display: flex;
  justify-content: center;
}

.service__title-price{
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  max-width: 600px;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: center;
  position: absolute;
  margin-top: 50px;
  letter-spacing: .2em;
}

.service__inner .horizontal-line{
  margin-top: 130px;
  margin-bottom: 100px;
}

.service {
  position: relative; /* Это необходимо для абсолютного позиционирования псевдоэлементов */
}

.service:before,
.service:after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;
}

.service:before {
  top: -30%; /* Смещение псевдоэлемента выше верхнего края родителя */
  background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 1) 100%);
}

.service:after {
  bottom: -30%; /* Смещение псевдоэлемента ниже нижнего края родителя */
  background: linear-gradient(0deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 1) 100%);
}

.service__item{
  width: 360px;
  margin-bottom: 30px;
}

.service__cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  justify-items: center;
}

.service__title-priceitem{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.service__icons{
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  transform: rotate(50deg);
  filter: grayscale(100%) brightness(200%);
}

.service__title{
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-size: 21px;
  max-width: 250px;
  letter-spacing: .2em;
}

.service__price{
  color: var(--main-color);
  font-size: 21px;
  margin-top: -8px;
  letter-spacing: .1em;
}

.service__text{
  color: #717170;
  font-size: 16px;
  max-width: 380px;
}

.location{
  height: 800px;
}

.location {
  position: relative; /* Это необходимо для абсолютного позиционирования псевдоэлементов */
}

.location:before{
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;
}

.location:before {
  top: -30%; /* Смещение псевдоэлемента выше верхнего края родителя */
  background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 1) 100%);
}

.location__inner {
  display: flex;
  justify-content: space-between;
  padding: 120px 0;
}

.location__square-one {
  text-align: center;
  position: relative;
  padding: 23px 40px 50px;
  border: solid 1px var(--main-color);
  z-index: 2;
  width: 570px;
  height: 570px;
}

.location__square-two {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px var(--main-color);
  top: -10px;
  left: -10px;
  z-index: -1;
}

.location__content {
  justify-content: center;
}

.location__title {
  font-family: "Bebas Neue", sans-serif;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 48px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .2em;
}

.horizontal-line {
  margin-bottom: 50px;
}

.location__list {
  border-bottom: 1px solid #717170;
  width: 90%;
  padding-bottom: 10px;
  margin-bottom: 22px;
  margin: 0 auto;
}

.location__list-text {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 20px;
  letter-spacing: .2em;
}

.location__sub-text {
  font-family: "Bebas Neue", sans-serif;
  color: var(--main-color);
  font-size: 32px;
  letter-spacing: .1em;
}

.location__phone{
  display: flex;
  gap: 15px;
  justify-content: center;
}

.location__telegrm{
  width: 30px;
  height: 30px;
  margin-top: 5px;
}

.location__oval{
  position: absolute;
  width: 260px;
  right: 0;
  margin-right: 50px;
  margin-top: -27px;
}

.swiper.mySecondSwiper{
  width: 440px;
  height: 620px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Общие стили для секции reviews */
.reviews__title {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  max-width: 700px;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  margin-top: 150px;
  letter-spacing: .2em;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px){
  .reviews__title {
    font-size: 41px;
  }
}

.reviews .horizontal-line{
top: 200px;
}

.reviews {
  background-image: url('../images/1-5.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  height: auto;
  scroll-margin-top: 350px;
  position: relative; /* Добавлено для корректного позиционирования псевдоэлемента */
}

/* Стили для третьего слайдера внутри секции reviews */
.myThirdSwiper {
  width: 100%;
  height: 100%;
  background: transparent;
  margin-top: 200px;
  margin-bottom: 100px;
}

.myThirdSwiper .swiper-slide {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 60px;
  text-align: center;
}

.myThirdSwiper .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.myThirdSwiper .swiper-slide .title {
  font-size: 41px;
  font-weight: 300;
}

.myThirdSwiper .swiper-slide .subtitle {
  font-size: 31px;
  margin-bottom: 20px;
  color: var(--main-color);
}

.myThirdSwiper .swiper-slide .text {
  font-size: 21px;
  max-width: 100%;
  line-height: 1.3;
  padding: 0 150px;
}

.footer {
  height: 200px;
  display: flex;
  align-items: center;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

.footer__smm {
  display: flex;
  justify-content: space-between; /* Расстояние между иконками */
}

.footer__fit {
  font-size: 30px; /* Новый размер иконок */
  margin: 0 10px; /* Уменьшенное расстояние между иконками */
  color: #fff;
  transition: all 0.3s ease; /* Анимация при наведении */
}

.footer__fit:hover {
  transform: translateY(-3px) scale(1.1); /* Масштабирование при наведении */
  color: var(--main-color);
}

.footer__copyright {
  color: #fff;
}

.hashtag__title{
  font-family: "Bebas Neue", sans-serif;
  justify-content: center;
  color: #fff;
  font-size: 80px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 400;
  max-width: 1900px;
}

.hashtag__title span{
  color: var(--main-color);
  margin-right: -11px;
}

/* кнопка онлайн запись */
.round-button {
  display: inline-block;
  background-color: var(--main-color);
  border: none;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 16px;
  padding: 20px;
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
	position: fixed;
  right: 0px;
  margin-right: 40px;
	bottom: 40px;
	z-index: 9999!important;
	line-height: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media (max-width: 768px){
  .round-button{
    font-size: 13px;
  }
}

.round-button:hover {
  background-color: rgba(209, 126, 37, 0.784);
}

/* Добавляем стили для кольца */
.round-button::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 5px solid var(--main-color);
  width: calc(50% + 4px);
  height: calc(50% + 4px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  opacity: 0.9;
  animation: wave-stroke 2s infinite cubic-bezier(0.37, 0, 0.8, 0.77);
}

@keyframes wave-stroke {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  50% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

/* ВИДЕО ВИДЖЕТ OKEY PLAYER */
.video-widget {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 9999;
  border: 3px solid var(--main-color);
  box-shadow: 0px 0px 20px 0px var(--main-color);
  cursor: pointer;
  transition: all 0.5s;
}


@media only screen and (min-width: 780px){
  .video-widget:hover {
      /* width: 160px;
      height: 200px; */
      width: 160px;
      height: 160px;
  }
}

#video-player {
  background-color: #000;
  border-radius: 5px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 102%;
  height: 102%;
  min-width: 105%;
  min-height: 101%;
}

.video-controls {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}

#volume-btn {
  display: none;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50%;
  opacity: 0.7;
}

.video-widget.expanded {
  width: 275px;
  height: 488px;
  border-radius: 20px;
  border-image: none; /* Убираем градиентную рамку при расширении */
  border: 3px solid white; /* Возвращаем белую рамку */
  box-shadow: none;
}

.video-widget.expanded .expand-icon img {
  position: absolute;
  right: 15px;
  top: 50px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50%;
  opacity: 0.9;
}

.video-widget.expanded .expand-icon_close img {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50%;
  opacity: 1;
  animation: pulse 1s ease-in-out infinite;
}

.video-widget.expanded .logo-texte {
  display: block;
  position: absolute;
  width: 350px;
  height: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-decoration: none;
  color: white;
  top: 97.5%;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 0;
}

.button-overlay button {
  display: none;
}

.video-widget.expanded .button-overlay button {
  display: block;
}

.button-overlay.expand-btn a {
  position: absolute;
  text-decoration: none;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 87%;
  padding: 10px 19px;
  border-radius: 50px;
}

#case-btn {
  position: relative;
  width: 220px;
  padding: 10px 19px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-transform: uppercase;
  background-image: linear-gradient(25deg, rgb(0, 0, 0), #d19d64);
  color: #fff;
  transition: all 0.5s;
  top: 15px;
}

#case-btn:hover {
  background-image: linear-gradient(25deg, #d19d64, rgb(0, 0, 0));
}

#progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  background-image: linear-gradient(25deg, rgb(0, 0, 0), #d19d64);
  width: 0;
  transition: width 0.3s linear;
  display: none;
}

.video-widget.expanded #progress-bar {
  display: block;
}

@media only screen and (max-width: 780px) {
  .video-widget {
      bottom: 20px;
      left: 20px;
      width: 140px;
      height: 180px;
  }
}

#time-left {
  position: absolute;
  color: white;
  font-size: 16px;
  top: 10px;
  left: 15px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.video-widget.expanded #time-left {
  opacity: 1;
}

#share-icon {
  display: none;
  position: absolute;
  bottom: -130px;
  right: 4px;
  padding: 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 10000;
}

#share-icon img {
  width: 30px;
  height: 30px;
}

.video-widget.expanded #share-icon {
  display: block;
}

.share-container {
  position: relative;
}

.social-buttons {
  /* display: none; */
  position: absolute;
  top: 45%;
  right: -100px;
  transform: translateY(-50%);
  text-align: center;
  transition: right 0.3s ease;
}

.social-buttons.visible {
  right: 13px;
  top: 210px;
}

.social-buttons a {
  display: block;
  margin: 10px 0;
}

.social-buttons img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-buttons img:hover {
  transform: scale(1.1);
}

.share-label {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.separator {
  width: 1px;
  height: 40px;
  background-color: #fff;
  margin: 5px 0;
}

.share-label span {
  color: white;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: bold;
}

/* всплывающее окно продаж */
#purchase-notification .items{
  display: flex;
  gap: 10px;
  align-items: center;
}

#purchase-notification {
    position: fixed;
    /* background-color: #ffffff; */
    /* padding: 10px; */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 10;
    top: 0;
    margin-top: 190px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--main-color);
    border-radius: 50px;
    font-size: 12px;
    width: 370px;
    background-image: url(../images/1-5.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#purchase-notification:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

@media only screen and (max-width: 780px){
    #purchase-notification {
    position: fixed;
    /* background-color: #ffffff; */
    /* padding: 10px; */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 30;
    top: 0;
    margin-top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--main-color);
    border-radius: 50px;
    font-size: 12px;
    width: 370px;
    background-image: url(../images/1-5.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
}

#purchase-notification h3{
    position: relative;
  font-size: 15px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 3px;
}

.online-recording {
    text-decoration: underline;
}

#purchase-notification p{
  position: relative;
}

#purchase-notification.show {
  opacity: 1;
}

.hidden {
  display: none;
}

#notification-icon {
    position: relative;
    object-fit: cover;
    width: 80px;
    height: 80px;
    vertical-align: middle;
    border-radius: 50%;
}

  .highlight {
    color: var(--main-color); 
    font-weight: bold;
  }

  .hidden {
    display: none;
  }

  .show {
    display: block;
    animation: fadeIn 0.5s;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }