/* Text. */
._text {
	font-size: 13px;
}

._text a {
	color: var(--primary);
	text-decoration: underline;
	transition: color 0.2s ease;
}

._text a:hover {
	color: var(--primary-200);
}

._text h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 48px;
}

._text h3:not(:first-child) {
	margin-top: 52px;
}

._text h3 {
	font-size: 16px;
	font-weight: 700;
}

._text ul {
	display: grid;
	grid-gap: 1em;
	list-style-type: disc;
	padding-left: 20px;
}

._text ul li {
	list-style-type: disc !important;
	display: list-item;
}

._text p:not(:first-child) {
	margin-top: 1em;
}

._text_more {
	display: none;
	margin-top: 12px;
	color: var(--primary);
	font-size: 15px;
	font-weight: 500;
}

.font-weight-200 {
	font-weight: 200;
}
.font-weight-400 {
	font-weight: 400;
}
.font-weight-500 {
	font-weight: 500;
}
.font-weight-600 {
	font-weight: 600;
}
.font-weight-700 {
	font-weight: 700;
}
.font-weight-800 {
	font-weight: 800;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-gray-200 {
	color: var(--gray-200);
}
.text-gray-400 {
	color: var(--gray);
}
.text-primary {
	color: var(--primary);
}
.color-orange-400 {
	color: var(--orange-400);
}
.color-orange-700 {
	color: var(--orange-700);
}
.text-gold-400 {
	color: var(--gold-400);
}
.text-larger {
	font-size: larger;
}
.text-large {
	font-size: large;
}
.text-x-large {
	font-size: x-large;
}

.btn {
	transition: all 0.35s;
	cursor: pointer;
	border-radius: 6px;
}

.btn-primary {
	background-color: var(--primary);
	padding: .5rem 1.25rem;
	color: #fff;
}

.btn-alt {
	background-color: transparent;
	padding: .5rem 1rem;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.btn-sm {
	padding: .25rem 1rem;
}

.btn-xs {
	padding: 0.15rem 0.5rem;
}

.btn:hover {
	opacity: 0.75;
}

.btn-primary:hover {
	background-color: var(--primary-200);
	border-color: var(--primary-200);
	opacity: 1;
}

.btn-alt:hover {
	background-color: var(--primary);
	color: #fff;
	opacity: 1;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.catalog_text_full._text h2 {
	margin-bottom: 0 !important;
}

@media only screen and (max-width: 1030px) {
	._text h2 {
		margin-bottom: 28px;
	}

	.catalog_text_full._text h2 {
		margin-bottom: 0 !important;
	}

	._text h3:not(:first-child) {
		margin-top: 28px;
	}

	._text_wrapper {
		overflow: hidden;
		height: 260px;
		text-overflow: ellipsis;
	}

	._text_more {
		display: block;
	}
}