/*
* Tabbed list
*/
.dw-tabbed-list {
	direction: rtl;
	position: relative;
	z-index: 5;
}

.dw-tabbed-list::before {
	content: "";
	width: 500px;
	height: 500px;
	position: absolute;
	bottom: -100px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(38, 19, 19,0.9);
	filter: blur(200px);
	z-index: -1;
	border-radius: 100%;
}

.sdw-line-dw {
	width: 100%;
	position: relative !important;
	overflow: hidden;
}

.sdw-line-dw::after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(to left, transparent 10%, #422f2f 50%,transparent 10%),
	linear-gradient(to right, transparent 10%,#422f2f 50%,transparent 10%);
	z-index: 1;
}

.sdw-line-dw-two::after {
	content: "";
	width: 700px;
	height: 400px;
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(38, 19, 19, 0.8);
	filter: blur(100px);
	z-index: -1;
	border-radius: 100%;
}

.dw-tabbed-list__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.dw-tabbed-list__title {
	font-size: 22px;
	font-weight: 700;
	white-space: nowrap;
	color: #fff;
	margin-left: 20px;
}

.dw-tabbed-list__tabs {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.dw-tabbed-list__tab {
	border: none;
	background: transparent !important;
	color: #fff;
	padding: 6px 20px;
	border-bottom: 1px solid transparent;
	cursor: pointer;
	font-size: 16px !important;
	font-weight: 700;
	overflow: hidden;
}

.dw-tabbed-list__tab::before {
	content: "";
	position: absolute;
	width: 5%;
	height: 20%;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(255, 0, 0, 0.6);
	filter: blur(10px);
	border-radius: 25%;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
}

.dw-tabbed-list__tab:hover {
	background: transparent;
	color: #fff;
	border-bottom: 1px solid #d81b1b;
}

.dw-tabbed-list__tab.is-active {
	color: #fff;
	border-color: #d81b1b;
	position: relative;
	overflow: hidden;
}

.dw-tabbed-list__tab.is-active::before {
	width: 60%;
	opacity: 1;
	visibility: visible;
}

.dw-tabbed-list__search {
	display: flex;
	margin-inline-start: auto;
	position: relative;
}

.dw-tabbed-list__input {
	background-color: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	padding: 8px 12px !important;
	min-width: 260px;
	font-size: 14px;
	border: 0 !important;
	height: auto !important;
}

.dw-tabbed-list__search i {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.dw-tabbed-list__search i::before {
	color: rgba(255, 255, 255, 0.5);
}

.dw-tabbed-list__input::placeholder {
	color: #b5b5b5;
}

.dw-tabbed-list__content {
	margin-top: 32px;
}

.dw-tabbed-list__panel {
	display: none;
}

.dw-tabbed-list__panel.is-active {
	display: block;
}

.dw-tabbed-list__table {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background-color: #121212;
	z-index: 8;
	position: relative;
}

.dw-tabbed-list__table-duration {
	position: absolute;
	width: 103%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.dw-tabbed-list__table-duration-parent {
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(90deg, #990000 0%, rgba(255, 0, 0, 0.8) 50%, #990000 100%);
	font-size: 24px;
	color: #fff;
	text-align: center;
	padding: 10px;
	z-index: 2;
}

.dw-tabbed-list__table-duration-right {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	left: 4px;
	bottom: -10px;
	background: linear-gradient(90deg, rgba(255, 0, 0, 0.32) 17.65%, rgba(18, 18, 18, 0.32) 100%);
	rotate: 45deg;
	z-index: -1;
}

.dw-tabbed-list__table-duration-left {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	right: 4px;
	bottom: -10px;
	background: linear-gradient(90deg, rgba(255, 0, 0, 0.32) 17.65%, rgba(18, 18, 18, 0.32) 100%);
	rotate: 140deg;
	z-index: -1;
}

.dw-tabbed-list__row {
	display: grid;
	grid-template-columns: 70px 1.6fr 1.2fr 0.8fr;
	gap: 12px;
	align-items: center;
}

.dw-tabbed-list__row--head {
	background: rgba(255, 255, 255, 0.06);
	color: #d7d7d7;
	font-weight: 600;
}

.dw-tabbed-list__row--head .dw-tabbed-list__cell {
	font-size: 16px;
	text-align: center;
	color: #B7B7B7;
	padding: 17.5px;
}

.dw-tabbed-list__body {
	z-index: 4;
}

.dw-tabbed-list__body.blurred,
.dw-tabbed-list__row--head.blurred,
.dw-tabbed-list__header.blurred {
	filter: blur(2px);
	pointer-events: none;
}

.dw-tabbed-list__body .dw-tabbed-list__row {
	border-top: 1px solid rgb(35, 26, 26);
}

.dw-tabbed-list__body .dw-tabbed-list__row .dw-tabbed-list__cell {
	border-left: 1px solid rgb(35, 26, 26);
	padding: 12.5px;
}

.dw-tabbed-list__body .dw-tabbed-list__row .dw-tabbed-list__cell:last-child {
	border-left: 0;
}

.dw-tabbed-list__body .dw-tabbed-list__cell {
	font-size: 18px;
	text-align: center;
	color: #B7B7B7;
}

.dw-tabbed-list__cell--phone {
	direction: ltr;
}

.dw-tabbed-list__empty {
	margin-top: 16px;
	text-align: center;
	color: #a9a9a9;
}

.dw-tabbed-list__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.dw-tabbed-list__pagination.blurred {
	filter: blur(2px);
	pointer-events: none;
}

.dw-tabbed-list__page {
	background: #1c0a0a !important;
	color: rgba(255, 255, 255, 0.5);
	padding: 6px 10px;
	min-width: 32px;
	cursor: pointer;
}

.dw-tabbed-list__page.is-active {
	background: #251414;
	border: 1px solid #ffffff14;
	color: #fff;
}

.dw-tabbed-list__page {
	width: 40px;
	height: 40px;
}

.dw-tabbed-list__page:not(.is-active):hover {
	background: #251414;
	color: rgba(255, 255, 255, 0.5);
}

.dw-tabbed-list__page--nav {
	background: transparent !important;
	border: 0;
}

.dw-tabbed-list__page--nav:not(:disabled):hover {
	background: transparent;
	color: #fff;
}

.dw-tabbed-list__page[disabled] {
	opacity: 0.3;
	cursor: default;
}

.dw-tabbed-list__ellipsis {
	color: #9d9d9d;
	padding: 0 4px;
}

.dw-accordion-items .wd-accordion-opener {
	font-size: 16px;
	color: #7A7A7A;
}

.dw-accordion-items .wd-accordion-content,
.dw-accordion-items .wd-accordion-title {
	padding-right: 24px;
	padding-left: 24px;
}

.dw-accordion-items .wd-accordion-title .wd-accordion-opener {
	color: #CCCCCC;
}

/*
* Countdown timer
*/
.dw-countdown {
	direction: ltr;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum';
}

.dw-countdown__segment {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 80px;
	min-height: 80px;	
	background: #553d3e;
	position: relative;
	text-align: center;
}

.dw-countdown__segment::before,
.dw-countdown__segment::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -4px;
}

.dw-countdown__segment::before {
	width: 90%;
	height: 60%;
	background: #482a2c;
	z-index: 1;
}

.dw-countdown__segment::after {
	width: 80%;
	height: 60%;
	background: #371618;
	bottom: -7px;
	z-index: 0;
}

.dw-countdown__segment-overlay {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 14px 12px;
	z-index: 5;
}

.dw-countdown__segment-overlay::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #553d3e;
	z-index: -1;
}

.dw-countdown__value {
	display: block;
	color: #fff;
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 1px;
	z-index: 5;
}

.dw-countdown__separator {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.dw-countdown.is-complete .dw-countdown__segment {
	opacity: 0.7;
}

@media (max-width: 767px) {
	.dw-tabbed-list__header {
		gap: 12px;
	}

	.dw-tabbed-list__tabs {
		gap: 12px;
	}

	.dw-tabbed-list__search {
		margin-inline-start: 0;
		width: 100%;
	}

	.dw-tabbed-list__input {
		width: 100%;
	}

	.dw-tabbed-list__table {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.dw-tabbed-list__row {
		min-width: 560px;
	}

	.dw-countdown {
		gap: 6px;
		width: 100%;
		justify-content: center;
	}

	.dw-countdown__segment {
		min-width: 63px;
		min-height: 63px;
	}

	.dw-countdown__value,
	.dw-countdown__separator {
		font-size: 22px;
	}
}

@media (max-width: 576px) {
	.dw-tabbed-list__row--head .dw-tabbed-list__cell {
		padding: 12px 7px;
		font-size: 14px;
	}

	.dw-tabbed-list__body .dw-tabbed-list__row .dw-tabbed-list__cell {
		padding: 12px 5px;
		font-size: 14px;
	}

	.dw-tabbed-list__row {
		min-width: auto;
		gap: 8px;
	}

	.dw-tabbed-list__title {
		flex: 1 0 auto;
		text-align: center;
		margin: 0;
	}

	.dw-tabbed-list__tabs {
		margin-bottom: 32px;
	}

	.dw-tabbed-list__table-duration-parent {
		font-size: 18px;
	}

	.dw-accordion-items .wd-accordion-opener {
		font-size: 14px;
	}

	.sdw-line-dw-two::after {
		width: 250px;
    height: 310px;
		filter: blur(37px);
	}
}