
/* content details */

div.detail {
    margin: 20px 0;
}


div.detail >h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 130%;
    margin: 40px 0;
    padding: 0;
}

div.detail >h1 >span {
    font-size: 96px;
}

div.detail >h1.sports {
    background-repeat: no-repeat;
    padding: 15px 0 10px 148px;
}

div.detail >h1.sports.beaches {
    background-image: url('../img/sports_beaches_dark.svg');
    background-position: 0 21px;
}

div.detail >h1.sports.visitorcenter {
    background-image: url('../img/sports_visitorcenter_dark.svg');
    background-position: 0 15px;
}

div.detail >h1.sports.rosegarden {
    background-image: url('../img/sports_rosegarden_dark.svg');
    background-position: 0 10px;
}

div.detail >h1.sports.cycletrack {
    background-image: url('../img/sports_cycletrack_dark.svg');
    background-position: 0 3px;
}

div.detail >h1.sports.nordicwalking {
    background-image: url('../img/sports_nordicwalking_dark.svg');
}


div.detail >div#images {
    margin: 0 0 20px 50px;
    float: right;
    width: 48%;
    aspect-ratio: 1.72;
    min-width: 350px;
    border-radius: 20px;
    background-color: var(--color-bg-image);
}

div.detail img.hidden, div.detail h2.hidden, div.detail h3.hidden {
    display: none;
}


div.detail >p {
    margin: 20px 0;
}

div.detail >p#intro {
    margin: 50px 0 40px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

div.detail >p#intro.daily {
    margin: 50px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 133%;
}

div.detail >p#contact,
div.detail >p#date,
div.detail >p#address {
    padding-left: 42px;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    background-image: url('../img/address.svg');
    background-repeat: no-repeat;
    background-position: 0 center;
}

div.detail >p#contact {
    background-image: url('../img/contact.svg');
}

div.detail >p#date {
    background-image: url('../img/calendar.svg');
}

div.detail >p#opening {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}


div.detail >h2 {
    margin: 70px 0 30px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 111%;
}

div.detail >h3 {
    margin: 70px 0 30px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 133%;
}

div.detail >h3#opening_title {
    margin: 50px 0 20px 0;
}


div.detail >.clear {
    clear: both;
}

div.detail div#description {
    font-size: 18px;
    font-weight: 400;
    line-height: 131%;
    margin: 20px 0 70px 0;
}

div.detail div#description >ul{
    list-style-type: disc;
    padding-left: 40px;
}

/* POIs */

div#content >div.detail >div#poi_list >h1 {
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

div#content >div.detail >div#poi_list >div.poi_item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 4%;
    margin: 0 0 50px 0;
}

div#content >div.detail >div#poi_list >div.poi_item >div {
    min-width: 250px;
    flex: 1 1 48%;
}


div#content >div.detail >div#poi_list >div.poi_item >div.description {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

div#content >div.detail >div#poi_list >div.poi_item >div.poi_images {
    width: 100%;
    aspect-ratio: 1.72;
    border-radius: 20px;
    background-color: var(--color-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* swiper */

.swiper-slide.image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: lightgrey;
}

.swiper-button-prev, .swiper-button-next {
    background-image: url('../img/caousel_navigation_left.svg') !important;
    background-repeat: no-repeat;
    background-size: 10px 16px;
    background-position: 10px center;
    background-color: var(--color-bg-carousel);
    width: 32px !important;
    height: 32px !important;
    border-radius: 100%;
}
    
.swiper-button-next {
    background-image: url('../img/caousel_navigation_right.svg') !important;
    background-position: 13px center;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: var(--color-bg-carousel-hover);
}

.swiper-button-prev.swiper-button-disabled {
    opacity: 1.0 !important;
    background-image: url('../img/caousel_navigation_left_disabled.svg') !important;
}

.swiper-button-next.swiper-button-disabled {
    opacity: 1.0 !important;
    background-image: url('../img/caousel_navigation_right_disabled.svg') !important;
}

.swiper-button-next::after {
    display: none;
}
    
.swiper-button-prev::after {
    display: none;
}



/* image overlay */

div#image_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

div#image_overlay.hidden {
    visibility: hidden;
}

div#image_overlay >div.wrapper {
    width: 80%;
    max-width: 1000px;
    aspect-ratio: 1.27;
    padding: 54px;
    position: relative;
    top: 100px;
}

div#image_overlay >div.wrapper >div.image {
    width: 100%;
    aspect-ratio: 1.27;
    background-color: var(--color-bg-image);
    border-radius: 20px;
}

div#image_overlay >div.wrapper >a.close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url('../img/close.svg');
    background-repeat: no-repeat;
    background-position: center;
}

div#image_overlay >div.wrapper >a:hover.close {
    background-image: url('../img/close_hover.svg');
}

div#image_overlay >div.wrapper >div.swiper-button-next {
    right: 0;
}

div#image_overlay >div.wrapper >div.swiper-button-prev {
    left: 0;
}

