header {
	text-align: center;
	margin: auto;
	padding: 20px 0;
}

.logo-container {
	margin-bottom: 10px;
}

.logo {
	max-height: 150px;
	width: auto;
	object-fit: contain;
}

.tab-buttons {
	margin-top: 10px;
}

button {
	font-size: 25px;
	border-radius: 10px;
}

.btn-toggle {
	cursor: pointer;
	border: none;
	background-color: transparent;
}

.btn-toggle.active-tab {
	text-decoration: underline #88db9e 4px;
}

.btn-uzn {
	cursor: pointer;
	border: none;
	background-color: transparent;
}
.btn-privat {
	cursor: pointer;
	border: none;
	background-color: transparent;
}
.btn-piev {
	background-color: #88db9e;
	cursor: pointer;
	border-radius: 1;
	transition: all 0.2s ease;
}

.btn-piev:hover {
	background-color: #e6e6e6;
}

.btn-piev.active {
	border-bottom: 3px solid #AEEC6F;
}

.buttons button { 
	background-color: #e6e6e6;
	padding: 10px 15px;
	font-size: 1em;
	cursor: pointer;
	border-radius: 1;
	transition: all 0.2s ease;
}

.buttons button:hover {
	background-color: #88db9e;
}

.custom-checkbox input[type="checkbox"] {
	display: none;
}

.custom-checkbox {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 18px;
	user-select: none;
}

.custom-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border: 2px solid #ccc;
	border-radius: 5px;
	transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
	background-color: lightgreen;
	border-color: green;
}

.custom-checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.custom-checkbox input:checked + .checkmark:after {
	display: block;
}

.custom-checkbox .checkmark:after {
	left: 8px;
	top: 4px;
	width: 6px;
	height: 12px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

p, input, label {
	font-size: 20px;
}