.clearfix:after {
    content: " ";
    /* Older browser do not support empty content */
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.cart {
    width: 96%;
    max-width: 1000px;
    height: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    overflow: hidden;
    background-color: white;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, .3);
}

.cart .cart-product {
    width: 40%;
    height: 100%;
    float: left;
    position: relative;
}

.cart .cart-product .product {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.cart .cart-product .product .product-slideshow {
    max-width: 350px;
    margin: 0 auto;
    position: relative;
}

.cart .cart-product .product .product-slideshow .productSlides {
    display: none;
}

.cart .cart-product .product .product-slideshow .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    position: relative;
    top: -36px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    /* Fading animation */
}

.cart .cart-product .product .product-slideshow .dot.active {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 7px rgba(0, 0, 0, .6);
}

.cart .cart-product .product .product-slideshow .dot:hover {
    background-color: rgba(255, 255, 255, .8);
}

.cart .cart-product .product .product-slideshow .dot .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.cart .cart-product .product .product-name {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2rem;
    text-align: center;
    margin-top: -22px;
}

.cart .cart-product .product .product-code-name {
    font-size: 0.8rem;
    font-weight: 300;
    text-align: center;
    margin: 8px auto 5px;
    color: #000;
}

.cart .cart-product .product .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-align: center;
    color: yellow;
}

.cart .cart-product .round-shape {
    width: 125%;
    height: 150%;
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #ff5b2e;
    box-shadow: 0 0 25px rgba(0, 0, 0, .3);
    z-index: 1;
}

.cart .cart-info {
    width: 60%;
    height: 100%;
    float: right;
    position: relative;
}

form table .subtotal {
    font-weight: bold;
    text-align: right;
}

form table .quantity {
    width: 20%;
    max-width: 20%;
    text-align: right;
}

form table .unit-price {
    text-align: right;
    max-width: 30%;
    width: 30%;
}

form table .delete {
    width: 5%;
    max-width: 5%;
}

.cart .cart-info .info {
    width: 90%;
    height: 85%;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0%, -50%);
}

form table .background {
    height: 30px;
    line-height: 30px;
    background: #EAEDF0;
}

form table {
    font-size: 12px;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.cart .cart-info .info h2 {
    font-size: 2.25rem;
    margin-left: 1rem;
}

.cart .cart-info .info form .form-list {
    margin-top: 1.5rem;
    margin-left: 3.5rem;
}

.cart .cart-info .info form .form-list .form-list-row {
    margin: 1rem 0;
}

.cart .cart-info .info form .form-list .form-list-row label {
    font-size: 1rem;
}

form .ree-btn {
    margin-left: 3.5rem;
}

.cart .cart-info .info form .form-list .form-list-row input {
    width: 70%;
    font-size: 1rem;
    padding: 0.4rem 0;
    border: none;
    display: inline-block;
    border-bottom: solid 2px #999;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cart .cart-info .info form .form-list .form-list-row input:focus {
    border-color: #cdb196;
}

.cart .cart-info .info form .form-list .form-list-row .user .fa-user {
    color: #999;
    font-size: 1rem;
}

.cart .cart-info .info form .form-list .form-list-row .user input {
    position: relative;
    left: -16px;
    padding-left: 30px;
}

.cart .cart-info .info form .form-list .form-list-row .number .fa-credit-card {
    color: #999;
    font-size: 1rem;
}

.cart .cart-info .info form .form-list .form-list-row .number input {
    position: relative;
    left: -20px;
    padding-left: 30px;
}

.cart .cart-info .info form .form-list .form-list-row .date {
    float: left;
}

.cart .cart-info .info form .form-list .form-list-row .date input {
    width: 60px;
    text-align: center;
}

.cart .cart-info .info form .form-list .form-list-row .date .year {
    margin-left: 1.5rem;
}

.cart .cart-info .info form .form-list .form-list-row .cvc {
    float: left;
    margin-left: 6rem;
    text-align: center;
}

.cart .cart-info .info form .form-list .form-list-row .cvc .fa-question-circle {
    color: dodgerblue;
    display: inline-block;
    position: relative;
    left: 0.75rem;
}

.cart .cart-info .info form .form-list .form-list-row .cvc input {
    width: 70px;
    text-align: center;
}

.cart .cart-info .info form .form-list .form-list-row .checkbox {
    margin-top: 2rem;
}

.cart .cart-info .info form .form-list .form-list-row .checkbox input {
    width: auto;
}

.cart .cart-info .info form .form-list .form-list-row .checkbox span {
    font-size: 0.8rem;
}

.cart .cart-info .info form button {
    color: white;
    font-size: 1rem;
    margin-left: 1rem;
    padding: 1rem 2.5rem;
    position: absolute;
    bottom: 0;
    border: none;
    border-radius: 3px;
    background-color: #cdb196;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    transition: all 0.3s ease;
}

.cart .cart-info .info form button:hover {
    background-color: #b59779;
}
