.video-slider {
	position: relative;
	margin-bottom: 150px;
}

@keyframes move {
  0% {
    width; 0%;
  }
  100% {
    width: 100%;
  }
}

.video-slider__tabs {
	display: flex;
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	z-index: 10;
	gap: 10px;
	padding: 0 10px;
}

.video-slider__tab {
	border: 1px solid #fff;
	border-radius: 100px;
	backdrop-filter: blur(20px);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 0 20px;
	cursor: pointer;
	overflow: hidden;
	flex-shrink: 0;
}

.video-slider__tab div {
	position: absolute;
	top: 0;
    left: 0;
    height: 100%;
    background: #fff;
    z-index: -1;	
	width: 0%;
}

.video-slider__tab.active div {
	animation-name: move;
	animation-delay: 0s;
	animation-timing-function: linear;
}


.video-slider__tab.active {
	color: #0A0A0A;
}

.video-slider__items {
	
}

.video-slider__item {
	position: relative;
}

.video-slider__item video {
	width: 100%;
	border-radius: 24px;
}

.video-slider__item-info {
	position: absolute;
	left: 30px;
	bottom: 0;
	width: 100%;
	padding-bottom: 40px;
}

.video-slider__item-info-note {
	font-weight: 500;
	font-size: 32px;
	width: 40%;
	line-height: 1;
	margin-bottom: 30px;
	color: #fff;
}

.video-slider__item-open-button {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	background: url("images/play.png") no-repeat; 
	padding: 6px 0 6px 46px;
}

.video-slider__modal {
	display: none;
	position: fixed;
	height: 800px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 1000;
	background: #000;
}

.video-slider__modal.active {
	display: block;
}

.video-slider__modal-content {
	height: 100%;
}

.video-slider__modal-content video {
	height: 100%;
	width: 100%;
}

.video-slider__modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
}

@media(max-width: 600px) {
	.video-slider__tabs {
		overflow-x: scroll;
	}
}