.button {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 7px;
    text-decoration: none;
    font-family: Inter;
    font-size: 14px;
	border: 0;
	cursor: pointer;
}

.button[disabled] {
	pointer-events: none;
	opacity: 0.5;
}

.button_bordered {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.button_outlined {
    border: 1px solid #0202b3;
    background: transparent;
    color: #0202b3;
	font-weight: 500;
}

.button_outlined:hover {
	box-shadow: 0px 10px 20px rgb(2 2 179 / 42%);
    color: #fff;
    background: #0202b3;	
}

.button_compact {
    font-size: 16px;
    padding: 9px 22px;
}

.button_shadow {
}

.button_blue {
    color: #fff;
    background: #0202b3;
}

.button_blue:hover {
	box-shadow: 0px 10px 20px rgb(2 2 179 / 42%);
}

.button_white {
    color: #828282;
    background: #fff;
}

.button_100 {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

.button_short-height {
	padding-top: 14px;
	padding-bottom: 14px;
}

.button_next,
.button_prev {
	display: flex;
	align-items: center;
	line-height: 1;
}

.button_next:after {
	display: block;
	content: '';
	width: 20px;
	height: 7px;
	margin-left: 10px;
	background: url("/images/sprite.png") -2px -65px no-repeat;
}

.button_prev:before {
	display: block;
	content: '';
	width: 20px;
	height: 7px;
	margin-right: 10px;
	background: url("/images/sprite.png") -30px -65px no-repeat;
}

.button_disabled {
	opacity: 0.5;
	pointer-events: none;
}

.blue-text {
	color: #0202b3;
}

.black-text {
	color: #000;
}

.black-text_big {
	font-size: 18px;
	font-weight: 500;
}

.center-text {
	text-align: center;
}

.p-b-25 {
	margin-bottom: 25px;
}

.m-y-5 {
	margin: 5px 0;
}

.text-sub-header {
	font-family: Roboto;
	font-weight: 600;
	font-size: 18px;
	margin: 30px 0 25px;
	padding: 0;
	color: #000;
}

.page-subtitle {
	font-size: 24px;
	margin-bottom: 15px;
	color: #000;
}

.columns {
	display: grid;
}

.columns_three {
	grid-template-columns: repeat(3, 32%);
	grid-gap: 20px;
}

.gray-link {
	text-decoration: none;
	color: #686868;
}

.blue-link {
	color: #0202b3;
}

.blue-link:hover {
	text-decoration: none;
}

.blue-ul {
	list-style: none;
	margin: 0;
	padding: 0 0 30px 0;
}

.blue-ul li {
	display: flex;
	align-items: flex-start;
	padding: 0;
	margin-bottom: 15px;
}

.blue-ul li:before {
	display: inline-block;
	content: '';
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0202b3;
	margin: 8px 8px 0 0;
}


.custom-select {
	position: relative;
}

.custom-select__value {
	display: flex;
	align-items: center;
	margin-left: 10px;
	font-size: 15px;
	font-weight: 500;
	color: #1f1446;
	cursor: pointer;
}

.custom-select__list {
	display: none;
	position: absolute;
	left: 0;
	top: auto;
	width: 200px;
	z-index: 10;
	border: 1px solid #cacaca;
	background: #fff;
}

.custom-select_opened .custom-select__list {
	display: block;
}

.custom-select__option {
	display: flex;
	align-items: center;	
	cursor: pointer;
	padding: 3px 5px;
}

.custom-select__option:hover {
	background: #f1f1f1;
}

.custom-select__option-icon {
	display: block;
	width: 12px;
	height: 9px;
	background: url("/images/sprite.png");
	margin-left: 5px;
}

.custom-select__option-icon_asc {
	background-position: -126px -135px;
}

.custom-select__option-icon_desc {
	background-position: -144px -135px;
}


@media (max-width: 520px) {
	.button {
		font-size: 12px;
		padding: 12px 28px;
	}
}