:root {
    --primary: #2e5460;
    --secondary: #e64d4c;
}

/* Попап */
    .t-popup__container {
        border-radius: 40px !important;
        overflow: hidden;
    }

/* Форма */
    /* Собщение об ошибке */
        .t-form__errorbox-wrapper {
            border-radius: 10px;
        }
    
    /* Чекбоксы */
        .t-checkbox__indicator {
            border-color: var(--primary) !important;
            border-radius: 6px;
            opacity: 1 !important;
        }
        .t-checkbox__control .t-checkbox:checked~.t-checkbox__indicator {
            background: var(--primary);
        }
        .t-checkbox__indicator:after {
            border-color: #fff !important;
        }

/* Каталог */
    /* Категории */
        .t-store__parts-switch-btn {
            max-width: 240px;
            font-weight: 400 !important;
            color: var(--primary);
            background: transparent;
            border: 1px solid var(--primary);
            border-radius: 6px;
            padding: 4px 8px;
            transition: all .2s ease-in-out;
        }
        .t-store__parts-switch-btn:hover {
            font-weight: 400 !important;
            color: #fff;
            background: var(--primary);
            border: 1px solid var(--primary);
        }
        .t-store__parts-switch-btn.t-active {
            opacity: 1 !important;
            color: #fff;
            background: var(--secondary);
            border: 1px solid var(--secondary);
        }