/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 24-sep-2021, 13:39:15
    Author     : tuenw
*/

#box-ajax_cart{
    max-width: 33%;
    opacity: 0;
    position: fixed;
    top: 80px;
    background: #FFF;
    color: #000;
    right: 20px;
    z-index: 999;
    padding: 10px;
    /*margin: 3.5em;*/
    flex: 0 0 150px;
    /* height: 150px; */
    box-shadow: rgb(50 50 105 / 15%) 0px 2px 5px 0px, rgb(0 0 0 / 5%) 0px 1px 1px 0px;
    -webkit-transition: 1s linear;
    transition: 1s linear;
    display: none;
}
#box-ajax_cart .product_info{
    margin: 0;
    margin-left: 10px;
    font-size: .9em;}
#box-ajax_cart  .info_box_container{display: flex;
    flex-direction: row;}
#box-ajax_cart  .info_box_container p{margin: 0;}
#box-ajax_cart  .info_box_container a{    
    font-size: 14px;
    margin: 10px auto;
    display: inline-block;
    padding: 8px 10px;
    /*width: 100%;*/
}
.info_box_container img{    max-width: 100px; max-height: 100px;}
@media (max-width: 768px) {
    #box-ajax_cart{
        max-width: 100%;
        right: 0px;
        margin: 0 10px;
    }
}