.closemycartButton,
.showmycartButton {
    cursor: pointer;
}

.showmycartButton {
    position: relative;
    width: fit-content;
}

.cartNumber {
    position: absolute;
    top: -10px;
    right: -14px;
    padding: 5px 7px;
    line-height: 14px;
    border-radius: 50px;
}

.my-cart-flyout {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.my-cart-wrapper {
    position: absolute;
    top: 0;
    right: -30vw;
    height: 100%;
    width: 30vw;
    background: #fff;
    transition: all 0.5s ease-in-out;
}

.my-cart-header {
    padding: 20px 5%;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

.my-cart-header h2 {
    width: 100%;
}

.my-cart-content {
    padding: 20px 5%;
    width: 100%;
    overflow-y: auto;
    z-index: 9999;
    height: 100%;
}

.my-cart-content .my-cart-count {
    margin-bottom: 30px;
}

.my-cart-slide-ind {
    display: flex;
    align-content: start;
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 50px;
    margin-bottom: 20px;
}

.my-cart-slide-ind-image {
    width: 50%;
    padding: 0 5%;
}

.my-cart-slide-ind-content {
    font-size: 15px;
    line-height: 25px;
    color: black;
    font-weight: 300;
}

.my-cart-slide-ind-content b {
    font-weight: 300;
}

.my-cart-slide-ind-content .fly-qty {
    padding: 10px 0;
}

.my-cart-slide-ind-image img {
    width: auto !important;
    border: 1px solid #D5D5D5;
    height: auto !important;
}

.my-cart-buttons {
    margin-bottom: 50px !important;
}

#my-cart-flyout .my-cart-slide-ind-cartremove .remove {
    color: #63666A !important;
    font-weight: 300;
    width: 35px;
    font-size: 35px;
}
#my-cart-flyout .my-cart-slide-ind-cartremove .remove:hover {
    background: none;
}

.my-cart-footer {
    padding-top: 10px;
}

.my-cart-flyout .my-cart-wrapper .my-cart-header {
    margin-bottom: 20px;
}

.my-cart-wrapper-scroll {
    max-height: 40vh;
    overflow-y: auto;
    height: 40vh;
}

@media (max-width: 1024px) {
    .my-cart-wrapper {
        position: absolute;
        top: 0;
        right: -80vw;
        height: 100%;
        width: 80vw;
        background: #fff;
        transition: all 0.5s ease-in-out;
    }   
}

@media (max-width: 590px) {
    .my-cart-wrapper {
        position: absolute;
        top: 0;
        right: -98vw;
        height: 100%;
        width: 98vw;
        background: #fff;
        transition: all 0.5s ease-in-out;
    }   
}