.sidecart-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    background-color: rgba(0, 0, 0, .5);
    transition: all 0.3s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
}

.sidecart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidecart {
    width: 30vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -50vw;
    z-index: 9000;
    transition: 0.2s ease;
    background-color: #fff;
    min-width: 30vw;
}

#content-sidecart {
    overflow: hidden;
    height: 73vh;
    width: 100%;
}

body.admin-bar .sidecart {
    top: 32px;
}

.open-cart {
    right: 0px !important;
}

.header-sidecart-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 47px 25px;
    color: #000;
    position: relative;
}

.header-sidecart-row .close-trigger {
    position: absolute;
    cursor: pointer;
    top: 31px;
    right: 21px;
}

#loading-sidecart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-sidecart {
    padding: 14px 47px 30px;
    border-bottom: 1px solid #8e8e8e;
    position: relative;
}

.card-sidecart .row {
    display: grid;
    grid-template-columns: 105px auto;
    gap: 24px;
}

.card-sidecart .row .col-content,
.card-sidecart .row .col-content .text-section {
    width: 100%;
}

.card-sidecart .row .col-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.card-sidecart .heading-card {
    position: absolute;
    bottom: 20px;
    right: 47px;
}

.card-sidecart .row .col-content .text-section {
    padding-top: 21px;
}

.empty-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 47px;
    color: var(--stroke-color);
    font-family: var(--monserrat-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.card-sidecart .row .col-content .text-section .card-title {
    color: var(--stroke-color);
    font-family: var(--monserrat-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.card-sidecart .row .col-content .footer-card .subtotal {
    color: var(--color-primary);
    font-family: var(--monserrat-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 17px;
    text-transform: uppercase;
}

.card-sidecart .row .col-image .img-container {
    overflow: hidden;
    border-radius: 16px;
    display: flex;
}

.products-sidecart {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

ul.ammounts-sidecart {
    display: block;
    list-style: none;
    position: absolute;
    bottom: 0;
    padding: 10px 47px 60px;
    width: 100%;
    background-color: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
}

ul.ammounts-sidecart h5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-family: var(--monserrat-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
}

ul.ammounts-sidecart li.total {
    margin-bottom: 60px;
}

ul.ammounts-sidecart .btn-checkout {
    display: flex;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    background: #D68631;
    color: var(--text-color);
    font-family: var(--monserrat-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    transition: all 0.3s ease-in-out 0s;
}

ul.ammounts-sidecart .btn-checkout:hover {
    background-color: var(--bluesky-color);
}

.card-detail-product {
    color: var(--color-primary);
    font-family: var(--monserrat-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.card-detail-product .author {
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .sidecart {
        width: 95vw;
        right: -105vw;
        min-width: 95vw;
    }

    .card-sidecart {
        padding: 14px 23px 30px;
        border-bottom: 1px solid #8e8e8e;
        position: relative;
    }

    ul.ammounts-sidecart {
        padding: 10px 23px 42px;
    }

    .card-sidecart .heading-card {
        right: 23px;
    }
}