.boxoffice-bg-white {
	background: #fff;
}

.justify-space-between {
	justify-content: space-between;
}

.boxoffice-time-info {
	font-size: 18px;
	color: #000;
}

.time-icon {
	width: 19px;
	height: 25px;
	margin: 0 10px;
	background-image: var(--img-time-icon);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	animation: boxoffice-rotate 6s ease-in-out infinite;
}

.boxoffice-back-btn {
	display: block;
	max-width: 380px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	color: var(--txt-expand-btn);
}
.boxoffice-back-btn-steps {
    display: flex;
    align-items: center;
    background-color: rgba(215, 217, 221, 1);
	border: 1px solid #000;
	text-transform: uppercase;
    min-width: unset;
	gap: 5px;
    padding: 5px 25px;
    font-size: 14px;
}
.boxoffice-back-btn>.arrows-icon {
	margin-right: 6px;
}

.steps-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 20px;
}

.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #000;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
	position: relative;
	z-index: 2;
}

.step-item.step-one {
	right: -20px;
}

.step-item.step-three {
	left: -50px;
}

.step-item.completed .step-circle {
	color: #000;
}

.step-item.completed .step-circle::after {
	content: "✓";
	position: absolute;
	color: #000;
	font-size: 20px;
}

.step-item.completed .step-circle span {
	display: none;
}

.step-item.active .step-circle {
	background-color: #000;
	color: #fff;
	border-color: #000;
}

.step-item.inactive .step-circle {
	background-color: #fff;
	color: #000;
	border-color: #000;
}

.step-label {
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	color: #000;
	text-align: center;
	white-space: nowrap;
}

.step-line {
	width: 200px;
	height: 2px;
	background-color: #000;
	margin: 0 -45px;
	position: relative;
	top: -20px;
	z-index: 1;
}

@media (max-width: 991px) {
	.step-line {
		width: 120px;
	}
	
	.step-label {
		font-size: 12px;
	}
}

@media (max-width: 767px) {
	.boxoffice-back-btn {
		min-width: unset;
		padding: 10px 20px;
		font-size: 20px;
	}

	.boxoffice-time-info {
		position: unset;
		flex-wrap: wrap;
		align-items: center;
		font-size: 16px;
		line-height: 30px;
		margin-bottom: 0;
		margin-left: 5px;
	}
	
	.steps-container {
		padding: 20px 10px;
	}
	
	.step-circle {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
	
	.step-line {
    width: 100px;
    top: -12px;
}
	
	.step-label {
		font-size: 10px;
	}
	.step-item.step-one{
		right: 0;
	}
	.step-item.step-three{
		left: 0;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.boxoffice-time-info {
		top: -15px;
		font-size: 18px;
	}

	.time-icon {
		width: 18px;
		height: 23px;
	}

	.boxoffice-back-btn {
		display: inline-block;
		min-width: unset;
		padding: 10px 20px;
		font-size: 20px;
	}
}
