/* Minification failed. Returning unminified contents.
(16,23): run-time error CSS1039: Token not allowed after unary operator: '-font-family'
(64,35): run-time error CSS1039: Token not allowed after unary operator: '-color-light-blue-gray'
(98,39): run-time error CSS1039: Token not allowed after unary operator: '-color-light-blue-gray'
(102,32): run-time error CSS1039: Token not allowed after unary operator: '-color-light-gray'
(107,32): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(113,32): run-time error CSS1039: Token not allowed after unary operator: '-color-light-blue-gray'
 */
.applicability__form {
    display: flex;
    flex-direction: column;
}

.applicability__form-label {
    margin-bottom: 5px;
}

.applicability__form-select {
    width: 100%;
    height: 39px;
    border-radius: 5px;
    outline: none;
    color: rgba(25, 25, 25);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.08px;
    padding: 3px 10px;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.196101 0.183547C0.447152 -0.0605312 0.854187 -0.0605312 1.10524 0.183547L4.50781 3.49161L7.91039 0.183547C8.16144 -0.0605312 8.56847 -0.0605312 8.81952 0.183547C9.07058 0.427624 9.07058 0.823352 8.81952 1.06743L4.96238 4.81743C4.71133 5.06151 4.3043 5.06151 4.05324 4.81743L0.196101 1.06743C-0.0549503 0.823352 -0.0549503 0.427624 0.196101 0.183547Z' fill='%23979797'/%3E%3C/svg%3E");
    background-position: right 10px center;
    background-repeat: no-repeat, repeat;
    background-size: 9px 5px;
    border: 1px solid #d2d2d2;
    box-sizing: border-box;
    padding-right: 40px;
    text-align: left;
}

.applicability__form-label ~ .applicability__form-label {
    margin-top: 20px;
}

.applicability__form-label,
.applicability__table-top p {
    font-weight: 600;
    line-height: 120%;
}

.applicability__table-inner {
    margin-top: 30px;
    overflow-x: auto;
    width: 100%;
}

.applicability__table {
    min-width: 460px;
    width: 100%;
}

.applicability__table-block,
.applicability__table-top {
    display: flex;
    align-items: center;
}

.applicability__table-top {
    border-bottom: 1px solid var(--color-light-blue-gray);
    padding: 11px 16px;
}

    .applicability__table-item:nth-of-type(1),
    .applicability__table-top p:nth-of-type(1) {
        width: 15%;
    }

    .applicability__table-item:nth-of-type(2),
    .applicability__table-top p:nth-of-type(2) {
        width: 20%;
    }

    .applicability__table-item:nth-of-type(3),
    .applicability__table-top p:nth-of-type(3) {
        width: 10%;
    }

    .applicability__table-item:nth-of-type(4),
    .applicability__table-top p:nth-of-type(4) {
        width: 30%;
    }

    .applicability__table-item:nth-of-type(5),
    .applicability__table-top p:nth-of-type(5) {
        width: 25%;
    }

.applicability__table-block {
    padding: 11px 16px;
}

    .applicability__table-block:not(:last-of-type) {
        border-bottom: 1px solid var(--color-light-blue-gray);
    }

    .applicability__table-block:nth-of-type(2n-1) {
        background-color: var(--color-light-gray);
    }

@media (max-width: 767px) {
    .product__info-content.product-applicability {
        background-color: var(--color-white);
        margin: -15px -15px;
        padding: 15px 15px;
    }

    .applicability__table-inner {
        border: 1px solid var(--color-light-blue-gray);
    }

    .applicability__table-top {
        align-items: end;
    }

        .applicability__table-item:nth-of-type(1),
        .applicability__table-top p:nth-of-type(1) {
            width: 30%;
        }

        .applicability__table-item:nth-of-type(2),
        .applicability__table-top p:nth-of-type(2) {
            width: 40%;
        }

        .applicability__table-item:nth-of-type(3),
        .applicability__table-top p:nth-of-type(3) {
            width: 20%;
        }

        .applicability__table-item:nth-of-type(4),
        .applicability__table-top p:nth-of-type(4) {
            width: 45%;
        }

        .applicability__table-item:nth-of-type(5),
        .applicability__table-top p:nth-of-type(5) {
            width: 35%;
        }
}

