*{
    font-family:'Roboto',sans-serif;
    margin:0;
}

body{
    background-color:#2c3e50;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
}

.main-container{
    padding:20px;
    width:40%;
    background-color:#25262c;
    border-radius:5px;
    box-shadow:0 1px 2px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.02), 0 8px 16px rgba(0,0,0,0.02), 0 16px 32px rgba(0,0,0,0.02), 0 32px 64px rgba(0,0,0,0.02)
}

.header .first-line{
    display:flex;
    flex-direction:row;
    align-items:center;
}

h2{
    color:#fff;
    margin-right:10px;
}

.tag{
    background-color:#515155;
    border-radius:3px;
    margin:0 5px;
    padding:5px;
    color:#fff;
    font-weight:700;
    font-size:0.8em;
}

p.cinema{
    color:#aaaaaa;
    font-size:0.9em;
}

p.date{
    color:#ffffff;
    margin:10px 0;
    font-weight:bold;
}

hr{
    border-top:1px solid #515155;
    border-bottom:0;
}

.screen{
    perspective:300px;
}

.cinema-screen{
    width:80%;
    height:130px;
    background-image:url('img/screen.jpg');
    background-size:cover;
    background-position:50%;
    margin:40px auto 20px auto;
    transform:rotateX(-20deg);
    -webkit-box-shadow:0px 8px 23px -9px rgba(227,218,227,0.75);
    -moz-box-shadow: 0px 8px 23px -9px rgba(227,218,227,0.75);
    box-shadow: 0px 8px 23px -9px rgba(227,218,227,0.75);    
}



.row{
    margin:0 auto;
    width:80%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    color:#919192;
    margin-bottom:20px;
}

.row .circle{
    width:25px;
    height:25px;
    border-radius:100%;
    cursor:pointer;
    text-align:center;
    transition:all 0.25s ease;
    position:relative;
}

.row .blue-circle:hover,.row .green-circle:hover{
    color:#fff;
}

.row .circle:after{
    content:"";
    width:0;
    height:0;
    top:0;
    left:0;
    display:block;
    position:absolute;
    transition:all 0.25s ease;
    transform:scale(0);
    transform-origin:center;
}

.row .circle:hover:after{
    content:"";
    display:block;
    position:absolute;
    width:35px;
    height:35px;
    top:-6px;
    left:-6px;
    transform:scale(1);
    border-radius:100%;
}

.row .blue-circle:hover:after{
    border:1px solid #4eaaff;
}

.row .green-circle:hover:after{
    border:1px solid #66d258;
}

.row .blue-circle , .footer .blue-circle{

    background-color:#4eaaff;
    color:#4eaaff;
}

.row .green-circle, .footer .green-circle{
    background-color:#66d258;
    color:#66d258;
}

.seat-picker{
    perspective:600px;
}

.seats{
    transform:rotateX(35deg);
    margin-bottom:60px;
}



.footer{
    display:flex;
    flex-direction:row;
    color:#919192;
    font-size:0.9em;
    font-weight:bold;
    margin-top:25px;
}

.footer .circle{
    width:10px;
    height:10px;
    border-radius:100%;
    margin-right:8px;
}

.footer .price-container{
    display:flex;
    flex-direction:row;
    align-items:center;
    margin-right:20px;
}

button{
    cursor:pointer;
    transition:all 0.25s ease;
}

button.next{
    color:#fff;
    border-radius:5px;
    background-color:#3398dc;
    font-weight:bold;
    border:0;
    padding:8px 25px;
    margin-left:auto;
    font-size:1em;
}

button.next:hover{
    background-color:#0d6bab;
}

button.close{
    background:transparent;
    width:50px;
    height:50px;
    color:#aaa;
    border-radius:100%;
    text-align:center;
    border:2px solid #aaa;
    font-size:1.3em;
    margin-left:auto;
}

button.close:hover{
    color:#fff;
    border:2px solid #fff;
}

@media screen and (max-width:1200px){
    .main-container{
        width:60%;
    }
}


@media screen and (max-width:992px){
    .main-container{
        width:80%;
    }
}

@media screen and (max-width:768px){
    .main-container{
        width:90%;
        padding:10px;
    }
}