@media (min-width: 640px) {
	.add-listing-progress-bar {
		display: flex;
		align-items: flex-start;
		flex-wrap: nowrap;
		width: calc(100% - 19px);
		margin: 15px 0;
		padding-left: 0;
		list-style: none;
	}

	.add-listing-progress-bar .step {
		position: relative;
		background-color: var(--color-dark);
		color: #FFF;
		margin: 0 3px;
		padding: 10px 5px 10px 25px;
		flex: 1 1 0;
		text-align: center;
	}

	.add-listing-progress-bar .step.current {
		color: var(--color-dark);
		background-color: var(--color-primary);
	}

	.add-listing-progress-bar .step:first-child {
		border-top-left-radius: 22px;
		border-bottom-left-radius: 22px;
		padding-left: 15px;
	}

	.add-listing-progress-bar .step:after {
		content: " ";
		position: absolute;
		top: 0;
		right: -22px;
		width: 44px;
		height: 44px;
		background-color: var(--color-dark);
		border-radius: 50%;
		z-index: 2;
	}

	.add-listing-progress-bar .step:before {
		content: " ";
		position: absolute;
		top: 0;
		right: auto;
		left: -22px;
		width: 44px;
		height: 44px;
		background-color: var(--color-zinc-200);
		border-radius: 50%;
		z-index: 0;
	}

	.add-listing-progress-bar .step.current:after {
		background-color: var(--color-primary);
	}

	.add-listing-progress-bar .step:first-child:before {
		display: none;
	}
}

@media (max-width: 639px) {
	.add-listing-progress-bar {
		list-style: none;
		overflow: hidden;
		counter-reset: step;
		margin: 0;
	}

	.add-listing-progress-bar .step {
		list-style-type: none;
		text-transform: uppercase;
		font-size: 9px;
		width: 20%;
		float: left;
		position: relative;
		text-align: center;
	}

	.add-listing-progress-bar .step:before {
		content: counter(step);
		counter-increment: step;
		width: 20px;
		line-height: 20px;
		display: block;
		font-size: 10px;
		color: #FFF;
		background: var(--color-dark);
		border-radius: 50%;
		margin: 0 auto 5px auto;
	}

	.add-listing-progress-bar .step:after {
		content: '';
		width: 100%;
		height: 2px;
		background: var(--color-dark);
		position: absolute;
		left: -50%;
		top: 9px;
		z-index: -1;
	}

	.add-listing-progress-bar .step:first-child:after {
		content: none;
	}

	.add-listing-progress-bar .step.current:before {
		background: var(--color-primary);
		color: var(--color-dark);
	}
}


.drts .drts-bs-nav-tabs {
	border-bottom: none;
}

.drts-payment-select-plan {
	margin-top: 1.5rem!important;
}

.drts-payment-select-plan .drts-bs-custom-control-label {
	font-size: 1.2em;
}

.drts-payment-select-plan .drts-bs-custom-control-label::before,
.drts-payment-select-plan .drts-bs-custom-control-label::after {
    top: 0.5rem;
}

.drts-payment-select-plan div.drts-form-field-radio-option-description {
	padding: 0 0 .75em 2em;
}

.drts .drts-bs-btn {
	border: 0;
	border-radius: 3.40282e38px;
}

.drts .drts-bs-btn:hover {
	outline: 0;
}

.drts .drts-bs-btn-outline-secondary {
	border: 1px solid var(--color-dark);
	color: var(--color-dark);
}

.drts .drts-bs-btn-outline-secondary:hover {
	background: var(--color-dark);
}

.drts .drts-bs-btn.disabled {
	cursor: not-allowed;
}

/* Phone number reveal (#196) */
.qc-phone-reveal-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
}

.qc-phone-reveal-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.qc-phone-reveal-modal-dialog {
	position: relative;
	background: #fff;
	border-radius: 6px;
	margin: 10vh auto;
	max-width: 360px;
	padding: 1.5em;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.qc-phone-reveal-modal-close {
	position: absolute;
	top: 0.5em;
	right: 0.75em;
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 1.5em;
	line-height: 1;
}

.qc-phone-reveal-error {
	color: #c0392b;
	margin-top: 0.75em;
}

body.qc-phone-reveal-modal-open {
	overflow: hidden;
}