

/* Start:/local/components/enigma/hero/templates/.default/style.css?17761361664239*/
/**
 * Hero Component Styles
 */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero info box - green overlay, left-top rounded corner only */
.hero-info-box {
    position: absolute;
    right: 0%;
    top: 45%;
    transform: translateY(-50%);
    z-index: 1;
    width: 45%;
    color: var(--color-white);
    padding: 60px 55px 60px 55px;
    border-radius: 40px 0 0 0;
    background-color: rgba(0, 33, 4, .7);
    backdrop-filter: brightness(0.7) contrast(1.5);
}

.hero-info-box .hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3.8rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--color-white);
}

.hero-info-box .hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* Booking button inside hero box - pill shape, Roboto Light */
.btn-book-inline {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-book-inline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

/* Fixed booking button - bottom right corner (fallback) */
.btn-book-fixed {
    position: fixed;
    right: 5%;
    bottom: 10%;
    z-index: 999;
    color: var(--color-white);
    padding: 14px 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border-radius: 50px;
    background-color: rgba(0, 33, 4, .7);
    backdrop-filter: brightness(0.7) contrast(1.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-book-fixed:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-slider-dots .dot:hover,
.hero-slider-dots .dot.active {
    background: var(--color-white);
    border-color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-info-box {
        right: 0%;
        padding: 45px 40px;
        border-radius: 30px 0 0 0;
    }
}

@media (max-width: 768px) {
    .hero-info-box {
        right: 0%;
        top: auto;
        transform: none;
        padding: 35px 25px;
        max-width: 90%;
        width: auto;
    }

    .hero-info-box .hero-title {
        font-size: 1.4rem;
    }

    .hero-info-box .hero-description {
        font-size: 0.9rem;
    }

    .hero-slider-dots {
        bottom: 20px;
    }
}

/* End */


/* Start:/local/components/enigma/about/templates/.default/style.css?17761363294565*/
/**
 * About Component Styles
 */

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h3 {
    color: var(--color-green);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* About Slider */
.about-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.about-slide.active {
    opacity: 1;
    position: relative;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--transition-slow);
}

.about-slide:hover img {
    transform: scale(1.05);
}

/* About Slider Controls */
.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--color-green);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
}

.about-slider-btn:hover {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.about-prev {
    left: 10px;
}

.about-next {
    right: 10px;
}

/* About Slider Dots */
.about-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-slider-dots .about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.about-slider-dots .about-dot:hover,
.about-slider-dots .about-dot.active {
    background: var(--color-green);
}

/* Lightbox for About Slider */
.about-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.about-lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.about-lightbox-close,
.about-lightbox-prev,
.about-lightbox-next {
    position: absolute;
    background: #fff;
    color: var(--color-green);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    z-index: 10001;
}

.about-lightbox-close:hover,
.about-lightbox-prev:hover,
.about-lightbox-next:hover {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.about-lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

.about-lightbox-prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.about-lightbox-next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.about-lightbox-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10001;
}

.about-lightbox-dots .about-lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.about-lightbox-dots .about-lb-dot:hover,
.about-lightbox-dots .about-lb-dot.active {
    background: var(--color-green);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* End */


/* Start:/local/components/enigma/gallery/templates/.default/style.css?17761363304338*/
/**
 * Gallery Component Styles
 */

/* Gallery Fullwidth Section */
.gallery-fullwidth {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.gallery-fullwidth-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-fullwidth-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-fullwidth-slide.active {
    opacity: 1;
    position: relative;
}

.gallery-fullwidth-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Fullwidth Controls */
.gallery-fullwidth-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--color-green);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
}

.gallery-fullwidth-btn:hover {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.gallery-fullwidth-prev {
    left: 30px;
}

.gallery-fullwidth-next {
    right: 30px;
}

/* Gallery Fullwidth Dots */
.gallery-fullwidth-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-fullwidth-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.gallery-fullwidth-dot:hover,
.gallery-fullwidth-dot.active {
    background: var(--color-green);
}

/* Gallery Section (old) */
.gallery-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--transition-slow);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

/* Gallery Slider Controls */
.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--color-green);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
}

.gallery-slider-btn:hover {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Gallery Slider Dots */
.gallery-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-slider-dots .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.gallery-slider-dots .gallery-dot:hover,
.gallery-slider-dots .gallery-dot.active {
    background: var(--color-green);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-fullwidth {
        height: 50vh;
        min-height: 350px;
    }

    .gallery-fullwidth-btn {
        width: 44px;
        height: 44px;
    }

    .gallery-fullwidth-prev {
        left: 15px;
    }

    .gallery-fullwidth-next {
        right: 15px;
    }

    .gallery-fullwidth-dots {
        bottom: 15px;
    }
}

/* End */


/* Start:/local/components/enigma/banner/templates/.default/style.css?1776136334148*/
/**
 * Banner Component Styles
 */

/* Decorative Banner */
.decorative-banner {
    display: block;
    width: 100%;
    height: auto;
}

/* End */


/* Start:/local/components/enigma/menu.sections/templates/.default/style.css?17761452491506*/
/**
 * Menu Sections Component Styles
 */

/* Menu Section */
.section-menu {
    padding: 80px 0 100px;
    background: #fff;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.menu-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-base);
}

.menu-category:hover {
    transform: translateY(-5px);
}

.menu-category-image {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.menu-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* PNG shape overlay positioned on top of photo */
.menu-shape-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.menu-category:hover .menu-shape-img {
    opacity: 0;
}

.menu-category-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-categories {
        gap: 30px;
    }

    .menu-category-image {
        width: 220px;
        height: 220px;
    }
}

/* End */


/* Start:/local/components/enigma/booking.form/templates/.default/style.css?17761363315331*/
/**
 * Booking Form Component Styles
 * Booking button uses Roboto Light
 */

/* Booking Section */
.booking-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.booking-form .form-group {
    margin-bottom: var(--spacing-md);
}

.booking-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
}

.booking-form .btn {
    width: 100%;
}

.booking-phone {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--color-text-light);
}

.booking-phone a {
    color: var(--color-green);
    font-weight: 600;
}

/* Booking form messages */
.booking-success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.booking-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Booking Modal */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-modal {
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.booking-modal-overlay.active .booking-modal {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-fast);
    padding: 4px;
}

.booking-modal-close:hover {
    color: var(--color-text);
}

.booking-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    text-align: center;
}

.booking-modal-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.booking-modal .booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-modal .booking-form .form-group {
    margin-bottom: 16px;
}

.booking-modal .booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text);
}

.booking-modal .booking-form input,
.booking-modal .booking-form select,
.booking-modal .booking-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-white);
    transition: border-color var(--transition-fast);
    color: var(--color-text);
}

.booking-modal .booking-form input:focus,
.booking-modal .booking-form select:focus,
.booking-modal .booking-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
}

.booking-modal .booking-form input::placeholder,
.booking-modal .booking-form textarea::placeholder {
    color: var(--color-text-muted);
}

.booking-modal .btn-book-submit {
    width: 100%;
    margin-top: 8px;
    border-radius: 50px;
    padding: 14px 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.booking-modal .booking-phone {
    text-align: center;
    margin-top: 20px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.booking-modal .booking-phone a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
}

.booking-modal .booking-phone a:hover {
    text-decoration: underline;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .booking-modal {
        padding: 28px 20px;
        margin: 10px;
    }

    .booking-modal-title {
        font-size: 1.5rem;
    }

    .booking-modal .booking-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .booking-form-wrapper {
        padding: var(--spacing-md);
    }
}

/* End */


/* Start:/local/components/enigma/contacts/templates/.default/style.css?17761363323065*/
/**
 * Contacts Component Styles
 * Booking button uses Roboto Light
 */

/* Contacts Section - fullwidth split layout */
.section-contacts {
    padding: 0;
    margin: 0;
}

.contacts-fullwidth {
    display: flex;
    width: 100%;
    min-height: 80vh;
}

.contacts-map-col {
    flex: 1;
    min-height: 500px;
}

.contacts-map-col iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contacts-info-col {
    flex: 1;
    background: #314625;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 60px;
    position: relative;
}

.contacts-details {
    margin-bottom: 40px;
}

.contacts-details p {
    margin: 0 0 12px 0;
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.5;
}

.contacts-details a {
    color: #fff;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.contacts-details a:hover {
    opacity: 0.7;
}

.contacts-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-fast);
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

.contacts-booking-btn-wrap {
    position: absolute;
    bottom: 40px;
    right: 60px;
}

.btn-book-contact {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-book-contact:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Old contacts styles - hide */
.contacts-grid,
.contacts-info,
.contacts-map,
.contact-item,
.contact-icon,
.contact-label,
.contact-value {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contacts-fullwidth {
        flex-direction: column;
        min-height: auto;
    }

    .contacts-map-col {
        min-height: 350px;
        height: 350px;
        flex: none;
    }

    .contacts-info-col {
        padding: 30px 20px;
        align-items: center;
        text-align: center;
        flex: none;
    }

    .contacts-details {
        margin-bottom: 20px;
    }

    .contacts-details p {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contacts-socials {
        margin-bottom: 30px;
        gap: 15px;
    }

    .social-icon img {
        width: 40px;
        height: 40px;
    }

    .contacts-booking-btn-wrap {
        position: static;
        margin-top: 10px;
    }
}

/* End */
/* /local/components/enigma/hero/templates/.default/style.css?17761361664239 */
/* /local/components/enigma/about/templates/.default/style.css?17761363294565 */
/* /local/components/enigma/gallery/templates/.default/style.css?17761363304338 */
/* /local/components/enigma/banner/templates/.default/style.css?1776136334148 */
/* /local/components/enigma/menu.sections/templates/.default/style.css?17761452491506 */
/* /local/components/enigma/booking.form/templates/.default/style.css?17761363315331 */
/* /local/components/enigma/contacts/templates/.default/style.css?17761363323065 */
