.comparison-headline {
    z-index: 99999;
}

.comparison-detail {
    display: none;
    margin-bottom: 1rem;
}

body.mfn-ui .comparison-detail {
    display: block !important;
}

.comparison-detail.is-active {
    display: block;
}

.custom-select .comparison-items {
    list-style: none;
    padding: 0;
    display: none;
}

.comparison-items .img-wrapper, .active-comparison-item .img-wrapper {
    display: inline-block;
    max-height: 30px;
}

.comparison-items img, .active-comparison-item img {
    max-width: 100%;
    height: 30px!important;
    max-height: 30px;
}

.active-comparison-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.active-comparison-item::before,
.active-comparison-item::after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 10px;
    background-color: #aaa;
    position: absolute;
    right: 0;
}

.active-comparison-item::before {
    transform: rotate(45deg);
    right: 20px;
}

.active-comparison-item::after {
    transform: rotate(-45deg);
    right: 15px;
}

.custom-select.active .active-comparison-item::after {
    right: 20px;
}

.custom-select.active .active-comparison-item::before {
    right: 15px;
}

.custom-select.active .comparison-items {
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 6px 1px #ddd;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 300px;
    border: 1px solid #333;
}

.comparison-items li {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comparison-items li:not(:last-child) {
    border-bottom: 1px solid #aaa;
}

.comparison-items li:hover {
    box-shadow: 0 0 11px 1px rgba(182, 182, 182, 0.75) inset;
}

.custom-select {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    width: 80%;
    min-width: 300px;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
}

/* Data table */
.comparison-table {
    color: #333;
    border: 1px solid #ccc;
    background-color: #fff;
}
.comparison-table, .comparison-table tr, .comparison-table td {
    text-align: center;
}

.comparison-table tr:first-child {
    font-size: 1.5rem;
}

.comparison-table tr th {
    width: 25%;
}

.comparison-table tr th:first-child {
    width: 50%;
}

.comparison-table th, .comparison-table tr td:first-child {
    text-align: left!important;
}

.comparison-table th {
    background-color: #cef!important;
}

.comparison-table .comparison-check-icon {
    font-size: 1.5rem;
    color: #0097E6;
}

.comparison-table .comparison-times-icon {
    font-size: 1.5rem;
    color: #666;
}

.comparison-table .comparison-info-icon {
    color: #005998;
}