.floating-shopping-cart {
    width: 55px;
    height: 55px;
    position: fixed;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 5px #707070;
    cursor: pointer;
}

.cart-modal-container #floating_window {
    display: none;
}

.floating-shopping-cart .shopping-cart-icon {
    width: 30px;
}

.floating-shopping-cart .floating-cart-count-indicator {
    position: absolute;
    top: 2px;
    left: 25px;
    width: 25px;
    height: 25px;
    font-size: 16px;
    border-radius: 100px;
    text-align: center;
}

.cart-modal-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    opacity: 0;
}

.cart-modal-container.active {
    display: initial;
}

.cart-modal-container .shopping-cart-modal {
    overflow-y: scroll;
    height: 90%;
    width: 100%;
    max-width: 900px;
    border-radius: 5px;
    box-shadow: 0 0 5px #222;
    background-color: #fff;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media only screen and (min-width: 768px) {
    .cart-modal-container .shopping-cart-modal {
        height: 80%;
        width: 80%;
    }
}
@media only screen and (min-width: 1200px) {
    .cart-modal-container .shopping-cart-modal {
        height: 80%;
        width: 70%;
    }
}

.cart-loaded-container {
    width: 100%;
    padding: 0 15px 25px;
}

.cart-modal-container .close-cart-modal {
    font-size: 55px;
    font-weight: 500;
    cursor: pointer;
    margin: 0px 25px;
    color: #222;
}

/* Cart syles */
.step_row a {
    cursor:pointer;
}
.step_row a:link {
    color:#000000;
}
.step_row a:visited {
    color:#000000;
}
.step_row a:hover {
    color:#000000;
}
.step_row_click {
    color:#000000;
}
.step_row_selected {
    font-weight:bold;
    text-decoration:underline;
    font-size:12px;
}
.step_row_noaccess {
    color:#aaaaaa;
}
.cart_item_img {
    width:120px; 
    height:120px; 
    min-width:60px;
    padding:10px; 
    border:solid 1px #dddddd;
    text-align:center;
    vertical-align:middle;
    background-color:#ffffff;
}
.cart_item_img img {
    max-width:120px;
    max-height:55px;
}
@media only screen and (min-width: 768px) {
    .cart_item_img img {
        max-height: 80px;
    }
}

@media (min-width:100px) {
    .cart_item_name {
        padding:6px; 
        border:solid 1px #dddddd;
        text-align:center;
    font-size:10px;
    }
    .cart_item_details {
        padding:6px; 
        border:solid 1px #dddddd;
        background-color:#ffffff;
        font-size:10px;
        width:30%;
        max-width:80vw !important;
    }
    .cart_item_details input {
        max-width:70vw !important;
    }
}
@media (min-width:400px) {
    .cart_item_name {
        padding:12px; 
        border:solid 1px #dddddd;
        text-align:center;
    font-size:12px;
    }
    .cart_item_details {
        padding:12px; 
        border:solid 1px #dddddd;
        background-color:#ffffff;
        font-size:12px;
        width:30%;
    }
}
@media (min-width:600px) {
    .cart_item_name {
        padding:12px; 
        border:solid 1px #dddddd;
        text-align:center;
        font-size:12px;
    }
    .cart_item_details {
        padding:12px; 
        border:solid 1px #dddddd;
        background-color:#ffffff;
    font-size:12px;
        max-width:30vw;
    }
}

.cart_top_line {
    border-top:solid 1px #aaaaaa;
}
.cart_item_qty_inner {
    vertical-align:top;
}
.cart_table_container {
    width:100%;
    max-width:90vw;
}
.suggested_img img {
    max-width:160px;
    max-height:120px;
}

body .btn#ers_translate_checkout,
body #cart_container .btn-default,
body .btn#ers_translate_clear_order {
    margin-top: 6px;
}