/*
Theme Name: imta-theme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.1
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.imta-card {
	position: relative;
	width: min(100%, 360px);
	margin: 0 auto 28px;
	text-align: center;
	--imta-wine: #7a1f2b;
	--imta-gold: #c9a227;
	--imta-cream: #fff8ea;
}

.imta-card__frame {
	position: relative;
	padding: 18px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, var(--imta-wine) 0%, #a13b47 36%, #f3dc8a 68%, var(--imta-gold) 100%) border-box;
	border: 3px solid transparent;
	box-shadow: 0 18px 42px rgba(122, 31, 43, 0.18);
	isolation: isolate;
	transition: transform .35s ease, box-shadow .35s ease;
}

.imta-card__frame::before,
.imta-card__frame::after {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.imta-card__frame::before {
	inset: -15px 20px 20px -15px;
	border-left: 8px solid var(--imta-wine);
	border-top: 8px solid var(--imta-wine);
	background: linear-gradient(135deg, rgba(122, 31, 43, .08), transparent 58%);
}

.imta-card__frame::after {
	inset: 20px -15px -15px 20px;
	border-right: 8px solid var(--imta-gold);
	border-bottom: 8px solid var(--imta-gold);
	background: linear-gradient(135deg, transparent 42%, rgba(201, 162, 39, .16));
}

.imta-card__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: linear-gradient(135deg, #f8efe8, #f7e5a6);
}

.imta-card__image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .16), transparent 28%),
		linear-gradient(0deg, rgba(122, 31, 43, .2), transparent 45%);
	opacity: .5;
	transition: opacity .35s ease;
}

.imta-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.imta-card__placeholder {
	display: grid;
	min-height: 360px;
	place-items: center;
	color: var(--imta-wine);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.imta-card__media-link {
	display: block;
	color: inherit;
}

.imta-card__title {
	margin: 24px 0 14px;
	color: #141414;
	font-size: clamp(17px, 2.4vw, 20px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.imta-card__title::after {
	content: "";
	display: block;
	width: 58px;
	height: 2px;
	margin: 12px auto 0;
	background: linear-gradient(90deg, transparent, var(--imta-gold), transparent);
}

.imta-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 50px;
	padding: 13px 24px;
	color: #fff;
	background: linear-gradient(135deg, var(--imta-wine), #9b3340 48%, var(--imta-gold));
	border: 1px solid rgba(201, 162, 39, .45);
	box-shadow: 0 12px 26px rgba(122, 31, 43, .22);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	text-transform: uppercase;
	transform: translateX(-28px);
	transition: opacity .42s ease, transform .42s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease, filter .3s ease;
}

.imta-card:hover .imta-card__button {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.imta-card__button:hover {
	color: #fff;
	filter: brightness(1.05);
	box-shadow: 0 16px 30px rgba(122, 31, 43, .28);
}

.imta-card:hover .imta-card__frame {
	transform: translateY(-4px);
	box-shadow: 0 22px 48px rgba(122, 31, 43, .24);
}

.imta-card:hover .imta-card__image {
	transform: scale(1.045);
}

.imta-card:hover .imta-card__image-wrap::after {
	opacity: .25;
}




.imta-service-card {
	width: min(100%, 380px);
	margin: 0 auto 28px;
	--imta-service-wine: #7a1f2b;
	--imta-service-gold: #c9a227;
	--imta-service-ink: #2a2a2a;
	--imta-service-muted: #9b3340;
}

.imta-service-card__frame {
	position: relative;
	padding: 18px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, var(--imta-service-wine) 0%, #a13b47 36%, #f3dc8a 68%, var(--imta-service-gold) 100%) border-box;
	border: 3px solid transparent;
	box-shadow: 0 18px 42px rgba(122, 31, 43, .18);
	isolation: isolate;
	transition: transform .35s ease, box-shadow .35s ease;
}

.imta-service-card__frame::before,
.imta-service-card__frame::after {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.imta-service-card__frame::before {
	inset: -15px 20px 20px -15px;
	border-left: 8px solid var(--imta-service-wine);
	border-top: 8px solid var(--imta-service-wine);
	background: linear-gradient(135deg, rgba(122, 31, 43, .08), transparent 58%);
}

.imta-service-card__frame::after {
	inset: 20px -15px -15px 20px;
	border-right: 8px solid var(--imta-service-gold);
	border-bottom: 8px solid var(--imta-service-gold);
	background: linear-gradient(135deg, transparent 42%, rgba(201, 162, 39, .16));
}

.imta-service-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 7 / 8;
	background: linear-gradient(135deg, #f8efe8, #f7e5a6);
}

.imta-service-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .14), transparent 28%),
		linear-gradient(0deg, rgba(122, 31, 43, .12), transparent 45%);
	opacity: .45;
	pointer-events: none;
	transition: opacity .35s ease;
}

.imta-service-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.imta-service-card__placeholder {
	display: grid;
	min-height: 380px;
	place-items: center;
	color: var(--imta-service-wine);
	font-weight: 600;
	text-transform: uppercase;
}

.imta-service-card__body {
	padding: 16px 10px 0;
	margin-top:10px;
}

.imta-service-card__title {
	margin: 0 0 6px;
	color: var(--imta-service-ink);
	font-size: clamp(20px, 2.6vw, 24px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
	text-transform: uppercase;
}

.imta-service-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}


.imta-service-card__media-link {
	display: block;
	color: inherit;
}

.imta-service-card__title-link {
	color: inherit;
	text-decoration: none;
}

.imta-service-card__title-link:hover {
	color: var(--imta-service-wine);
}.imta-service-card__price {
	min-width: 0;
	color: var(--imta-service-muted);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
}

.imta-service-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 122px;
	min-height: 36px;
	padding: 9px 18px;
	color: #fff;
	background: linear-gradient(135deg, var(--imta-service-wine), #9b3340 48%, var(--imta-service-gold));
	border: 1px solid rgba(201, 162, 39, .45);
	border-radius: 999px;
	box-shadow: 0 12px 26px rgba(122, 31, 43, .22);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.imta-service-card__button:hover {
	color: #fff;
	filter: brightness(1.05);
	box-shadow: 0 16px 30px rgba(122, 31, 43, .28);
	transform: translateY(-1px);
}

.imta-service-card:hover .imta-service-card__frame {
	transform: translateY(-4px);
	box-shadow: 0 22px 48px rgba(122, 31, 43, .24);
}

.imta-service-card:hover .imta-service-card__image {
	transform: scale(1.04);
}

.imta-service-card:hover .imta-service-card__media::after {
	opacity: .25;
}
.imta-heading {
	position: relative;
	width: min(100%, 780px);
	min-height: 520px;
	margin: 0 auto 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 72px 44px;
	--imta-heading-wine: #7a1f2b;
	--imta-heading-gold: #c9a227;
	--imta-heading-ink: #191512;
	--imta-heading-muted: #000;
}

.imta-heading__bg {
	position: absolute;
	left: 34%;
	top: 50%;
	z-index: 0;
	color: rgb(0 0 0 / 10%);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(340px, 58vw, 760px);
	font-weight: 400;
	line-height: .72;
	pointer-events: none;
	text-transform: uppercase;
	transform: translate(-50%, -50%) scaleX(1.12);
	user-select: none;
	white-space: nowrap;
}

.imta-heading__content {
	position: relative;
	z-index: 1;
	width: min(100%, 300px);
}

.imta-heading__title {
	position: relative;
	margin: 0 0 22px;
	padding-left: 24px;
	color: var(--imta-heading-wine);
	font-size: clamp(24px, 3.2vw, 38px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0;
	text-transform: uppercase;
}

.imta-heading__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: .12em;
	width: 5px;
	height: .9em;
	background: linear-gradient(180deg, #f5df95, var(--imta-heading-gold), #7a1f2b);
	box-shadow: 0 0 24px rgba(201, 162, 39, .28);
}

.imta-heading__title::after {
	content: "";
	display: block;
	width: 118px;
	height: 2px;
	margin-top: 16px;
	background: linear-gradient(90deg, var(--imta-heading-gold), rgba(122, 31, 43, .25), transparent);
}

.imta-heading__description {
	margin: 0 0 30px;
	color: var(--imta-heading-muted);
	font-size: 16px;
	line-height: 1.85;
}

.imta-heading__description p {
	margin-bottom: 0;
}

.imta-heading__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 178px;
	min-height: 52px;
	padding: 14px 28px;
	color: #f8e5a6;
	background: linear-gradient(135deg, var(--imta-heading-wine), #9b3340 48%, var(--imta-heading-gold));
	border: 1px solid rgba(201, 162, 39, .45);
	box-shadow: 0 12px 26px rgba(122, 31, 43, .22);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	transition: transform .35s ease, box-shadow .35s ease, color .35s ease, border-color .35s ease;
}

.imta-heading__button:hover {
	color: #fff;
	border-color: rgba(201, 162, 39, .78);
	box-shadow: 0 20px 40px rgba(122, 31, 43, .24);
	transform: translateY(-3px);
}

.imta-heading--center {
	text-align: center;
}

.imta-heading--center .imta-heading__title {
	padding-left: 0;
}

.imta-heading--center .imta-heading__title::before {
	left: 50%;
	top: -18px;
	width: 72px;
	height: 3px;
	transform: translateX(-50%);
}

.imta-heading--center .imta-heading__title::after {
	margin-left: auto;
	margin-right: auto;
}

.imta-heading--right {
	text-align: right;
}

.imta-heading--right .imta-heading__title {
	padding-right: 24px;
	padding-left: 0;
}

.imta-heading--right .imta-heading__title::before {
	right: 0;
	left: auto;
}

.imta-heading--right .imta-heading__title::after {
	margin-left: auto;
	background: linear-gradient(90deg, transparent, rgba(122, 31, 43, .25), var(--imta-heading-gold));
}

.imta-video-card {
	position: relative;
	width: min(100%, 410px);
	margin: 0 auto 28px;
	text-align: center;
	--imta-video-title: #191919;
	--imta-video-accent: #b08a45;
	--imta-video-card-height: 650px;
}

.imta-video-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	height: var(--imta-video-card-height, 650px);
	aspect-ratio: 9 / 15.25;
	background: #f3f3f3;
	color: inherit;
}

.imta-video-card__media::before {
	content: "";
	position: absolute;
	top: -12%;
	bottom: -12%;
	left: -110%;
	z-index: 2;
	width: 82%;
	background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .05) 24%, rgba(255, 255, 255, .36) 50%, rgba(255, 255, 255, .08) 74%, transparent 100%);
	opacity: 0;
	visibility: hidden;
	transform: skewX(-18deg) translateX(0);
	transition: transform .34s ease, opacity .08s ease, visibility 0s linear .34s;
	pointer-events: none;
}

.imta-video-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.imta-video-card__placeholder {
	display: grid;
	height: 100%;
	min-height: 520px;
	place-items: center;
	background: #f4f0ec;
	color: #7a6a56;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.imta-video-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .42);
	transition: background .35s ease;
}

.imta-video-card__play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	display: flex;
	width: 90px;
	height: 90px;
	align-items: center;
	justify-content: center;
	border: 1.5px solid rgba(255, 255, 255, .88);
	border-radius: 999px;
	background: rgba(255, 255, 255, .04);
	color: #fff;
	transform: translate(-50%, -50%);
	transition: background .35s ease, transform .35s ease, border-color .35s ease;
}

.imta-video-card__play svg {
	display: block;
	width: 44px;
	height: 44px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.imta-video-card__play-triangle {
	fill: none;
}

.imta-video-card__title {
	margin: 16px 0 0;
	color: var(--imta-video-title);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: none;
}

.imta-video-card__popup {
	max-width: 960px;
	padding: 0;
	background: #000;
}

.imta-video-card__player {
	display: block;
	width: min(90vw, 960px);
	max-height: 80vh;
	background: #000;
}

.imta-video-card:hover .imta-video-card__image {
	transform: scale(1.035);
}

.imta-video-card:hover .imta-video-card__media::before {
	opacity: 1;
	visibility: visible;
	transform: skewX(-18deg) translateX(320%);
	transition: transform .34s ease, opacity .05s ease;
}

.imta-video-card:hover .imta-video-card__overlay {
	background: rgba(0, 0, 0, .34);
}

.imta-video-card:hover .imta-video-card__play {
	border-color: #fff;
	background: rgba(255, 255, 255, .13);
	transform: translate(-50%, -50%) scale(1.04);
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
	.imta-heading {
		min-height: 360px;
		padding: 0px 24px;
	}

	.imta-heading__bg {
		left: 42%;
		font-size: clamp(210px, 78vw, 340px);
		opacity: .72;
		transform: translate(-50%, -50%) scaleX(1.06);
	}

	.imta-heading__content {
		width: 100%;
	}

	.imta-heading__title {
		font-size: 24px;
	}

	.imta-heading__description {
		font-size: 15px;
		line-height: 1.75;
	}

	.imta-heading__button {
		width: 100%;
		min-width: 0;
	}
	.imta-card {
		width: min(100%, 330px);
	}

	.imta-card__frame {
		padding: 12px;
	}

	.imta-card__frame::before {
		inset: -10px 14px 14px -10px;
		border-left-width: 6px;
		border-top-width: 6px;
	}

	.imta-card__frame::after {
		inset: 14px -10px -10px 14px;
		border-right-width: 6px;
		border-bottom-width: 6px;
	}

	.imta-card__title {
		margin-top: 20px;
		font-size: 18px;
	}

	.imta-card__button {
		width: 100%;
		min-width: 0;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.imta-service-card {
		width: min(100%, 350px);
	}

	.imta-service-card__frame {
		padding: 12px;
	}

	.imta-service-card__frame::before {
		inset: -10px 14px 14px -10px;
		border-left-width: 6px;
		border-top-width: 6px;
	}

	.imta-service-card__frame::after {
		inset: 14px -10px -10px 14px;
		border-right-width: 6px;
		border-bottom-width: 6px;
	}

	.imta-service-card__body {
		padding: 14px 10px 0;
	}

	.imta-service-card__title {
		font-size: 20px;
	}

	.imta-service-card__footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.imta-service-card__button {
		width: 100%;
		min-width: 0;
	}



	.imta-video-card {
		width: min(100%, 330px);
	}

	.imta-video-card__media {
		height: min(var(--imta-video-card-height, 650px), 560px);
	}

	.imta-video-card__play {
		width: 74px;
		height: 74px;
	}

	.imta-video-card__play svg {
		width: 36px;
		height: 36px;
	}

	.imta-video-card__title {
		font-size: 14px;
	}
}

.imta-locations {
	--imta-locations-gold: #b9983f;
	--imta-locations-ink: #171717;
	--imta-locations-border: #e7e1d4;
	--imta-locations-soft: #f8f5ed;
	width: 100%;
	margin: 0 auto 36px;
}

.imta-locations__intro {
	margin: 0 0 22px;
	text-align: center;
}

.imta-locations__title {
	margin: 0 0 8px;
	color: var(--imta-locations-ink);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}

.imta-locations__description {
	color: #000;
	font-size: 15px;
	line-height: 1.6;
}

.imta-locations__description p {
	margin-bottom: 0;
}

.imta-locations__layout {
	display: grid;
	grid-template-columns: minmax(360px, 480px) minmax(0, 1fr);
	gap: 22px;
	align-items: stretch;
}

.imta-locations__panel,
.imta-locations__map {
	overflow: hidden;
	border: 1px solid var(--imta-locations-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.imta-locations__panel {
	border-top: 8px solid var(--imta-locations-gold);
}

.imta-locations__filters {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 0 8px 10px;
	background: var(--imta-locations-gold);
}

.imta-locations__select {
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0 34px 0 13px;
	border: 1px solid #d8d8d8;
	border-radius: 7px;
	background-color: #fff;
	color: #26313d;
	font-size: 14px;
	line-height: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08) inset;
}

.imta-locations__list {
	max-height: 500px;
	overflow: auto;
	background: #fff;
}

.imta-locations__item {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 16px;
	padding: 12px 12px 14px;
	border-bottom: 1px solid #ececec;
	border-left: 4px solid transparent;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease;
}

.imta-locations__item:hover,
.imta-locations__item--active {
	border-left-color: var(--imta-locations-gold);
	background: #fffaf0;
}

.imta-locations__item[hidden] {
	display: none;
}

.imta-locations__image-wrap {
	overflow: hidden;
	width: 112px;
	height: 94px;
	border-radius: 12px;
	background: #f1f1f1;
}

.imta-locations__image,
.imta-locations__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.imta-locations__image {
	object-fit: cover;
}

.imta-locations__placeholder {
	display: grid;
	place-items: center;
	color: #777;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.imta-locations__content {
	min-width: 0;
}

.imta-locations__branch-title {
	margin: 4px 0 6px;
	color: #9b7a25;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: uppercase;
}

.imta-locations__address {
	margin: 0 0 16px;
	color: #111;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
}

.imta-locations__actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
}

.imta-locations__button {
	display: inline-flex;
	min-width: 0;
	height: 35px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 9px;
	border: 1px solid #dedede;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.imta-locations__button--light {
	background: #fff;
	color: #111;
}

.imta-locations__button--light:hover {
	border-color: var(--imta-locations-gold);
	color: #111;
}

.imta-locations__button--dark {
	border-color: #303030;
	background: #303030;
	color: #ffd45b;
}

.imta-locations__button--dark:hover {
	background: #171717;
	color: #ffd45b;
}

.imta-locations__icon {
	font-size: 14px;
	line-height: 1;
}

.imta-locations__empty {
	margin: 0;
	padding: 24px;
	color: #777;
	font-size: 14px;
	text-align: center;
}

.imta-locations__map {
	min-height: 500px;
}

.imta-locations__map iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-height: 500px;
	border: 0;
}

.imta-locations__map-placeholder {
	display: grid;
	height: 100%;
	min-height: 500px;
	place-items: center;
	padding: 24px;
	background: var(--imta-locations-soft);
	color: #725f2e;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

@media only screen and (max-width: 64em) {
	.imta-locations__layout {
		grid-template-columns: 1fr;
	}

	.imta-locations__list {
		max-height: 440px;
	}
}

@media only screen and (max-width: 48em) {
	.imta-locations__title {
		font-size: 23px;
	}

	.imta-locations__filters,
	.imta-locations__item,
	.imta-locations__actions {
		grid-template-columns: 1fr;
	}

	.imta-locations__item {
		gap: 12px;
	}

	.imta-locations__image-wrap {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.imta-locations__address {
		margin-top: 0;
		font-size: 15px;
	}

	.imta-locations__button {
		width: 100%;
	}

	.imta-locations__map,
	.imta-locations__map iframe,
	.imta-locations__map-placeholder {
		min-height: 360px;
	}
}




.imta-service-single {
	background: #fff;
	color: #000;
}

.imta-service-single__breadcrumb {
	margin: 0 0 22px;
	text-align: center;
}

.imta-service-single__article {
	width: min(100%, 1240px);
	margin: 0 auto;
	padding: 0 20px 56px;
}

.imta-service-single__header {
	border-bottom: 1px solid #ddd;
	margin-bottom: 26px;
	padding-bottom: 14px;
}

.service-title {
	position: relative;
	margin: 0;
	padding-left: 20px;
	color: #000;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: uppercase;
}

.service-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: .08em;
	width: 4px;
	height: 1.08em;
	background: #c39a3b;
}

.imta-service-single__section {
	margin: 0 0 54px;
}

.imta-service-single__section .service-title {
	border-bottom: 1px solid #ddd;
	font-size: 24px;
	margin-bottom: 18px;
	padding-bottom: 14px;
}

.imta-service-single__content {
	font-size: 16px;
	line-height: 1.75;
}

.imta-service-single__content h2,
.imta-service-single__content h3 {
	color: #000;
	font-weight: 800;
	letter-spacing: 0;
}

.imta-service-single__content h2 {
	font-size: 28px;
	line-height: 1.25;
	margin: 18px 0 8px;
}

.imta-service-single__content h3 {
	font-size: 23px;
	line-height: 1.3;
	margin: 16px 0 8px;
}

.imta-service-single__video-grid,
.imta-service-single__related-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.imta-service-single__video-item .imta-video-card {
	width: 100%;
	margin-bottom: 0;
}

.imta-service-single__video-item .imta-video-card__media {
	height: var(--imta-video-card-height, 560px);
}

.imta-service-single__video-item .imta-video-card__title {
	color: #1f1f1f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	margin-top: 14px;
	text-transform: none;
}

.imta-service-single__reviews {
	width: min(100%, 900px);
}

.imta-service-single__review-placeholder {
	min-height: 188px;
	border: 1px solid #ddd;
	background: #fff;
}

.imta-service-single__related-grid {
	gap: 60px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.imta-service-single__related-item .imta-service-card {
	width: 100%;
	margin-bottom: 0;
}

.imta-service-single__news .post-item .box-text {
	padding-left: 0;
	padding-right: 0;
}

.imta-service-single__news .post-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
	text-transform: uppercase;
}

.imta-service-single__news .from_the_blog_excerpt {
	font-size: 15px;
	line-height: 1.8;
}

.imta-service-single__news .button {
	border: 0;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	padding: 0;
	text-transform: none;
}

.imta-service-video-row__preview {
	display: inline-block;
	margin: 8px 10px 8px 0;
	vertical-align: middle;
}

.imta-service-video-row__preview img {
	max-width: 120px;
	height: auto;
}

@media only screen and (max-width: 64em) {
	.imta-service-single__video-grid,
	.imta-service-single__related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 48em) {
	.imta-service-single__article {
		padding: 0 14px 42px;
	}

	.service-title {
		font-size: 24px;
	}

	.imta-service-single__section .service-title {
		font-size: 21px;
	}

	.imta-service-single__video-grid,
	.imta-service-single__related-grid {
		grid-template-columns: 1fr;
	}

	.imta-service-single__video-item .imta-video-card__media {
		height: min(var(--imta-video-card-height, 560px), 520px);
	}
}



.imta-service-archive {
	background: #fff;
	color: #000;
}

.imta-service-archive__breadcrumb {
	background: #ebebeb;
	margin: 0 0 30px;
	padding: 8px 0;
}

.imta-service-archive__inner {
	width: min(100%, 1240px);
	margin: 0 auto;
	padding: 0 20px 64px;
}

.imta-service-archive__header {
	margin: 0 0 34px;
}

.imta-service-archive__header .service-title {
	color: #7a1f2b;
	font-size: 28px;
	width: fit-content;
}

.imta-service-archive__header .service-title::after {
	content: "";
	display: block;
	width: 118px;
	height: 2px;
	margin: 18px 0 0;
	background: linear-gradient(90deg, #c9a227, rgba(122, 31, 43, .35), transparent);
}

.imta-service-archive__grid {
	display: grid;
	gap: 48px 72px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.imta-service-archive__item .imta-service-card {
	width: 100%;
	margin-bottom: 0;
}

.imta-service-archive__item .imta-service-card__media {
	aspect-ratio: 1 / 1;
}

.imta-service-archive__item .imta-service-card__body {
	padding-left: 0;
	padding-right: 0;
}

.imta-service-archive__item .imta-service-card__title {
	font-size: 24px;
}

.imta-service-archive__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}

.imta-service-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #d8d8d8;
	color: #111;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.imta-service-archive__pagination .page-numbers.current,
.imta-service-archive__pagination .page-numbers:hover {
	border-color: #7a1f2b;
	background: linear-gradient(135deg, #7a1f2b, #9b3340 48%, #c9a227);
	color: #fff;
}

.imta-service-archive__empty {
	font-size: 16px;
	margin: 0;
}

@media only screen and (max-width: 64em) {
	.imta-service-archive__grid {
		gap: 42px 32px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 48em) {
	.imta-service-archive__breadcrumb {
		margin-bottom: 28px;
	}

	.imta-service-archive__inner {
		padding: 0 14px 48px;
	}

	.imta-service-archive__header .service-title {
		font-size: 24px;
	}

	.imta-service-archive__grid {
		grid-template-columns: 1fr;
	}

	.imta-service-archive__pagination {
		flex-wrap: wrap;
	}
}


.imta-service-single__reviews {
	width: 100%;
}

.imta-service-review-notice {
	border: 1px solid #d8d8d8;
	margin: 0 0 18px;
	padding: 12px 16px;
	font-size: 14px;
}

.imta-service-review-notice--success {
	border-color: #18a84a;
	color: #137a38;
}

.imta-service-review-notice--error {
	border-color: #d42d2d;
	color: #b51f1f;
}

.imta-service-review-summary {
	display: grid;
	grid-template-columns: 270px 1fr 260px;
	align-items: center;
	gap: 42px;
	border: 1px solid #d8d8d8;
	margin-bottom: 24px;
	min-height: 190px;
	padding: 32px 42px;
}

.imta-service-review-summary__score {
	text-align: center;
}

.imta-service-review-summary__score strong {
	display: block;
	color: #000;
	font-size: 18px;
	margin-bottom: 14px;
}

.imta-service-review-summary__number {
	color: #ff2636;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 10px;
}

.imta-service-review-stars {
	display: inline-flex;
	gap: 2px;
	color: #d3d6da;
	font-size: 22px;
	line-height: 1;
}

.imta-service-review-stars span.is-active {
	color: #ffb21a;
}

.imta-service-review-stars--large {
	font-size: 24px;
}

.imta-service-review-summary__count {
	color: #000;
	font-size: 14px;
	margin-top: 8px;
}

.imta-service-review-summary__bars {
	display: grid;
	gap: 10px;
}

.imta-service-review-bar {
	display: grid;
	grid-template-columns: 18px 1fr 46px;
	align-items: center;
	gap: 10px;
	color: #667085;
	font-size: 14px;
}

.imta-service-review-bar__track {
	height: 12px;
	overflow: hidden;
	background: #e8ebee;
	border-radius: 999px;
}

.imta-service-review-bar__track span {
	display: block;
	height: 100%;
	background: #22b14c;
	border-radius: inherit;
}

.imta-service-review-summary__cta {
	display: grid;
	justify-items: start;
	gap: 12px;
	font-size: 14px;
}

.imta-service-review-summary__button,
.imta-service-review-form button,
.imta-service-review-list__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 10px 18px;
	border: 0;
	background: #303030;
	color: #ffc107;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.imta-service-review-summary__button:hover,
.imta-service-review-form button:hover,
.imta-service-review-list__more:hover {
	color: #ffc107;
	filter: brightness(1.05);
}

.imta-service-review-form-wrap,
.imta-service-review-list {
	border: 1px solid #d8d8d8;
	margin-bottom: 24px;
}


.imta-service-review-form-wrap {
	display: none;
}

.imta-service-review-form-wrap.is-active {
	display: block;
}

.imta-service-review-form-wrap__title,
.imta-service-review-list__title {
	background: #f7f7f7;
	border-bottom: 1px solid #d8d8d8;
	color: #000;
	font-size: 14px;
	font-weight: 800;
	padding: 14px 20px;
	text-transform: uppercase;
}

.imta-service-review-form-wrap__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 34px;
	padding: 22px 20px 20px;
}

.imta-service-review-form {
	display: grid;
	gap: 14px;
}

.imta-service-review-form label {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.imta-service-review-form input,
.imta-service-review-form textarea {
	width: 100%;
	border: 1px solid #cfd6dd;
	box-shadow: none;
	font-size: 14px;
	margin: 0;
	padding: 11px 12px;
}

.imta-service-review-form textarea {
	min-height: 80px;
	resize: vertical;
}

.imta-service-review-form__website {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.imta-service-review-rating-input {
	display: inline-flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 2px;
}

.imta-service-review-rating-input input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.imta-service-review-rating-input label {
	color: #d3d6da;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
}

.imta-service-review-rating-input input:checked ~ label,
.imta-service-review-rating-input label:hover,
.imta-service-review-rating-input label:hover ~ label {
	color: #ffb21a;
}

.imta-service-review-form__contact {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.imta-service-review-form button {
	justify-self: start;
	background: #ffc107;
	color: #000;
}

.imta-service-review-product {
	display: grid;
	align-content: start;
	justify-items: start;
	gap: 10px;
	padding-top: 4px;
}

.imta-service-review-product__image {
	border: 7px solid #0f5968;
	box-shadow: inset 0 0 0 2px #d5aa45;
	padding: 6px;
}

.imta-service-review-product__image img {
	display: block;
	width: 150px;
	height: 190px;
	object-fit: cover;
}

.imta-service-review-product h3 {
	color: #000;
	font-size: 16px;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
}

.imta-service-review-list__body {
	padding: 28px 20px 16px;
}

.imta-service-review-item {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 40px;
	margin-bottom: 32px;
}

.imta-service-review-item.is-hidden {
	display: none;
}

.imta-service-review-item__author {
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 8px;
	text-align: center;
}

.imta-service-review-item__avatar {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: #202020;
	color: #ffc107;
	font-size: 18px;
	font-weight: 800;
}

.imta-service-review-item__author strong {
	color: #000;
	font-size: 14px;
}

.imta-service-review-item__author span,
.imta-service-review-reply span {
	color: #8b8f95;
	font-size: 12px;
}

.imta-service-review-item__heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.imta-service-review-item__heading strong {
	color: #000;
	font-size: 15px;
}

.imta-service-review-item__text {
	color: #000;
	font-size: 14px;
	line-height: 1.6;
}

.imta-service-review-item__reply-link {
	display: inline-block;
	font-size: 14px;
	margin-top: 4px;
}

.imta-service-review-reply {
	position: relative;
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 14px;
	border: 1px solid #d8d8d8;
	background: #f8f9fa;
	margin-top: 26px;
	padding: 24px 22px;
}

.imta-service-review-reply::before {
	content: "";
	position: absolute;
	left: 18px;
	top: -11px;
	width: 20px;
	height: 20px;
	border-left: 1px solid #d8d8d8;
	border-top: 1px solid #d8d8d8;
	background: #f8f9fa;
	transform: rotate(45deg);
}

.imta-service-review-reply__avatar {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #2196f3;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.imta-service-review-list__more {
	width: 100%;
	background: #303030;
}

@media only screen and (max-width: 64em) {
	.imta-service-review-summary,
	.imta-service-review-form-wrap__body {
		grid-template-columns: 1fr;
	}

	.imta-service-review-summary__cta {
		justify-items: center;
	}
}

@media only screen and (max-width: 48em) {
	.imta-service-review-summary {
		gap: 24px;
		padding: 24px 16px;
	}

	.imta-service-review-form__contact,
	.imta-service-review-item {
		grid-template-columns: 1fr;
	}

	.imta-service-review-item {
		gap: 18px;
	}

	.imta-service-review-product {
		justify-items: center;
	}
}




.imta-category-archive__breadcrumb {
	background: #ebebeb;
	margin: 0 0 42px;
	padding: 8px 0;
}

.imta-category-archive__inner {
	width: min(100%, 1240px);
	margin: 0 auto;
	padding: 0 20px 64px;
}

.imta-category-archive__header {
	border-bottom: 1px solid #ddd;
	margin: 0 0 28px;
	padding-bottom: 14px;
}

.imta-category-archive__description {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.7;
}

@media only screen and (max-width: 48em) {
	.imta-category-archive__breadcrumb {
		margin-bottom: 28px;
	}

	.imta-category-archive__inner {
		padding: 0 14px 48px;
	}
}

.imta-category-archive__grid {
	display: grid;
	gap: 34px 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.imta-category-card {
	margin: 0;
}

.imta-category-card__image {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	background: #f3f3f3;
	overflow: hidden;
	color: #7a1f2b;
	font-weight: 700;
}

.imta-category-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.imta-category-card:hover .imta-category-card__image img {
	transform: scale(1.04);
}

.imta-category-card__body {
	padding: 18px 0 0;
}

.imta-category-card__title {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
	text-transform: uppercase;
}

.imta-category-card__title a {
	color: #171717;
}

.imta-category-card__title a:hover {
	color: #7a1f2b;
}

.imta-category-card__excerpt {
	border-top: 1px solid #e1e1e1;
	color: #444;
	font-size: 15px;
	line-height: 1.8;
	padding-top: 14px;
}

.imta-category-card__more {
	display: inline-block;
	color: #333;
	font-size: 14px;
	font-style: italic;
	margin-top: 16px;
}

.imta-category-card__more::after {
	content: "+";
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	margin-left: 8px;
	border-radius: 50%;
	background: #000;
	color: #d7a11e;
	font-style: normal;
	font-weight: 700;
}

.imta-category-archive__pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 42px;
}

.imta-category-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #d8d8d8;
	color: #111;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.imta-category-archive__pagination .page-numbers.current,
.imta-category-archive__pagination .page-numbers:hover {
	border-color: #7a1f2b;
	background: linear-gradient(135deg, #7a1f2b, #9b3340 48%, #c9a227);
	color: #fff;
}

.imta-category-archive__empty {
	font-size: 16px;
	margin: 0;
}

@media only screen and (max-width: 64em) {
	.imta-category-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 48em) {
	.imta-category-archive__grid {
		grid-template-columns: 1fr;
	}

	.imta-category-archive__pagination .nav-links {
		flex-wrap: wrap;
	}
}

.imta-booking-form {
	max-width: 650px;
	margin: 24px auto;
	padding: 26px 24px 24px;
	border: 1px solid #dedede;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
	color: #111;
}

.imta-booking-form form {
	margin: 0;
}

.imta-booking-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.imta-booking-form__field {
	margin: 0 0 18px;
}

.imta-booking-form__field--full {
	width: 100%;
}

.imta-booking-form__field label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 9px;
	color: #050505;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.imta-booking-form__field label span {
	color: #c98622;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}

.imta-booking-form select,
.imta-booking-form input[type="text"],
.imta-booking-form input[type="tel"],
.imta-booking-form input[type="datetime-local"] {
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0 12px;
	border: 1px solid #cbd2d9;
	border-radius: 7px;
	background-color: #fff;
	box-shadow: none;
	color: #1f2933;
	font-size: 14px;
	line-height: 40px;
}

.imta-booking-form select:focus,
.imta-booking-form input[type="text"]:focus,
.imta-booking-form input[type="tel"]:focus,
.imta-booking-form input[type="datetime-local"]:focus {
	border-color: #c98622;
	box-shadow: 0 0 0 2px rgba(201, 134, 34, .16);
	outline: none;
}

.imta-booking-form select[hidden] {
	display: none;
}

.imta-booking-form__salon-message {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	margin-top: 10px;
	padding: 18px;
	border: 1px solid #cbd2d9;
	border-radius: 7px;
	color: #ff1515;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.imta-booking-form__salon-message::before {
	content: "!";
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	margin-right: 8px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}

.imta-booking-form__salon-message[hidden] {
	display: none;
}

.imta-booking-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	margin: 2px 0 0;
	border: 0;
	border-radius: 7px;
	background: #020303;
	color: #f5b819;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}

.imta-booking-form__submit:hover {
	background: #171717;
	transform: translateY(-1px);
}

.imta-booking-form__notice {
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 7px;
	font-size: 14px;
	line-height: 1.5;
}

.imta-booking-form__notice--success {
	border: 1px solid #b8dfc2;
	background: #f1fbf3;
	color: #146b2e;
}

.imta-booking-form__notice--error {
	border: 1px solid #f2c2c2;
	background: #fff4f4;
	color: #b31212;
}

.imta-booking-form__website {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

@media only screen and (max-width: 48em) {
	.imta-booking-form {
		padding: 20px 16px;
		border-radius: 12px;
	}

	.imta-booking-form__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
/* WooCommerce thank you page */
.page-checkout .woocommerce-order {
	align-items: flex-start;
	margin-top: 28px;
	margin-bottom: 48px;
	color: #202020;
}

.page-checkout .woocommerce-order .large-7.col,
.page-checkout .woocommerce-order .large-5.col {
	padding-bottom: 0;
}

.page-checkout .woocommerce-order .large-7.col > p {
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid #eadfc9;
	border-left: 4px solid #c98622;
	border-radius: 8px;
	background: #faf7f1;
	color: #4a4a4a;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.page-checkout .woocommerce-order .is-well {
	padding: 24px;
	border: 1px solid #eadfc9;
	border-top: 4px solid #c98622;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 30px rgba(122, 31, 43, .10);
	color: #202020;
}

.page-checkout .woocommerce-order .woocommerce-thankyou-order-received {
	margin: 0 0 20px;
	padding: 0 0 16px;
	border-bottom: 1px solid #eadfc9;
	color: #7a1f2b;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.35;
}

.page-checkout .woocommerce-order .woocommerce-order-overview {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin: 0;
	padding: 0;
}

.page-checkout .woocommerce-order .woocommerce-order-overview li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	float: none;
	width: 100%;
	margin: 0;
	padding: 13px 0;
	border: 0;
	border-bottom: 1px solid #eeeeee;
	color: #666;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	text-transform: uppercase;
}

.page-checkout .woocommerce-order .woocommerce-order-overview li:last-child {
	border-bottom: 0;
}

.page-checkout .woocommerce-order .woocommerce-order-overview strong {
	color: #222;
	font-size: 15px;
	font-weight: 800;
	text-align: right;
	text-transform: none;
	word-break: break-word;
}

.page-checkout .woocommerce-order .woocommerce-order-overview__total strong {
	color: #7a1f2b;
}

.page-checkout .woocommerce-order-details,
.page-checkout .woocommerce-customer-details {
	margin: 0 0 22px;
	padding: 24px;
	border: 1px solid #eadfc9;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.page-checkout .woocommerce-customer-details {
	font-size: 0;
}

.page-checkout .woocommerce-order-details__title,
.page-checkout .woocommerce-column__title {
	margin: 0 0 22px;
	color: #111;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.page-checkout .woocommerce-order-details__title::after,
.page-checkout .woocommerce-column__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, #c98622, #7a1f2b);
}

.page-checkout .woocommerce-table--order-details {
	overflow: hidden;
	margin: 0;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #eadfc9;
	border-radius: 10px;
	background: #fff;
}

.page-checkout .woocommerce-table--order-details thead th {
	padding: 13px 16px;
	border: 0;
	background: #faf7f1;
	color: #7a1f2b;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.page-checkout .woocommerce-table--order-details td,
.page-checkout .woocommerce-table--order-details tfoot th,
.page-checkout .woocommerce-table--order-details tfoot td {
	padding: 14px 16px;
	border-color: #eeeeee;
	color: #333;
	font-size: 15px;
	line-height: 1.5;
}

.page-checkout .woocommerce-table--order-details .product-name a {
	color: #7a1f2b;
	font-weight: 800;
}

.page-checkout .woocommerce-table--order-details .product-quantity {
	color: #c98622;
	font-weight: 800;
}

.page-checkout .woocommerce-table--order-details .amount {
	color: #7a1f2b;
	font-weight: 800;
}

.page-checkout .woocommerce-table--order-details tfoot tr:last-child th,
.page-checkout .woocommerce-table--order-details tfoot tr:last-child td {
	background: #faf7f1;
	color: #111;
	font-weight: 800;
}

.page-checkout .woocommerce-customer-details .woocommerce-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	font-size: 15px;
}

.page-checkout .woocommerce-customer-details .woocommerce-column {
	width: auto;
	max-width: none;
	padding: 18px;
	border: 1px solid #eadfc9;
	border-radius: 10px;
	background: #faf7f1;
}

.page-checkout .woocommerce-customer-details address {
	margin: 0;
	border: 0;
	background: transparent;
	color: #333;
	font-size: 15px;
	font-style: normal;
	line-height: 1.75;
}

.page-checkout .woocommerce-customer-details--phone,
.page-checkout .woocommerce-customer-details--email {
	margin: 10px 0 0;
	color: #7a1f2b;
	font-size: 15px;
	font-weight: 800;
	word-break: break-word;
}

.page-checkout .woocommerce-customer-details > br,
.page-checkout .woocommerce-customer-details > p:empty {
	display: none;
}

@media only screen and (max-width: 64em) {
	.page-checkout .woocommerce-order .large-7.col,
	.page-checkout .woocommerce-order .large-5.col {
		flex-basis: 100%;
		max-width: 100%;
	}

	.page-checkout .woocommerce-order .large-5.col {
		order: -1;
		margin-bottom: 22px;
	}
}

@media only screen and (max-width: 48em) {
	.page-checkout .woocommerce-order {
		margin-top: 18px;
		margin-bottom: 32px;
	}

	.page-checkout .woocommerce-order .is-well,
	.page-checkout .woocommerce-order-details,
	.page-checkout .woocommerce-customer-details {
		padding: 18px;
		border-radius: 10px;
	}

	.page-checkout .woocommerce-order .woocommerce-thankyou-order-received {
		font-size: 19px;
	}

	.page-checkout .woocommerce-order .woocommerce-order-overview li {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.page-checkout .woocommerce-order .woocommerce-order-overview strong {
		text-align: left;
	}

	.page-checkout .woocommerce-customer-details .woocommerce-columns {
		grid-template-columns: 1fr;
	}

	.page-checkout .woocommerce-table--order-details thead th,
	.page-checkout .woocommerce-table--order-details td,
	.page-checkout .woocommerce-table--order-details tfoot th,
	.page-checkout .woocommerce-table--order-details tfoot td {
		padding: 12px;
		font-size: 14px;
	}
}
/* Stylists IMTA element */
.imta-stylists {
	width: 100%;
}

.imta-stylists__grid {
	display: grid;
	grid-template-columns: repeat(var(--imta-stylists-columns, 4), minmax(0, 1fr));
	gap: 34px 28px;
}

.imta-stylist-card {
	margin: 0;
	text-align: center;
}

.imta-stylist-card__media {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 7 / 8;
	background: #f5f1ea;
}

.imta-stylist-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease, filter .35s ease;
}

.imta-stylist-card:hover .imta-stylist-card__image {
	filter: saturate(1.04) contrast(1.03);
	transform: scale(1.035);
}

.imta-stylist-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 24px;
	color: #7a1f2b;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
}

.imta-stylist-card__title {
	margin: 18px 0 0;
	color: #111;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
}
.imta-stylist-card__action {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.imta-stylist-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 122px;
	min-height: 42px;
	padding: 10px 22px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #8f2631 0%, #a63842 48%, #c99628 100%);
	box-shadow: 0 8px 18px rgba(122, 31, 43, .22);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.imta-stylist-card__button:hover {
	box-shadow: 0 12px 24px rgba(122, 31, 43, .30);
	color: #fff;
	filter: brightness(1.04);
	transform: translateY(-2px);
}

.imta-stylists__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 38px;
}

.imta-stylists__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #eadfc9;
	border-radius: 999px;
	background: #fff;
	color: #7a1f2b;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.imta-stylists__pagination .page-numbers.current,
.imta-stylists__pagination .page-numbers:hover {
	border-color: #7a1f2b;
	background: linear-gradient(135deg, #8f2631, #c99628);
	color: #fff;
}

.imta-stylists__empty {
	margin: 0;
	padding: 18px;
	border: 1px solid #eadfc9;
	border-radius: 8px;
	background: #faf7f1;
	color: #555;
	font-size: 15px;
	text-align: center;
}

@media only screen and (max-width: 64em) {
	.imta-stylists__grid {
		grid-template-columns: repeat(var(--imta-stylists-columns-tablet, 2), minmax(0, 1fr));
	}
}

@media only screen and (max-width: 48em) {
	.imta-stylists__grid {
		grid-template-columns: repeat(var(--imta-stylists-columns-mobile, 1), minmax(0, 1fr));
		gap: 28px 18px;
	}

	.imta-stylist-card__action {
		margin-top: 18px;
	}

	.imta-stylist-card__button {
		min-width: 116px;
		min-height: 40px;
		padding: 9px 20px;
	}

	.imta-stylists__pagination {
		flex-wrap: wrap;
		margin-top: 30px;
	}
}