
/* Container info */
#m-cart-info {
    display: flex;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    transition: all .4s;
    transition-timing-function: ease-out;
    width: calc(25vw + 50px);
    transform: translateX(calc(100% - 50px));
    z-index: 99999;
}

#m-cart-info.open {
    transform: translateX(0);
}

#m-cart-info .m-cart-info-row {
    position: relative;
    width: 25vw;
    min-width: 25vw;
    height: 100vh;
    background-color: white;
    padding: 20px;
}

#m-cart-info .m-cart-info-button {
    position: relative;
    width: 50px;
    margin-top: 15vh;
}

#m-cart-info .m-cart-info-button .m-cart-info-button-background {
    position: absolute;
    z-index: -1;
    width: 50px;
}

#m-cart-info .m-cart-info-button .m-cart-info-button-row {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

#m-cart-info .m-cart-info-button .m-cart-info-button-row #m-cart-info-button-text {
    display: block;
    width: 32px;
    height: 32px;
    padding: 3px 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
}

#m-cart-info .m-cart-info-button .m-cart-info-button-row .m-cart-info-button-shopping {
    width: 27px;
    height: 27px;
    margin-top: 10px;
}

#m-cart-info .m-cart-info-title {
    border-bottom: 1px solid #707070;
}

#m-cart-info .m-cart-info-title p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

#m-cart-info .m-cart-close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 27px;
    height: 27px;
    float: right;
}

/* Container cart */
.m-cart-container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 60%);
    z-index: -1;
    opacity: 0;
    height: 100vh;
    height: -webkit-fill-available;
    width: 100%;
    transition: opacity .3s;
    overflow-y: auto;
}

.m-cart-container.open {
    display: flex;
    flex-direction: row-reverse;
    z-index: 999;
    opacity: 1;
}

.m-cart-container .m-cart-row {
    background: #EFF7ED;
    width: 95vw;
    padding-right: calc(25vw + 100px);
}