.productmods-front {
    position: relative;
    z-index: 20;
    margin: 0 0 34px;
    font-family: "Museo Sans Cyrl", "Open Sans", Tahoma, Arial, sans-serif;
}

.productmods-front__group {
    margin: 0 0 26px;
}

.productmods-front__group h2 {
    margin: 0 0 12px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.productmods-front__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.productmods-front__item {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    width: 94px;
    min-height: 48px;
    padding: 6px 7px;
    border: 1px solid #d9dfe8;
    border-radius: 5px;
    color: #111212;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

.productmods-front__item:hover {
    border-color: #6ca4f4;
    color: #111212;
}

.productmods-front__item.is-disabled {
    border-color: #e3e6ec;
    color: #98a2b3;
    background: #f5f6f8;
    cursor: default;
}

.productmods-front__item.is-disabled .productmods-front__label {
    color: #8b94a3;
}

.productmods-front__item.is-current {
    border: 2px solid #4d91f4;
    padding: 5px 6px;
}

.productmods-front__label {
    display: block;
    color: #111212;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.productmods-front__item:hover .productmods-front__label,
.productmods-front__item.is-current .productmods-front__label {
    color: #111212;
}

.productmods-front__tooltip {
    position: absolute;
    z-index: 1000;
    left: 50%;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    width: 190px;
    padding: 10px 12px;
    border-radius: 5px;
    color: #111212;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .16);
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transform: translate(-50%, 4px);
    transition: opacity .15s ease, transform .15s ease;
}

.productmods-front__tooltip-image {
    display: grid;
    place-items: center;
    width: 100%;
    height: 62px;
    margin-bottom: 2px;
}

.productmods-front__tooltip-image img {
    max-width: 96px;
    max-height: 62px;
    object-fit: contain;
}

.productmods-front__tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: translate(-50%, 5px) rotate(45deg);
}

.productmods-front__item:hover .productmods-front__tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}

.productmods-front__tooltip b {
    font-size: 12px;
    line-height: 1.25;
}

.productmods-front__tooltip small {
    color: #667085;
    font-size: 11px;
}

.productmods-front__tooltip strong {
    color: #111212;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
}

@media (max-width: 767px) {
    .productmods-front {
        margin-bottom: 24px;
    }

    .productmods-front__items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .productmods-front__item {
        width: auto;
        min-height: 48px;
    }

    .productmods-front__tooltip {
        display: none !important;
    }
}
