span.day {
    font-size: 15px;
    display: block;
    text-align: right;
}

b.time {
    font-size: 25px;
    display: block;
    text-align: right;
}

span.date {
    font-size: 15px;
    display: block;
    text-align: right;
}

h3.movie_name {
    color: #fbb032;
    margin: 0px;
}

.movie_data {
    margin: 0px;
    display: flex;
    gap: 6px;
}

img.kino_banner {
    width: 82px;
    display: block;
    margin: 0px 20px;
}

table.cinema_program > tbody > tr > td {
    vertical-align: top;
}

/* .left_side {
    width: 1050px;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

div#landing {
    position: relative;
    height: 800px;
    overflow: hidden;
    width: 100%;
}

#landing > .left_side > .landing_container_left > h1 {
    color: rgb(219, 219, 219);
    font-size: 72px;
    font-weight: 900;
    margin: 0px auto;
    font-family: 'Poppins';
}

#landing > .left_side > .landing_container_left > p {
    color: rgb(255, 255, 255);
    font-size: 21px;
    font-weight: 100;
}

#landing > .left_side > .landing_container_left > div > button {
    padding: 15px 24px;
    font-size: 17px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background: rgb(251, 176, 50);
}

.right_side {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
}

/* if screen width is smaller than 800px */
@media (max-width: 900px) {
    table.cinema_program > tbody > tr > td {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    img.kino_banner {
        width: 100%;
        margin: 0px;
    }

    table.cinema_program > tbody > tr > td:nth-child(2) {
        display: none;
    }

    table.cinema_program > tbody > tr > td:nth-child(1) {
        display: flex;
        gap: 20px;
        justify-content: left;
         /* Voliteľné pre lepšie zalomenie */
        align-items: center;
    }

    table.cinema_program > tbody > tr > td:nth-child(1) > * {
        text-align: left;
        margin-top: 0px;
        height: fit-content;
        width: fit-content!important;
    }
    
    table.cinema_program > tbody > tr > td:nth-child(3) > iframe {
        width: 100%;
        margin-top: 0px;
    }

    /* Zmena poradia */
    span.date {
        order: 1;
    }

    span.day {
        order: 2;
    }

    b.time {
        order: 3;
    }
}

