/* SLIDER */

img.loc_image {
    aspect-ratio: 300 / 169 !important;
    object-fit: cover;
    display: block;
    width:100% !important;
    height: auto;
}

.locations-swiper-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.locations-swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
.locations-swiper-container .nearest-location {
    text-align: center;
}
*/

.locations-swiper-container .swiper-button-prev,
.locations-swiper-container .swiper-button-next {
    color: #0077b6;
}

.location_slider_holder {
    position: relative;
}

.location_slider_holder .custom-pagination {
    text-align: center;
    margin-top: 20px;
}

.location_slider_holder .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: #F1EEEB;
    opacity: 1;
    margin: 0 6px !important;
}

.location_slider_holder .swiper-pagination-bullet-active {
    background: #FF8300;
}

.loc_inner {
    padding: 0px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.nearest-location {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}



h3.loc_name {
	color: #006f96;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    margin: 10px 0;
    line-height: 1.1;
}

h4.loc_country {
	color: #053341;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
}

.nearest-location a.loc_link {
	padding: 10px 20px !important;
	border: 1px solid #F18933;
    background-color: #F18933;
    border-radius: 24px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    margin: 20px 0 10px 0;
    display: inline-block;
}

.nearest-location a.loc_link:hover {
    background-color: #ffffff;
    color: #F18933;
}

.loc_distance {
	font-size: 16px;
	font-weight: normal;
	color: #444;
}

#nearest-location-loading {
	gap: 12px;
	font-size: 1rem;
	color: #555;
	margin-bottom: 1rem;
	background-color: #fff;
	border-radius: 24px;
	padding: 24px 24px 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}