.carousel-item.slide-1 {
	background-color: #d4edda; /* светло-зелёный */
}
.carousel-item.slide-2 {
	
	background-color: #f8d7da; /* светло-красный */
}
.carousel-item.slide-3 {
	/*background-color: #d1ecf1;*/ /* светло-голубой -6*/
	background-color: #f2f3f4; /* Perfect white */
}
.carousel-item.slide-4 {
	/*background-color: #E8636D;*/ /* coral-bg -7*/
	background-color: #f9b893; /* Perfect Peach */
	
}
.carousel-item.slide-5 {
	/*background-color: #f9b893;*/ /* Perfect Peach -4*/
	background-color: #e3655f; /* Perfect red */
}
.carousel-item.slide-6 {
	/*background-color: #f2f3f4;*/ /* Perfect white -3 */
	background-color: #d1ecf1; /* светло-голубой */
}
.carousel-item.slide-7 {
	/*background-color: #e3655f; */ /* Perfect red -5*/
	background-color: #E8636D; /* coral-bg */
}
.carousel-item.slide-8 {
	background-color: #f2f3f4; /* Perfect white */
}
.carousel-item.slide-9 {
	background-color: #dadada; /* gray */
}
.carousel-item.slide-10 {
	background-color: #cfa959; /* gold */
}

.carousel-item {
	/*min-height: 400px;*/
	color: #212529;
	padding: 40px 20px;
	max-height: 100svh;
	height: calc(100svh - 0px);
}
.table-bordered {
    border: unset;
}	
	

.full	{
	padding-right: 0px;
    padding-left: 0px;
	overflow: hidden;
	margin-top:60px;
}
@media screen and (max-width: 991px) {
	.carousel-item {
		max-height: unset;		
		height:unset;
	}
	.full{
		margin-top:50px;
	}
}
.slide-inner {
	/*max-width: 1200px;*/
	/*max-width: 95vw;*/
	margin: 0 auto;
}

.slide-content {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.7s ease;
}
.carousel-item.active .slide-content {
	opacity: 1;
	transform: translateY(0);
}

.slide-image {
	max-width: 100%;
	height: auto;
	display: block;
	margin-bottom: 15px;
	transition: transform 0.7s ease;
}

.carousel-item.active .slide-image {
	transform: translateX(0);
}

/* Немного «параллакса» для картинок слева/справа */
.slide-image.left {
	transform: translateX(-20px);
}

.slide-image.right {
	transform: translateX(20px);
}

/* Таблица внутри слайда */
.slide-table {
	background: rgba(255,255,255,0.8);
}

/* Общие стили для иконок */
/*.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 30px;
	height: 30px;
}*/

/* По умолчанию (экраны меньше lg): центр по вертикали, слева/справа */
#customSlider .carousel-control-prev,
#customSlider .carousel-control-next {
	width: auto;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	opacity: 0.9;
}

#customSlider .carousel-control-prev {
	left: 15px;
	right: auto;
}

#customSlider .carousel-control-next {
	right: 15px;
	left: auto;
}

	
@media (min-width: 992px) {
	
	#customSlider .carousel-control-prev,
	#customSlider .carousel-control-next {
		top: auto;
		bottom: 15px;
		transform: none;
	}

	#customSlider .carousel-control-prev {
		left: auto;
		right: 70px; 
	}

	#customSlider .carousel-control-next {
		right: 15px;
		left: auto;
	}
}
@media (max-width: 991.98px) {

    #customSlider .carousel-control-prev,
    #customSlider .carousel-control-next {
        position: fixed !important;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;     /* можно изменить размер кликабельной области */
        height: 50px;
        opacity: 1;
        z-index: 9999;   /* чтобы были выше всего */
    }

    #customSlider .carousel-control-prev {
        left: 10px; /* расстояние от левого края экрана */
        right: auto;
    }

    #customSlider .carousel-control-next {
        right: 10px; /* расстояние от правого края */
        left: auto;
    }
}
.slide-counter {
	position: absolute;
	top: 15px;
	right: 20px;
	z-index: 20;
	background: rgba(0,0,0,0.55);
	color: #fff;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
}	

.swiper-prev-button{
    background: linear-gradient(to left, #000 0%, #000 100%); 
    background-size: 0% 100%;   
	background-position: right top;
    background-repeat: no-repeat;
    transition: background-size 0.35s ease;
    border-radius: 4px;
}
.swiper-next-button {
	background: linear-gradient(to right, #000 0%, #000 100%);
	background-size: 0% 100%;   
	background-position: left top;
    background-repeat: no-repeat;
    transition: background-size 0.35s ease; 
    border-radius: 4px;
}

.swiper-prev-button:hover,
.swiper-next-button:hover {
    background-size: 100% 100%;
}

.swiper-prev-button:hover svg,
.swiper-next-button:hover svg{
    filter: invert(1);
}	

.swiper-button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--body-color);
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 50%;
    transition: 0.3s ease-out;
}	

.swiper-prev-button svg {
    transform: rotate(-180deg);
}

.swiper-prev-button svg, .swiper-next-button svg {
    width: 28px;
	color:#000
}	

.download-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 30;
    padding: 10px 16px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(0,0,0,0.85);
    color: #fff;
}
.container-s h1 {
	color:#f9b300;
	text-shadow: 0 0 4px #000;
}
.table img{
	width:10px;
	margin-left:5px;
}
.table thead th, .table-bordered td, .table-bordered th{
	border-bottom: 1px solid #666;
	border: 1px solid #666;
}
[data-sld="1"] .container-s,
[data-sld="1"] .header {
  background-color: var(--savanna-bg);
}

[data-sld="2"] .container-s,
[data-sld="2"] .header {
  background-color: var(--glacier-bg);
}

[data-sld="3"] .container-s,
[data-sld="3"] .header {
  background-color: var(--coral-bg);
}
table tr:first-child th,
table tr:first-child td {
  border-top: none;
}
table tr:last-child th,
table tr:last-child td {
  border-bottom: none;
}
table tr td:first-child,
table tr th:first-child {
  border-left: none;
}

table tr td:last-child,
table tr th:last-child {
  border-right: none;
}
table tr:first-child th,
table tr:first-child td {
  border-bottom: 1px solid #666;
}
table tr > *:last-child {
    text-align: center;
}
.tabh{
	font-weight:bold;
	text-align:center;
	font-family:AmericanTypewriter-Bold;
	text-shadow: 0 0 2px #fff;
}
p span{
	font-weight: bold;
    text-align: center;
    font-family: AmericanTypewriter-Bold;
    text-shadow: 0 0 2px #fff;
}
.container-s {
  /*max-width: 1100px;*/
  border-radius: 4px;
  /*max-height: 680px;*/
  height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  background-color: #e6decf;
  padding: 0 30px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 480px) {
  .container-s {
    height: 100%;
    max-height: 100%;
  }
}

.left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*width: 60%;*/
  /*max-width: 320px;*/
}
@media screen and (max-width: 930px) {
  .left-side {
    /*text-align: center;*/
    /*max-width: 450px;*/
  }
}
.scrolly{
	/*height:380px;*/
	/*height:500px;*/
	height:70svh;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.scrolly::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px; /* ширина полосы */
}
.scrolly::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.4);
  border-radius: 4px;
}

/*.more-menu{
	margin-top: 10px;
	position: absolute;
	top: 79svh;
}
.more-menu a {
	text-transform: uppercase;
}*/
.table{
	/*width:unset;*/
	width:98%;
}
.mySwiper {
  display: flex;
  flex-grow: 1;
  position: relative;
  padding-top:30px;
}

.main {
  /*padding: 42px 0 30px;*/
  padding: 0px 0 0px;
  display: flex;
  flex-grow: 1;
  position: relative;
}
@media screen and (max-width: 930px) {
  .main {
    /*flex-direction: column-reverse;
    align-items: center;
    justify-content: center;*/
  }
}
.main-header {
  text-transform: uppercase;
  color:#f9b300;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
  transition-delay: 0.2s;
}
.main-title {
  font-family: var(--italic-font);
  font-size: 100px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1em;
  transition-delay: 0.3s;
}
.main-subtitle {
  font-family: var(--italic-font);
  font-weight: 400;
  font-size: 32px;
  margin-top: 14px;
  margin-bottom: 60px;
  transition-delay: 0.4s;
}
.main-content__title {
  font-size: 26px;
  font-family: var(--italic-font);
  font-style: italic;
  margin-bottom: 14px;
  transition-delay: 0.2s;
}
.main-content__subtitle {
  /*font-size: 14px;*/
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  transition-delay: 0.3s;
}
.main-content .more-menu {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition-delay: 0.4s;
}
@media screen and (max-width: 930px) {
  .main-content .more-menu {
    justify-content: center;
  }
}
.main-content .more-menu svg {
  width: 28px;
  height: 18px;
  margin-left: 10px;
}

.center {
  display: block;
  /*margin-left: 40px;*/
  /*position: relative;*/
  /*flex-shrink: 0;*/
  /*width:40%;*/
  /*float:right;*/
  /*margin-right: 100px;*/
  /*margin-top: 9%;*/
}
.right-side__img {
	display: block;
	/*display: flex;*/
	/*float:right;*/
}
.right-side__img .row{
	/*margin-top:20%*/
}
.center .bottle-bg {
  /*width: 320px;*/
  position:absolute;
  z-index:-1;
  margin-top: 30%;
  left: 30%;
  width: 17vw;
  /*height: 450px;*/
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 160px;
  opacity: 0.7;
  margin-bottom: 30px;
  /*-webkit-backdrop-filter: blur(15px);*/
  /*backdrop-filter: blur(15px);*/
  /*background-image:url('../img/bg-slide/vespa.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;*/
  /*filter: blur(2px);*/
  /*opacity:0.7!important;*/
  /*margin-left: 110px;*/
  /*margin-left: 3vw;*/
}
.center .bottle-img {
  /*position: absolute;*/
  /*top: 25%;*/
  /*left: 18%;*/
  /*right: 20%;*/
  /*transform: scale(1.6);*/
}
.bottle-img{
	/*width:102px;*/
	margin-left: 30%;
	width: 11.5vw;
	/*position: absolute;*/
	/*float:right;*/
}
.main-header{
	font-family:AmericanTypewriter-Bold;
	font-size:1.5rem;
}
.b{
	font-family:AmericanTypewriter-Bold;
	font-size:1.5rem;
	margin-bottom:0;
}
.main-content p{
	/*font-style: italic;*/
}
.main-content p span{
	font-style: normal;
}
.main-content, .main-title{
	font-family:AmericanTypewriter-Medium;
	font-size:1rem;
}
.main-content{
	font-size:0.8rem;
}
@media screen and (max-width: 991px) {
	.te{
		text-align: center !important;
	}
	.te .bottle-img{
		width: 18vw;
		margin-left: 10%;
	}
	.center .bottle-bg{
		width: 27vw;
		margin-top: 20%;
	}
	.left-side{
		margin-top: 30px;
	}
	.table{
		width: 100%;
	}
	.bottle-bg{
		margin-top: 20%;
	}
}

@media screen and (max-width: 930px) {
  .center {
    margin-left: 0;
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 767px) {
	.bottle-img {
        width: 25vw;
	}
	.bottle-bg {
        width: 37vw;
        margin-top: 30%;	
		left: 20%
	}	
	.main-header {
		font-size: 3.9vw;
	}
}
@media screen and (max-width: 576px) {
	.main-header {
		/*font-size: 3.8vw;*/
		font-size: 2.8vw;
	}
}	
/*@media screen and (max-width: 930px) {
  .center .bottle-bg {
    width: 260px;
    height: 390px;
  }
}
@media screen and (max-width: 575px) {
  .center .bottle-bg {
    width: 220px;
    height: 340px;
  }
}*/


/*.swiper-pagination {
  position: absolute;
  right: 30px;
  left: auto;
  top: 100px;
  width: auto;
  bottom: auto;
  z-index: 2;
  font-size: 14px;
  font-family: var(--body-font);
  font-weight: 500;
}

.button-wrapper {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 930px) {
  .button-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 0 60px;
  }
}
@media screen and (max-width: 575px) {
  .button-wrapper {
    padding: 0 20px;
  }
}
.button-wrapper svg {
  width: 28px;
}
.button-wrapper .swiper-button {
  border: 1px solid var(--body-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--body-color) 40%, transparent 0%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.button-wrapper .swiper-button + .swiper-button {
  margin-left: 16px;
}
@media screen and (max-width: 930px) {
  .button-wrapper .swiper-button + .swiper-button {
    margin-left: 0;
  }
}
.button-wrapper .swiper-button:hover {
  background-color: var(--body-color);
  background-position: left bottom;
}
.button-wrapper .swiper-button:hover svg {
  stroke: #fff;
}
.button-wrapper .swiper-prev-button {
  background: linear-gradient(to left, var(--body-color) 40%, transparent 0%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 0.3s ease-out;
}
.button-wrapper .swiper-prev-button svg {
  transform: rotate(-180deg);
}
.button-wrapper .swiper-prev-button:hover {
  background-position: right bottom;
}
*/
.swiper-slide {
  opacity: 0 !important;
  transition: 0.4s;
  height:0px;
  max-height: 0px;
}
.swiper-slide-active {
  opacity: 1 !important;
  height:unset;
  z-index:500;
}

.swiper-slide .main-wrapper > *,
.swiper-slide .main-content > * {
  transform: translateY(-30px);
  opacity: 0;
  transition-duration: 0.8s;
}

.swiper-slide-active .main-wrapper > *,
.swiper-slide-active .main-content > * {
  transform: none;
  opacity: 1;
}

.swiper-slide .bottle-bg {
  transition-duration: 0.6s;
  opacity: 0;
  object-position: 60%;
}

.swiper-slide-active .bottle-bg {
  opacity: 0.7;
  transform: none;
  object-position: 50%;
  /*margin-top: 100px;*/
}

.swiper-slide .bottle-img {
  transition-duration: 0.8s;
  transform: scale(1.2);
  opacity: 0;
}

.swiper-slide-active .bottle-img {
  opacity: 1;
  transform: scale(1.6);
  margin-left:10%;
}
@media screen and (max-width: 991px) {
	.scrolly {
	height:unset;
	overflow-y: unset;
	-webkit-overflow-scrolling: unset;
}
}