.cart-btn {
    position: fixed;
    bottom: 196px;
    right: 10px;
    padding: 30px 10px 10px;
    text-align: center;
    z-index: 99;
    background: #3882DB;
    width: 200px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    -webkit-box-shadow: 0px 10px 25px 0 rgb(112 112 112 / 22%);
    -moz-box-shadow: 0px 10px 25px 0 rgba(112, 112, 112, 0.22);
    -ms-box-shadow: 0px 10px 25px 0 rgba(112, 112, 112, 0.22);
    -o-box-shadow: 0px 10px 25px 0 rgba(112, 112, 112, 0.22);
    box-shadow: 0px 10px 25px 0 rgb(112 112 112 / 22%);
}
.cart-btn::before {
    content: "";
    position: fixed;
    bottom: 300px;
    right: 55px;
    background-image: url(/asset/img/icon-cart.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 108px;
    height: 108px;
    z-index: 9;
}
.cart-btn::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 46px;
    display: inline-block;
    border-style: solid;
    border-width: 14px 0 14px 8px;
    border-color: transparent transparent transparent #fff;
}
.cart-btn:hover {
    text-decoration: none;
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.cart-btn-ttl {
    display: block;
    font-size: 26px;
    line-height: 1.5;
}
.cartcancel-btn {
    background: rgb(119 179 255);
    min-width: 130px;
    width: 100%;
    color: #fff;
}
.cartcancel-btn::hover {
    text-decoration: none;
    filter: alpha(opacity=50);
    opacity: 0.5;
}
@media screen and (max-width: 768px) {
    .cart-btn {
        bottom: 20px;
        right: auto;
        left: 50%;
        padding: 10px 10px 10px 20px;
        margin: 0 0 0 -110px;
    }
    .cart-btn::before {
        bottom: 40px;
        right: auto;
        left: 50%;
        margin: 0 0 0 -140px;
        width: 66px;
        height: 66px;
    }
}