/* Experiences Map V1 Widget Styles */
/*section map*/
.section-experiences-map-v1-widget * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.section-experiences-map-v1-widget {
    padding: 100px 40px;
    display: flex;
    align-items: flex-start;
}

.section-experiences-map-v1-widget__map {
    width: 40%;
    display: flex;
    justify-content: center;
}

.section-experiences-map-v1-widget__map-container {
    position: relative;
    aspect-ratio: 867 / 1666;
    width: 80%;
    max-width: 800px;
}

.section-experiences-map-v1-widget__map img {
    object-fit: contain; 
    height: 100%;
    width: 100%;
}

.section-experiences-map-v1-widget__pin {
    position: absolute;
    transform: translate(-50%, -50%);
}

.section-experiences-map-v1-widget__pin button{
    width: 73px;
    height: 78px;
    background-color: #BED8DF;
	color: #000!important;
    border-left: 3px solid #000!important;
    border-right: 3px solid #000!important;
    border-top: 1px solid #000!important;
    border-bottom: 1px solid #000!important;
    border-radius: 50%!important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.3s ease;
}

.section-experiences-map-v1-widget__pin button:hover,
.section-experiences-map-v1-widget__pin.is-active button {
    background-color: #000;
    color: #fff!important;
    transition: all 0.3s ease;
}


.section-experiences-map-v1-widget__pin button:focus {
    background-color: #000;
    color: #fff!important;
}

.section-experiences-map-v1-widget__content {
    padding: 60px 0 0 100px;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
}

.section-experiences-map-v1-widget__locations ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.section-experiences-map-v1-widget__locations ul li {
    width: 30%;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-experiences-map-v1-widget__locations ul li button {
    font-size: 20px;
    line-height: 1.2;
	font-weight: 500;
    text-align: left;
	color: #000;
    border: none;
	border-radius: 0;
    padding: 0;
    background-color: transparent;
	white-space: wrap;
    transition: all 0.3s ease;
}

.section-experiences-map-v1-widget__locations ul li button:hover,
.section-experiences-map-v1-widget__locations ul li.is-active button,
.section-experiences-map-v1-widget__locations ul li button:focus {
    font-weight: 700;
	border: none;
	color: #000;
	background-color: transparent;
	border-radius: 0;
    transition: all 0.3s ease;
}

.section-experiences-map-v1-widget__location-detail {
    display: none;
    gap: 30px;
}

.section-experiences-map-v1-widget__location-detail.no-image {
    gap: 0;
}

.section-experiences-map-v1-widget__location-detail.is-active {
    display: flex;
}

.section-experiences-map-v1-widget__location-detail-image {
	flex: 0 0 30%;
}

.section-experiences-map-v1-widget__location-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-experiences-map-v1-widget__location-detail.no-image .section-experiences-map-v1-widget__location-detail-image {
	flex: 0;
}

.section-experiences-map-v1-widget__location-detail-text {
    flex: 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.section-experiences-map-v1-widget__location-detail h3 {
    font-family: "TANMemoriesRegular", Sans-serif;
	line-height: 1.5;
    font-weight: 400;
}

.section-experiences-map-v1-widget__location-detail h5 {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

.section-experiences-map-v1-widget__location-detail p {
    line-height: 1.2;
}

.section-experiences-map-v1-widget__back-to-map {
	display: none;
}

button.section-experiences-map-v1-widget__back-to-map-btn {
	color: #000!important;
	font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    background-color: transparent;
    border: none!important;
    border-radius: 0;
    text-transform: uppercase;
    padding: 8px 0;
    text-decoration: none;
	font-size: 14px!important;
}

button.section-experiences-map-v1-widget__back-to-map-btn > i {
	margin-left: 10px;
}

button.section-experiences-map-v1-widget__back-to-map-btn:hover,
button.section-experiences-map-v1-widget__back-to-map-btn:focus {
	color: #ffaf02!important;
    border-color: none!important;
    background-color: transparent!important;
	border-radius: 0!important;
}

@media screen and (max-width: 1920px) {
    .section-experiences-map-v1-widget__pin button{
        width: 63px;
        height: 68px;
        font-size: 25px;
    }
}

@media screen and (max-width: 1700px) {
    .section-experiences-map-v1-widget {
        padding: 60px 20px 0;
    }

    .section-experiences-map-v1-widget__map {
        width: auto;
        justify-content: center;
    }

    .section-experiences-map-v1-widget__content {
        flex: 1 auto;
        width: 100%;
        padding-left: 60px;
        padding-top: 0;
    }
    
    .section-experiences-map-v1-widget__pin button {
        width: 43px;
        height: 48px;
    }
    
    .section-experiences-map-v1-widget__locations ul li {
        width: 48%;
    }
}

@media screen and (max-width: 1200px) {
    .section-experiences-map-v1-widget__content {
        padding-left: 60px;
        gap: 30px;
    }

}

@media screen and (max-width: 1024px) {
    .section-experiences-map-v1-widget {
        flex-direction: column;
        align-items: center;
        gap: 80px;
        padding-left: 0;
		padding-right: 0;
    }

    .section-experiences-map-v1-widget__map-container {
        width: 60%;
        max-width: none;
    }

    .section-experiences-map-v1-widget__content {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
    }

    .section-experiences-map-v1-widget__pin button {
        width: 63px;
        height: 68px;
    }

    .section-experiences-map-v1-widget__location-detail {
        flex-direction: column;
        gap: 20px;
    }

    .section-experiences-map-v1-widget__location-detail-image {
        height: 300px;
		flex: auto;
    }

	.section-experiences-map-v1-widget__location-detail-image img {
		max-width: 300px;
	}
	
	.section-experiences-map-v1-widget__back-to-map {
		display: flex;
		margin-bottom: 20px;
	}

}

@media screen and (max-width: 768px) {
	.section-experiences-map-v1-widget__content {
		gap: 20px;
	}
	
    .section-experiences-map-v1-widget__map-container {
        width: 70%;
    }

    .section-experiences-map-v1-widget__pin button {
        width: 33px;
        height: 38px;
        font-size: 20px;
    }

    .section-experiences-map-v1-widget__locations ul li button{
        font-size: 20px;
    }

    .section-experiences-map-v1-widget__location-detail h3 {
        font-size: 25px;
    }
}

@media screen and (max-width: 480px) {
    .section-experiences-map-v1-widget__locations ul li {
        width: 100%;
    }
}