/* New styles for the header */

/* active nav link underline */

.navbar .nav-item.active .nav-link {
    position: relative;
}

.navbar .nav-item.active .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #cd3432;
}

/* customer support block */

.customer-support {
    display: none;
    align-items: center;
    gap: 5px;
}

@media (min-width: 1025px) {
    .customer-support {
        display: flex;
    }
}

.customer-support-icon {
    width: 18px;
    height: 18px;
    fill: #cd3432;
    flex-shrink: 0;
}

.customer-support-text {
    display: flex;
    flex-direction: column;
}

.customer-support-label {
    font-size: 14px;
    font-weight: 700;
    color: #7e8085;
    margin: 0;
}

.customer-support-phone {
    font-size: 19px;
    font-weight: 600;
    color: #2c2e30;
}

.customer-support-disclaimer {
    font-size: 10px;
    font-weight: 500;
    color: #7e8085;
}

.customer-support-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.customer-support-badge {
    font-size: 10px;
    font-weight: 700;
    color: #cd3432;
    border: 1px solid #2c2e30;
    border-radius: 3px;
    padding: 5px 7px;
    line-height: 1;
}
