.compare-modal-btn {
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    transition: all .25s ease;
}

/* перейти */

.compare-modal-btn.primary {
    background: red;
    border-color: red;
    color: #fff;
}

.compare-modal-btn.primary:hover {
    background: #cb0202;
}

.compare-modal-btn.secondary {
    padding: 5px 8px;
    background-color: #f0f0f0;
    color: #0066cc;
    border: 1px solid #f0f0f0;
    width: fit-content;
    transition: all 0.3s ease;
    cursor: pointer;

    input {
        display: none;
    }

    &:hover {
	    background-color: #e0e0e0;
	    border-color: #e0e0e0;
    }
}

.label-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.label-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.label-checkbox .checkmark {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border: 1px solid #b6d4dc;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.label-checkbox:hover .checkmark {
    border-color: #8ab3c0;
}

.label-checkbox input[type="checkbox"]:focus + .checkmark {
    border-color: #5a9aa8;
}

.label-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #5a9aa8;
    border-color: #5a9aa8;
}

.label-checkbox .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.25s ease;
}

.label-checkbox input[type="checkbox"]:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.label-checkbox .text {
    color: #555555;
    font-size: 14px;
    line-height: 1.33333;
}

.label-checkbox .text a {
    color: #30a8e1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.label-checkbox .text a:hover {
    color: #3d7a87;
    border-bottom-color: #5a9aa8;
}

.label-checkbox .text a:focus {
    outline: 2px solid #5a9aa8;
    outline-offset: 2px;
}

.label-checkbox.error {
    border-color: #e74c3c;
}

.label-checkbox.error .checkmark {
    border-color: #e74c3c;
}