.clm-mobile-home-underline {
	border-bottom: 1px solid var(--primary-color);
}

.clm-mobile-header {
	font-family: "Jost", sans-serif;
}

.clm-mobile-header__info {
	border-bottom: 1px solid var(--primary-color);
	background-color: var(--primary-header-color);
	padding: 15px 20px 5px 20px;
	width: 100%;
	position: relative;
	text-align: center;
}


.clm-mobile-header__info p {
	margin-bottom: 0;
}

.clm-mobile-header__info a {
	color: var(--a-color);
}

.clm-mobile-header__info>img {
	max-width: 400px;
	max-height: 150px;
}

.clm-mobile-header__menu {
	border-bottom: 1px solid var(--primary-color);
	background-color: var(--primary-bg-color);
	width: 100%;
}

.clm-mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99;
	display: none;
}

.clm-mobile-overlay.active {
	display: block;
}

.clm-mobile-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 280px;
	height: 100%;
	background-color: var(--primary-color);
	;
	color: var(--primary-bg-color);
	z-index: 101;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.clm-mobile-sidebar.active {
	transform: translateX(0);
}

.clm-mobile-sidebar__header {
	padding: 20px;
	font-size: 18px;
	background: var(--primary-color);
	font-weight: bold;
}

.clm-mobile-sidebar__header>a {
	color: var(--primary-text-color) !important;
}

.clm-mobile-sidebar__ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.clm-mobile-sidebar__ul li {
	border-top: 1px solid var(--primary-color);
}

.clm-mobile-sidebar__ul li>a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	color: var(--primary-text-color);
	text-decoration: none;
	background: var(--primary-bg-color);
	text-transform: uppercase;
	cursor: pointer;
}

.clm-mobile-toggle-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.clm-mobile-toggle-content>a {
	padding: 12px 30px;
	background: var(--primary-color);
	color: var(--primary-bg-color);
	display: block;
	font-size: 14px;
	text-transform: uppercase;

	opacity: 0;
	transform: translateX(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

a[aria-expanded="true"]+.clm-mobile-toggle-content {
	max-height: 500px;
}

.clm-mobile-home__dropdown a[aria-expanded="true"]+.clm-mobile-toggle-content {
	max-height: fit-content;
}

a[aria-expanded="true"]+.clm-mobile-toggle-content>a {
	opacity: 1;
	transform: translateX(0);
}

.clm-mobile-toggle-content__submenu {
	display: none;
}

.clm-mobile-toggle-content__submenu a {
	padding: 12px 40px;
	background: var(--primary-bg-color);
	color: var(--primary-text-color);

}

.clm-mobile-sidebar__rotate {
	transform: rotate(90deg);
	transition: transform 0.3s ease;
}

.clm-mobile-arrow {
	position: relative;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 9px solid var(--primary-color);
	margin: 0;
	transition: transform 0.3s ease;
}


.clm-mobile-arrow.top {
	transform: rotate(180deg);
}

.clm-mobile-nav-filter {
	display: flex;
	gap: 15px;
	padding: 10px 15px;
	align-items: center;
}

.clm-mobile-nav-filter .nav img {
	width: 30px;
	height: 30px;
	max-width: 30px;
}

.clm-mobile-filter .select-wrapper {
	position: relative;
	user-select: none;
	width: 100%;
	font-size: 14px;
}


.clm-mobile-filter .select {
	display: flex;
	flex-direction: column;
	border: 1px solid black;
	font-weight: 400;
	color: black;
	letter-spacing: 0;
	background-color: var(--black1) 0 0 no-repeat padding-box;
	border-color: transparent;
	border-radius: 10px;
}

.clm-mobile-filter .select__trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px 10px;
	height: 28px;
	line-height: 28px;
	cursor: pointer;
	background-color: var(--primary-color);
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 10px;
}

.clm-mobile-filter .select__trigger .arrow {
	border-top-color: var(--a-color);
}


.clm-mobile-filter .options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 20;
	max-height: 150px;
	overflow-y: scroll;
	background: var(--primary-bg-color);
	border: 1px solid var(--primary-color);
}

.clm-mobile-filter .select.open .options {
	position: absolute;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: 0;
}

.clm-mobile-filter .option {
	position: relative;
	display: block;
	padding: 0 12px 0 12px;
	line-height: 31px;
	cursor: pointer;
	transition: all .5s;
}

.clm-mobile-filter .option a {
	color: var(--primary-color);
}

.clm-mobile-header__topbar {
	padding: 8px 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	position: fixed;
	bottom: 0;
	z-index: 8;
	width: 100%;
	background-color: #30aef6;
	opacity: 0.9;
	box-shadow: 0 0 15px rgba(0, 0, 0, .06);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .06);
	border-top: 1px solid var(--primary-color);
}

.clm-mobile-header__topbar ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 15px;
}

.clm-mobile-header__topbar ul li {
	padding: 0 7px;
	margin: 0;
}

.clm-mobile-header__topbar ul li a {
	padding: 9px;
	border-radius: 4px;
	display: flex;
	position: relative;
	font-weight: 600;
}

.clm-mobile-header__topbar svg {
	width: 100%;
	height: auto;
	display: block;
}

.clm-mobile-home__dropdown {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px;
}

.clm-mobile-home__dropdown-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.clm-mobile-home__dropdown-toggle h1 {
	margin-bottom: 0;
}


.clm-mobile-home__gallery-buttons,
.clm-mobile-home__recommended-girls__group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 0 15px;
	justify-content: space-between;
}

.clm-mobile-home__gallery-buttons__item,
.clm-mobile-home__recommended-girls__item {
	flex: 0 0 calc(50% - 20px);
	text-transform: uppercase;
}

.clm-mobile-home__gallery-buttons__item {
	text-decoration: none;
	color: var(--primary-text-color);
	background-color: var(--primary-color);
	padding: 2px 10px;
	border-radius: 6px;
	text-align: center;
	font-weight: bold;
	height: 28px;
}

.clm-mobile-home__gallery-buttons__item:hover,
.clm-mobile-home__gallery-buttons__item:active {
	color: var(--white);
}

.clm-mobile-home__newsletter {
	padding: 0 15px;
}

.clm-mobile-home__newsletter__form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.clm-mobile-home__newsletter__form input {
	padding: 10px;
	border-radius: 6px;
	border: 1px solid var(--primary-color);
	background-color: var(--white);
	color: var(--primary-text-color);
	font-size: 14px;
	width: 80%;
}

.clm-mobile-home__newsletter__form button {
	padding: 10px 25px;
	border-radius: 6px;
	border: none;
	background-color: var(--primary-color);
	color: var(--white);
	font-size: 14px;
	cursor: pointer;
}

.clm-mobile-home__popuplar-searchs {
	padding: 15px;
	background-color: var(--primary-header-color);
}

.clm-mobile-home__popuplar-searchs__group {
	display: flex;
	justify-content: space-evenly;
}

.clm_body .clm-mobile-home__popuplar-searchs__group__title {
	color: var(--primary-color);
}

.clm-mobile-home__popuplar-searchs__group__item {
	display: flex;
	flex-direction: column;
	padding: 10px;
	gap: 5px;
}

.clm-mobile-home__above-warning {
	padding: 0 15px;
}

.clm-mobile-home__warning {
	background-color: var(--primary-header-color);
	padding: 15px;
}

.clm-mobile-gallery-search {
	width: 100%;
	border: 1px solid #d5b77a;
	background: #d5b77a;
}

.text-transform-normal {
	text-transform: none;
}