.fbt-checkbox {
    display: none;
}
.fbt-label {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: column;
    background-color: var(--wd-prod-bg, var(--bgcolor-white));
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    margin: 2px 0;
    width: 100%;
}
.fbt-checkmark {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: var(--wd-form-brd-width) solid var(--wd-form-brd-color);
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    z-index: 3;
}

.fbt-label input:checked + .fbt-checkmark {
    background-color: #4caf50;
    border-color: #4caf50;
    background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjMiIGQ9Ik02IDEyLjVsNC41IDQuNUwxOCA5Ii8+PC9zdmc+");
}
.fbt-img-box {
    padding-top: 100%;
    width: 100%;
    position: relative;
}
.fbt-img-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    margin-bottom: 10px;
}

.fbt-swiper {
    overflow: hidden;
    padding: 0 2px;
    position: relative;
}
.fbt-title {
    margin-bottom: 10px;
}
.fbt-bottom {
    flex: 1 1 auto;
    padding: 10px;
}
.fbt-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.fbt-swiper .swiper-button-next,
.fbt-swiper .swiper-button-prev {
    background-color: #ffffffb3;
}
.fbt-swiper .swiper-button-next::after,
.fbt-swiper .swiper-button-prev::after {
    font-size: 24px;
    color: var(--wd-arrow-color, var(--color-gray-800));
}
.wd-checkout-prod-cont .wd-checkout-prod-total {
    width: 100%;
}