.customizationControl {
    padding: 8px 16px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.customizationControl:last-child {
    padding: 0 16px 8px 16px;
}

.customizationControl__title {
    font-size: 16px;
    height: 40px;
    font-weight: 600;
    align-content: center;
    color: #050d33;
}

.customizationControl__section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.customizationControl__sectionButtons {
    width: 122px;
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.customizationControl_color__section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.customizationControl__sectionTitle {
    flex-basis: 50%;
    color: #050d33;
}

.customizationControl__infoBlock {
    background-color: rgba(92, 94, 102, 0.06);
    width: 50px;
    text-align: center;
    border-radius: 8px;
    align-content: center;
    color: #050d33;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.customizationControl__btn {
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #050d33;
    border-radius: 8px;
    background-color: rgba(92, 94, 102, 0.06);
    transition: background-color 0.2s;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.customizationControl__btn:disabled {
    opacity: 0.4;
}

.customizationControl_color__btn {
    border: none;
    cursor: pointer;
    width: 122px;
    height: 32px;
    padding: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #050d33;
    border-radius: 8px;
    text-align: left;
    background-color: rgba(92, 94, 102, 0.06);
    transition: background-color 0.2s;
    background-image: url('./shuffle.svg');
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.customizationControl__btn:hover {
    background-color: rgba(92, 94, 102, 0.12);
}

.customizationControl__btn:active {
    background-color: rgba(92, 94, 102, 0.12);
}

.customizationControl_color__btn:hover {
    background-color: rgba(92, 94, 102, 0.12);
}

.customizationControl_color__btn:active {
    background-color: rgba(92, 94, 102, 0.12);
}

.customizationControl__btn:disabled {
    cursor: not-allowed;
    background-color: rgba(92, 94, 102, 0.04);
}

.customizationControl__btn.minus {
    background-image: url('./minus.svg');
}

.customizationControl__btn.plus {
    background-image: url('./plus.svg');
}

.divider {
    margin: 8px 0 0 0;
    width: 100%;
    height: 1px;
    background-color: rgba(92, 94, 102, 0.14);
    border: none;
}
