@charset "UTF-8";
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: "Overpass";
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #0769b2;
    background: #ffffff;
    background-size: 100%;
    z-index: 0;
}

.a-logo {
    width: 100%;
    max-width: 1152px;
    z-index: 500;
    position: absolute;
    margin-right: 20px;
}

.a-logo img {
    float: right;
    width: 100px;
}

.header img {
    float: right;
    width: 100px;
}

.footer {
    font-size: 10px;
    font-style: italic;
    text-align: left;
    margin-left: 5px;
    color: dimgrey;
}

.legend {
    font-size: 1em;
    max-width: 300px;
    z-index: 0;
    position: absolute;
    margin-right: 0;
    bottom: 90px;
    left: 140px;
    vertical-align: middle;
    background-color: rgb(255, 255, 255, 0.8);
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
}

.legend .legrow {
    margin-bottom: 0px;
}

.legend .legrow p {
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    margin-top: 8px;
    font-size: 15px;
}

.legheader {
    font-size: 15px;
    font-weight: bold;
}

/* Optional: Add transitions for smooth hiding/showing */
.standard,
.option {
    transition: opacity 0.5s ease;
}

.button-standard:hover,
.button-option:hover {
    transform: scale(1.05); /* Slight zoom effect */
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.button-standard,
.button-option {
    cursor: pointer;
}

.prevent-select {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Initial visible state */
.standard,
.option {
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.hidden-fade {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header {
    top: 5px;
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    width: 100%;
    left: 0%;
    max-width: 1152px;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    text-align: left;
}

sup {
    vertical-align: super;
    font-size: 0.5em;
}

.video-html5 {
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    z-index: 28900000;
}
.mask {
    position: absolute;
    background-color: rgb(0 0 0 / 0);
    width: 100%;
    height: 0%;
    z-index: 2000001;
    cursor: pointer;
}

.video-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 0px 0px;
    z-index: 2000000;
    margin-bottom: -10px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 0px 0px;
    z-index: 2000000;
}

.vid-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background-color: #ffffff;
    opacity: 0;
    z-index: 2500000;
    /* 2500000 */
}

img {
    display: flex;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    display: flex;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0vw;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0px;
}

.container {
    position: relative;
    max-width: 1500px;
    overflow: hidden;
    z-index: 1;
}

.top {
    z-index: 16777271;
}

.spot-legend {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    color: #0769b2;
    border: 2px solid #0769b2;
    border-radius: 5px;
    font-size: 0.6em;
    margin-top: 4px;
}

.pulse {
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(50, 120, 190, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.pulse:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(50, 120, 190, 0.8);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(50, 120, 190, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(50, 120, 190, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(50, 120, 190, 0.8);
        box-shadow: 0 0 0 0 rgba(50, 120, 190, 0.8);
    }
    70% {
        -moz-box-shadow: 0 0 0 20px rgba(50, 120, 190, 0);
        box-shadow: 0 0 0 20px rgba(50, 120, 190, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(50, 120, 190, 0);
        box-shadow: 0 0 0 0 rgba(50, 120, 190, 0);
    }
}

.closebutton {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #0769b2;
    height: 36px;
    width: 36px;
    border: 3px solid #0769b2;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    font-weight: bold;
    pointer-events: all;
    cursor: pointer;
    padding-bottom: 6px;
    padding-right: 2px;
    z-index: 2900000;
    /* transform: rotate(45deg); */
}

.container .content figure img {
    width: 100%;
    border-radius: 5px 5px 0px 0px;
}

.container .content figure figcaption {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: left;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px 5px 10px;
    background: #fff;
    font-size: 1em;
    color: #0769b2;
    pointer-events: none;
    border-radius: 0px 0px 5px 5px;
}

.container .content figure {
    width: 100%;
    border-radius: 5px 5px 5px 5px;
}

#input1:checked ~ #content1 {
    display: block !important;
}

.stop-video {
    z-index: 2147483647;
}

.ytp-endscreen-content {
    display: none;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

input {
    display: none;
}

p {
    margin: 0;
}

.button {
    background: #fff;
    color: #0769b2;
    font-weight: bold;
    font-size: 15px;
    background-color: #fff;
    border: 3px solid #0769b2;
    padding-top: 3px;
    padding-left: 0px;
    display: block;
    cursor: pointer;
    animation: fadein 0.5s;
    animation: pulse 1.5s infinite;
    z-index: 12;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.2s ease;
}

.button img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.butt-content {
    height: 15px;
    width: 15px;
    text-align: center;
    z-index: 1;
}

.button-text {
    font-weight: normal;
    position: inherit;
    margin-left: 35px;
    margin-top: -28px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px 2px 10px;
    border-radius: 5px 5px 5px 5px;
    opacity: 1;
    white-space: nowrap;
    z-index: 13;
}

.button:hover {
    transform: scale(1.1);
}

.showtext{
    font-weight: normal;
    position: inherit;
    margin-left: 35px;
    margin-top: -28px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px 2px 10px;
    border-radius: 5px 5px 5px 5px;
    opacity: 1;
    white-space: nowrap;
    z-index: 13;
}




.content {
    position: absolute;
    top: 50%; /* move to center vertically */
    left: 50%; /* move to center horizontally */
    transform: translate(-50%, -50%); /* correct the offset */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    text-align: center;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    z-index: 5;
    display: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.content.fading {
    display: block !important;
}

.content.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Label fade-in animation */
.option,
.standard {
    transition: opacity 0.5s ease;
}

.option.fade-in,
.standard.fade-in {
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cross {
    font-weight: bold;
}

input:checked ~ label .button {
    display: none !important;
    animation: fadeout 0.5s;
}

.cta {
    display: inline-block;
    background: #0769b2;
    color: white;
    padding: 12px 24px;
    margin-top: 48px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta:hover {
    text-decoration: underline !important;
    box-shadow: 0 0 0 6px rgba(43, 67, 118, 0.4);
}

@keyframes fadein {
    from {
        opacity: 0;
        margin-top: 0px;
    }
    to {
        opacity: 1;
        margin-top: 0px;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
        margin-top: 0px;
    }
    to {
        opacity: 01;
        margin-top: 0px;
    }
}

@keyframes pulse {
    from {
        box-shadow: 0 0 0 0px rgba(43, 67, 118);
    }
    to {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

video::-webkit-media-controls-volume-slider {
    display: none;
}

video::-webkit-media-controls-mute-button {
    display: none;
}

.konfig {
    font-size: 1em;
    max-width: 300px;
    z-index: 0;
    position: absolute;
    margin-right: 0;
    top: 10%;
    right: 5%;
    vertical-align: middle;
    background-color: #0069b4;
    color: white;
    padding: 10px 20px 6px 20px;
    border-radius: 5px;
}

.konfig a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.konfig:hover {
    transform: scale(1.05); /* Slight zoom effect */
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

/* Smaller Viewports  */

@media (max-width: 1084px) {
    .legend {
        bottom: 50px;
        left: 140px;
        vertical-align: middle;
    }
}

@media (max-width: 955px) {
    .button-text {
        font-weight: normal;
        font-size: 12px;
        position: inherit;
        margin-left: 30px;
        margin-top: -23px;
        background: rgba(255, 255, 255, 0.7);
        padding: 0px 3px 0px 3px;
        border-radius: 2px 2px 2px 2px;
        opacity: 1;
    }

    .showtext {
        font-weight: normal;
        font-size: 12px;
        position: inherit;
        margin-left: 30px;
        margin-top: -23px;
        background: rgba(255, 255, 255, 0.7);
        padding: 2px 10px 0px 10px;
        border-radius: 2px 2px 2px 2px;
        opacity: 1;
        cursor: none;
    }

    .button {
        font-size: 15px;
        border: 2px solid #0769b2;
        height: 20px;
        width: 20px;
        padding-top: 0px;
    }
    .closebutton {
        bottom: 15px;
    }
}

@media (max-width: 955px) {
    .closebutton {
        bottom: 10px;
    }
}

@media (max-width: 820px) {
    main {
        padding: 0px 5px 0px 5px;
        margin-top: 0px;
    }

    .content {
        width: 95%;
    }
    .m-logo img {
        float: right;
        width: 50px;
    }
    .header img {
        float: right;
        width: 50px;
    }
    h1 {
        font-size: 1em;
        font-weight: bold;
        margin-left: 0px;
    }
    .container .content figure {
        width: 100%;
    }
    .container .content figure figcaption {
        font-size: 12px;
        text-align: left;
    }
    .vid-cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #ffffff;
    }
    .legend {
        font-size: 0.8em;
        max-width: 100%;
        z-index: 0;
        position: relative;
        top: 0px;
        left: 0px;
        /* bottom: 0; */
        vertical-align: middle;
        background-color: #fff;
        padding: 10px;
        border-radius: 0px 0px 0px 0px;
        width: 100%;
    }
    .legend .legrow {
        margin-bottom: 5px;
    }
    .button {
        font-size: 11px;
        border: 2px solid #0769b2;
        height: 20px;
        width: 20px;
        padding-top: 2.5px;
    }
    .butt-content {
        height: 10px;
        width: 10px;
        text-align: center;
    }
    .closebutton {
        top: 5px;
        right: 5px;
        color: #0769b2;
        height: 26px;
        width: 26px;
        border: 3px solid #0769b2;
        font-size: 16px;
        font-weight: bold;
        padding-bottom: 5px;
        padding-right: 2px;
    }

    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .button-text {
        display: none;
    }

    .showtext {
        font-weight: normal;
        font-size: 9px;
        line-height: 9px;
        position: inherit;
        white-space: nowrap;
        margin-left: 25px;
        margin-top: -18px;
        background: rgba(255, 255, 255, 0.9);
        padding: 3px;
        border-radius: 3px 2px 2px 2px;
        visibility: hidden;
        opacity: 0;
        transition:
            opacity 0.4s ease,
            visibility 0.4s ease;
    }

.showtext.visible {
    visibility: visible;
    opacity: 1;
}

    .content {
        margin-top: 0px;
    }

    .mask {
        background-color: rgb(0 0 0 / 0);
        height: 0%;
    }

    .cta:hover {
        text-decoration: underline !important;
        box-shadow: 0 0 0 6px rgba(43, 67, 118, 0.4);
    }
    @keyframes fadein {
        from {
            opacity: 0;
            margin-top: 0px;
        }
        to {
            opacity: 1;
            margin-top: 0px;
        }
    }
    @keyframes fadeout {
        from {
            opacity: 1;
            margin-top: 0px;
        }
        to {
            opacity: 01;
            margin-top: 0px;
        }
    }
    @keyframes pulse {
        from {
            box-shadow: 0 0 0 0px rgba(43, 67, 118);
        }
        to {
            box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
        }
    }

    .konfig {
        font-size: 0.8em;
        max-width: 300px;
        z-index: 0;
        position: absolute;
        margin-right: 0;
        top: 10%;
        right: 5%;
        vertical-align: middle;
        padding: 5px 10px 5px 10px;
        border-radius: 5px;
    }
}
