<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset spacing globally */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header-top-div-time {
    display: flex;
}

.header-top-div {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.hover-hours {
    cursor: pointer;
    color: #007bff;
    font-weight: bold;
}

.hover-hours:hover {
    text-decoration: underline;
}

.p-tag {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.working-hours-tooltip {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    margin-top: 10px;
    transform: translateX(-145px);
    min-width: 300px;
    z-index: 99999999;
}

.header-top-div-time:hover .working-hours-tooltip {
    display: block;
}

.working-hours-tooltip-items {
    display: flex;
    gap: 5px;
    align-items: center;
}

.working-hours-tooltip-item-exception {
    font-size: 16px;
    color: #415054;
    line-height: 1.2;
}

.working-hours-tooltip-div {
    display: flex;
    flex-direction: column;
}

.header-top-items {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 17px;
    line-height: 1;
}

.header-top-info {
    display: flex;
    justify-content: end;
    padding: 8px 0;
}

.header-top-a {
    color: #075BAA;
    line-height: 1;
    text-decoration: none;
    font-weight: 450;
}

.header-top-a:hover {
    text-decoration: none;
}


@media (max-width: 1264px) {
    .header-top-items {
        margin: 0 15px 0 0;
    }
}


@media (max-width: 1023px) {
    .header-top-items {
        display: grid;
        grid-template-rows: auto auto;
        grid-template-columns: auto auto auto;
        justify-content: center;
        align-items: center;
        gap: 10px 20px;
        margin: 0;
    }

    .header-top-div-time {
        grid-row: 1;
        grid-column: 1 / -1;
        justify-self: center;
    }

    .header-top-a:first-child {
        grid-row: 2;
        grid-column: 1;
    }

    .header-top-div:nth-of-type(1) {
        grid-row: 2;
        grid-column: 2;
    }

    .header-top-div:nth-of-type(2) {
        grid-row: 2;
        grid-column: 3;
    }

    .header-top-info {
        justify-content: center;
    }

    .hover-hours {
        font-weight: bold;
    }
}
</pre></body></html>