.programacao_hollywood_home {
    font-family: "Druk", Sans-serif;
    width: 80%;
    margin: auto;
    max-width: 1200px;
}

@media (max-width: 768px) {
    .programacao_hollywood_home {
        width: 100%;
    }
}

.programacao_hollywood_home .title {
    display: flex;
    align-items: center;
	justify-content: space-between;
  margin: 0 20px;
}


@media (max-width: 768px) {
  .programacao_hollywood_home .title {
      flex-direction: column;
      align-items: flex-start;
  }
}

.programacao_hollywood_home .title span {
    border-bottom: solid #07A7E1 1px;
    flex: 1;
}

.programacao_hollywood_home .title h3 {
    color: #07A7E1;
    text-transform: uppercase;
    font-size: 45px;
}

.programacao_hollywood_home .title a {
	font-size: 18px;
	margin: 0;
	border: 2px solid #07A7E1;
	color: #07A7E1 !important;
	padding: 10px 30px 10px 30px;
	text-transform: uppercase;
	cursor: pointer;
}


.programacao_hollywood_home .current_month {
	color: #b42779;
	text-transform: uppercase;
	text-align: center;
	font-size: 33px;
	margin-top: 18px;
}

.programacao_hollywood_home .date_picker {
    display: flex;
    align-items: center;
}


.programacao_hollywood_home .date_picker .previous, .programacao_hollywood_home .date_picker .next {
    display: block;
    height: 25px;
    width: 13px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.programacao_hollywood_home .date_picker .previous {
    background-image: url(day_prev.svg);

}

.programacao_hollywood_home .date_picker .next {
    background-image: url(day_next.svg);
}

.programacao_hollywood_home .date_picker .dates {
    margin: 0 5%;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.programacao_hollywood_home .date_picker .dates .date {
    color: #07A7E1;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}

.programacao_hollywood_home .date_picker .dates .date.active {
    font-size: 68px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #07A7E1;
}


@media (max-width: 768px) {
    .programacao_hollywood_home .date_picker {
        margin: auto;
        width: 80%;
    }

    .programacao_hollywood_home .date_picker .dates .date:nth-child(-n+3),
    .programacao_hollywood_home .date_picker .dates .date:nth-child(n+9) {
        display: none;
    }

    .programacao_hollywood_home .date_picker .dates .date.active {
        font-size: 36px;
        width: 50px;
        height: 50px;
    }
}

.programacao_hollywood_home .timeline {
    margin-top: 34px;
}

@media (max-width: 768px) {
  .programacao_hollywood_home .timeline {
      margin: 0 50px;
  }
}

.programacao_hollywood_home .timeline .slick-list {
    border-left: solid 2px #07A7E1;
    border-right: solid 2px #07A7E1;
    padding-top: 20px !important;
}

.programacao_hollywood_home .timeline .slick-next, .programacao_hollywood_home .timeline .slick-prev {
    z-index: 1;
    width: 80px;
    height: 80px;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #07A7E1;
    border-radius: 50%;
}

.programacao_hollywood_home .timeline .slick-next {
    transform: translate(50%, -50%);
}

.programacao_hollywood_home .timeline .slick-prev {
    left: 0;
}

.programacao_hollywood_home .timeline .slick-next {
    right: 0;
}

.programacao_hollywood_home .timeline .slick-prev:before, .programacao_hollywood_home .timeline .slick-next:before {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
    background-size: cover;
    background-position: center;
}

.programacao_hollywood_home .timeline .slick-prev:hover:before, .programacao_hollywood_home .timeline .slick-next:hover:before{
    opacity: 0.8;
}

.programacao_hollywood_home .timeline .slick-prev:before {
    left: 0;
    content: '';
    background-image: url(timeline_arrow_mask.svg);
}

.programacao_hollywood_home .timeline .slick-next:before {
    right: 0;
    content: '';
    background-image: url(timeline_arrow_mask.svg);
    transform: rotate(180deg);
}

.programacao_hollywood .movie {
    padding: 0 15px;
    cursor: pointer;

}

.programacao_hollywood .movie .art {
    background-position: center;
    background-size: cover;
    padding-bottom: 143%;
    background-color: #07A7E1;
    position: relative;
}

.programacao_hollywood .movie .art img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programacao_hollywood .movie .art .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 5, 45, 0.8);
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.programacao_hollywood .movie:hover .art .overlay {
    opacity: 1;
}

.programacao_hollywood .movie .art .overlay .plus {
    display: block;
    height: 40px;
    width: 40px;
    background-image: url(plus_sign.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.programacao_hollywood .movie .art .overlay > div {
    flex: 1;
    text-align: center;
    color: white;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px;
}

.programacao_hollywood .movie .art .overlay > div h4 {
    text-transform: uppercase;
    margin: 0 0 5px;
    font-size: 23px;
}

.programacao_hollywood .movie .time {
    color: white;
    text-align: center;
    margin-bottom: -8px;
    margin-top: 6px;
    font-size: 20px;
}

.programacao_hollywood .movie .rating {
    display: flex;
    margin-top: -3px;
    justify-content: center;
}

.programacao_hollywood .movie .rating > span {
    display: inline-block;
    margin-right: 6px;
    height: 18px;
    width: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(rating_star-empty.svg);
    cursor: pointer;
}

.programacao_hollywood .movie .rating > span.active {
    background-image: url(rating_star-full.svg);
}

.programacao_hollywood_list {
    display: flex;
    font-family: "Druk", Sans-serif;
    max-width: 1000px;
    margin: auto;
}

.programacao_hollywood_list .col-right {
    flex: 1;
}

.programacao_hollywood_list.programacao .col-right {
    margin-left: 145px;
}

.programacao_hollywood_list .filters {
    border-bottom: solid 1px #07A7E1;
    margin: 0 14px 36px;
}

.programacao_hollywood_list .movies {
    display: flex;
    flex-wrap: wrap;
}

.programacao_hollywood_list .movies .movie {
    width: 33.33333%;
}

.programacao_hollywood_list.favoritos .movies .movie {
    width: 25%;
}


@media (max-width: 768px) {
    .programacao_hollywood_list {
        flex-direction: column;
    }

    .programacao_hollywood_list.programacao .col-right {
        margin: 0;
    }

    .programacao_hollywood_list .movies {
        justify-content: center;
    }

    .programacao_hollywood_list .movies .movie {
        width: 50% !important;
    }
}

@media (max-width: 500px) {
    .programacao_hollywood_list .movies .movie {
        width: 80% !important;
    }
}


.programacao_hollywood_list .movies .detalhes {
    text-transform: uppercase;
    color: white;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 14px;
}


.programacao_hollywood_list .movies .detalhes .time {
    color: #07A7E1;
    font-size: 100%;
    font-weight: bold;
}

.programacao_hollywood_list .date_picker {
    align-self: flex-start;
    /*margin-left: 115px;*/
    z-index: 100;
    /*top: 50vh;
    transform: translateY(-50%);*/
    position: relative;
}

.programacao_hollywood_list .date_picker .current_month {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    text-transform: uppercase;
    color: white;
    font-size: 65px;
    height: 110px;
    background-color: #07A7E1;
    margin: 0;
    border-right: solid black 1px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.programacao_hollywood_list .date_picker .dates {
    border: solid #07A7E1 1px;
    margin: 20px 0;
    width: 100px;
}

.programacao_hollywood_list .date_picker .dates .date {
    color: #07A7E1;
    text-align: center;
    font-size: 42px;
    line-height: 0.9;
    text-transform: uppercase;
    padding: 10px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.programacao_hollywood_list .date_picker .dates .date.active {
    font-size: 60px;
    height: 110px;
    background-color: #07A7E1;
    color: white;
}

.programacao_hollywood_list .date_picker .dates .date:not(:last-child) {
    border-bottom: solid #07A7E1 1px;
}

.programacao_hollywood_list .date_picker .dates .date span {
    display: block;
    font-size: 15px;
}

@media (max-width: 768px) {
    .programacao_hollywood_list .date_picker {
        margin: 0;
        align-self: stretch;
        display: flex;
        margin-bottom: 20px;
        margin-top: 30px;
        top: 0;
        transform: none;
        position: relative;
    }

    .programacao_hollywood_list .date_picker .dates {
        display: flex;
        width: auto;
        margin: 0;
        flex: 1;
    }

    .programacao_hollywood_list .date_picker .dates .date {
        font-size: 25px;
        flex: 1;
        height: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .programacao_hollywood_list .date_picker .dates .date.active {
        height: auto;
        font-size: 40px;
        width: 75px;
        flex: none;
    }

    .programacao_hollywood_list .date_picker .dates .date span {
        font-size: 10px;
    }

    .programacao_hollywood_list .date_picker .current_month {
        bottom: 100%;
        top: auto;
        transform: translateX(-50%);
        left: 50%;
        height: auto;
        right: auto;
        width: 75px;
        justify-content: center;
        font-size: 40px;
        margin-left: 1px;
    }

    .programacao_hollywood_list .date_picker .previous, .programacao_hollywood_list .date_picker .next {
        transform: rotate(-90deg);
    }

    .programacao_hollywood_list .date_picker .dates .date:not(:last-child) {
        border-bottom: none;
        border-right: solid #07A7E1 1px;
    }
}

.programacao_hollywood_list .date_picker .previous, .programacao_hollywood_list .date_picker .next {
    display: block;
    height: 18px;
    width: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin: auto;
}

.programacao_hollywood_list .date_picker .previous {
    background-image: url(day_prev_v.svg);

}

.programacao_hollywood_list .date_picker .next {
    background-image: url(day_next_v.svg);
}

.programacao_hollywood_list .search_form {
    width: 240px;
    margin-left: -100px;
    margin-right: 50px;
}

.programacao_hollywood_list .search_form h4 {
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: bold;
}

.programacao_hollywood_list .search_form .search_input {
    display: flex;
    border-bottom: solid 1px #07A7E1;
    margin-right: 27px;
}

.programacao_hollywood_list .search_form .search_input input {
    flex: 1;
    background-color: transparent;
    border: none;
    color: #07A7E1;
    outline: none;
    font-size: 42px;
    text-transform: uppercase;
    width: 1px;
    line-height: 50px;
    margin-left: -3px;
    margin-right: 8px;
}

.programacao_hollywood_list .search_form .search_input input:focus,
.programacao_hollywood_list .search_form .search_input input:active {
    border: none;
    outline: none;
}

.programacao_hollywood_list .search_form .search_input.with-placeholder {
    background-image: url(./pesquisar_placeholder_small.svg);
    background-size: auto 70%;
    background-repeat: no-repeat;
    background-position: center left;
}

.programacao_hollywood_list .search_form .search_input span.icon {
    background-image: url(./icon_pesquisar.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 54px;
    height: 54px;
    margin-right: -27px;
    margin-bottom: -1px;
    border: solid 1px #07A7E1;
    border-radius: 50%;
    cursor: pointer;
}

.programacao_hollywood_list .search_form .generos {
    margin: -5px;
}

.programacao_hollywood_list .search_form .generos span {
    margin: 4px 2px;
    border: solid 1px #07A7E1;
    color: #07A7E1;
    text-transform: uppercase;
    font-weight: bold;
    padding: 4px 7px;
    display: inline-block;
    cursor: pointer;
}

.programacao_hollywood_list .search_form .generos span.active {
    border: solid 1px #07A7E1;
    color: #00052d;;
    background-color: #07A7E1;
}

@media (min-width: 769px) {
    .programacao_hollywood_list .search_form .generos span:hover {
        border: solid 1px #07A7E1;
        color: #00052d;;
        background-color: #07A7E1;
    }
}

@media (max-width: 768px) {
    .programacao_hollywood_list .search_form {
        width: auto;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
        margin-bottom: 50px;
    }
}

.programacao_hollywood_list .filters {
    color: white;
    display: flex;
    justify-content: flex-end;
}

.programacao_hollywood_list .filters > div {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.programacao_hollywood_list .filters > div label {
    text-transform: uppercase;
    color: #07A7E1;
    font-size: 20px;
    cursor: pointer;
    background-image: url(dropdown_toggle_blue.svg);
    background-size: auto 95%;
    background-position: bottom 1px right 1px;
    background-repeat: no-repeat;
    transition: all 0.3s;
    padding-right: 26px;
    padding-top: 3px;
}

.programacao_hollywood_list .filters > div.visible label {
    background-image: url(dropdown_toggle_close_blue.svg);
}


.programacao_hollywood_list .filters > div .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2;
    background-color: #07A7E1;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.programacao_hollywood_list .filters > div .dropdown .close-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.programacao_hollywood_list .filters > div.visible .dropdown {
    opacity: 1;
    pointer-events: initial;
}

.programacao_hollywood_list .filters > div .dropdown span {
    display: block;
    padding: 5px 15px;
    text-transform: uppercase;
    position: relative;
}

.programacao_hollywood_list .filters > div .dropdown span:hover,
.programacao_hollywood_list .filters > div .dropdown span.active {
    color: #07A7E1;
    background-color: white;
}

.programacao_hollywood_list .copy_no_results {
    text-align: center;
    text-transform: uppercase;
    color: white;
    margin-top: 30px;
}

.programacao_hollywood_list .copy_no_results a {
    color: #07A7E1
}
