.fa-product .DescriptionSpecial {
    margin-bottom: 20px;
    padding: 10px 0 0 0;
}
.fm-pd {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 10px 0 20px 0;
}

.fm-pd-right {
    flex: 1 1 auto;
    min-width: 0;
}

.fm-pd-gallery {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: stretch;
    background: #f7f7f7;
    border-radius: 14px;
    padding: 10px;
    box-sizing: border-box;
}

.fm-pd-thumbs-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fm-pd-thumbs-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    color: #111;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    z-index: 2;
}

.fm-pd-thumbs-nav svg {
    width: 20px;
    height: 20px;
    display: block;
}

.fm-pd-thumbs-prev svg {
    transform: rotate(-90deg);
}

.fm-pd-thumbs-next svg {
    transform: rotate(90deg);
}

.fm-pd-thumbs-prev {
    top: 10px;
}

.fm-pd-thumbs-next {
    bottom: 10px;
}

.fm-pd-thumbs-nav:hover:not(:disabled) {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.fm-pd-thumbs-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.fm-pd-thumbs-slider.fm-pd-no-prev .fm-pd-thumbs-prev {
    display: none;
}

.fm-pd-thumbs-slider.fm-pd-no-next .fm-pd-thumbs-next {
    display: none;
}

.fm-pd-thumbs {
    max-height: 360px;
    flex: 1 1 auto;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fm-pd-thumbs::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.fm-pd-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    margin: 5px 0;
}

.fm-pd-thumb.is-active {
    border-color: #E00A4F;
}

.fm-pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fm-pd-main {
    display: block;
}

.fm-pd-main-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 360px;
    width: 360px;
    position: relative;
}

.fm-pd-main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    color: #111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    z-index: 3;
    display: none;
}

.fm-pd-main-nav svg {
    width: 20px;
    height: 20px;
    display: block;
}

.fm-pd-main-prev {
    left: 10px;
}

.fm-pd-main-next {
    right: 10px;
}

.fm-pd-main-prev svg {
    transform: rotate(180deg);
}

.fm-pd-main-nav:hover:not(:disabled) {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.fm-pd-main-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.fm-pd.fm-pd-main-no-prev .fm-pd-main-prev,
.fm-pd.fm-pd-main-no-next .fm-pd-main-next {
    display: none;
}

.fm-pd-caption {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    line-height: 1.3;
    text-align: center;
}

.fm-pd-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#top-highlight, #bottom-highlight {
    margin: 10px 0 20px 0;
    border-radius: 10px;
    padding: 7px;
}

@media screen and (max-width: 550px) {
    .fm-pd-gallery {
        display: block;
    }
    .fm-pd-thumbs-slider {
        display: none;
    }
    .fm-pd-thumbs {
        max-height: 250px;
    }
    .fm-pd-main-media {
        height: 250px;
        width: 100%;
    }
    .fm-pd-main-nav {
        display: inline-flex;
    }
}

.fm-pd-popup-video {
    position: fixed;
    left: 16px;
    bottom: 16px;
    width: 260px;
    height: 260px;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.fm-pd-popup-video.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fm-pd-popup-video-el,
.fm-pd-popup-video-frame {
    width: 100%;
    height: 100%;
    display: block;
}

.fm-pd-popup-video-el {
    object-fit: cover;
}

.fm-pd-popup-video-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.fm-pd-popup-video-close:hover {
    background: #fff;
}

.fm-pd-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fm-pd-rating {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fm-pd-rating .star-rating {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    float: none;
    font-family: Arial, sans-serif;
}

.fm-pd-rating .stars-outer {
    color: rgba(255, 193, 7, 0.35);
    letter-spacing: 1px;
    display: block;
    font-size: 1rem;
    line-height: inherit;
    font-family: inherit;
}

.fm-pd-rating .stars-inner {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #FFC107;
    letter-spacing: 1px;
    width: 0;
    display: block;
    font-size: 1rem;
    line-height: inherit;
    font-family: inherit;
}

.fm-pd-rating-actions {
    position: absolute;
    inset: -5px -4px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    padding: 5px 4px;
    border-radius: 5px;
    background: #fff;
    opacity: 0;
    transition: opacity 120ms ease;
}

.fm-pd-rating.is-interactive .star-rating:hover .fm-pd-rating-actions,
.fm-pd-rating.is-interactive .fm-pd-rating-actions:focus-within {
    opacity: 1;
}

.fm-pd-rating-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: rgba(255, 193, 7, 0.35);
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    line-height: 1;
}

.fm-pd-rating-star.is-preview {
    color: #FFC107;
}

.fm-pd-rating-star:focus-visible {
    outline: 2px solid #E00A4F;
    outline-offset: 1px;
}

.fm-pd-rating-login-trigger {
    position: absolute;
    inset: -5px -4px;
    z-index: 3;
    display: block;
    width: calc(100% + 8px);
    height: calc(100% + 10px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    cursor: help;
}

.fm-pd-rating-login-trigger:focus-visible {
    outline: 2px solid #E00A4F;
    outline-offset: 2px;
}

.fm-pd-rating-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 15;
    display: block;
    width: max-content;
    max-width: min(320px, 85vw);
    padding: 8px 10px;
    border-radius: 7px;
    background: #222;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-3px);
    visibility: hidden;
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.fm-pd-rating-tooltip::before {
    position: absolute;
    bottom: 100%;
    left: 18px;
    border: 5px solid transparent;
    border-bottom-color: #222;
    content: "";
}

.fm-pd-rating:hover .fm-pd-rating-tooltip,
.fm-pd-rating:focus-within .fm-pd-rating-tooltip,
.fm-pd-rating.has-message .fm-pd-rating-tooltip {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.fm-pd-rating.is-pending {
    opacity: 0.7;
}

.fm-pd-rating.is-pending .fm-pd-rating-actions {
    pointer-events: none;
}

.fm-pd-rating.has-error .fm-pd-rating-tooltip {
    background: #9f1d2d;
}

.fm-pd-rating.has-error .fm-pd-rating-tooltip::before {
    border-bottom-color: #9f1d2d;
}

.fm-pd-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.fm-pd-rating .stars-outer::before,
.fm-pd-rating .stars-inner::before {
    content: none;
}

.fm-pd-rating-text,
.fm-pd-reviews {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

#product .fm-pd-title {
    line-height: 1.15;
    margin: 0px 0 20px 0;
    display: inline-block !important;
}

.fm-pd-title-icon {
    height: 22px;
    width: auto;
    vertical-align: middle;
    margin-left: 8px;
}

.fm-pd-desc {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
    color: #000;
}

.fm-pd-readmore {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    font-weight: 700;
    color: #E00A4F;
    text-decoration: none;
}

.fm-pd-readmore:hover {
    text-decoration: underline;
}

.fm-pd-banner .html_ban_1 {
    position: static !important;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.fm-pd-desc ul {
    list-style: none;
    margin: 10px 0;
    padding: 0;
}

.fm-pd-desc ul li {
    position: relative;
    padding-left: 26px;
    margin: 6px 0;
    list-style: none;
}

.fm-pd-desc ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #E00A4F;
    box-sizing: border-box;
}

.fm-pd-desc ul li::after {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    color: #E00A4F;
    font-weight: 900;
}

.upload-section {
    margin: 25px 0 10px 0;
}

.upload-section .title {
    margin-bottom: 10px;
}

.configuration-step-heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.configuration-step-counter {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #E00A4F;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.quantity-step-heading {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #fff7fa;
}

.quantity-step-heading > div strong,
.quantity-step-heading > div span {
    display: block;
}

.quantity-step-heading > div strong {
    margin-bottom: 3px;
    font-size: 16px;
}

.quantity-step-heading > div > span {
    color: #626262;
    font-size: 13px;
}

.quantity-shipping-step .production-time-note {
    position: static;
    margin-bottom: 10px;
}

#priceTable.is-complete .quantity-step-heading {
    background: #f4fbf1;
    border-color: #b9dda9;
}

#priceTable.is-complete .quantity-step-heading .configuration-step-counter {
    background: #34A618;
    font-size: 0;
}

#priceTable.is-complete .quantity-step-heading .configuration-step-counter::before {
    content: '\2713';
    font-size: 18px;
}

.upload-step-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.upload-requirement-message {
    padding: 24px 18px;
    border: 2px dashed #c9c9c9;
    border-radius: 14px;
    text-align: center;
    background: #f8f8f8;
    color: #4d4d4d;
}

.upload-requirement-message strong,
.upload-requirement-message span {
    display: block;
}

.upload-requirement-message strong {
    margin-bottom: 6px;
    color: #242424;
    font-size: 16px;
}

.upload-requirement-message span {
    margin-bottom: 14px;
}

.upload-requirement-action,
.upload-configuration-action {
    min-height: 40px;
    padding: 8px 18px;
    border: 1px solid #E00A4F;
    border-radius: 9px;
    background: #fff;
    color: #E00A4F;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.upload-requirement-action:hover,
.upload-requirement-action:focus-visible,
.upload-configuration-action:hover,
.upload-configuration-action:focus-visible {
    background: #E00A4F;
    color: #fff;
}

.product-upload-section .upload-requirement-message,
.product-upload-section .upload-configuration-required-copy,
.product-upload-section .upload-unavailable-copy,
.product-upload-section.is-locked > .upload-wrapper {
    display: none;
}

.product-upload-section.is-locked > .upload-requirement-message,
.product-upload-section.is-configuration-required .upload-configuration-required-copy,
.product-upload-section.is-unavailable .upload-unavailable-copy {
    display: block;
}

.product-upload-section.is-configuration-required .upload-quantity-required-copy,
.product-upload-section.is-unavailable .upload-quantity-required-copy {
    display: none;
}

.fm-upload-box {
    padding: 28px 18px;
    border: 2px dashed rgba(224, 10, 79, 0.45);
    border-radius: 14px;
    text-align: center;
    background: #fff;
}

.fm-upload-title {
    font-size: 18px;
    font-weight: 800;
    color: #1d1d1d;
    margin: 0 0 6px 0;
}

.fm-upload-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #6a6a6a;
    margin: 0 0 16px 0;
}

.fm-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.fm-upload-box.fm-upload-login-required {
    position: relative;
}

.fm-upload-login-popup {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, visibility 160ms ease;
    z-index: 5;
}

.fm-upload-box.fm-upload-login-required:hover .fm-upload-login-popup,
.fm-upload-box.fm-upload-login-required:focus-within .fm-upload-login-popup {
    opacity: 1;
    visibility: visible;
}

.fm-upload-login-popup-inner {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    padding: 22px 20px;
    text-align: center;
}

.fm-upload-login-popup-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(224, 10, 79, 0.12);
    color: #E00A4F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.fm-upload-login-popup-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.fm-upload-login-popup-title {
    font-weight: 800;
    font-size: 18px;
    color: #111;
    margin: 0 0 6px;
}

.fm-upload-login-popup-text {
    font-weight: 500;
    font-size: 13px;
    color: #666;
    margin: 0 0 14px;
}

.fm-upload-login-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: #E00A4F;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.fm-upload-login-action:hover {
    background: #c90945;
}

.upload-section .fm-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 22px;
    border-radius: 10px;
    background: #E00A4F;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    font-size: inherit;
}

.fm-upload-btn:hover {
    background: #c90945;
}
.file-wrapper {
    display: none;
}

@media screen and (max-width: 980px) {
    .fm-pd {
        flex-direction: column;
    }

    .fm-pd-left {
        flex-basis: auto;
        width: 100%;
    }

    .fm-pd-gallery {
        grid-template-columns: 72px 1fr;
    }
}

.product-wrapper {
    line-height: 145%;
}
.product-wrapper button,
.product-wrapper input,
.product-wrapper textarea,
.product-wrapper select {
    font-family: inherit;
}
#visual_calculation.expert {
    /*background: #f7f7f7;*/
    padding: 15px 0 0 0;
    font-size: 14px;
}
.fm-product #visual_calculation.expert {
    padding: 40px 0 0 0;
}
.wrp {
    position: relative;
    margin: 0 auto;
}
.btn {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background: #7f7d7c;
    min-width: 120px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    margin-bottom: 24px;
    box-sizing: border-box;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.btn.success {
    background: #E00A4F;
}
.btn.disabled {
    cursor: not-allowed;
    border: solid 1px #d1d1d1;
    background: #f7f7f7;
    color: #333;
}
.error-message {
    color: #E00A4F;
}

#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.materials-option-has-select {
    padding-left: 5px;
    padding-right: 5px;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .panel.materials-option-has-select .materials-select {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 3px 15px 5px 5px;
    position: relative;
    z-index: 3;
    background: #fff;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .panel.materials-option-has-select.selected .materials-select {
    opacity: 0.7;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .panel.materials-option-has-select .materials-select:focus {
    outline: none;
    border: 1px solid #291d1e;
    background-color: #fff;
}

#visual_calculation.expert .contentwrapper.left {
    width: 68%;
    float: left;
    background: #fff;
    padding: 0 0 20px 10px;
    box-sizing: border-box;
}
.special-product #visual_calculation.expert .contentwrapper.left,
.attribute-product #visual_calculation.expert .contentwrapper.left,
.wmd-product #visual_calculation.expert .contentwrapper.left {
    padding-top: 0;
}
#visual_calculation #detail_infobar {
    max-width: 35%;
    float: left;
}
#visual_calculation #detail_infobar #detail_infobar_gallery .gallery_preview {
    width: 100%;
    height: auto;
}
#visual_calculation .contentwrapper.left .head .text {
    float: left;
    margin-left: 5%;
    max-width: 60%;
}
#visual_calculation .contentwrapper.left .head .text h1 {
    color: #00a0c3;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 100%;
}
#visual_calculation .contentwrapper.left .head .text .articleDescription {
    margin-top: 24px;
    font-size: 14px;
}
.clr {
    display: block;
    clear: both;
}
.cf:before, .cf:after {
    content: "";
    display: table;
    clear: both;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item {
    border: solid 1px #4d4d4d;
    margin-bottom: 15px;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item {
    border: solid 1px #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable {
    width: 100%;
    overflow-y: auto;
}
#visual_calculation.expert #priceTable {
    margin: 15px 0 0 0;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview {
    width: 100%;
    border: 1px solid #f0f0f0;
    margin-top: -10px;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview thead th {
    text-align: center;
    font-size: 14px;
    /*border-bottom: 1px solid #f0f0f0;*/
    background: #f0f0f0;
    padding: 5px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview thead tr:last-child th {
    text-align: left;
    /*top: 50px;*/
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview tbody tr:not(:last-of-type) {
    border-bottom: 1px solid #f0f0f0;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview tbody tr {
    position: relative;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview tbody tr.even {
    background-color: #f8f8f8;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview tbody tr td {
    text-align: left;
    font-size: 12px;
    box-sizing: border-box;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview .quantity {
    padding: 5px 20px;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview tbody tr:first-child td {
    padding-top: 10px;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview td:not(:first-of-type) {
    border-left: 1px solid #f0f0f0;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview .price-cell {
    padding: 5px 20px;
    cursor: pointer;
    border: 1px solid transparent;
}
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview .price-cell:hover,
#visual_calculation .contentwrapper.left .optionGroup .optionWrapper #priceTable #priceOverview td.quantity-term-selected .price-cell {
    border: #E00A4F 1px solid;
}

#priceOverview .priceDownRow td, #priceOverview .priceUpRow td {
    text-align: center !important;
}
#priceOverview .arrow-icon {
    height: .8em;
    width: 2.8em;
    display: block;
    padding: 0;
    margin: 1em auto;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    opacity: .5;
}
#priceOverview .arrow-icon:hover {
    opacity: 1;
}
#priceOverview .arrow-icon .left-bar, #priceOverview .arrow-icon .right-bar {
    position: absolute;
    background-color: transparent;
    top: 0;
    height: 10px;
    display: block;
    float: right;
    width: 40px;
    border-radius: 2px;
}
#priceOverview .arrow-icon.arrow-up .left-bar {
    left: 0;
    transform: rotate(335deg);
}
#priceOverview .arrow-icon.arrow-up .right-bar {
    left: 31px;
    transform: rotate(25deg);
}
#priceOverview .arrow-icon .left-bar:after, #priceOverview .arrow-icon .right-bar:after {
    content: "";
    background-color: #484848;
    width: 40px;
    height: 5px;
    display: block;
    float: right;
    z-index: -1;
    transition: all .5s cubic-bezier(.25,1.7,.35,.8);
    border-radius: 6px;
}
#priceOverview .arrow-icon.arrow-down .left-bar {
    left: 0;
    transform: rotate(25deg);
}
#priceOverview .arrow-icon.arrow-down .right-bar {
    left: 36px;
    transform: rotate(335deg);
}
.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}
#visual_calculation .contentwrapper {
    box-sizing: content-box;
}
#visual_calculation .contentwrapper.right {
    background: #f7f7f7;
    width: 30%;
    float: right;
    min-height: 200px;
    z-index: 2;
}
#visual_calculation .contentwrapper.right section {
    padding: 15px 20px;
    box-sizing: border-box;
}
#visual_calculation.version-new .contentwrapper.right section {
    padding: 15px;
}
#visual_calculation .contentwrapper.right #option-selected .selected-option {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
    padding-bottom: 3px;
}
#visual_calculation.version-new .contentwrapper.right #option-selected .selected-option {
    border-bottom: none;
    padding: 0;
    margin: 0;
}
#visual_calculation.version-new .contentwrapper.right #option-selected .selected-option:not(:last-child) {
    margin-bottom: 10px;
}
#visual_calculation .contentwrapper.right h2 {
    font-size: 18px;
    margin-bottom: 10px;
}
#visual_calculation #option_block hr {
    margin: 2px 0;
    border-bottom: 1px solid #f0f0f0;
}
#visual_calculation .contentwrapper.right .row span:first-of-type {
    float: left;
}
/*#visual_calculation .contentwrapper.right .row span:last-of-type {*/
/*    float: right;*/
/*}*/
#visual_calculation .contentwrapper.right .row .price-block,
#visual_calculation .contentwrapper.right .row span.resellerPrice {
    float: right;
}
#visual_calculation .contentwrapper.right .row span {
    font-size: 14px;
}
#visual_calculation .contentwrapper.right hr {
    margin: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
#visual_calculation .contentwrapper.right .row.total span {
    font-size: 16px;
    font-weight: bold;
}
#visual_calculation .contentwrapper.right .btn.success {
    width: 100%;
    margin: 24px 0 0 0;
    position: relative;
    box-sizing: border-box;
    border-color: unset;
    font-weight: unset;
}
#visual_calculation .contentwrapper.right .btn.success:not(:first-of-type),
#visual_calculation .contentwrapper.right a.btn.success {
    margin: 10px 0 0 0;
}

#visual_calculation .contentwrapper.right .btn.success:hover,
#visual_calculation #contentWrapper .contentwrapper.right .template-download-wrapper .inputButton:hover,
#visual_calculation #contentWrapper .contentwrapper.right #printTemplates #datasheet-download-wrapper:hover,
.optionGroup #price-type-switch button.active:hover {
    background-color: #F52569;
    color: #fff;
}
#visual_calculation #contentWrapper .contentwrapper.right .template-download-wrapper .inputButton:hover .submit,
#visual_calculation #contentWrapper .contentwrapper.right .template-download-wrapper .submit:hover,
#visual_calculation #contentWrapper .contentwrapper.right #printTemplates #showTemplates:hover {
    background: url(img/icon_document.png) no-repeat 10px center #F52569;
    color: #fff !important;
    background-size: auto 22px;
}
#visual_calculation .contentwrapper.right #delivery .block-content {
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
}
#visual_calculation .contentwrapper.right #delivery .block-content h3 {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}
#visual_calculation .contentwrapper.right #delivery .block-content .date, #visual_calculation .contentwrapper.right #delivery .block-content .weight {
    /*color: #00a0c3;*/
    display: block;
}
#visual_calculation .contentwrapper.right #delivery .block-content img {
    width: 35px;
    height: auto;
    position: absolute;
    top: 3px;
    left: 0;
}
#visual_calculation .contentwrapper.right #delivery .block-content .couriers img,
#visual_calculation .contentwrapper.right #delivery .block-content .delivery-country img {
    position: relative;
    top: 0;
    margin-right: 5px;
    width: auto;
    height: 20px;
}
#visual_calculation .contentwrapper.right #delivery .block-content .delivery-country img {
    margin-right: 0;
    height: 12px;
}
#visual_calculation .contentwrapper.right #delivery .block-content .delivery-country .country-code {
    margin-right: 5px;
}
#visual_calculation .contentwrapper.right #delivery .note {
    margin-top: 10px;
}
#delivery_countdown {
    font-size: 12px;
    display: block;
    margin-top: 5px;
    padding: 5px;
    background: #f7f7f7;
    border: solid 1px #c4c4c4;
}
#visual_calculation .contentwrapper.right #printTemplates {
    display: none;
}
#visual_calculation .contentwrapper.right .template-download-wrapper .submit,
#visual_calculation .contentwrapper.right #printTemplates #showTemplates {
    background: url(img/icon_document.png) no-repeat 10px center #E00A4F;
    background-size: 20px;
    display: block;
    padding: 10px 10px 10px 40px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    border: none;
    line-height: initial;
}
#visual_calculation .contentwrapper.right .template-download-wrapper .inputButton,
#visual_calculation .contentwrapper.right #printTemplates #datasheet-download-wrapper {
    text-align: center;
    background: #E00A4F;
    margin-bottom: 5px;
}
#visual_calculation #product_informations {
    margin-top: 30px;
}
#product_informations .tab {
    position: relative;
    z-index: 1;
    cursor: pointer;
    box-sizing: border-box;
    float: left;
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    border: solid 1px #dedede;
    background: #eaeaea;
    color: #000;
    margin-bottom: -1px;
    border-bottom: none;
}
#visual_calculation #product_informations .content {
    background: transparent;
    padding: 0;
    border: none;
}
#visual_calculation .contentwrapper.right hr {
    margin: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    height: unset;
}
#visual_calculation.expert #option_block hr {
    margin: 2px 0;
    height: unset;
}
#visual_calculation.expert .contentwrapper.left .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 8px 0;
    color: #000;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}
#visual_calculation.expert .contentwrapper.left .accordion button.disabled {
    opacity: 0.7;
}
#visual_calculation.expert .contentwrapper.left .accordion button.disabled:hover {
    cursor: not-allowed;
    pointer-events: stroke;
}
/*#visual_calculation.expert .contentwrapper.left .accordion button:hover,*/
/*#visual_calculation.expert .contentwrapper.left .accordion button:focus {*/
/*    cursor: pointer;*/
/*    color: #00a0c3;*/
/*}*/
#visual_calculation.expert .contentwrapper.left .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    font-size: 16px;
}
#visual_calculation.expert .contentwrapper.left .accordion button .counter {
    display: inline-block;
    position: relative;
    top: 0;
    left: 7px;
    width: 20px;
    height: 20px;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    border-color: #E00A4F;
    background: #E00A4F;
    color: #fff;
    margin-right: 10px;
    line-height: 19px;
}
#visual_calculation.expert .contentwrapper.left .accordion button.disabled .counter {
    border-color: #E00A4F;
    background: #fff;
    color: #E00A4F;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item.selected .counter {
    color: #f7f7f7;
    position: relative;
    background: #f7f7f7;
    border: 1px solid #000;
    box-shadow: none;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item.selected .counter {
    border: 1px solid #E00A4F;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item.selected .counter:before {
    content: '';
    position: absolute;
    display: block;
    width: 14px;
    height: 10px;
    top: 5px;
    left: 3px;
    background: url(img/option_checkmark.png) no-repeat;
    background-size: 14px 10px;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item.selected .counter:before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #E00A4F;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    background: none;
}
#visual_calculation.expert .contentwrapper.left .accordion button .attribute-name {
    font-size: 14px;
}
#visual_calculation.expert .contentwrapper.left .accordion button .accordion-title strong {
    font-size: 14px;
    color: #7f7d7c;
    display: inline-block;
    word-break: break-word;
}
#visual_calculation input.suggestion {
    background-color: transparent;
    font-size: 14px;
    background: url(img/loupe.png) no-repeat left;
    background-size: 14px;
    padding-left: 15px;
    margin-left: 10px;
    margin-top: -1px;
}
#visual_calculation.expert .contentwrapper.left .accordion button small {
    display: none;
    font-size: 12px;
    position: absolute;
    right: 25px;
    top: 13px;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion button small {
    top: 10px;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item.selected button small {
    display: inline-block;
}
#visual_calculation.expert .contentwrapper.left .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion button .icon {
    top: 16px;
}
#visual_calculation.expert .contentwrapper.left .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 3px;
    left: 6px;
    width: 10px;
    height: 2px;
    background: #000;
}
#visual_calculation.expert .contentwrapper.left .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: -1px;
    left: 10px;
    width: 2px;
    height: 10px;
    background: #000;
}
#visual_calculation.expert .contentwrapper.left .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: opacity 350ms ease, max-height 350ms ease;
    will-change: opacity, max-height;
}
#visual_calculation.expert .contentwrapper.left .accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 600px;
    transition: all 400ms ease;
    will-change: opacity, max-height;
    -webkit-box-shadow: 3px 8px 8px -5px rgba(0, 0, 0, 0.15);
    box-shadow: 3px 8px 8px -5px rgba(0, 0, 0, 0.15);
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions {
    position: relative;
    z-index: 2;
    width: 100%;
    left: 0;
    padding-right: 0;
    background: #fff;
    box-sizing: border-box;
    margin-top: -1px;
    padding: 10px 0 0 10px;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 18.4%;
    float: left;
    padding: 15px;
    box-sizing: border-box;
    border: solid 1px #4d4d4d;
    margin-right: 1.6%;
    margin-bottom: 2%;
    text-align: center;
    font-size: 12px;
    transition: 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel {
    width: 19%;
    padding: 0 15px;
    border: none;
    margin-right: 1%;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected {
    border-color: #7f7d7c;
    position: relative;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected {
    border-color: transparent;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel .hoverOverlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel .select-overlay {
    position: absolute;
    left: auto;
    right: 18px;
    top: 3px;
    width: 22px;
    height: 22px;
    pointer-events: none;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel .hoverOverlay {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel:hover .hoverOverlay {
    background-color: #f29400;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 0.3;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected:hover .hoverOverlay {
    display: none;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected .selectedOverlay {
    background-color: rgba(127, 125, 124, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/option_checkmark_big.png);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected .selectedOverlay {
    background-color: #E00A4F;
    left: auto;
    right: 18px;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-image: none;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected .selectedOverlay:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 9px;
    transform: translate(-50%, -50%);
    background: url(img/option_checkmark.png) no-repeat;
    background-size: 12px 9px;
    filter: brightness(0) invert(1);
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel p {
    font-size: 12px;
    line-height: 1.4em;
    margin: 5px 0 0 0;
    display: block;
    width: 100%;
    word-wrap: break-word;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel p {
    margin: 8px 0 0 0;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel img {
    display: inline-block;
    max-height: 55px;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel img {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 14px;
    background: #fff;
    box-sizing: border-box;
    max-width: 100%;
    max-height: unset;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel p.no-image {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 14px;
    margin: 0;
}
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected img,
#visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel.selected p.no-image {
    border-color: #E00A4F;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .optionGroupCon {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 215px;
    position: relative;
    width: 48%;
    background: #fff;
    z-index: 2;
    box-sizing: border-box;
    padding: 0;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .optionGroupCon.select {
    width: 100%;
    padding: 0 10px 10px 10px;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .optionGroupCon ul {
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .optionGroupCon ul li {
    line-height: 2.5em;
    border-top: solid 1px gray;
    padding: 0 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    list-style: none;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .optionGroupCon ul li:hover {
    background: #f29400;
    color: #fff;
    cursor: pointer;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .optionGroupCon ul li.selected {
    color: #f29400;
}
#visual_calculation.expert .contentwrapper.left .accordion .accordion-item .optionGroupCon ul li.selected:before {
    content: url(img/option_checkmark.png);
    margin-right: 5px;
}
.custom-option {
    display: inline-block;
}
.custom-option label {
    margin-bottom: 10px;
    display: inline-block;
}
.custom-quantity-option {
    display: flex;
}
.custom-option input,
.enhanced-size-option input,
.custom-quantity-option input {
    box-sizing: border-box;
    width: 95%;
    height: 2.2rem;
    padding: .5rem;
    border: 1px solid #dbd9d9;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
}
.custom-option input:focus,
.enhanced-size-option input:focus,
.custom-quantity-option input:focus {
    outline: none;
    border: 1px solid #291d1e;
    background-color: #fff;
    box-shadow: 0 0 0px #dbd9d9;
}
.custom-option .alert-message {
    color: red;
}
#visual_calculation.expert .contentwrapper.left .accordion button.next-step-btn {
    margin-left: 0;
    margin-bottom: 10px;
    padding: 5px 10px;
    border: solid 1px #d1d1d1;
    background: #f7f7f7;
    border-radius: 2px;
    color: #333;
}
#visual_calculation.expert .contentwrapper.left .accordion button.custom-quantity-btn {
    margin-left: 10px;
    padding: 7px;
    text-align: center;
}
#visual_calculation.expert .contentwrapper.left .accordion button.next-step-btn:hover {
    background: #E00A4F;
    color: #fff;
}

.product-wrapper .selected {
    background-color: unset;
}
.fa-product #country-select {
    margin-bottom: -40px;
    text-align: right;
    padding-right: 32%;
    position: relative;
    font-size: 15px;
}
#country-select .selected-country {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
#country-select .selected-country #delivery-to {
    margin-right: 10px;
}
#country-select .selected-country #selected-country-block {
    display: inline-flex;
    align-items: center;
    padding: 10px 10px 8px 10px;
    border: 1px solid #ccc;
}
#country-select .selected-country img {
    width: 20px;
    height: 14px;
    margin-right: 10px;
}
#country-select .selected-country #country-code {
    text-transform: uppercase;
}
#country-select .dropdown-icon {
    font-size: 12px;
    margin-left: auto;
}

#country-select .country-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 35%;
    background-color: white;
    border: 1px solid #ccc;
    list-style-type: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 11;
}
#country-select .country-list li {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
}
#country-select .country-list img {
    width: 20px;
    height: 14px;
    margin-right: 10px;
}
#country-select .country-list li:hover {
    background-color: #f1f1f1;
}
.product_diecut #size-input {
    width: 60%;
}
.next-step-wrapper {
    display: flex;
}
.next-step-block {
    display: inline-block;
}
.next-step-note {
    display: grid;
    align-items: center;
    margin-left: 15px;
}
.next-step-note span {
    margin-bottom: 10px;
    color: #E00A4F;
}
#size-instruction {
    width: 40%;
}
#size-instruction img {
    width: 95%;
}
#quantity-section .label {
    font-weight: bold;
}
#quantity {
    padding-top: 5px;
    padding-bottom: 10px;
}
#quantity select {
    width: 100%;
    border-radius: unset;
    border: 1px solid #dbd9d9;
}
.custom-quantity-block {
    display: flex;
    border-style: solid;
    border: 1px solid #dbd9d9;
    margin-top: 5px;
}
#input-custom-quantity {
    width: 100%;
    padding: .5rem;
}
.design-option {
    width: 40%;
}
.quantity-division-option {
    width: 60%;
    margin-bottom: 5px;
}
.design-quantity-block {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.design-quantity-block .design-label {
    display: inline-block;
    width: 15%;
}
.design-option label,
.design-quantity-block label {
    font-size: inherit;
}
.design-quantity-block .quantity-per-design-input {
    margin: 0 5px;
    padding: .5rem;
    border: 1px solid #dbd9d9;
}
.attribute-help .fa-info-circle {
    color: #E00A4F;
}
.help-content {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    min-width: 300px;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}
.help-content a {
    color: #E00A4F;
}
.size-type-block,
.quantity-type-wrapper {
    margin-bottom: 30px;
    display: flex;
}
.size-type-block .size-type-btn,
.quantity-type-wrapper .quantity-type-btn {
    border: 1px solid #f0f0f0;
    width: 44%;
    padding: 7px 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #000;
}
.size-type-block .size-type-btn.active,
.quantity-type-wrapper .quantity-type-btn.active {
    background-color: #f0f0f0;
    color: #000;
    border-color: #E00A4F;
}
.production-time-block {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.discount-text {
    display: none;
    position: absolute;
    top: 22%;
    left: 62%;
    width: 70px;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1100;
    opacity: 0;
}
.production-time-block:hover .discount-text {
    display: block;
    opacity: 1;
}
.complete-date {
    font-weight: normal;
}
.production-closure-term {
    display: block;
    margin-top: 4px;
    color: #9a5b00;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
}
.production-closure-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 0 12px;
    padding: 12px 14px;
    border: 1px solid #efc46a;
    border-radius: 8px;
    background: #fff7e5;
    color: #5d4100;
    line-height: 1.4;
}
.production-closure-notice > i {
    color: #d07a00;
    font-size: 22px;
}
.production-closure-notice strong,
.production-closure-notice span {
    display: block;
}
.production-closure-notice strong {
    margin-bottom: 2px;
    color: #342500;
}
.production-closure-faster-term {
    margin-top: 5px;
    color: #087a3d;
    font-weight: 700;
}
.production-time {
    font-weight: normal;
}
#delivery .holiday-note {
    margin-bottom: 10px;
}
#price-type-switch {
    display: flex;
    align-items: center;
    position: absolute;
    top: -17px;
    right: 0;
}
#price-type-switch #switch-block {
    border-radius: 5px;
    overflow: hidden;
    margin-left: 5px;
    display: inline-block;
}
#price-type-switch button {
    padding: 5px 12px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}
#price-type-switch .net-price-btn {
    margin-right: -3px;
}
#price-type-switch button.active {
    background: #E00A4F;
    color: #fff;
}
#price-type-switch button:not(.active) {
    background: #f0f0f0;
    color: #000;
}
#visual_calculation.expert .contentwrapper.left .optionGroup {
    margin-top: 30px;
}
.note {
    margin-top: 20px;
}
.overnight-note {
    color: red;
}
#data-rule-section {
    border: #34A618 1px solid;
    margin-top: 10px;
}
#data-rule-section #print-file-format {
    display: flex;
}
#data-rule-section #file-type {
    text-transform: uppercase;
}
#data-rule-section .left-column {
    width: 60%;
}
#data-rule-section #standard-rule {
    margin-top: 10px;
}
#data-rule-section #rule-list {
    margin: 5px 0 0 15px;
}

/** CSS for tooltip **/
.tooltip {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    z-index: 1000;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
}
/* Arrow */
.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    bottom: -10px;
    left: 10%;
    transform: translateX(-50%);
}
.tooltip-arrow::before,
.tooltip-arrow::after {
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
}
.tooltip-arrow::before {
    border-width: 10px;
    border-color: #ccc transparent transparent transparent;
    top: -10px;
    left: -10px;
}
.tooltip-arrow::after {
    border-width: 9px;
    border-color: #fff transparent transparent transparent;
    top: -10px;
    left: -9px;
}
/** End CSS for tooltip **/

.delivery-label {
    font-weight: bold;
}
.delivery-time {
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 15px;
}
#no-reseller-option-selected {
    color: red;
}
#no-data {
    border: #d1d1d1 1px solid;
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: red;
}
.price-block #priceValue,
.price-block #priceValueNetto {
    float: right;
    font-weight: 600;
}
.price-block:not(:has(#priceValueNoDiscount)) #priceValue,
.price-block:not(:has(#priceValueNoDiscount)) #total_gross_price
{
    color: inherit;
}
.price-block:not(:has(#priceValueNettoNoDiscount)) #priceValueNetto,
.price-block:not(:has(#priceValueNettoNoDiscount)) #total_net_price {
    color: inherit;
    font-weight: 500;
}

#priceValueNettoNoDiscount, #priceValueNoDiscount {
    margin-right: 7px;
    text-decoration: line-through;
    font-weight: 500 !important;
}
#total_net_price {
    font-weight: bold;
}
#priceValue, #priceValueNetto, #priceTable .final-price, #total_net_price, #total_gross_price {
    color: #34A618;
}
#box #price #priceValueNettoNoDiscount,
#box #price #priceValueNoDiscount {
    margin-right: 0;
}
#priceTable .no-discount-price {
    margin-right: 5px;
    text-decoration: line-through;
}
#priceTable .final-price {
    font-weight: 600;
    font-size: 13px;
}
#priceTable .price-cell:not(:has(.no-discount-price)) .final-price {
    color: inherit;
    font-weight: 500;
    font-size: inherit;
}
.production-time-note {
    position: absolute;
    top: -10px;
    left: 0;
}
#product-options {
    display: none;
}
#product-options .product-option-block {
    display: grid;
    margin-bottom: 5px;
}
#product-options .product-option-block label {
    font-weight: bold;
}
#product-options .product-option-block select {
    width: 100%;
}
.wmd-product .btnDieCutAddToCard {
    display: none;
}
.onlinedesigner-wrapper {
    position: relative;
}
.onlinedesigner-note {
    display: none;
    position: absolute;
    bottom: 95%;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
}
.btnDieCutAddToCard:hover + .onlinedesigner-note {
    display: block;
}
#visual_calculation .contentwrapper.right .onlinedesigner-wrapper .btn.success {
    margin: 5px 0 0 0;
}

.enhanced-size-wrapper {
    width: 100%;
}
.enhanced-size-option {
    width: 33%;
    float: left;
    margin-bottom: 5px;
    display: flex;
}
.enhanced-size-option label {
    display: grid;
}
.info-message {
    margin-bottom: 5px;
}
.delivery-section .option {
    width: 23% !important;
}
.delivery-section .option .delivery-date {
    display: inline-block;
    margin-top: 5px;
}
.wmd-product .custom-option {
    width: 40%;
}
.wmd-product .next-step-block {
    align-items: end;
    display: grid;
}
.wmd-product .next-step-block .next-step-btn {
    padding: 7px 20px !important;
}
.wmd-product #visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel:not([data-attribute-type="motive"]) {
    width: 31.7%;
}
.wmd-product #visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container select {
    width: 99%;
    margin-bottom: 15px;
    padding: 7px;
}
.wmd-product #visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container select:focus {
    outline: none;
    border: 1px solid #291d1e;
    background-color: #fff;
    box-shadow: 0 0 0px #dbd9d9;
}
.safe-distance-label {
    margin-top: 5px;
    display: inline-block;
}
.guarantee-badge-widget {
    margin-top: 25px;
    display: flex;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    align-items: center;
}
.guarantee-badge-widget .left {
    width: 25%;
}
.guarantee-badge-widget .left img {
    width: 100%;
}
.guarantee-badge-widget .right {
    width: 75%;
}
.rating-wrapper .rating-box {
    width: 100%;
    justify-content: center;
}
.rating-wrapper .rating-box .rating-icons {
    display: flex;
}

@media screen and (max-width: 1023px) {
    .wrp {
        width: 100%;
        box-sizing: border-box;
    }
    #visual_calculation.expert .contentwrapper.left, #visual_calculation.expert .contentwrapper.right {
        width: 100%;
        height: auto !important;
        float: none;
        position: relative !important;
    }
}
@media screen and (max-width: 800px) {
    .contentwrapper .textwrapper, .contentwrapper img {
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
    #visual_calculation.expert .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel,
    #visual_calculation.expert.version-new .contentwrapper.left .accordion .accordion-item .selectOptions .conOptions .flex-container .panel {
        width: 31.7%;
    }
}
@media screen and (max-width: 480px) {
    .fa-product #productDescription {
        padding-top: 10px !important;
    }
    #visual_calculation.expert .contentwrapper.left .accordion .accordion-item.selected button small.change-btn  {
        display: none;
    }
    #visual_calculation.expert .contentwrapper.left .accordion button .accordion-title strong {
        display: inherit;
    }
    #visual_calculation.expert .contentwrapper.left {
        padding: 20px 0;
    }
    .design-option {
        width: 100%;
    }
    .quantity-division-option {
        width: 100%;
        margin-top: 10px;
    }
    .product_diecut #size-input {
        width: 100%;
    }
    .size-type-block .size-type-btn {
        width: 43%;
    }
    .discount-text {
        left: 35%;
    }
    .production-time-note {
        position: relative;
        top: 0;
        margin-bottom: 12px;
    }
    .configuration-step-heading {
        gap: 9px;
    }
    .quantity-step-heading {
        padding: 12px;
    }
    .upload-requirement-action,
    .upload-configuration-action {
        width: 100%;
    }
}
