@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/***************************** Start Styles for Cart  ***********************************************/

#cart {
    width: 22vw;
    top: 10vh;
    right: 10vw;
    background-color: rgb(49, 49, 49);
    position: fixed;
    padding: 1%;
    border-radius: 10px;
    border: none;
    color: white;
    animation: fadeIn 0.5s ease-in-out;
}

#cart #cartHead {
    display: flex;
    height: 51.6px;
    justify-content: space-between;
    border-bottom: #f1f1f1 solid 1.6px;
}

#cart .cart-icon {
    align-self: center;
    top: 3.8vh;
    left: 1.4vw;
}

#cart #cartTotal {
    flex-grow: 2;
    padding-left: 1vw;
}

#cart #closeCart {
    align-self: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
}

#cart #cartTitle {
    padding-top: 2vh;
    margin-bottom: 0vh;
}

/* Style the scroll bar inside the cart */
div.scroll {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

/* width */
::-webkit-scrollbar {
    width: 0.4vw;
}

/* Track */
::-webkit-scrollbar-track {
    background: #888;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(204, 204, 204);
}

#cart ul {
    text-decoration: none;
    list-style: none;
    padding: 0%;
    height: 32vh;
}

#cart li {
    display: grid;
    padding-top: 1vh;
}

#cart .cartThumb {
    width: 5vw;
}

#cart .leftSideOfCart {
    grid-column: 1/1;
}

#cart .rightSideOfCart {
    grid-column: 2/7;
}

#cart .cartTitle {
    margin-top: 2vh;
    margin-bottom: 0%;
}

#cart .cartType {
    color: red;
    font-weight: 600;
}

#cart .cartQuantity {
    opacity: 80%;
    font-weight: 100;
}

#cart .cartRemoveItem {
    grid-column: 7/8;
    align-self: start;
    padding: 0%;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
}

#cart #checkout {
    width: 100%;
    font-size: 1rem;
    line-height: normal;
    font-weight: bold;
    color: white;
    background-color: rgb(255, 0, 0);
    padding: 0.8rem;
    margin-top: 3vh;
    border-radius: 10px;
    border: none;
}

#cart #checkout:hover {
    background-color: rgb(255, 57, 57);
}


#showCart{
    text-decoration: none;
    border-radius: 100px;
    padding: 16px 18px;
    position: fixed;
    float: right;
    top: 3vh;
    right: 3vw;
    color: #fff !important;
    background: rgb(255, 0, 0);
    border: none;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    #cart {
        width: 96vw;
        height: 60vh;
        top: initial;
        bottom: 0;
        left: 0vw;
        right: 0vw;
        padding: 3%;
        border-bottom-left-radius: 0%;
        border-bottom-right-radius: 0%;
    }

    #cart #cartHead {
        display: flex;
        height: 51.6px;
        justify-content: space-between;
    }

    #cart .cartThumb {
        width: 15vw;
    }
}

/***************************** End Styles for Cart  ***********************************************/


/****************************** Start Styles for Hero  ********************************************/

body {
    background-image: url(../images/background.jpg);
    background-position: center;
    background-size: cover;
    margin: 0;
    font-family: sans-serif;
}

#hero {
    width: 100%;
    background-color: black;
    background-image: url(../images/erik-witsoe-GF8VvBgcJ4o-unsplash-blur.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

#hero-contain {
    padding-top: 6%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 6%;
    color: white;
    text-align: left;
}

#hero-contain h1 {
    font-size: 2.4rem;
}

#hero-contain button {
    font-size: 1rem;
    line-height: normal;
    font-weight: bold;
    color: white;
    background-color: rgb(255, 0, 0);
    padding: 0.8rem;
    border-radius: 10px;
    border: none;
    margin-top: 0;
    margin-bottom: 0;
}

button a {
    text-decoration: none;
    color: inherit;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    #hero-contain {
        padding-top: 6%;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 6%;
        color: white;
        text-align: left;
    }

    #hero-contain h1 {
        font-size: 2.4rem;
    }

    #hero-contain button {
        width: 100%;
        display: block;
        margin-bottom: 2vh;
        margin-left: auto;
        margin-right: auto;
    }

    #comingSoonButton {
        background-color: rgb(87, 87, 87) !important;
    }
}

/****************************** End Styles for Hero  **********************************************/


/******************************  Start Styles for Movies Lists   ************************************/
#play{
  text-align: center;
  font-style: italic;
  size: 40px;
} 

#soon{
  text-align: center;
  font-style: italic;
  size: 40px;
}

#line{
  border-top: 3px solid red;
}

#line2{
  border-top: 3px solid red;
}

.movie-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.movies {
    width: 17.5vw;
    padding-left: 1vw;
    padding-right: 1vw;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
}

.movies img {
    width: 100%;
    height: auto;
}

.movies h2 {
    font-size: 1.8rem;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 2vh;
}

.movies h2:hover {
    color: rgb(255, 0, 0);
}

.movies p {
    font-size: 1rem;
    line-height: normal;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.movies button {
    font-size: 1rem;
    line-height: normal;
    font-weight: bold;
    color: white;
    background-color: black;
    padding: 0.8rem;
    border-radius: 10px;
    border: none;
    margin-top: 0;
    margin-bottom: 0;
}

.movies button:hover {
    background-color: rgb(255, 0, 0);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .movies {
        width: 28vw;
        padding-left: 0.5vw;
        padding-right: 0.5vw;
        padding-bottom: 2vh;
    }

    .movies h2 {
        font-size: 1rem;
    }

    .movies button {
        font-size: 0.7rem;
    }
}

/******************************  End Styles for Movies Lists   ************************************/

/*****************************  Start Ticket Chooser Styles  ***********************************************/

#choose-tickets-inner {
    z-index: 51;
    width: 50vw;
    height: 50vh;
    position: fixed;
    top: 25%;
    left: 25%;
    margin-top: 2vh;
    background-color: rgb(27, 27, 27);
    color: white;
    animation: fadeIn 0.5s ease-in-out;
}

#choose-tickets-background {
    z-index: 50;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color:rgba(0, 0, 0, 0.80);
    animation: fadeIn 0.5s ease-in-out;
}

#closeTicketChooser {
    font-size: 12px;
    font-weight: bold;
    color: white;
    border: none;
    float: right;
    margin-top: 2vh;
    margin-right: 1vw;
    padding: 15px 18px;
    font-size: 0.8vw;
    border-radius: 100px;
    background-color: gray;
}

#choose-tickets-inner h2 {
    font-size: 3rem;
    margin-bottom: 1vh;
}

#choose-tickets-inner h3 {
    font-size: 1rem;
    font-weight: 500;
}

#choose-tickets-inner h2, #choose-tickets-inner h3 {
    padding-left: 2vw;
}

#choose-tickets-movie-title {
    font-size: 1.4rem;
    font-weight: bolder;
    margin-top: 0vh;
    margin-bottom: 3vh;
    padding-left: 2vw;
    padding-right: 2vw;
}

a #checkout {
    font-size: 12px;
    line-height: normal;
    font-weight: bold;
    color: white;
    background-color: rgb(255, 0, 0);
    padding: 0.8rem;
    border-radius: 5px;
    border: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-top: 2vh;
    margin-left: 2vw;
}

.tickets-plus{
    font-size: 12px;
    line-height: normal;
    font-weight: bold;
    color: white;
    background-color: rgb(255, 0, 0);
    padding: 0.25rem;
    border-radius: 5px;
    border: none;
    margin-top: 0;
    margin-bottom: 0;
}

.tickets-minus{
    font-size: 12px;
    line-height: normal;
    font-weight: bold;
    color: white;
    background-color: rgb(255, 0, 0);
    padding: 0.26rem;
    border-radius: 5px;
    border: none;
    margin-top: 0;
    margin-bottom: 0;
}
/***************************** End Ticket Chooser Styles  ***********************************************/

/*****************************  Start Movie Details Styles  ***********************************************/

#movie-details-inner {
    z-index: 51;
    width: 50vw;
    height: 60vh;
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50% , -50%);
    background-color: rgb(27, 27, 27);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    animation: fadeIn 0.5s ease-in-out;
}

#movie-details-inner-inner {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0.5px) brightness(0.6);
}

#movie-details-inner-inner h2 {
    font-size: 5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 4vh;
    margin-bottom: 2vh;
}

#movie-details-inner-inner p, #movie-details-inner-inner h2 {
    padding-left: 2vw;
    padding-right: 2vw;
    width: 95%;
}

#movie-details-inner-inner #movie-details-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    font-size: 1.2rem;
}

#coming-soon-button, #close-movie-details {
    font-size: 12px;
    line-height: normal;
    font-weight: bold;
    color: white;
    background-color: rgb(255, 0, 0);
    padding: 0.8rem;
    border-radius: 5px;
    border: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 2vw;
}

#close-movie-details {
    float: right;
    margin-top: 2vh;
    margin-right: 1vw;
    padding: 15px 18px;
    font-size: 0.8vw;
    border-radius: 100px;
    background-color: gray;
}

#movie-details-background {
    z-index: 50;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color:rgba(0, 0, 0, 0.80);
    animation: fadeIn 0.5s ease-in-out;
}
/***************************** End Movie Details Styles  ***********************************************/

/*****************************  Start Styles for Survey Popup  ***********************************************/
#survey-popup {
    z-index: 51;
    width: 24vw;
    height: 24vh;
    position: fixed;
    bottom: 0%;
    right: 0%;
    padding: 4vh;
    border-top-left-radius: 30px;
    border: none;
    background-color: rgb(27, 27, 27);
    color: white;
    animation: slideUp 2s ease-in-out 5s 1;
}

#survey-popup button {
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 25px;
    float: left;
    margin-top: 10px;
    color: #fff !important;
    background: rgb(255, 57, 57);
    font-weight: 600;
    border: none;
}

#survey-no {
    background-color: rgb(87, 87, 87) !important;
    margin-left: 0.8vw !important;
}

#survey-popup {
    animation: 2s easeIn;
    animation-delay: 6s;
    animation-fill-mode: both;
  }
  
@keyframes easeIn {
    0% {
        visibility: hidden;
        transform: translateY(6vh);
    }
    1% {
        visibility: visible;
    }
    100% {
        transform: translateY(0vh);
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    #survey-popup {
        width: 100vw;
        height: auto;
        position: fixed;
        left: 0%;
        bottom: 0%;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
}

/*****************************  End Styles for Survey Popup  ***********************************************/

/*****************************  Start Shaker  ***********************************************/

.shaker:hover {
    animation:  shake 0.8s  ;
}

@keyframes shake{
    0% {
        transform: translateX(0)
    }
    25% {
        transform: translateX(15px);
    }
    50% {
        transform: translateX(-15px);
    }
    100% {
        transform: translateX(0px);
    }
}

/***************************** End Shaker  ***********************************************/

/***************************** Start Footer  ***********************************************/

.footer-flex-container {
    padding-top: 1vh;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
    background-color: rgb(49, 49, 49);
}

.footer-flex-item-left, .footer-flex-item-right, .footer-flex-item-center {
    width: 40%;
    color: white;
    padding-top: 3vh;
    text-align: center;
}

.footer-flex-item-left {
    justify-self: left;
}

.footer-flex-item-right {
    justify-self: right;
}

.footer-flex-item-center {
    margin-top: 3vh;
    margin-bottom: 3vh;
    justify-self: center;
}

/***************************** End Footer  ***********************************************/
