nav .navbar-brand {
    font-family: 'Oswald', sans-serif;
}

nav ul li a i {
    margin-right: 5px;
}

#home-page .jumbotron {
    background-image: url("../images/cinema.jpg");
    background-repeat: no-repeat;
    background-position: 40% 50%;
    background-size: cover;
    color: #FFF;
}

#home-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#season-link {
    cursor: pointer;
}

#schedule td {
    width: 15%;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.7)
}

@media screen and (max-width: 768px) {
    .search img {
        width: 50%;
    }
}


.loading-container {
    --uib-size: 40px;
    --uib-color: black;
    --uib-speed: 1s;
    --uib-stroke: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.loading-line {
    position: absolute;
    top: 0;
    left: calc(50% - var(--uib-stroke) / 2);
    display: flex;
    align-items: flex-start;
    height: 100%;
    width: var(--uib-stroke);
}

.loading-line::before {
    content: '';
    height: 22%;
    width: 100%;
    border-radius: calc(var(--uib-stroke) / 2);
    background-color: var(--uib-color);
    animation: pulse calc(var(--uib-speed)) ease-in-out infinite;
    transition: background-color 0.3s ease;
    transform-origin: center bottom;
}

.loading-line:nth-child(1) {
    transform: rotate(calc(360deg / -12 * 1));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 1);
    }
}
.loading-line:nth-child(2) {
    transform: rotate(calc(360deg / -12 * 2));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 2);
    }
}
.loading-line:nth-child(3) {
    transform: rotate(calc(360deg / -12 * 3));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 3);
    }
}
.loading-line:nth-child(4) {
    transform: rotate(calc(360deg / -12 * 4));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 4);
    }
}
.loading-line:nth-child(5) {
    transform: rotate(calc(360deg / -12 * 5));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 5);
    }
}
.loading-line:nth-child(6) {
    transform: rotate(calc(360deg / -12 * 6));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 6);
    }
}
.loading-line:nth-child(7) {
    transform: rotate(calc(360deg / -12 * 7));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 7);
    }
}
.loading-line:nth-child(8) {
    transform: rotate(calc(360deg / -12 * 8));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 8);
    }
}
.loading-line:nth-child(9) {
    transform: rotate(calc(360deg / -12 * 9));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 9);
    }
}
.loading-line:nth-child(10) {
    transform: rotate(calc(360deg / -12 * 10));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 10);
    }
}
.loading-line:nth-child(11) {
    transform: rotate(calc(360deg / -12 * 11));

    &::before {
        animation-delay: calc(var(--uib-speed) / -12 * 11);
    }
}

    @keyframes pulse {
    0%,
    80%,
    100% {
        transform: scaleY(0.75);
        opacity: 0;
    }
    20% {
        transform: scaleY(1);
        opacity: 1;
    }
}
