.no-focus-outline:focus,
.no-focus-outline:active,
.courier-btn:focus,
.courier-btn:active,
select:focus {
	outline: none !important;
	box-shadow: none !important;
}

#citySearchInput {
	color: #262b33;
}

.calculator-box {
	background-color: #ffffff;
	border-radius: 30px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.custom-select-wrapper {
	position: relative;
	width: 100%;
	user-select: none;
}

#citySelected {
	position: relative;
	display: block;
}

#citySelected input {
	width: 100%;
	padding-right: 30px;
}

#citySelected::after {
	content: "\ea58";
	font-family: 'LineIcons';
	font-size: 16px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	color: #262b33;
	pointer-events: none;
}

#citySelected::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 100%;
	cursor: pointer;
}

#citySelectWrapper:focus-within #citySelected::after {
	transform: translateY(-50%) rotate(180deg);
}

#citySelectWrapper:focus-within #cityOptions {
	display: block;
}
.calculator-box .title {
  font-size: 33px;
  font-weight: 800;
}

.custom-select-selected input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	font-size: 16px;
	background: #fff;
	outline: none;
}

.custom-select-options {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	right: 0;
	background: #fff;
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	padding: 6px;

	/* плавное появление */
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none; /* блокируем клики пока скрыто */
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.custom-select-options.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

#citySelectWrapper:focus-within .custom-select-options {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.custom-select-option {
	padding: 10px;
	cursor: pointer;
	border-radius: 15px;
}

.custom-select-option:hover {
	background-color: #f2cd00;
}

.courier-buttons {
	display: flex;
	gap: 15px;
	width: 100%;
}

.courier-btn {
	flex: 1;
	background: #fff;
	color: #262b33;
	border-radius: 15px;
	box-shadow: 0 0 12px #F4F4F4;
	transition: all 0.3s ease-in-out;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.courier-btn:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.courier-btn:active {
	box-shadow: none;
}

.courier-btn.active {
	background: #f2cd00;
	border-color: #f2cd00;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.slider-wrapper {
	margin-bottom: 2rem;
}

.slider-container {
	position: relative;
	height: 60px;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	user-select: none;
	cursor: pointer;
}

.slider-fill {
	position: absolute;
	height: 100%;
	background: #f2cd00;
	border-radius: 15px;
	top: 0;
	left: 0;
	width: 0%;
	z-index: 0;
	pointer-events: none;
	transition: width 0.2s;
}

.slider-fill::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(100% - 18px);
	transform: translate(-50%, -50%);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: transparent;
	pointer-events: none;
	z-index: 2;
	box-shadow:
		-5px -10px 0 0 rgba(0, 0, 0, 0.25),
		5px -10px 0 0 rgba(0, 0, 0, 0.25),
		-5px 0px 0 0 rgba(0, 0, 0, 0.25),
		5px 0px 0 0 rgba(0, 0, 0, 0.25),
		-5px 10px 0 0 rgba(0, 0, 0, 0.25),
		5px 10px 0 0 rgba(0, 0, 0, 0.25);
}

.slider-content {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	font-weight: bold;
	color: #262b33;
	pointer-events: none;
}

.result-column {
	height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.result-inline {
	height: 60px;
	background: #f2cd00;
	border-radius: 15px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	font-size: 1.2rem;
	color: #262b33;
}

.calc-btn {
	height: 60px;
	line-height: 60px;
	margin-top: 8px;
	text-transform: uppercase;
}

.income-label,
.income-amount {
	font-size: 22px;
	font-weight: bold;
}

.courier-btn {
	font-size: 17px;
	font-weight: 600;
}

.slider-content span {
	font-size: 18px;
	font-weight: 600;
}

#citySearchInput {
	font-weight: bold;
}

@media (max-width: 991.98px) {
	.calculator-box .row {
		flex-direction: column !important;
	}

	.calculator-box .col-md-6,
	.calculator-box .col-lg-6,
	.calculator-box .col-md-7,
	.calculator-box .col-md-5 {
		width: 100% !important;
		max-width: 100% !important;
	}

	.calculator-box .result-column {
		height: auto;
		margin-top: 1.5rem;
	}

	#citySelectWrapper {
		margin-bottom: 1rem;
	}
}

@media (max-width: 575.98px) {
	.courier-buttons {
		flex-direction: column !important;
	}

	.courier-buttons .courier-btn {
		width: 100% !important;
		margin-bottom: 0.5rem;
		border-radius: 15px !important;
	}

	.courier-buttons .courier-btn:last-child {
		margin-bottom: 0;
	}

	.result-inline {
		font-weight: bold;
		font-size: 20px;
	}

	.result-inline #income {
		font-weight: bold;
		font-size: 1.2rem;
	}
}

.tooltip-wrapper {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-left: 3px;
	margin-top: -10px;
	transform: translateY(-4px);
	z-index: 2;
}

.tooltip-dot {
	width: 14px;
	height: 14px;
	color: #262b33;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	font-weight: bold;
	user-select: none;
}

.tooltip-text {
	position: absolute;
	top: 50%;
	right: 130%;
	transform: translateY(-50%);
	background-color: #fff;
	color: #262b33;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 15px;
	font-size: 16px;
	width: 260px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	pointer-events: none;
	z-index: 9999;
	text-align: left;
	font-weight: 400;
	line-height: 1.4;
}

.tooltip-wrapper:hover .tooltip-text,
.tooltip-wrapper.active .tooltip-text {
	visibility: visible;
	opacity: 1;
}

