.comparator-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 14px 14px 0 0;
    z-index: 1000001;
    position: relative;
}

body.comparator-open #comparator.comparator-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

.comparator-left,
.comparator-right {
    display: flex;
    align-items: center;
}

.wrap-counter-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.wrap-counter-text p {
    color: #251B1E;
    font-size: 14px;
}

.wrap-counter-text p:last-child {
    color: rgba(37, 27, 30, 0.65);
    font-weight: 400;
}

.comparator-actions {
    gap: 8px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 16px;
}

.visual-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #251B1E;
    border-radius: 4px;
    background: #FFF;
    cursor: pointer;
    opacity: 1;
    transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease, opacity 150ms ease;
}

.visual-checkbox.loading {
    opacity: 0;
}

.visual-checkbox.checked {
    background-color: #251B1E;
    border-color: #251B1E;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.compare-button {
    cursor: pointer;
}

.compare-button:disabled {
    cursor: not-allowed;
}

.selected-count {
    font-weight: 600;
    color: #333;
    opacity: 1;
    transition: opacity 150ms ease;
}

.selected-count.loading {
    opacity: 0;
}

.comparator-programme-title-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
    text-align: center;
    margin: 0;
    line-height: 1.25;
}

.comparator-programme-title {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    color: #252525;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.comparator-programme-title:hover,
.comparator-programme-title:focus {
    color: #B51227;
    text-decoration: none;
}

.comparator-remove-programme {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.comparator-remove-icon {
    width: 24px;
    height: 24px;
    border: 1.5px solid #252525;
    border-radius: 999px;
    position: relative;
    display: inline-block;
}

.comparator-remove-icon::before,
.comparator-remove-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #252525;
    transform-origin: center;
}

.comparator-remove-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.comparator-remove-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.comparator-remove-programme:hover .comparator-remove-icon,
.comparator-remove-programme:focus .comparator-remove-icon {
    border-color: #B51227;
}

.comparator-remove-programme:hover .comparator-remove-icon::before,
.comparator-remove-programme:hover .comparator-remove-icon::after,
.comparator-remove-programme:focus .comparator-remove-icon::before,
.comparator-remove-programme:focus .comparator-remove-icon::after {
    background: #B51227;
}

#contentComparator.full-screen .row.title {
    align-items: center;
}

/* #contentComparator.full-screen>.container {
    max-width: none;
    width: 160%;
} */

#contentComparator .caract {
    display: flex;
    align-items: center;
    flex-flow: wrap column;
    padding-bottom: 1rem;
    margin-top: 1rem;
    border-bottom: 1px solid #251B1E;
    width: 100%;
}

#contentComparator .caract .label {
    display: flex;
    gap: 8px;
    align-items: center;
}

#contentComparator .wrap-comparable-elements>.row:last-child .caract {
    border-bottom: unset;
}

#contentComparator.full-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 4rem 0 8rem 0;
    background: rgba(255, 255, 255, 1);
    z-index: 1000000;
    height: 100vh;
    overflow: auto;
}