.container_fluid{
    position: relative;
}

.container_fluid > .background{
    background: var(--main_light);
    width: 70%;
    height: 450px;
    position: absolute;
    top: 4%;
    right: 0;
    z-index: -1;
}

.container > .title_block{
    height: 300px;
    display: flex;
    align-items: center;
    margin-left: 12px;
    
}
.container > .title_block  .title{
    font-size: 48px;
    letter-spacing: 8px;
}

.container > .title_block  .text{
    color: var(--second_dark);
    font-size: 16px;
    letter-spacing: 4px;
    margin-top: 12px;
    font-weight: 400;

}

.content_box{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.content_box > .sub_nav{
    width: 70%;
}
.content_box > .sub_nav > li > a{
    display: block;
    margin-right: 24px;
    font-size: 16px;
    color: var(--main_dark);
    position: relative;
    padding-bottom: 4px;
}
.content_box > .sub_nav > li > a:before{
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    border-bottom: 1px solid var(--main_dark);
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
}
.content_box > .sub_nav > li > a:hover:before{
    width: 100%;
  }
.content_box > .sub_nav > li > .active{
    border-bottom: 1px solid var(--main_dark);
    padding-bottom: 4px;
}


.filter{
    /* box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center; */
    border: 1px solid var(--main_dark);
    font-size: 14px;
    cursor: pointer;
    position: relative;
    /* padding-right: 8px; */
    min-width: 120px;
    transition: .5s;
    padding:4px 18px;
}

.filter > img{
    width: 20px;
    height: 20px;
    display: block;
}
.filter > p{
    /* color: white; */
    box-sizing: border-box;
    padding:6px 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--main_dark);
}

.filter > .filter_select {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    top:35px;
    left: 0;
    /* border: 1px solid var(--second_dark); */
    background: var(--main_light);
    display:none;

}
.filter:hover{
    background: var(--main_dark);
    color: white;

}
/* .filter:hover > p{
    color: white;
} */
.filter > p:hover .filter > .filter_select{
    opacity: 1;
}

.filter > .filter_select > li{
    position: relative;
    display: inline-block;

}
.filter > .filter_select > li > a{
    font-size: 14px;
    padding: 6px 12px ;
    display: block; 
    /* transition: .4s; */
}
.filter > .filter_select > li:before{
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    border-bottom: solid 1px var(--main_dark);
    margin-bottom: 4px;
    left: 10px;
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}
.filter > .filter_select > li:hover:before{
    width: calc(100% - 24px);
}
/* .filter > .filter_select > li:hover, .filter > .filter_select > li:hover a{ 
    background: var(--second_dark);
    color: white;
} */
.info_block {
    margin-top: 48px;
}
.info_block .text_block{
    position: relative;
}

.info_block > a {
    position: relative;
}
.info_block > a > .event_tag{
    position: absolute;
    top: 0;
    right: 0;
    background: var(--highlight_dark);
    color: white;
    padding: 6px 12px;
    text-align: center;
    font-size: 14px;
}
.info_block .text_block .icon_block{
    position: absolute;
    top: -50%;
    right: 12px;
    /* border: 1px solid var(--main_dark); */
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 1s;
}
.info_block > a:hover .text_block .icon_block{
    opacity: 1;
}

.info_block > a figure img{
    transition: .5s;
}
.info_block > a:hover figure> img{
    /* transform: scale(1.2); */
    filter:opacity(.7);
    
}
.info_block > a > .text_block > .price_discount{
    text-decoration: line-through;
}
.info_block > a > .text_block > .final_price{
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--highlight_dark);
}
.info_block .text_block .icon_block > img{
  
    width: 20px;
    height: 20px;
}

.product_detail_page{
    cursor: pointer;
}
.info_block > .product_detail_venue > figure{
    width: 100%;
    height: 75%;
}
/* .product_detail_venue{
    width: 100%;
    height: 75%;
} */
.product_pagination{
    margin-top: 72px;
}
.product_pagination > ul{
    /* display: flex; */
    justify-content: center;
}

.product_pagination > ul > li > a, .product_pagination > ul > li > a img{
    display: block;
}
.product_pagination > ul > li > a.disabled{
    background: var(--border_color);
    padding: 0 6px;
    cursor: default;
}
.product_pagination > ul > li > a.current{
    color: var(--highlight_dark);
    font-weight: bold;
    border-bottom: 1px solid var(--highlight_dark);
}
.product_pagination > ul > li {
    padding: 12px;
}
.product_pagination > ul > li > div{
    
}
.product_pagination > ul > li > div .line{
    width: 50px;
    border-bottom: 1px solid var(--main_dark);
}
@media (max-width: 767px) {
    .venue_outter_block{
        grid-template-columns: repeat(1,1fr);
        margin: 48px 0 12px;
    }
    .venue_outter_block > a > .text_block{
        padding: 12px;
    }
    .venue_outter_block > a > .text_block > .title_block > p{
        font-size: 16px;
    }
    .container > .title_block{
        height: unset;
        padding: 20px 8px 4px;
    }
    .container > .title_block  .title{
        font-size: 20px;
        letter-spacing: 4px;
        font-weight: 400;
    }
    .container > .title_block .text{
        font-size: 14px;
        letter-spacing: 2px;
        line-height: 1.6;
    }
    .content_box{
        flex-direction: column;
        padding: 0 8px;
    }
    .content_box > .sub_nav{
        width: 100%;
        overflow: scroll;
        padding: 0 8px;
        margin-top: 12px;

    }
    .content_box > .sub_nav > li{
        /* min-width: auto; */
        word-wrap: nowrap !important;
    }
    .content_box > .sub_nav > li a {
        word-break: keep-all;
        margin-right: 12px;
        font-size: 15px;
    }
    .filter{
        margin-top: 24px;
        margin-left: 8px;
    }
    .info_block > a:hover figure> img{
        /* transform: scale(1.2); */
        filter:opacity(1);
        
    }
}