/* Кастомный чекбокс */

.ts-checkbox {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
}

.ts-checkbox-control:hover {
    cursor: pointer;
}

.ts-checkbox-control {
    align-self: center;
    width: 20px;
    height: 20px;
}

.ts-checkbox-control input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--OPTION);
    transform: scale(1);
    outline: none;
    cursor: pointer;
    background-color: var(--OPTION);
}

.ts-checkbox-control input[type="checkbox"]:checked {
    background-color: var(--PRIMARY);
    border: 1px solid var(--PRIMARY);
}

.ts-checkbox-control input[type="checkbox"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M9 1L3.66667 6L1 3.5' stroke='%23DEDEDE' stroke-width='2'/%3E%3C/svg%3E");
    display: flex;
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ts-checkbox-control input[type="checkbox"]:checked::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M9 1L3.66667 6L1 3.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    display: flex;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}