@charset "UTF-8";
/* CSS Document */
#mask-popup {
    position: fixed;
    z-index: 998;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    cursor: pointer;
}

.div-popup {
    position: fixed;
    width: 640px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: #fff;
    color: #2C3E50;
    z-index: 99999;
    -webkit-box-shadow: 0 15px 20px 0 rgb(5 5 5 / 5%);
    -moz-box-shadow: 0 15px 20px 0 rgba(5, 5, 5, .05);
    box-shadow: 0 15px 20px 0 rgb(5 5 5 / 5%);
    transition: all .3s ease;
    display: none;
}

.popup-cart {
    width: 640px;
    padding: 20px;
    top: 50px;
    right: 50px;
    border: 0;
    background: #fff;
}

.line-cart {
    width: 100%;
    float: left;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.line-cart .image {
    width: 160px;
    float: left;
}

.line-cart .product {
    width: 290px;
    margin-left: 20px;
    float: left;
}

.line-cart .qty {
    width: 20px;
    margin-left: 20px;
    float: left;
}

.line-cart .price {
    width: 60px;
    margin-left: 20px;
    text-align: right;
    float: left;
}

.popup-cart .my-cart {
    clear: both;
    width: calc(50% - 10px);
    float: left;
    padding: 20px 32px;
    background: #efefef;
    border-radius: 4px;
    line-height: 20px;
    text-align: center;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all .2s ease;
}
.popup-cart .my-cart:hover {
    background: #ccc;
}

.popup-cart .checkout {
    width: calc(50% - 10px);
    float: right;
    padding: 20px 32px;
    background: #333;
    border-radius: 4px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all .2s ease;
}
.popup-cart .checkout:hover {
    background: #000;
}