@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

#sternify-bundle {
    margin-block: 10px;
}

.st_variantbundle-wrapper {
    --action_title-font_size: 15px;
    --action_title-font_weight: '400';
    --action_title-color: rgba(26, 161, 78, 1);
    --title_font_size: 15px;
    --title_font_weight: '400';
    --title_color: #000000;
    --highlighted_text-font_size: 18px;
    --highlighted_text-font_weight: '400';
    --highlighted_text-color: #000000;
    --price-font_size: 15px;
    --price-font_weight: '400';
    --price-color: #000000;
    --footer_text-font_size: 15px;
    --footer_text-font_weight: '400';
    --footer_text-color: #000000;
    --box_color-border_color: #000000;
    --box_color-background_color: #FFFFFF;
    --box_color-selected_background_color: #FFFFFF;
    --box_color-border_width: 2px;
    --box_color-border_radius: 10px;
    --badge-background_color: red;
    --badge-text_color: white;
    margin-block: 10px;
    text-align: start;
    line-height: 1.4;
}

.st_variantbundle-wrapper * {
    letter-spacing: normal;
    text-transform: initial;
}

.st_variantbundle-wrapper select:focus-visible {
    outline: initial;
    outline-offset: initial;
    box-shadow: initial;
}

.st_variantbundle-wrapper .st_box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: var(--action_title-font_size);
    font-weight: var(--action_title-font_weight, 500);
    color: var(--action_title-color);
}

.st_variantbundle-wrapper .st_box-title:before,
.st_variantbundle-wrapper .st_box-title:after {
    background-color: #0000004d;
    content: "";
    flex-grow: 1;
    height: 2px;
}

.st_variantbundle-wrapper .st_selector-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.st_variantbundle-wrapper .st_selectors-label {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.7;
}

.st_variantbundle-wrapper .st_select-boxes {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    transform-origin: left;
}

.st_variantbundle-wrapper .st_select-boxes-hidden {
    display: none;
}

.st_variantbundle-wrapper .st_select-boxes-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}

.st_variantbundle-wrapper .st_select-box-index {
    text-align: center;
    font-size: 13px;
}

.st_variantbundle-wrapper .st_select-box-selectors {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

@keyframes append-animate {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.st_variantbundle-wrapper .st_variantbundle-box {
    position: relative;
    padding: 10px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: var(--box_color-border_radius);
    background-color: var(--box_color-background_color);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--box_color-border_color) 30%, transparent);
}

.st_variantbundle-wrapper .st_variantbundle-box.active {
    background-color: var(--box_color-selected_background_color) !important;
    box-shadow: inset 0 0 0 var(--box_color-border_width) var(--box_color-border_color);
    cursor: default;
}

.st_variantbundle-wrapper .st_variantbundle-box[badgeActive="true"] {
    margin-top: 15px;
}

.st_variantbundle-wrapper .st_input-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.st_variantbundle-wrapper .st_input {
    min-width: 25px !important;
    min-height: 25px !important;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.st_variantbundle-wrapper .st_input-circle {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--box_color-border_color);
    position: relative;
    display: block !important;
    overflow: hidden;
    opacity: 0.3;
}

.st_variantbundle-wrapper .st_variantbundle-box.active .st_input-circle::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    background-color: var(--box_color-border_color);
}

.st_variantbundle-wrapper .st_variantbundle-box.active .st_input-circle {
    opacity: 1;
}

.st_variantbundle-wrapper .st_input-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    word-break: break-word;
}

.st_variantbundle-wrapper .st_input-highlighted-tag {
    font-size: var(--highlighted_text-font_size);
    font-weight: var(--highlighted_text-font_weight);
    color: var(--highlighted_text-color);
    word-break: break-word;
}

.st_variantbundle-wrapper .st_input-title-wrapper {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 8px;
    column-gap: 8px;
    row-gap: 5px;
    align-items: center;
}

.st_variantbundle-wrapper .st_input-label:empty {
    display: none;
}

.st_variantbundle-wrapper .st_input-label {
    padding: 4px 8px;
    font-size: 14px;
    background-color: var(--label-background_color);
    color: var(--label-text_color);
    border-radius: var(--label-border_radius);
}

.st_variantbundle-wrapper .st_input-title {
    font-size: var(--title-font_size);
    font-weight: var(--title-font_weight, 500);
    color: var(--title-color);
    word-break: break-word;
}

.st_variantbundle-wrapper .st_price-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 5px;
    min-width: fit-content;
}

.st_variantbundle-wrapper .st_compare-at-price {
    font-size: var(--highlighted_text-font_size);
    color: var(--compare_at_price-color);
    font-weight: var(--highlighted_text-font_weight);
    position: relative;
    text-decoration: line-through;
}

.st_variantbundle-wrapper .st_discounted-price {
    font-size: var(--title-font_size);
    color: var(--price-color);
    font-weight: var(--title-font_weight, 500);
}

.st_variantbundle-wrapper .st_input-and-price-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px
}

.st_variantbundle-wrapper .st_input-and-price-wrapper[badgeActive='true'] {
    margin-top: 5px;
}

.st_variantbundle-wrapper .st_highlighted-badge {
    position: absolute;
    top: -10px;
    background-color: var(--badge-background_color);
    color: var(--badge-text_color);
    padding: 6px 10px;
    border-radius: 0px 0px 10px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    font-family: sans-serif;
    right: calc(var(--box_color-border_radius) + 15px);
}

.st_variantbundle-wrapper .st_highlighted-badge::after {
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    width: 0px;
    height: 0px;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 11px 0 0 11px;
    border-color: transparent transparent transparent var(--badge-background_color);
    content: "";
    filter: brightness(0.7);
}

.st_variantbundle-wrapper .st_highlighted-badge::before {
    display: block;
    position: absolute;
    top: 0;
    left: -10px;
    width: 0px;
    height: 0px;
    -webkit-transform: rotate(360deg);
    transform: scaleX(-1);
    border-style: solid;
    border-width: 11px 0 0 11px;
    border-color: transparent transparent transparent var(--badge-background_color);
    content: "";
    filter: brightness(0.7);
}

.st_variantbundle-wrapper .st_footer-wrapper {
    display: flex;
    justify-content: space-between;
    font-size: var(--footer_text-font_size);
    font-weight: var(--footer_text-font_weight);
    color: var(--footer_text-color);
}

.st_variantbundle-wrapper .st_footer-left-text {
    width: 50%;
    text-align: start;
    color: #565656;
}

.st_variantbundle-wrapper .st_footer-right-text {
    width: 50%;
    text-align: end;
}

.st_variantbundle-wrapper .st_image-wrapper {
    width: var(--bundle_image-size);
    height: var(--bundle_image-size);
    min-width: var(--bundle_image-size);
    min-height: var(--bundle_image-size);
    border-radius: var(--bundle_image-border_radius);
}

.st_variantbundle-wrapper .st_image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}