.fc-popup-container {
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    margin-left: -100%;
}

.fc-popup-container.loaded {
    margin-left: 0;
    opacity: 1;
}

.fc-popup-content {
    width: 560px;
    background-color: var( --fs-mode, white );
    position: fixed;
    height: 460px;
}

.fc-popup-content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fc-popup-content-inner .fc-title {
    background-color: #0f834d;
    color: #fff;
    display: inline-flex;
    font-size: 18px;
    text-transform: none;
    height: auto;
    line-height: 4em;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.fc-popup-content-inner .fc-title .fc-title-text::before {
    content: "\2611";
    display: inline-block;
    padding-right: 5px;
    font-size: 35px;
}

.fc-popup-content_tray_center {
    left: 50%;
    top: 50%;
    opacity: 0;
    margin-top: calc( 460px / 2 * -1 );
    margin-left: calc( 560px / 2 * -1 );
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
    position: relative;
}

.fc-popup-content_tray_center.tray_center {
    opacity: 1;
    z-index: 100000;
    position: fixed;
}

.fc-popup-item-wrapper {
    display: flex;
    width: 100%;
    height: calc( var( --fs-content-tray-height ) - 72px);
    flex-direction: column;
    justify-content: space-between;
}

ul.fc-popup-ul-container {
    list-style: none !important;
    margin: 0 !important;
    overflow-y: auto;
    /* height: 65%; */
    padding: 0 20px !important;
}

.fc-popup-ul-container li {
    display: flex;
}

.fc-popup-ul-container li:first-child {
    margin-top: 10px;
}

.fc-popup-ul-container li:not(last-child) {
    margin-bottom: 10px !important;
}

.fc-popup-ul-container li:hover .fc-cart-li-remove {
    width: 20%;
    flex: 1 1 20%;
    visibility: visible;
}

.fc-popup-item-wrapper-blur{
    position: relative;
    pointer-events: none;
    opacity: 0.2;
}