/*=========== THEME MODAL =============*/

.theme-modal {
	height: fit-content;
	width: 600px;
	max-height: 90vh;
	max-width: 90vw;
	background-color: #fff;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) scale(0);
	pointer-events: none;
	transition: transform .3s ease-in;
	z-index: 99999;
	padding: 25px;
	overflow-y: auto;
	border-radius: 5px;
}
.theme-modal.modal-open {
	pointer-events: all;
	transform: translate(-50%,-50%) scale(1);
	opacity: 1;
}
.theme-modal .close-modal {
	position: absolute;
	right: 20px;
	top: 0;
	font-size: 40px;
	font-weight: 750;
	color: #374957;
	transform: rotate(45deg);
	cursor: pointer;
}
.theme-modal .title {
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}
.theme-modal .subtitle {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}
.theme-modal .form-v2 {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.theme-modal .inputs-holder {
	display: grid;
	width: 100%;
	grid-gap: 15px;
}
.theme-modal .inputs-holder.columns-3 {
	grid-template-columns: repeat(3,1fr);
}
.theme-modal .form-v2 input {
	padding: 10px 15px;
	outline: none;
	border: 1px solid #c0c0c0;
	background-color: #f5f5f5;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	width: 100%;
	border-radius: 5px;
}
.theme-modal .form-v2 input.error {
	border-color: red;
}
.theme-modal .apperance {
	font-size: 12px;
	color: #a3a3a3;
}
.theme-modal .form-v2 .apperance span {
	text-decoration: underline;
	cursor: pointer;
}
.theme-modal .form-v2 .btn {
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}




#modal-service.theme-modal {
	width: 1025px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
	padding: 40px;
}
#modal-service.theme-modal .service-info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
}
#modal-service.theme-modal .service-info .service-right,
#modal-service.theme-modal .service-info .service-left {
	width: 48%;
}
#modal-service.theme-modal .service-info .service-right p {
	color: #000;
}
#modal-service.theme-modal .service-info .service-right
#modal-service.theme-modal .service-modal-swiper {
	overflow: hidden;
	width: 100%;
}
#modal-service.theme-modal .service-modal-swiper .swiper-slide {
	box-sizing: border-box;
	height: 300px;
}
#modal-service.theme-modal .service-modal-swiper .swiper-slide img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
#modal-service.theme-modal .service-info .price {
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
}
#modal-service.theme-modal .service-form {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}
#modal-privacy.theme-modal {
	width: 1025px;
}






@media (max-width: 769px) {
	#modal-service.theme-modal .service-info {
		flex-direction: column;
	}
	#modal-service.theme-modal .service-info .service-left {
		margin-bottom: 30px;
	}
	#modal-service.theme-modal .service-info .service-left,
	#modal-service.theme-modal .service-info .service-right {
		width: 100%;
	}
	.theme-modal .inputs-holder.columns-3 {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	#modal-service.theme-modal .service-modal-swiper .swiper-slide {
		height: 250px;
	}
}
@media (max-width: 498px) {
	.theme-modal .close-modal {
		right: 10px;
		font-size: 30px;
	}
	.theme-modal .title {
		font-size: 20px;
		line-height: 24px;
	}
	#modal-service.theme-modal {
		padding: 30px 25px;
	}
	.theme-modal .inputs-holder.columns-3 {
		/* grid-template-columns: 1fr; */
	}
}