body{
    background-color: #621402;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}
a{
    color: #fff;
}
*{
    box-sizing: border-box;
}

.navbar{
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.header{
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(98, 20, 2, 0.31) 0%, #621402 85.62%), url(../img/bg.jpg) no-repeat center top  / cover;
    
}
.container{
    max-width: 1170px;
    margin: auto;
}
.menu{
    list-style-type: none;
    display: flex;
    margin: 0;
    margin-left: 17px;
}

.menu-item{
    margin-right: 25px;
}
.menu-link{
    text-decoration: none;
}

.user{
    margin-left: auto;
    display: flex;
    align-items: center;
}
.avatar{
    margin-left: 11px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
}

.film{
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.film-title-small{
    opacity: 0.5;
    font-size: 24px;
    line-height: 150%;
}

.film-title{
    font-size: 36px;
    line-height: 42px;
    margin-top: 11px;
    margin-bottom: 23px;
}

.film-description{
    font-size: 16px;
    line-height: 150%;
    max-width: 560px;
}

.film-trailer{
    margin:auto;

}

.film-details{
    margin-top: 50px;
    display: flex;
    align-items: center;
}
.time{
    display: flex;
    align-items: center;
}

.time-icon{
    margin-right: 14px;
}

.rating{
    display: flex;
    align-items: center;
    margin-left: 34px;
}

.rating-icon{
    margin-right: 14px;
}
.rating-current{
    font-size: 24px;
    line-height: 150%;
}

.session{
    margin-top: 62px;
    padding-top: 46px;
    padding-bottom: 63px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.session-date-block{
    display: flex;
}

.session-date-item{
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    text-align: center;
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: background-color 0.2s;
}

.session-label{
    margin-bottom: 20px;
    display: block;
}

.session-month{
    font-size: 16px;
    line-height: 19px;
}

.session-day{
    font-weight: 900;
    font-size: 30px;
    line-height: 35px;
}

.session-week{
    font-size: 19px;
    line-height: 22px;
}


.session-date-item:hover{
    cursor: pointer;
    background-color: #FE8E05;
    color: #621402;
}

.session-cinema-select, .session-cinema-time{
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    border-radius: 5px;
    padding: 18px;
    cursor: pointer;
    margin-top: 15px;
}

.session-cinema-select{
    min-width: 470px;
}
.session-cinema-time{
    min-width: 108px;
}

.session-cinema-select option{
    color: #621402;
}

.session-cinema-time option{
    color: #621402;
}


.scheme{
    background: rgba(36, 36, 36, 0.18);
    border-radius: 10px;
}

.scheme path:not(.light){
    fill: rgba(255, 255, 255, 0.2);
    transition: 0.2s;
    cursor: pointer;
}


.scheme path:not(.light):hover{
    fill: rgba(255, 255, 255, 0.5);
}

.scheme path.booked,
.scheme path.booked:hover{
    fill: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
}

.scheme path.active,
.scheme path.active:hover{
    fill:#FE8E05;
    stroke: #FE8E05;
}

.legend{
    max-width: 1024px;
    margin: auto;
    padding-top: 22px;
    padding-bottom: 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}
.legend-label{
    display: flex;
    align-items: center;
    margin-right: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.legend svg{
    margin-right: 15px;
}

.price{
    padding-top: 20px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label{
    display: block;
    font-size: 18px;
    line-height: 21px;
}
.price-tag{
    font-size: 52px;
    line-height: 61px;
}

.button{
    background: #FE8E05;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    padding: 24px 52px;
    text-decoration: none;
}
