
/*<!-- Main -->*/
 body{
     padding-top: 120px !important;
 }
@media screen and (max-width: 767px){
    body{
        padding-top: 151px !important;
    }
    .fbc-items{
        padding: 0 !important;
    }
    .fbc-items li:first-child{
        padding-left: 0 !important;
    }
    .fbc-items li a{
        font-size: 14px;
    }
}
.product-line-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}
.product-line-list li{
    width: 100%;
    height: 50px;
    border: 1px solid #ff272c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #ff272c;
    color: #fff;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 600;
}
.product-line-list li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    color: #ff272c;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 600;
}
.post_clickable a{
    text-decoration: none !important;
}
.post_clickable h4{
    margin-bottom: 15px !important;
}
.previews_price{
    font-weight: 700;
    font-size: 16px;
    color: #ff272c;
}
.badge{
    position: absolute;
    top: 10px;
    left: 20px;
    padding: 5px 10px;
    background: #ff272c;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
}
.fbc-items a, .fbc-items span,.fbc-separator{
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none !important;
}
table{
    width: 50%;
    border: 1px solid #ff272c;
    border-collapse: collapse;
    margin-top: 20px;
}
td{
    padding: 20px;
    font-size: 18px;
    font-family: 'Montserrat';
}
tr td:nth-child(1){
    font-weight: 700;
    border-right: 1px solid #ff272c;
}
tr{
    border-bottom: 1px solid #ff272c;
}
thead{
    background: #ff272c;
}
thead tr td{
    color: #fff;
}
.bde-post-meta{
    display: flex;
    flex-direction: column;
    gap: 20rem;
    margin: 50px 0 0 0 !important;
}
.bde-post-meta .ee-postmeta-before{
    margin-right: 20px;
    font-weight: 700;
}

/*<!-- Main -->*/


/*<!-- popup css -->*/

 .overlay {
     position: fixed;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     background: rgba(0, 0, 0, 0.7);
     transition: opacity 500ms;
     visibility: hidden;
     opacity: 0;
 }
.overlay.opend {
    visibility: visible;
    opacity: 1;
    z-index: 10001;
}

.popup {
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
    position: absolute;
    top: 0;
    right: 0;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #FF272C;
    padding: 0px 10px;
}
.popup .close:hover {
    color: #06D85F;
}
.popup .content {
    display: grid;
    grid-template-columns: 40% 5% 55%;
    width: 90%;
    margin: 0px auto;
}
.popup .content .product-extras {
    display: grid;
    grid-template-columns: 50% 50%;
    row-gap: 10px;
    margin-top: 20px;
}
.img-with-title {
    background-color: #a8d1df;
    display: grid;
    grid-template-columns: 20% 80%;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 20px;
}
.popup .img-with-title h3 {
    color: #FF272C;
    font-size: 28px;
}

@media screen and (max-width: 700px){
    .popup{
        width: 90%;
    }
    .popup .content {
        display: grid;
        grid-template-columns: 100%;
        row-gap: 20px;
    }
    .popup .content .product-extras {
        display: grid;
        grid-template-columns: 100%;
        row-gap: 10px;
    }
}

/*<!-- popup css -->*/