.appointment-section .top-content {
	justify-content: center;
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y)* -1);
	margin-right: calc(var(--bs-gutter-x)* -0.5);
	margin-left: calc(var(--bs-gutter-x)* -0.5);
	margin-bottom: 1.5rem;
}
.appointment-section .top-content .col-lg-10.text-center {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x)* 0.5);
	padding-left: calc(var(--bs-gutter-x)* 0.5);
	margin-top: var(--bs-gutter-y);
	text-align: center;
}
.appointment-section .main-area {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y)* -1);
	margin-right: calc(var(--bs-gutter-x)* -0.5);
	margin-left: calc(var(--bs-gutter-x)* -0.5);
	justify-content: center;
}
.appointment-section .main-area .column {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x)* 0.5);
	padding-left: calc(var(--bs-gutter-x)* 0.5);
	margin-top: var(--bs-gutter-y);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.appointment-section .top-content h2 {
	margin: 0;
}
.appointment-section .top-content h2 {
	margin: 0;
}
.appointment-section .main-area .column .coverage__county {
	overflow: hidden ;
	display: flex ;
	position: relative;
	width: 100% ;
	justify-content: center;
	align-items: center ;
	text-align: center;
	padding: 1.5rem;
	background-color: transparent;
	border: none;
	margin: 0;
	cursor: pointer;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 15px;
}
.appointment-section .main-area .column .coverage__county span {
	font-family: Poppins, sans-serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 45px;
	color: #fff;
	display: block;
	position: relative;
	z-index: 9;
}
.appointment-section .main-area .column .coverage__county:before,
.appointment-section .main-area .column .coverage__county:after {
	content: "";
	height: 100%;
	inset: 0 0 0 0;
	position: absolute;
	width: 100%;
}
.appointment-section .main-area .column .coverage__county:before {
	background: rgba(0, 0, 0, .35);
}
.appointment-section .main-area .column .coverage__county:after {
	background: linear-gradient(90deg, #fad506, #da0083 81.46%, #a91bb7);
	opacity: 0;
	transition: opacity .35s ease;
}
.appointment-section .main-area .column .coverage__county:hover:after,
.appointment-section .main-area .column .items.child-open .coverage__county:after{
	opacity: .8;
}
.appointment-section .coverage__towns-inner {
	display: grid;
	gap: 16px 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-top: 20px;
}
.appointment-section .coverage__towns-inner .inner-items .coverage__town {
	letter-spacing: normal;
	line-height: 32px;
	color: #000;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	margin: 0;
	border-radius: 15px;
	padding: 18px;
	transition: padding-right .25s ease, border-color .25s ease, box-shadow .25s ease;
	border: 2px solid #d6ddf1;
	cursor: pointer;
	font-weight: 700 !important;
	text-align: center;
	overflow: hidden !important;
	position: relative !important;
	margin-bottom: 0 !important;
	background-color: #ffffff;
}
.appointment-section .coverage__towns-inner .inner-items .coverage__town span.view-text {
	display: flex !important;
	position: absolute !important;
	top: 0 !important;
	bottom: 0 !important;
	right: 0 !important;
	height: 100% !important;
	align-items: center !important;
	margin-bottom: 0 !important;
	z-index: 1 !important;
	font-weight: 700 !important;
	background-color: #fad506;
	letter-spacing: normal;
	line-height: 32px;
	margin: 0 0 12px;
	color: #000;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	padding: 18px 50px 18px 25px;
	transform: translateX(110%);
	transition: transform .25s ease;
}
.appointment-section .coverage__towns-inner .inner-items .coverage__town:hover > span.view-text{
	transform: translateX(0);
}
.appointment-section .coverage__towns-inner .inner-items .coverage__town:hover {
	border-color: #fad506;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, .08);
	padding-right: 120px;
}
.appointment-section .coverage__towns-inner .inner-items .coverage__town span.view-text:after {
	position: absolute;
	right: 20px;
	top: 51%;
	transform: translateY(-51%);
}
.appointment-section .coverage__towns {
	display: none;
}

{# popup styling #}
.appointment-section .custom-modal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: opacity .35s ease;
	background-color: #9ca0ab91;
	z-index: 999999;
	padding: 1rem;
	visibility: hidden;
	opacity: 0;
}
.appointment-section .custom-modal .modal__outer {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	z-index: 2;
	border-radius: 15px;
	max-width: 1200px;
}
.appointment-section .custom-modal .modal__close {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	text-transform: none;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	border-radius: 50%;
	margin: 0;
	padding: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	height: 80px;
	width: 80px;
}
.appointment-section .custom-modal .modal__close svg {
	vertical-align: middle;
	transform: rotate(45deg);
}
.appointment-section .custom-modal .modal__close svg circle {
	transition: fill .25s ease;
	fill: #fad506;
}
.appointment-section .custom-modal .modal__close svg path {
	stroke: #000;
	transition: stroke .25s ease;
}
.appointment-section .modal__inner {
	display: flex;
	flex-direction: column;
	margin-right: auto;
	margin-left: auto;
}
.appointment-section .coverage-content {
	padding: 1.5rem;
}
.appointment-section .coverage-content .content-inner {
	padding-top: 3rem;
}
.appointment-section .coverage__town-image-wrapper--mobile {
	margin-top: 1.5rem;
	display: block;
}
.appointment-section .coverage__town-image-wrapper {
	display: none;
	align-self: stretch;
	max-width: 500px;
	width: 100%;
}
.appointment-section .coverage__town-title-content-text p img {
	max-width: 570px;
}
.appointment-section .coverage__town-title-content-text p {
	font-size: 24px;
	letter-spacing: 0;
	line-height: 38px;
}
.appointment-section .coverage__town-title-content-text p:last-of-type {
	margin-bottom: 0;
}
.appointment-section .coverage__towns .btn .hs-sec-btn {
	transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	margin: 0;
	padding: 7px 50px 6px 19px !important;
	position: relative;
	text-align: center;
	background-image: none;
}

.appointment-section .coverage-content .content-inner > p {
	margin-top: 1.5rem;
	margin-bottom: 0;
	padding-top: 1rem;
}
.appointment-section .coverage__towns .btn {
	margin-top: 28px;
}
.appointment-section .coverage-content .content-inner > a {
	display: inline-block;
	margin-top: .5rem;
	text-decoration: none;
	transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
	position: relative;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	margin: 0;
	padding: 0 38px 5px 0;
	text-align: left;
	background-color: transparent;
	border: none;
	color: #000;
}
.appointment-section .coverage-content .content-inner > a:after {
	transition: color .3s ease-in-out, left .3s ease-in-out, right .3s ease-in-out;
	content: "\ea3c";
	font-family: ConnectFibre-icons;
	font-size: 17px;
	font-weight: 400;
	position: absolute;
	color: #000;
	right: 10px;
	top: 0;
}
.appointment-section .coverage-content .content-inner > a:before {
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	position: absolute;
	right: 10px;
	transition: right .3s ease-in-out;
	background: #fad506;
}
.appointment-section .coverage__towns .btn .hs-sec-btn:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
}
.appointment-section .coverage__towns .btn .hs-sec-btn:after {
	top: 7px;
	transition: color .3s ease-in-out, left .3s ease-in-out, right .3s ease-in-out;
	content: "\ea3c";
	font-family: ConnectFibre-icons;
	font-size: 17px;
	font-weight: 400;
	position: absolute;
	right: 13px;
	color: #000;
}
.appointment-section .coverage__towns .btn .hs-sec-btn:hover:after {
	color: #fff;
}
.appointment-section .coverage-content .content-inner > a:hover:before {
	background: linear-gradient(90deg, #fad506, #da0083 87%, #a91bb7);
	right: 0;
}
.appointment-section .coverage-content .content-inner > a:hover:after {
	right: 0;
}
.appointment-section .custom-modal .modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
}
.appointment-section .custom-modal .modal__close:hover svg circle {
	fill: #000;
}
.appointment-section .custom-modal .modal__close:hover svg path {
	stroke: #fff;
}
.appointment-section .coverage__town-image-wrapper img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.appointment-section .coverage__towns-inner .inner-items.modal-open .custom-modal {
	visibility: visible;
	opacity: 1;
}
html.connect_fibre.modal-open {
	overflow: hidden;
}
@media (min-width:576px){
	.appointment-section .coverage-content {
		padding: 3rem;
	}
}
@media (min-width: 992px) {
	.appointment-section .top-content .col-lg-10.text-center{
		flex: 0 0 auto;
		width: 83.33333333%;
	}
	.appointment-section .main-area .column {
		flex: 0 0 auto;
		width: 66.66666667%;
	}
	.appointment-section .custom-modal .modal__outer {
		max-height: 100%;
		overflow: auto;
	}
	.appointment-section .modal__inner {
		flex-direction: row;
		align-items: center;
	}
	.appointment-section .coverage-content .content-inner {
		padding-right: 1.5rem;
		padding-left: 1.5rem;
		padding-top: 1rem;
		padding-bottom: 1rem;
		padding-top: 0;
	}
	.appointment-section .coverage__town-image-wrapper--mobile {
		display: none;
	}
	.appointment-section .coverage__town-image-wrapper {
		display:block;
	}
}

@media (max-width:1270px) and (min-width:992px){
	.appointment-section .coverage__town-image-wrapper img {
		height: 100vh;
	}
	.appointment-section .coverage__town-title-content-text p img {
		width: 100%;
	}
}

@media (max-width:991px){
	.appointment-section .coverage__town-title-content-text p img {
		width: 100%;
		max-width: 100%;
	}
	.appointment-section .custom-modal .modal__outer {
		height: calc(100% - 150px);
		max-width: 700px;
		overflow-y: auto;
	}
	.appointment-section .coverage__towns-inner {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.appointment-section .coverage-content .content-inner > p {
		margin-top: 0;
	}
}
@media (max-width:576px){
	.appointment-section .custom-modal .modal__outer {
		overflow-y: auto;
		width: calc(100vw - 40px);
		height: calc(100vh - 40px);
		border-radius: 0;
	}
	.appointment-section .main-area .column {
		padding: 0;
	}
	.appointment-section .main-area {
		margin: 0;
	}
	.appointment-section .main-area .column .coverage__county span {
		font-size: 24px;
	}
}

@media (max-width:379px){
	.appointment-section .main-area .column .coverage__county span {
		white-space: nowrap;
	}
}