/* Cart Sidebar */
.wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 135px);
}

.cartsidebar {
    position: fixed;
    top: 85px;
    right: -350px;
    width: 350px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    z-index: 100;
    transition: all 0.3s ease;
}

header.drawer__header {
    background: #40aa54;
    height: 50px;
    padding-left: 20px;
    color: #fff;
    border: 0;
    padding: 0 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.drawer__header>i {
    cursor: pointer;

}

.wrap .box {
    display: flex;
    padding: 0.5rem;
    margin: 1px;
    border: 1px solid grey;
}

.wrap .box img {
    height: 60px;
    width: 60px;
    padding: 5px;
}

.wrap .content {
    width: 100vw;
}

.wrap .box i {
    justify-content: center;
    align-content: flex-end;
    padding: 1rem;
}

#drawer__footer {
    background-color: #40aa54;
    height: 90px;
    padding-left: 20px;
    color: #fff;
    border: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#drawer__footer .total {
    padding: 5px;
}

#drawer__footer .btn {
    padding: 10px 5px;
    margin-bottom: 5px;
    width: 300px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    background-color: white;
    color: #40aa54;
    border-radius: 5px;
}

#drawer__footer .btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}
