﻿/* Override styles for .mobile-link */
p.studio-location.icon-location a.mobile-link {
    display: inline-block
}

/* Create styles for .sms-link */
p.studio-location.icon-location a.sms-link {
    color: #E16A2D;
    display: inline-block;
}

/* CorpFooterNav link hover underline */
.footer-nav a {
    text-decoration: underline;
}

.copyright__container a {
    text-decoration: underline;
}

body.cookie-banner-visible .bottom-bar {
    transition: bottom 0.3s ease;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
    width: auto; 
}

    .cookie-consent-banner.show {
        display: block;
    }

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%; 
}

.cookie-consent-message {
    flex: 1;
    min-width: 300px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

    .cookie-consent-message a {
        color: #0066cc;
        text-decoration: underline;
    }

        .cookie-consent-message a:hover {
            color: #004499;
        }

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-button {
    padding: 14px 32px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

    .cookie-consent-button.accept {
        background-color: #0093C9;
        color: #ffffff;
    }

        .cookie-consent-button.accept:hover {
            background-color: #30C5FB;
            text-decoration: underline;
        }

    .cookie-consent-button.decline {
        background-color: #f0f0f0;
        color: #333;
    }

        .cookie-consent-button.decline:hover {
            background-color: #e0e0e0;
            text-decoration: underline;
        }

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        width: auto;
        padding: 16px;
    }

    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-button {
        flex: 1;
        padding: 12px 24px;
        font-size: 14px;
    }
}

button.button {
    cursor: pointer;
    display: inline-block;
    padding: .7em 1.5em;
    margin: 0;
    border: 0;
    border-width: 2px;
    border-style: solid;
    text-decoration: none;
    color: #FFFFFF;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-family: 'Aptifer Sans W01', sans-serif;
    font-weight: 400;
    font-size: 1em;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
    -webkit-box-shadow: 2px 0 3px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 2px 0 3px 0 rgba(0,0,0,0.15);
    box-shadow: 2px 0 3px 0 rgba(0, 0, 0, 0.15);
}

button.red {
    background-color: #AD073D;
    border-color: #AD073D;
    box-shadow: none;
    color: #ffffff;
}

    button.red:hover {
        background-color: #D10346;
        border-color: #D10346;
        box-shadow: none;
        color: #ffffff;
    }

/* If you have a blue variant used for Close */
button.blue {
    background-color: #1D4F90; /* adjust to your blue */
    border-color: #1D4F90;
    box-shadow: none;
    color: #ffffff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* lightbox close button adjustments*/
light-box .content-wrapper::after {
    transform: translate(-50%,-50%);
}

@media (max-width: 767px) {
    light-box .content-wrapper::after {
        transform: translate(0%, -50%);
    }
}