.cart-modal {
    width: 100%;
    position: fixed;
    top: 30px;
    animation: showit 0.3s ease;
    z-index: 1001;
}

.cart-modal .cart-modal-inner {
    background-color: #fff;
    border-radius: 5px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cart-modal > div {
    text-align: left;
}

.cart-modal .modal-header {
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
}

.cart-modal .close-modal {
    font-size: 21px;
    color: #e5e5e5;
    cursor: pointer;
    top: 10px;
    right: 10px;
    position: absolute;
	z-index: 2;
}

.cart-modal .close-modal:hover {
    color: #808080;
}

.cart-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    animation: showit 0.3s ease;
}

.cart-modal .product-row {
    padding: 10px;
}

.cart-modal .product-row .cart-button {
    padding: 10px;
}

.cart-modal .product-row .cart-button a {
    font-size: 12px;
    line-height: 20px;
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
    background-color: #005eb8;
    min-width: 100%;
    display: block;
    text-align: center;
}

.cart-modal .product-row .name-cont {
    padding: 15px;
}

.cart-modal .product-row .prices-cont {
    text-align: right;
    padding: 15px 30px 15px 10px;
}

.cart-modal .product-row .regular-price, .cart-modal .product-row .action-price {
    font-weight: bold;
    color: #000;
    padding: 2px 0;
}

.cart-modal .product-row .regular-price.outlined {
    text-decoration: line-through;
}

.cart-modal .product-row .action-price {
    color: #ef2809;
}

.cart-modal .product-row .product-image {
    max-width: 100px;
}

.upsel-products {
    background-color: #f5f5f5;
    padding: 10px 15px;
}

.upsel-title {
    color: #222;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
}

.upsel-item {
    margin: 0;
    padding: 10px;
    text-decoration: none;
    color: #222;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 2px 12px -4px rgba(0,0,0,.1);
}

.upsel-item .img-container {
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.upsel-item .img-container img {
    position: absolute;
    max-width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.upsel-name {
    font-size: 12px;
    line-height: 15px;
    height: 45px;
}

.old-price {
    line-height: 20px;
    height: 20px;
    margin-bottom: 0;
    white-space: nowrap;
    text-decoration: line-through;
    font-size: 12px;
    color: #000;
}

.actual-price {
    line-height: 20px;
    height: 20px;
    margin-bottom: 0;
    white-space: nowrap;
    text-decoration: none;
    color: #ef2809;
}

.upsel-button {
    margin-top: 10px;
}

.upsel-button a {
    font-size: 16px;
    line-height: 20px;
    padding: 5px 10px;
    border-radius: 3px;
    color: #005eb8;
    border-color: #005eb8;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    width: 100%;
    margin-top: 10px;
    position: relative;
    display: block;
    text-align: center;
}

@keyframes showit {
    from {opacity: 0;}
    to {opacity: 1;}
}