.kit-period {
    display: flex;
    flex-wrap: wrap;
    max-width: 270px;
    font-family: "PT Sans", sans-serif;

    &__item {
        position: relative;
        display: block;
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        margin-right: 9px;
        margin-bottom: 8px;
        cursor: pointer;

        &:hover {
            opacity: 0.8;
        }
    }

    &__input {
        position: absolute;
        left: -9999px;
        opacity: 0;
    }

    &__title {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to bottom, #fefefe, #e2e3e5);
        border: 1px solid #b0b2b5;
        border-radius: 2px;
        box-sizing: border-box;
        font-size: 14px;
        color: #000000;
    }

    &__input:checked+&__title {
        background-image: linear-gradient(to bottom, #69709e, #8299ba);
        border: none;
        color: #ffffff;

        &:hover {
            opacity: 1;
        }
    }

    &_theme_small &__item {
        width: 29px;
        height: 29px;
        margin-right: 8px;
    }
}