/********
Floting Product Cart
*********/
.woosc-floting-cart-trigger {
    position: fixed;
    right: 10px;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0px 0px 15px #999;
    top: 50%;
    text-align: center;
    color: #fff;
    min-width: 80px;
    transition: 0.5s;
    background-color: #000;
}

.woosc-floting-trigger-item-count {
    width: 100%;
    padding: 20px 5px;
    position: relative;
    min-height: 50px;
}

.woosc-floting-trigger-cart-total {
    width: 100%;
    padding: 5px;
    min-height: 30px;
}

body.woosc-floating-cart-activated .woosc-floating-cart {
    right: 0px;
}

.woosc-floating-cart {
    position: fixed;
    right: -320px;
    z-index: 9;
    top: 0;
    bottom: 0;
    width: 320px;
    box-sizing: border-box;
    overflow-y: auto;
    border-left: 1px solid #f5f5f5;
    background-color: #fff;
    transition: 1s;
}

.woosc-floating-cart-inner {
    position: relative;
    height: 100vh;
    width: 100%;
}

.woosc-floating-cart-item-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 100px 20px;
    overflow: scroll;
}

.woosc-floating-cart-header, .woosc-floating-cart-footer {
    position: fixed;
    box-sizing: border-box;
    padding: 15px;
    display: block;
    width: 320px;
    z-index: 5;
}

.woosc-floating-cart-header {
    top: 0;
    background: #68bc44;
}

.woosc-floating-cart-header h3 {
    font-size: 22px;
    margin: 0;
    padding: 7.5px;
    color: #ffffff;
}

.woosc-floating-cart-item-wrapper ul {
    margin: 0 -20px;
    padding: 0;
}

.woosc-floating-cart-item-wrapper ul li {
    list-style: none;
    position: relative;
    display: block;
    border-bottom: 1px solid #f5f5f5 !important;
    padding: 10px 20px 10px 60px !important;
}

.woosc-floating-cart-item-wrapper ul li:nth-child(even) {
    background-color: #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.woosc-floating-cart-item-wrapper ul.woocommerce-mini-cart li a.remove_from_cart_button {
    position: absolute;
    left: 20px;
    top: 23px;
    padding: 5px;
    line-height: 7px;
    border-radius: 50%;
    transition: 0.5s;
    color: #FFF;
    display: block;
    height: 20px;
    width: 20px;
    background-color: #fe9b03;
    font-size: 14px;
}

.woosc-floating-cart-item-wrapper ul.woocommerce-mini-cart li a.remove_from_cart_button:hover {
    color: white;
    background-color: red;
    text-decoration: none;
}

.woosc-floating-cart-item-wrapper ul li a {
    display: block;
    color: inherit;
}

.woosc-floating-cart-item-wrapper ul li h4 {
    font-size: 16px;
}

.woosc-floating-cart-item-wrapper ul li img {
    float: right;
    max-width: 40px;
    padding: 2px;
    background-color: #fff;
    box-shadow: 0 0 2px #dedbdb;
    margin-top: 4px;
}

.woosc-floating-cart-footer {
    bottom: 0;
    background: #ffffff;
}

.woosc-floating-cart-footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.woosc-floating-cart-footer ul li {
    list-style: none;
    width: 50%;
}

.woosc-floating-cart-footer ul li:last-child a {
    background: #fe6a00;
}

.woosc-floating-cart-footer ul li a {
    padding: 5px 10px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    background: #68bc44;
    display: block;
}
