@charset "utf-8";
/* CSS Document */
ul.products-btn{
    margin: 15px 0 10px;
    padding: 0;
    display: flex!important;
    justify-content: space-between;
}

ul.products-btn li{
    width: 48%;
    height: 30px;
    border: 1px solid #4d4d50;
    background-color: #FFFFFF;
    list-style-type: none;
    border-radius: 50px;
    transition: all 0.2s;
}

ul.products-btn li a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4d4d50;
    border-radius: 50px;
    font-weight: bold;
}

ul.products-btn li a div{
    width: 20px;
    height: auto;
    margin-right: 15px;
}

ul.products-btn li a div img{
    width: 100%;
    height: auto;
}

ul.products-btn li:hover{
    opacity: 0.5;
}

@page {
    size: 210mm 297mm!important; 
    margin: 6mm;
}

@media print {
   body{
       -webkit-print-color-adjust: exact;
       width: 100%!important;
       font-size: 9pt;
    }
    
    #menu_bg,
    header,
    footer{
        display: none!important;
    }
    
    main{
        width: 100%!important;
    }
    
    .movies{
        display: none;
    }
    
    .no-print{
        display: none!important;
    }
}






