/* Cookie Banner */
.cookie-consent {
    position: fixed;
    bottom: 0px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    max-width: 700px;
    padding: 15px 15px 0px 15px;
    background: #efefef;
    border: 2px solid #008C99;
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0;
    transition: opacity .4s ease, transform .4s ease;
    z-index: -1;
}
.show {
    z-index: 9999;
}
.cookie-consent p {
    text-align: left;
    color: #1f1f1f;
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: proxima-nova, sans-serif;
}

.cookie-consent.show {
    opacity: 1;
    transform: translate(-50%, -10px);
}

.cookie-btn,
a .cookie-btn {
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: proxima-nova, sans-serif;
    font-weight: 500;
    border-radius: 0;
    width: 150px;
    height: auto;
    padding: 10px 10px 10px 10px;
    border: 2px solid #008C99;
    background-color: #008C99;
    transition: box-shadow 200ms ease;
    color: #fff;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    margin: 0 20px 0 0;
}

.cookie-btn2,
a .cookie-btn2 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: proxima-nova, sans-serif;
    font-weight: 500;
    border-radius: 0;
    width: 150px;
    height: auto;
    padding: 10px 10px 10px 10px;
    border: 2px solid #008C99;
    background-color: rgba(0, 128, 136, 0);
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    font-family: Lato, sans-serif;
    color: #008C99;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    margin: 0 10px 0 0;
}

.cookie-btn:hover,
.cookie-btn:focus,
.cookie-btn:active {
    color: #fff;
    background-color: #00BDA5;
    border-color: #00BDA5;
    transition: all 0.5s ease;
}

.cookie-btn2:hover,
.cookie-btn2:focus,
.cookie-btn2:active {
    color: #fff;
    background-color: #00BDA5;
    border-color: #00BDA5;
    transition: all 0.5s ease;
}

.cookie-group {
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 369px) {
    .cookie-group {
        text-align: center;
    }

    .cookie-consent {
        padding: 5px 5px 5px 5px;
    }

    .cookie-btn {
        margin: 0px 15px 10px 15px;
    }

    .cookie-btn,
    .cookie-btn2 {
        padding: 10px 0px 10px 0px;
    }
}
/* Third Party Widgets/Videos */
.consent-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.consent-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consent-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}