#product.section.content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;

    min-height: calc(100vh - 204.5px);
}

@media screen and (max-width: 767px) {
    #product.section.content {
        display: flex;
        flex-direction: column;
        align-items: center;

        min-height: calc(100vh - 204.5px);

        padding-top: 0px;
    }
}

.showcase.image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    width: 75%;
    aspect-ratio: 1/1;
}

.showcase.image {
    width: 100%;
    height: 100%;
}

#product.showcase.content-wrapper {
    width: 100%;
}

.showcase.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media screen and (min-width: 768px) {
    .showcase.content-wrapper {
        margin-right: 12px;
        width: 10%;
        max-width: 523px;
        min-width: 426px;
    }
}

.showcase.content {
    width: 100%;

    padding: 0px;
    border-radius: 36px;
    corner-shape: squircle;

    background-color: var(--productPanelBackground);
}

@media screen and (max-width: 767px) {
    .showcase.content {
        padding: 0px 0px 24px 0px;
        border-radius: 36px;
    }
}

@media screen and (min-width: 768px) {
    .showcase.content {
        padding: 24px;
        margin-right: 12px;
    }
}

.showcase.related {
    width: 100%;

    padding: 0px;
    border-radius: 36px;
    corner-shape: squircle;

    background-color: var(--productPanelBackground);
}

@media screen and (max-width: 767px) {
    .showcase.related {
        padding: 0px 0px 0px 0px;
        border-radius: 36px;
    }
}

@media screen and (min-width: 768px) {
    .showcase.related {
        padding: 0px;
        margin-right: 12px;
    }
}

.showcase.related-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 12px;

    border-bottom: 1px solid var(--primary-border);
}

.showcase.related-title {
    font-size: 18px;
    font-weight: 700;
    padding: 24px 24px 0px 24px;
}

@media screen and (max-width: 767px) {
.showcase.related-title {
    padding: 24px 24px 0px 24px;
}
}

@media screen and (max-width: 478px) {
.showcase.related-title {
    padding: 24px 12px 0px 12px;
}
}

.showcase.related-list-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;

    gap: 12px;

    padding: 24px 24px 6px 24px;
    margin-bottom: 18px;

    scrollbar-width: thin;
    scrollbar-color: var(--primary-border) var(--productPanelBackground);
}

@media screen and (max-width: 478px) {
.showcase.related-list-wrapper {
    padding: 12px 12px 6px 12px;
}
}

.showcase.related-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 172px;

    border-radius: 18px;
    corner-shape: squircle;

    background-color: var(--productPanelBackgroundHighlight);
}

.showcase.related-list-item[role="link"] {
    cursor: pointer;
}

.showcase.related-list-image {
    width: 128px;
    height: 128px;
}

.showcase.related-list-image-wrapper {
    padding-bottom: 12px;
}

.showcase.related-list-details {
    width: 100%;
    padding: 6px 12px 12px 12px;
    font-size: 14px;
}

#first.showcase.related-list-row,
.showcase.related-list-row[data-row="first"] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;

    width: 100%;
    margin-top: -30px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--primary-border);
}

#second.showcase.related-list-row,
.showcase.related-list-row[data-row="second"] {
    margin-top: 12px;
}

.showcase.related-list-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.showcase.related-list-price {
    font-weight: 700;
}

.showcase.title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 12px;

    border-bottom: 1px solid var(--primary-border);
}

@media screen and (max-width: 767px) {
    .showcase.title-wrapper {
        padding: 24px 24px 12px 24px;
    }
}

@media screen and (max-width: 478px) {
    .showcase.title-wrapper {
        padding: 24px 12px;
    }
}

.showcase.title {
    text-align: left;
    text-decoration: none;
    color: var(--primary-text);
}

.showcase.brand {
    display: flex;
    flex-direction: row;
    align-items: flex-start;

    margin-top: -6px;

    gap: 6px;

    font-size: 24px;
    font-weight: 700;

    text-decoration: none;
    color: var(--primary-text);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.showcase.brand:hover {
    color: var(--primary-accent);
}

.showcase.brand-icon {
    width: 12px;
    height: 12px;

    margin-bottom: 6px;

    color: inherit;
}

.showcase.product-line {
    font-weight: 500;
}

#likeButton.toolbar.button {
    aspect-ratio: 1/1;
    min-width: 0;
    margin: 0;
    border-radius: 999px;
    padding: 12px;
    line-height: 1.43;
}

#likeButton.toolbar.button.disabled,
#likeButton.toolbar.button.is-loading {
    pointer-events: none;
    opacity: 0.64;
}

.showcase.heart-icon {
    height: 17px;
}

.showcase.heart-icon.filled {
    display: none;
    height: 17px;
    color: var(--primary-warning);
}

#likeButton.is-liked .showcase.heart-icon:not(.filled) {
    display: none;
}

#likeButton.is-liked .showcase.heart-icon.filled {
    display: block;
}

.showcase.callout-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    overflow-x: auto;

    padding-top: 12px;
    padding-bottom: 6px;

    gap: 6px;

    scrollbar-width: thin;
    scrollbar-color: var(--primary-border) var(--productPanelBackground);
}


@media screen and (max-width: 767px) {
    .showcase.callout-wrapper {
        padding: 12px 24px 6px 24px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 478px) {
    .showcase.callout-wrapper {
        padding: 12px 12px 6px 12px;
        margin-bottom: 18px;
    }
}

.showcase.callout-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;

    padding: 6px 12px;

    gap: 6px;

    border-radius: 6px;
    background-color: var(--primary-border);
}

.showcase.callout-icon {
    width: 12px;
    height: 12px;

    color: var(--primary-warning);
}

.showcase.callout-seo {
    font-size: 16px;
    font-weight: 400;
}

.showcase.callout-bullet {
    width: 6px;
    height: 6px;

    border-radius: 99px;

    background-color: var(--primary-success);
}

.showcase.details-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    padding: 0px 24px;
    gap: 12px;
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .showcase.details-wrapper {
        padding: 0px;
    }
}

@media screen and (max-width: 478px) {
    .showcase.details-wrapper {
        padding: 0px 12px;
    }
}

.showcase.details-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    width: 100%;


}

.showcase.details-title {
    font-weight: 700;
}

.showcase.details-price {
    font-weight: 700;
    margin-top: -4px;
}

.product.filter-location {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 6px;
    margin-top: 48px;
    margin-left: 24px;
    width: fit-content;

    appearance: none;
    background: transparent;
    color: inherit;
    cursor: pointer;

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

@media screen and (min-width: 768px) {
    .product.filter-location {
        margin-left: 0px;
    }
}

@media screen and (max-width: 478px) {
    .product.filter-location {
        margin-left: 12px;
    }
}

.product.filter-location:hover {
    color: var(--toolbarTextHover);
}

.product.filter-location:hover svg {
    color: var(--focus-accent);
}

.product.filter.location-icon {
    width: 14px;
    height: 14px;

    color: var(--primary-accent);
}

.showcase.store.selector-wrapper {
    padding: 1px;
    border-radius: 999px;
    margin: 12px 24px 0px 24px;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

@media screen and (min-width: 768px) {
    .showcase.store.selector-wrapper {
        margin: 12px 0px 0px 0px;
    }
}

@media screen and (max-width: 478px) {
    .showcase.store.selector-wrapper {
        margin: 12px 12px 0px 12px;
    }
}

.showcase.store.selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;

    height: 100%;
    min-width: 0;
    margin: 0;
    border-radius: 999px;
    padding: 12px 24px;

    font-size: 14px;
    font-weight: 800;

    background: var(--toolbarBackground);
    color: var(--toolbarText);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.showcase.store.selector:hover {
    background: var(--toolbarBackgroundHover);
    color: var(--toolbarTextHover);
}

.showcase.store.selector-icon {
    width: 12px;
    color: inherit;
}

.showcase.action-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;

    max-height: 45.5px;

    padding: 0px;
    margin-top: 12px;

    gap: 12px;
}

@media screen and (max-width: 767px) {
    .showcase.action-wrapper {
        padding: 0px 24px;
    }
}


@media screen and (max-width: 478px) {
    .showcase.action-wrapper {
        padding: 0px 12px;
        max-height: 36px;
    }
}

.showcase.quantity.input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;

    height: 36px;

    padding: 1px;
    border-radius: 999px;

    gap: 12px;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

@media screen and (min-width: 768px) {
    .showcase.quantity.input-wrapper {
        height: 44px;
    }
}

.showcase.quantity.button-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    user-select: none;

    height: 100%;

    padding: 2px;
    margin: 0;
    gap: 12px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    background: var(--toolbarBackground);
    color: var(--toolbarText);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

@media screen and (min-width: 768px) {
    .showcase.quantity.button-wrapper {
        gap: 18px;
        height: 42px;
    }
}

.showcase.quantity.button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    padding: 0px 16px;
    height: 100%;
    margin-top: 0;
    min-width: 0;
    background-color: var(--toolbarInsetBackground);
}

@media screen and (min-width: 768px) {
    .showcase.quantity.button {
        padding: 0px 24px;
    }
}

.showcase.quantity.button:hover {
    background-color: var(--toolbarInsetBackgroundHover);
    color: var(--toolbarTextHover);
}

.showcase.quantity.value {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    min-width: 24px;

    font-size: 14px;
    font-weight: 900;
}

#product.section.content.is-loading {
    cursor: progress;
}

.showcase.image-wrapper.is-skeleton .showcase.image {
    opacity: 0;
}

.showcase.skeleton-block,
.showcase.skeleton-line,
.selector-sheet.skeleton-line {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background: rgba(128, 128, 128, 0.16);
}

.showcase.skeleton-block::after,
.showcase.skeleton-line::after,
.selector-sheet.skeleton-line::after {
    content: "";
    position: absolute;
    inset: 0;

    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);

    animation: showcase-skeleton-shimmer 1.25s ease-in-out infinite;
    animation-delay: var(--skeleton-delay, 0ms);
}

.showcase.image-skeleton {
    position: absolute;
    width: min(72%, 440px);
    aspect-ratio: 1/1;
    border-radius: 36px;
    corner-shape: squircle;
}

.showcase.skeleton-line,
.selector-sheet.skeleton-line {
    display: block;
    min-width: 0;
    height: 14px;
    border-radius: 999px;
}

.showcase.brand.is-skeleton {
    pointer-events: none;
}

.showcase.brand.is-skeleton .showcase.brand-icon,
.showcase.store.selector.is-skeleton .showcase.store.selector-icon {
    opacity: 0.32;
}

.showcase.skeleton-brand {
    width: min(44vw, 260px);
    height: 42px;
    margin-top: 6px;
}

.showcase.skeleton-product-line {
    width: min(38vw, 210px);
    height: 38px;
    margin-top: 8px;
}

.showcase.skeleton-callout {
    width: 148px;
    height: 16px;
}

.showcase.skeleton-price {
    width: 74px;
    height: 20px;
}

.showcase.skeleton-variation {
    width: min(34vw, 160px);
    height: 18px;
}

.showcase.skeleton-selector {
    width: min(56%, 190px);
    height: 14px;
}

.selector-sheet.results.item-wrapper.is-skeleton {
    pointer-events: none;
    user-select: none;
}

.selector-sheet.results.item-wrapper.is-skeleton .selector-sheet.results.item {
    cursor: default;
}

.selector-sheet.results.item-wrapper.is-skeleton .selector-sheet.results.item:hover {
    background: var(--toolbarResultBackground);
}

.selector-sheet.results.item-wrapper.is-skeleton .selector-sheet.details {
    gap: 6px;
}

.selector-sheet.skeleton-store-title {
    width: min(64%, 210px);
    height: 15px;
}

.selector-sheet.skeleton-store-description {
    width: min(40%, 120px);
    height: 13px;
}

.selector-sheet.skeleton-store-price {
    width: 58px;
    height: 14px;
}

.selector-sheet.skeleton-store-distance {
    width: 48px;
    height: 12px;
}

.showcase.related-list-item.is-skeleton {
    pointer-events: none;
    user-select: none;
}

.showcase.related-list-item.is-skeleton .showcase.related-list-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 128px;
    padding-bottom: 0;
    border-bottom: 1px solid var(--primary-border);
}

.showcase.related-image-skeleton {
    width: 128px;
    height: 128px;
    border-radius: 18px 18px 0 0;
    corner-shape: squircle;
}

.showcase.related-list-item.is-skeleton .showcase.related-list-details {
    padding-top: 12px;
}

.showcase.related-list-item.is-skeleton .showcase.related-list-row[data-row="first"] {
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.showcase.skeleton-related-variation {
    width: 76px;
    height: 14px;
}

.showcase.skeleton-related-distance {
    width: 42px;
    height: 12px;
}

.showcase.skeleton-related-price {
    width: 48px;
    height: 14px;
}

@media screen and (max-width: 767px) {
    .showcase.image-skeleton {
        width: min(70%, 320px);
    }

    .showcase.skeleton-brand {
        width: min(62vw, 260px);
        height: 36px;
    }

    .showcase.skeleton-product-line {
        width: min(52vw, 220px);
        height: 32px;
    }
}

.button.prefer.fill.disabled {
    border: 1px solid var(--secondary-text);
    background-color: transparent;
    color: var(--secondary-text);
    cursor: not-allowed;
}

.store.selector-sheet.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    overflow: clip;

    width: auto;
    height: 100vh;
    height: 100dvh;

    position: fixed;
    inset: 0;
    z-index: 1000;

    padding: 0px;

    backdrop-filter: blur(12px) saturate(75%);

    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 18px, 0) scale(0.985);
    transform-origin: bottom center;
    will-change: opacity, transform;

    transition:
        opacity 0.16s ease-out,
        transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.selector-sheet-open,
body.selector-sheet-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.store.selector-sheet.content-wrapper.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.store.selector-sheet.content-wrapper[hidden] {
    display: none;
}

#selectorSortPopup.shop.sort.list.popup {
    z-index: 1100;
}

#storeSelectorSheetContainer.container {
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 767px) {
    #storeSelectorSheetContainer.container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.store.selector-sheet.content {
    display: flex;
    flex-direction: column;
    overflow: hidden;

    width: 100%;
    max-width: 1028px;
    height: 100%;

    padding: 0px;
    border-radius: 0px;
    corner-shape: squircle;

    background: var(--toolbarBorder);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

@media only screen and (min-width: 1029px) {
.store.selector-sheet.content {
    padding: 0px 1px 0px 1px;
}
}

.store.selector-sheet.card {
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    width: 100%;
    height: 100%;

    padding: 24px;
    border-radius: 0px;
    corner-shape: squircle;

    scrollbar-width: thin;
    scrollbar-color: var(--primary-accent) transparent;

    background: var(--toolbarBackground);
    color: var(--toolbarText);
}

.selector-sheet.button-wrapper {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    max-width: 42px;
    max-height: 42px;

    padding: 1px;
    border-radius: 999px;
    aspect-ratio: 1/1;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.selector-sheet.button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    height: 100%;
    min-width: 0;
    margin: 0;
    border-radius: 999px;
    aspect-ratio: 1/1;
    padding: 7px 15px !important;

    font-size: 14px;
    font-weight: 600;

    background: var(--toolbarBackground);
    color: var(--toolbarText);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.selector-sheet.button:hover {
    background: var(--toolbarBackgroundHover);
    color: var(--toolbarTextHover);
}

.selector-sheet.button:active {
    background: var(--toolbarBackgroundHover);
    color: var(--toolbarTextHover);
    transform: scale(0.95);
}

.selector-sheet.button-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
}

.selector-sheet.filter-location {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 6px;
    margin-top: 24px;
    width: fit-content;

    appearance: none;
    background: transparent;
    color: inherit;
    cursor: pointer;

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.selector-sheet.filter-location:hover {
    color: var(--toolbarTextHover);
}

.selector-sheet.filter-location:hover svg {
    color: var(--focus-accent);
}

.selector-sheet.filter.location-icon {
    width: 14px;
    height: 14px;

    color: var(--primary-accent);
}

.selector-sheet.input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 100%;

    padding: 1px;
    margin-top: 12px;
    border-radius: 999px;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.selector-sheet.input {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    padding: 12px 20px 12px 44px;
    border-radius: 999px;
    gap: 0px;

    font-size: 16px;
    font-weight: 500;

    outline: none;
    border: none;
    background: var(--toolbarBackground);
    color: var(--toolbarText);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.selector-sheet.results.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    height: auto;
    min-width: 0;
    margin: 0;
    margin-top: 24px;
    padding: 0px;
    gap: 6px;

    font-size: 14px;
    font-weight: 600;

    background: transparent;
    color: var(--toolbarText);

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.selector-sheet.results.item-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 100%;
    padding: 1px;
    border: 0;
    border-radius: 12px;
    background: transparent;

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.selector-sheet.results.item-wrapper.preferred {
    background: var(--toolbarBorderSelected);
}

.selector-sheet.results.item-wrapper[hidden] {
    display: none;
}

.selector-sheet.results.item {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 12px;

    appearance: none;
    background: var(--toolbarResultBackground);
    color: inherit;
    font-family: inherit;
    text-align: inherit;

    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.selector-sheet.results.item:hover {
    background: var(--toolbarResultBackgroundHover);
}

.selector-sheet.details {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    text-align: left;

    margin-left: 0px;
}

.selector-sheet.result-preferred {
    font-size: 12px;
    padding: 6px 16px 6px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    background-color: var(--primary-accent);
}

.selector-sheet.result-title {
    font-size: 16px;
    font-weight: 800;
}

.selector-sheet.result-description {
    font-size: 14px;
    font-weight: 400;
}

.selector-sheet.locality {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;

    text-align: right;

    white-space: nowrap;

    margin-right: 6px;
}

.selector-sheet.locality-price {
    font-size: 14px;
    font-weight: 800;
}

.selector-sheet.locality-description {
    font-size: 12px;
    font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
    .store.selector-sheet.content-wrapper {
        transition: none;
        transform: none;
    }

    .showcase.skeleton-block::after,
    .showcase.skeleton-line::after,
    .selector-sheet.skeleton-line::after {
        animation: none;
    }
}

@keyframes showcase-skeleton-shimmer {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}
