﻿/*----------------------------------------------------*/
/*-COMMON--------------------------------------------*/
/*----------------------------------------------------*/
:root {
    --color-BG-Card: #FFFFFF;
}

body {
    --box-shadow: 0px 0px 25px 3px rgba(0,0,0,0.3);
    font-family: var(--font-Regular) !important;
    background: var(--color-BG);
    color: var(--color-text);
}
@media (max-width: 900px) {
    :root {
        --fontsize-Title: 3rem;
        --fontsize-Subtitle: 1.2rem;
        --fontsize-Button: 1.2rem;
    }
    .justify-center-sm {
        justify-content: center;
    }
}
@media (max-width: 580px) {
    :root {
        --fontsize-Title: 2rem;
        --fontsize-Subtitle: 1rem;
        --fontsize-Button: 1.1rem;
    }    
    .justify-center-xs {
        justify-content: center !important;
    }
}
h1, h2, h3, h4, .title {
    font-family: var(--font-Title) !important;
    font-weight: bold;
    font-size: var(--fontsize-Title);
}

.link {
    text-decoration: underline;
    color: var(--color: text);
    cursor: pointer;
    font-family: var(--font-Regular);
    font-weight: normal;
}

.heading {
    font-size: var(--fontsize-Title);
}

.subtitle {
    font-family: var(--font-Title);
    font-size: var(--fontsize-Subtitle);
    font-weight: bold;
}

.smalltitle, .mud-dialog-title .mud-typography-h5 {
    font-family: var(--font-Title);
    font-size: var(--fontsize-Smalltitle);
    font-weight: bold;
}

.title-image {
    max-width: 440px;
}

@media(max-width: 768px) {
    .title-image{
        max-width: 300px;
    }
}

section {
    margin: 5em 0;
}

.rounded-lg {
    border-radius: var(--border-radius) !important;
}
.mud-paper {
    background: var(--color-BG-Card);

}
.spacer {
    height: 5em;
    display: block;
}

.box-shadow {
    box-shadow: var(--box-shadow);
}

.mud-toggle-group {
    font-size: 0.7em !important;    
}

    .mud-toggle-group .mud-button-root > span {
        display: flex !important;
        flex-direction: column !important;
    }
/*----------------------------------------------------*/
/*-INPUTS---------------------------------------------*/
/*----------------------------------------------------*/
.mud-input > input.mud-input-root-outlined, div.mud-input-slot.mud-input-root-outlined,
.mud-shrink ~ label.mud-input-label.mud-input-label-inputcontrol.mud-input-label-outlined, .mud-input:focus-within ~ label.mud-input-label.mud-input-label-inputcontrol.mud-input-label-outlined {
    color: var(--color-text);
    border-radius: 15px;
}

.mud-input.mud-input-outlined {
    border-radius: 35px;
}

.mud-input.mud-input-outlined > .mud-input-outlined-border {
    border-radius: 100px !important;
    border: solid 2px #333;
}
.mud-input > input.mud-input-root-outlined, .mud-input > textarea.mud-input-root-outlined {
    height: 60px;
    background: black;
    border: medium;
    border-radius: 100px !important;
    color: var(--color-text) !important;
    font-size: 20.833px;
    font-weight: 600;
    padding: 5px 25px;
    outline: none;
    cursor: pointer;
    transition: 500ms;
    background: #101010;    
}

.mud-input > textarea.mud-input-root-outlined {
    height: revert;
    margin: 0;
    border-radius: var(--border-radius) !important;
    z-index: -1;
    padding: 20px;
}

.mud-input > textarea + fieldset.mud-input-outlined-border {
    display: none !important;
}

    .mud-input-control > .mud-input-control-input-container > .mud-input-label-outlined.mud-input-label-inputcontrol {
        color: var(--color-text);
    }

@media (max-width: 580px) {
    .mud-input > input.mud-input-root-outlined {
        height: auto;
        font-size: 1rem;
        padding: 1rem;
    }
}

.mud-popover.mud-popover-open {
    background: var(--color-BG) !important;
}
/*----------------------------------------------------*/
/*-APPBAR---------------------------------------------*/
/*----------------------------------------------------*/
    .mud-appbar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.mud-appbar .mud-button-root {
    font-family: var(--font-Title);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-text);
}

.mud-appbar .mud-button-root:hover {
    background: transparent;
}

.mud-appbar a, .basket-card-item a {
    color: var(--color-text) !important;
}
/*----------------------------------------------------*/
/*-NAVBAR---------------------------------------------*/
/*----------------------------------------------------*/
:root {
    --color: #FFF;
    --background-color: black;
    --transition: 0.5s ease-in-out;
}

.navbar {
    width: calc(100% - 2em);
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 1rem;
    gap: 1rem;
    margin: 1em;
}

.navbar-item {
    text-decoration: none;
    font-weight: bold;
    text-wrap: nowrap;
    color: var(--color-text);
    padding: 0.6em 1em;
    transition: text-shadow 0.25s ease-out;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 580px) {
    .navbar {
        gap: 0.1rem;
    }
    .navbar-item {
        padding: 0.5em 0.5em;
    }
}

    .navbar-item:not(.active):hover {
        
    }

.indicator {
    height: 100%;
    border-radius: 1.25em;
    position: absolute;
    mix-blend-mode: difference;
    transition: all var(--transition);
    pointer-events: none;
    box-shadow: inset 1px 1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
    color: var(--color-text) !important;
    border-radius: var(--border-radius);
    text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 0 1px rgba(0,0,0,0.3);
    background-color: var(--lg-bg-color) !important;
}

/*----------------------------------------------------*/
/*-CAROUSEL-------------------------------------------*/
/*----------------------------------------------------*/
:root {
    --item-width: 150px;
    --item-height: 260px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.carousel-item {
    width: var(--item-width);
    height: var(--item-height);
    list-style-type: none;
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    z-index: 3;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

    .carousel-content::before {
        
    }

    .carousel-item:nth-child(2)::before {
        content: "";
        position: absolute;
        inset: 0; /* shorthand for top/left/right/bottom = 0 */
        z-index: 0;
        background-image: linear-gradient( to right, rgba(0, 0, 0, 0.7) 0%, /* strong fade at left edge */
        rgba(0, 0, 0, 0.3) 20%, /* softer by 20% in */
        rgba(0, 0, 0, 0) 40% /* fully transparent after 40% */
        );
    }

.carousel-content {
    width: min(30vw, 500px);
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}

.grid-content {
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

    .carousel-content .title, .grid-content .title {
        text-transform: uppercase;
        font-size: var(--fontsize-Title);
        color: var(--color-text) !important;
    }

    @media (max-width: 768px) {
        .grid-content .title, .grid-content .description {
            text-align: center;
        }
    }

    .carousel-content .description, .grid-content .description {
        margin: 1rem 0 0;
    }

    .carousel-content button {
        width: fit-content;
        background-color: rgba(0, 0, 0, 0.1);
        color: white;
        border: 2px solid white;
        border-radius: 0.25rem;
        padding: 0.75rem;
        cursor: pointer;
    }

.carousel-item:nth-of-type(2) .carousel-content {
    display: flex;
    flex-direction: column;
    animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
    0% {
        filter: blur(5px);
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.carousel-nav {
    position: absolute;
    display: flex;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    user-select: none;
}

    .carousel-nav .btn {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        margin: 0 20px;
    }

        .carousel-nav .btn:hover {
        }

@media (width > 650px) and (width < 900px) {
    .carousel-content .title {
    }

    .carousel-content .description {
    }

    .carousel-content button {
        font-size: 0.7rem;
    }

    .carousel-item {
        width: 160px;
        height: 270px;
    }

        .carousel-item:nth-child(3) {
            left: 50%;
        }

        .carousel-item:nth-child(4) {
            left: calc(50% + 170px);
        }

        .carousel-item:nth-child(5) {
            left: calc(50% + 340px);
        }

        .carousel-item:nth-child(6) {
            left: calc(50% + 510px);
            opacity: 0;
        }
}

@media (width < 650px) {
    .carousel {
        height: 65vh;
    }

    .carousel-content {
        width: 100%;
        align-items: center;
        padding: 40px;
        margin: 0 auto;
        left: revert;
    }

        .carousel-content .title {
            text-align: center;
        }

        .carousel-content .description {
        }

        .carousel-content button {
            font-size: 0.7rem;
        }

    .carousel-item {
        width: 130px;
        height: 220px;
        position: absolute;
    }

        .carousel-item::before {
            content: "";
            position: absolute;
            inset: 0; /* shorthand for top/left/right/bottom = 0 */
            z-index: 1;
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        }

        .carousel-item:nth-child(3) {
            top: 150%;
        }

        .carousel-item:nth-child(4) {
            top: calc(150% + 140px);
        }

        .carousel-item:nth-child(5) {
            top: calc(150% + 280px);
        }

        .carousel-item:nth-child(6) {
            top: calc(150% + 420px);
            opacity: 0;
        }
}

/*----------------------------------------------------*/
/*-CATEGORY-CHIP--------------------------------------*/
/*----------------------------------------------------*/
.category-chip {
    background: var(--color-BG);
    padding: 0.25em 0.75em;
    border-radius: var(--border-radius);
    margin-right: 5px;
    font-size: 0.8rem;
    color: var(--color-text);
}
.mud-chip.mud-chip-size-small {
    max-width: revert;
}
/*----------------------------------------------------*/
/*-FILM CARD------------------------------------------*/
/*----------------------------------------------------*/
.film-card {
    padding: 0;
    margin: 10px;
    transition: transform 0.5s;
    cursor: pointer;
}
    .film-card:hover {
        transform: scale(1.05);
    }


    .film-card .film-card-menu-content {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        justify-content: end;
    }

        .film-card .film-card-menu-content::before, .film-card .film-card-menu-content::after {
            content: "";
            display: table;
        }

        .film-card .film-card-menu-content::after {
            clear: both;
        }

        .film-card .film-card-menu-content li {
            display: inline-block;
        }

        .film-card .film-card-menu-content a {
            color: #fff;
        }

        .film-card .film-card-menu-content span {
            top: 0;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .film-card .film-card-wrapper {
            background-color: #fff;
            min-height: 340px;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
        }

        .film-card .film-card-wrapper::before {
            content: "";
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 50%;
            pointer-events: none;            
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
        }

        .film-card .film-card-wrapper:hover .film-card-data {
            transform: translateY(0);
        }

    .film-card .film-card-data {
        position: absolute;
        bottom: 0;
        width: 100%;
        transform: translateY(0);
        transition: transform 0.3s;
    }

        .film-card .film-card-data::before {
            
        }

        .film-card .film-card-data .film-card-data-content {
            padding: 1em;
            position: relative;
            z-index: 1;
        }

    .film-card .author {
        font-size: 12px;
    }

    .film-card .title {
        margin-top: 10px;
    }

    .film-card .text {
        height: 70px;
        margin: 0;
    }

        .film-card .text::after {
            content: "";
            display: block;
            position: absolute;
            height: 150px;
            width: 100%;
            left: 0;
            bottom: 0;
            z-index: 0;
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        }

    .film-card input[type=checkbox] {
        display: none;
    }

        .film-card input[type=checkbox]:checked + .film-card-menu-content {
            transform: translateY(-60px);
        }

.style-1 .wrapper {
    background: url(https://images.unsplash.com/photo-1496979551903-46e46589a88b?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=cda12b505afa1beb06e49d89014cbd65&auto=format&fit=crop&w=634&q=80) 20% 1%/cover no-repeat;
}

.style-1 .date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #77d7b9;
    color: #fff;
    padding: 0.8em;
}

    .style-1 .date span {
        display: block;
        text-align: center;
    }

    .style-1 .date .day {
        font-weight: 700;
        font-size: 24px;
        text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.18);
    }

    .style-1 .date .month {
        text-transform: uppercase;
    }

    .style-1 .date .month,
    .style-1 .date .year {
        font-size: 12px;
    }

.style-1 .content {
    background-color: #fff;
    box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
}

.style-1 .title a {
    color: gray;
}

.style-1 .menu-button {
    position: absolute;
    z-index: 999;
    top: 16px;
    right: 16px;
    width: 25px;
    text-align: center;
    cursor: pointer;
}

    .style-1 .menu-button span {
        width: 5px;
        height: 5px;
        background-color: gray;
        color: gray;
        position: relative;
        display: inline-block;
        border-radius: 50%;
    }

        .style-1 .menu-button span::after, .style-1 .menu-button span::before {
            content: "";
            display: block;
            width: 5px;
            height: 5px;
            background-color: currentColor;
            position: absolute;
            border-radius: 50%;
        }

        .style-1 .menu-button span::before {
            left: -10px;
        }

        .style-1 .menu-button span::after {
            right: -10px;
        }

.style-1 .menu-content {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    transition: transform 0.3s;
    transform: translateY(0);
}

    .style-1 .menu-content li {
        width: 33.333333%;
        float: left;
        background-color: #77d7b9;
        height: 60px;
        position: relative;
    }

    .style-1 .menu-content a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
    }

    .style-1 .menu-content span {
        top: -10px;
    }

.style-2 .film-card-wrapper:hover .film-card-menu-content span {
    opacity: 1;
}

.style-2 .film-card-wrapper .film-card-menu-content {
    transform: translate(0%, -100px);
    flex-wrap: wrap;
}

.style-2 .film-card-wrapper:hover .film-card-menu-content {
    transform: translate(0%, 0%);
}

.style-2 .film-card-header {
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: space-between;    
}

    .style-2 .film-card-header::before, .style-2 .header::after {
        content: "";
        display: table;
    }

    .style-2 .film-card-header::after {
        clear: both;
    }

    .style-2 .film-card-header .date {
        font-size: 12px;
        position: relative;
        min-width: 50%;
    }

    .style-2 .film-card-header::before {
        content: "";
        display: block;
        position: absolute;
        height: 100px;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    }

.style-2 .film-card-menu-content {
}

    .style-2 .film-card-menu-content li {
        margin: 0 5px;
        position: relative;
    }

    .style-2 .film-card-menu-content span {
        transition: all 0.3s;
        opacity: 0;
        margin-left: 5px;
        margin-right: 0;
        margin-bottom: 5px;
        font-weight: normal;
    }

.style-2 .film-card-data {
    color: #fff;
}

.style-2 .title {
    font-size: var(--fontsize-FilmCardTitle);
    margin-bottom: 20px;
}

    .style-2 .title a {
        color: #fff;
        text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 0 1px rgba(0,0,0,0.3);
    }

.style-2 .film-card-button {
    display: block;
    width: 100px;
    margin: 2em auto 1em;
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    position: relative;
    font-weight: 700;
}

    .style-2 .film-card-button::after {
        content: "→";
        opacity: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        transition: all 0.3s;
    }

    .style-2 .film-card-button:hover::after {
        transform: translate(5px, -50%);
        opacity: 1;
    }

@media (width < 650px) {
    .film-card .film-card-menu-content {
        justify-content: start;
    }

    .style-2 .film-card-header {
        flex-direction: column;
        gap: 0rem;
    }

    .film-card .film-card-wrapper .film-card-data {
        transform: translateY(0);
    }

    .style-2 .film-card-button::after {
        transform: translate(5px, -50%);
        opacity: 1;
    }

    .style-2 .film-card-wrapper .film-card-menu-content span {
        opacity: 1;
    }

    .style-2 .film-card-wrapper .film-card-menu-content {
        transform: translate(0%, 0%);
    }
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
    width: 100%;
}

/* On smaller screens, switch to horizontal scroll row */
@media (width < 650px) {
    .film-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 2rem;
    }

    .film-grid-item {
        flex: 0 0 auto;
        width: 80%; /* tweak: card width relative to viewport */
        max-width: 320px;
    }
}

.trailer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    overflow-x: hidden;
}

    .trailer-grid .film-card-wrapper {
        position: relative;
    }

        .trailer-grid .film-card-wrapper .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .trailer-grid .film-grid-item {
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .trailer-grid .film-grid-item .film-card {
            width: 100%;
        }

/*----------------------------------------------------*/
/*-FILM PAGE------------------------------------------*/
/*----------------------------------------------------*/

.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

    .hero.short {
        position: relative;
        width: 100%;
        height: 50vh;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

        .hero.short.extra-short {
            height: 40vh;
        }

.hero-item {
    width: 100%;
    height: 100%;
    list-style-type: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 0px;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

.hero.short .hero-item {
    background-position: center;
    background-size: cover;
}

.hero-item::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top/left/right/bottom = 0 */
    z-index: 0;
    background-image: linear-gradient( to right, rgba(0, 0, 0, 0.7) 0%, /* strong fade at left edge */
    rgba(0, 0, 0, 0.3) 20%, /* softer by 20% in */
    rgba(0, 0, 0, 0) 40% /* fully transparent after 40% */
    );
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.hero.short .hero-item::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top/left/right/bottom = 0 */
    z-index: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.hero-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}

.hero.short .hero-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.hero.centered .hero-content {
    display: flex;
    justify-content: center;
    left: 0;
    text-align: center;
    align-items: center;
}

.hero-content .title {
    text-transform: uppercase;
    font-size: var(--fontsize-Title);
}

.hero.centered .hero-content .title {
    text-align: center;
}

.hero-content .description {
    margin: 1rem 0 0rem;
}

.hero-content .details {
    margin: 0
}

/*.hero-content button {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
}*/

.hero-item .hero-content {
    display: flex;
    flex-direction: column;
    animation: show 0.75s ease-in-out 0.3s forwards;
}

@media (width > 650px) and (width < 900px) {
    .hero-content button {
        font-size: 0.7rem;
    }
}


@media (width < 650px) {
    .hero-content {
        width: min(80vw);
        align-items: center;
    }

    .hero.short .hero-content {
        left: 0;
    }

    .hero-content .title {
        text-align: center;
    }

    .hero-content button {
        font-size: 0.7rem;
    }

    .hero-item::before {
        content: "";
        position: absolute;
        inset: 0; /* shorthand for top/left/right/bottom = 0 */
        z-index: 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    }
}

/*----------------------------------------------------*/
/*-LIST-----------------------------------------------*/
/*----------------------------------------------------*/
.mud-list-item-icon {
    color: var(--color-text);
}
.mud-list-item-clickable:hover,.mud-list-item-clickable:active  {
    background: transparent;
}

/*----------------------------------------------------*/
/*-BASKET---------------------------------------------*/
/*----------------------------------------------------*/

.basket-card-item {
    background: var(--color-BG);
    border-bottom: solid 1px var(--color-BG-Card);
    color: var(--color-text);
    border-radius: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}
    .basket-card-item:first-child {
        border-top: solid 1px var(--color-BG-Card);
    }
    .basket-card-item.no-border, .address-card-item.no-border {
        border: none !important;
    }
    .basket-card-item.no-shading {
        background: var(--color-BG);
    }

.mud-dialog {
    color: var(--color-text);
    border-radius: var(--border-radius);
    background: rgba(255,255,255,var(--glass-opacity));
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    border: 1px solid var(--border-color);
    box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px 0px;
}

.address-card-item {
    background: var(--color-BG);
    border: solid 3px var(--color-BG-Card);
    border-radius: var(--border-radius);
    color: var(--color-text);
}
/*----------------------------------------------------*/
/*-PRODUCT GRID---------------------------------------*/
/*----------------------------------------------------*/
.product-card {
    background: var(--color-BG-Card);
    color: var(--color-text);
}
    .product-card .mud-card-actions {
        padding: 2em;
    }

/*----------------------------------------------------*/
/*-COUNTER--------------------------------------------*/
/*----------------------------------------------------*/
.counter {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 150px;
    margin: 0 auto;
}

.counter-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .counter-number .title {
        margin: 0;
        padding: 0;
    }

/*----------------------------------------------------*/
/*-TICKET---------------------------------------------*/
/*----------------------------------------------------*/
.ticket-group-scroll-x {
    height: 380px;
    max-width: 100%;
    overflow-x: scroll;
    display: flex;
    justify-content: start;
    margin-top: 5em;     
}

.ticket-layout-container {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    position: relative;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
}

    .ticket-layout-container.show {
        transform: translateY(0);
        opacity: 1;
    }

.ticket-layout img {
    width: 100%;
    max-height: 80px;
    object-fit: cover;
}

.ticket-layout.ticket {
    width: 200px;
    min-width: 200px;
    height: 340px;
    background-color: var(--color-BG-Card);
    margin: 0 10px;
    position: relative;
}

.ticket-layout .holes-top {
    height: 30px;
    width: 30px;
    background-color: var(--color-BG);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    top: -15px;
}

    .ticket-layout .holes-top:before, .ticket-layout .holes-top:after {
        content: "";
        height: 30px;
        width: 30px;
        background-color: var(--color-BG);
        position: absolute;
        border-radius: 50%;
    }

    .ticket-layout .holes-top:before {
        left: -100px;
    }

    .ticket-layout .holes-top:after {
        left: 100px;
    }

.ticket-layout .holes-lower {
    position: relative;
    margin: 15px;
    border: 1px dashed #aaa;
}

    .ticket-layout .holes-lower:before, .ticket-layout .holes-lower:after {
        content: "";
        height: 30px;
        width: 30px;
        background-color: var(--color-BG);
        position: absolute;
        border-radius: 50%;
        display: none;
    }

    .ticket-layout .holes-lower:before {
        top: -15px;
        left: -30px;
    }

    .ticket-layout .holes-lower:after {
        top: -15px;
        left: 165px;
    }

.ticket-layout .holes-bottom {
    height: 30px;
    width: 30px;
    background-color: var(--color-BG);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    bottom: -15px;
}

    .ticket-layout .holes-bottom:before, .ticket-layout .holes-bottom:after {
        content: "";
        height: 30px;
        width: 30px;
        background-color: var(--color-BG);
        position: absolute;
        border-radius: 50%;
    }

    .ticket-layout .holes-bottom:before {
        left: -100px;
    }

    .ticket-layout .holes-bottom:after {
        left: 100px;
    }

.ticket-layout .btn {
    font-size: 0.8em;
}

.ticket-layout .title {
    padding: 20px 15px 10px;
}

.ticket-layout .cinema {
    color: #aaa;
    font-size: 8px;
}

.ticket-layout .movie-title {
    font-size: 16px;
}

.ticket-layout .info {
    padding: 10px 10px;
    text-align: left;
}

.ticket-layout table {
    width: 100%;
    font-size: 8px;
    margin-bottom: 0px;
}

    .ticket-layout table tr {
        margin-bottom: 10px;
    }

    .ticket-layout table th {
        text-align: left;
    }

        .ticket-layout table th:nth-of-type(1) {
            width: 20%;
        }

        .ticket-layout table th:nth-of-type(2) {
            width: 20%;
        }

        .ticket-layout table th:nth-of-type(3) {
            width: 60%;
        }

    .ticket-layout table td {
        width: 33%;
        font-size: 12px;
    }

.ticket-layout .bigger {
    font-size: 12px;
}

.ticket-layout .serial {
    padding: 25px;
}

    .ticket-layout .serial table {
        border-collapse: collapse;
        margin: 0 auto;
    }

    .ticket-layout .serial td {
        width: 3px;
        height: 30px;
    }

.ticket-layout .numbers td {
    font-size: 12px;
    text-align: center;
}

/*----------------------------------------------------*/
/*-SIGNUP---------------------------------------------*/
/*----------------------------------------------------*/

.signup, .signup .signup-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .signup input, .signup .signup-form input {
        width: 250px; /* half of 500px */
        height: 83.333px; /* half of 166.666px */
        background: var(--color-BG-Card);
        border: none;
        border-radius: 66.666px; /* half of 133.333px */
        color: var(--color-text);
        font-size: 20.833px; /* half of 41.666px */
        text-transform: uppercase;
        font-weight: 600;
        padding: 5px 50px; /* roughly half */
        outline: none;
        cursor: pointer;
        transition: all 500ms;
        position: relative;
    }

@media (max-width: 580px) {
    .signup input, .signup .signup-form input {
        font-size: 1rem;
        height: 60px;
    }
}

        .signup input[readonly], .signup .signup-form input[readonly] {
            cursor: not-allowed;
        }

        .signup input:invalid, .signup .signup-form input:invalid {
            box-shadow: none;
        }

        .signup input::placeholder, .signup .signup-form input::placeholder {
            color: var(--color-text);
            text-align: center;
            opacity: 1;
        }

        .signup input:not(.active):not(:read-only):hover, .signup .signup-form input:not(.active):not(:read-only):hover {
            opacity: 0.9;
        }

        .signup input.active, .signup .signup-form input.active {
            cursor: initial;
            width: 557.5px; /* half of 1115px */
            left: 83.333px; /* half of 166.666px */
            padding: 5px 178.571px 5px 50px; /* half of original */
            text-align: left; /* align placeholder and typed text to left */
        }

@media (max-width: 580px) {
    .signup input.active, .signup .signup-form input.active {
        width: 380px;
        padding: 5px 138px 5px 50px;
    }
}

            .signup input.active::placeholder,
            .signup .signup-form input.active::placeholder {
                text-align: left; /* ensure placeholder aligns left */
            }

            .signup input.active + button, .signup .signup-form input.active + button {
                display: block;
                font-weight: 100;
            }

        .signup input.expand, .signup .signup-form input.expand {
            -webkit-animation: expand 1s forwards ease-out;
            animation: expand 1s forwards ease-out;
        }

@-webkit-keyframes expand {
    0% {
        width: 250px;
    }

    10% {
        width: 600px;
    }

    35% {
        width: 550px;
    }

    50% {
        width: 560px;
    }

    100% {
        width: 557.5px;
    }
}

@keyframes expand {
    0% {
        width: 250px;
    }

    10% {
        width: 600px;
    }

    35% {
        width: 550px;
    }

    50% {
        width: 560px;
    }

    100% {
        width: 557.5px;
    }
}

.signup input.collapse, .signup .signup-form input.collapse {
    -webkit-animation: collapse 1s forwards ease-out;
    animation: collapse 1s forwards ease-out;
}

@-webkit-keyframes collapse {
    0% {
        width: 557.5px;
    }

    10% {
        width: 192.3px;
    }

    35% {
        width: 257.5px;
    }

    50% {
        width: 245px;
    }

    100% {
        width: 250px;
    }
}

@keyframes collapse {
    0% {
        width: 557.5px;
    }

    10% {
        width: 192.3px;
    }

    35% {
        width: 257.5px;
    }

    50% {
        width: 245px;
    }

    100% {
        width: 250px;
    }
}

.signup input + button, .signup .signup-form input + button {
    display: none;
}

.signup button, .signup .signup-form button {
    width: 166.666px; /* half of 333.333px */
    height: 71.428px; /* half of 142.857px */
    border: 0;
    border-radius: 66.666px; /* half of 133.333px */
    position: relative;
    left: -89.285px; /* half of -178.571px */
    font-size: 20.833px; /* half of 41.666px */
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    z-index: 2;
    font-weight: bold !important;
    border: solid 3px var(--color-text);
}

@media (max-width: 580px) {
    .signup button, .signup .signup-form button {
        font-size: 1rem;
        height: 60px;
        width: 120px;
    }
}

/*----------------------------------------------------*/
/*-RECEIPT--------------------------------------------*/
/*----------------------------------------------------*/
.fade-in, .slide-up, .slide-left, .flip-in {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.slide-left {
    transform: translateX(-10px);
}

.slide-up {
    transform: translateY(15px);
}

.flip-in {
    transform: rotateX(-90deg);
    transform-origin: top center;
}

.visible {
    opacity: 1;
    transform: none;
}

.receipt {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.receipt_hoverable {
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

    .receipt_hoverable:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

.header {
    width: 100%;
}

.header__top {
    display: flex;
    align-items: center;
    background: #333;
    width: 100%;
    padding: 1rem 0;
    border-radius: 4px 4px 0 0;
}

.header__logo {
    width: 10%;
    padding: 30px;
}

.header__meta {
    position: relative;
    width: 90%;
    height: 100%;
    margin-left: 15px;
    line-height: 1.7rem;
    opacity: 0.3;
}

.header__serial {
    display: block;
}

.header__number {
    position: absolute;
    top: 7.5px;
    right: 0;
    transform: rotate(270deg);
    opacity: 0.2;
}

.header__greeting {
    clear: both;
}

.header__greeting {
    position: relative;
    background: #444;
    padding: 0 1rem;
    padding-left: 30px;
}

.header__name {
    display: block;
    font-weight: bold;
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 7.5px;
}

.header__count {
    opacity: 0.4;
    font-size: 90%;
}

.header__border {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #429fff;
}

.header__spacing {
    display: block;
    background: #333;
    width: 100%;
    height: 22.5px;
}

.cart {
    background: #333;
    padding: 30px;
    padding-top: 15px;
    border-bottom: 2px dashed #ff84a1;
    border-radius: 0;
    margin-top: -7px;
    margin-bottom: 0;
}

.cart__header {
    margin-top: 0;
    text-align: center;
    font-size: 2em;
}

.cart__hr {
    border: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 22.5px;
    border-bottom: 3px solid #fee469;
}

.list {
    margin: 0;
    padding: 0;
    counter-reset: item-counter;
}

.list__item {
    display: flex;
    width: 100%;
    padding-top: 22.5px;
    padding-bottom: 22.5px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

    .list__item:last-child {
        border-bottom: none;
    }

    .list__item:before {
        content: counter(item-counter);
        counter-increment: item-counter;
        margin-right: 15px;
    }

.list__name {
    flex: 1;
    align-self: flex-start;
}

.list__price {
    align-self: flex-end;
    text-align: right;
    font-weight: bold;
}

.cart__total {
    display: flex;
    width: 100%;
}

.cart__total-label {
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    font-size: 1em;
}

.cart__total-price {
    align-self: flex-end;
    font-weight: bold;
    text-align: right;
}

.bar-code {
    background: #FFF;
    padding: 30px;
    border-radius: 0px 0px 4px 4px;
}

/*----------------------------------------------------*/
/*-PAYMENT LOADER-------------------------------------*/
/*----------------------------------------------------*/
.payment-loader {
    width: 180px;
    margin: 0 auto 100px;
}

    .payment-loader .binding {
        content: '';
        width: 60px;
        height: 4px;
        border: 2px solid #9b72ee;
        margin: 0 auto 200px auto;
    }

    .payment-loader .pad {
        width: 80px;
        height: 58px;
        border-radius: 8px;
        border: 2px solid white;
        padding: 6px;
        margin: 0 auto;
    }

    .payment-loader .chip {
        width: 12px;
        height: 8px;
        background: white;
        border-radius: 3px;
        margin-top: 4px;
        margin-left: 3px;
    }

    .payment-loader .line {
        width: 52px;
        margin-top: 6px;
        margin-left: 3px;
        height: 4px;
        background: white;
        border-radius: 100px;
        opacity: 0;
        -webkit-animation: writeline 3s infinite ease-in;
        -moz-animation: writeline 3s infinite ease-in;
        -o-animation: writeline 3s infinite ease-in;
        animation: writeline 3s infinite ease-in;
    }

    .payment-loader .line2 {
        width: 32px;
        margin-top: 6px;
        margin-left: 3px;
        height: 4px;
        background: white;
        border-radius: 100px;
        opacity: 0;
        -webkit-animation: writeline2 3s infinite ease-in;
        -moz-animation: writeline2 3s infinite ease-in;
        -o-animation: writeline2 3s infinite ease-in;
        animation: writeline2 3s infinite ease-in;
    }

    .payment-loader .line:first-child {
        margin-top: 0;
    }

    .payment-loader .line.line1 {
        -webkit-animation-delay: 0s;
        -moz-animation-delay: 0s;
        -o-animation-delay: 0s;
        animation-delay: 0s;
    }

    .payment-loader .line.line2 {
        -webkit-animation-delay: 0.5s;
        -moz-animation-delay: 0.5s;
        -o-animation-delay: 0.5s;
        animation-delay: 0.5s;
    }

    .payment-loader .loader-text p:nth-child(1) {
        color: white;
        font-size: 16px;
        margin-top: 12px;
        margin-bottom: 0px;
        overflow: hidden;
        white-space: nowrap;
        animation-delay: 10s;
        animation: textline1 3s infinite ease-in;
    }

    .payment-loader .loader-text p:nth-child(2) {
        margin-top: 10px;
        color: white;
        font-size: 14px;
        overflow: hidden;
        white-space: nowrap;
        text-align: center;
        animation-delay: 2s;
        animation: textline2 3s infinite ease-in;
    }


@keyframes writeline {
    0% {
        width: 0px;
        opacity: 0;
    }

    33% {
        width: 52px;
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes writeline2 {
    0% {
        width: 0px;
        opacity: 0;
    }

    33% {
        width: 32px;
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes textline1 {
    0% {
        width: 0%;
        opacity: 0;
    }

    33% {
        width: 100%;
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes textline2 {
    0% {
        width: 100%;
        opacity: 0;
    }

    33% {
        width: 100%;
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*----------------------------------------------------*/
/*-FOOTER---------------------------------------------*/
/*----------------------------------------------------*/
.footer {
    background: var(--color-BG);
    padding: 5em 2em;
    font-size: 0.8rem;
}

.footer-links {
    margin: 2rem auto;    
}

.footer-links a {
    padding: 0.025rem 1rem;    
    border-right: solid 1px var(--color-text);
    color: var(--color-text);
}

.footer-links a:last-child {
    border-right: none;
}

/*----------------------------------------------------*/
/*-STRIPE---------------------------------------------*/
/*----------------------------------------------------*/
.stripe-input-wrapper {
    background: #101010;
    border: 1px solid #CCCCCC;
    border-radius: 100px;
    height: 60px;
    margin-bottom: 1rem;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*----------------------------------------------------*/
/*-FEATURE IMAGE--------------------------------------*/
/*----------------------------------------------------*/
.feature-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

    /* Make the image fill the container */
    .feature-image-container img {
        width: 100%;
        display: block;
    }

/* Magnifier styling */
.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    width: 200px;
    height: 200px;
    /* Initially hidden */
    opacity: 0;
    pointer-events: none; /* so it doesn't block hover */
    transition: opacity 0.2s ease; /* smooth fade in/out */
}

/* Show magnifier when hovering the image container */
.feature-image-container:hover .img-magnifier-glass {
    opacity: 1;
}