<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header-line {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 5px auto;
    height: auto;
    /*border-bottom: 1px rgba(43, 61, 79, 0.045) solid;*/
}

.dep-container{
    width: 275px;
}


.header-img-hl{
    width: 40px;
}

.dropdown-container {
    /*margin: 5px 0;*/
    font-family: Arial, sans-serif;
    display: flex;
    gap: 20px;
}

.dropdown-select {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    /*margin-bottom: 10px;*/
}
.dropdown-select:focus {
    outline: none;
    border-color: initial; /* Ð’ÐµÑ€Ð½ÑƒÑ‚ÑŒ Ñ†Ð²ÐµÑ‚ Ð³Ñ€Ð°Ð½Ð¸Ñ†Ñ‹ Ð² Ð¸ÑÑ…Ð¾Ð´Ð½Ð¾Ðµ ÑÐ¾ÑÑ‚Ð¾ÑÐ½Ð¸Ðµ */
}

/* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ Ñ€Ð°Ð¼ÐºÑƒ Ð¿Ñ€Ð¸ Ð²Ñ‹Ð±Ð¾Ñ€Ðµ Ð¸Ð»Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
.dropdown-select {
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 15px;
}

/* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ Ð¿Ð¾Ð´ÑÐ²ÐµÑ‚ÐºÑƒ Ð¿Ñ€Ð¸ Ñ„Ð¾ÐºÑƒÑÐµ */
.dropdown-select:focus {
    outline: none;
    border: none; /* ÐœÐ¾Ð¶ÐµÑ‚Ðµ Ð·Ð°Ð´Ð°Ñ‚ÑŒ Ð½ÑƒÐ¶Ð½Ñ‹Ð¹ Ñ†Ð²ÐµÑ‚ */
    box-shadow: none; /* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ Ð»ÑŽÐ±Ñ‹Ðµ Ñ‚ÐµÐ½Ð¸ */
}



/* ÐÐ°Ð²ÐµÐ´ÐµÐ½Ð¸Ðµ Ð½Ð° Ð²Ñ‹Ð¿Ð°Ð´Ð°ÑŽÑ‰Ð¸Ð¹ ÑÐ¿Ð¸ÑÐ¾Ðº (Ð² Ð±Ñ€Ð°ÑƒÐ·ÐµÑ€Ð°Ñ…, ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ðµ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÑŽÑ‚) */
.dropdown-select option:hover {
    background-color: #f5f5f5; /* Ð¡Ð²ÐµÑ‚Ð»Ð¾-ÑÐµÑ€Ñ‹Ð¹ Ñ„Ð¾Ð½ */
}

.phone-display {
    display: flex;
    align-items: center;
    width: 200px;
    font-size: 14px;
    /*margin-top: 10px;*/
}




.dep-cont{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.dep-item{
    display: flex;
    flex-direction: column;
}
.container-link-top{
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-header-link {
    margin: 7px;
    color: #3a3a3a;
}
.top-header-link:hover {
    color: #eb5b28;
}
.top-header-department {
    display: flex;
    align-items: center;
    margin: 0px 0px 0px 0px;
    padding-right: 15px;
    border-right: 1px rgba(43, 61, 79, 0.045) solid;
}
.top-header-department img {
    height: 20px;
}
.top-header-department span {
    margin-left: 5px
}
.phone-number {
    display: flex;
    align-items: center;
    margin: 0px auto 0px 0px;
}
.phone-number-img {
    height: 18px;
    margin: 0px 5px 0px 5px;
}







@media (max-width: 1600px) {
    .dropdown-container{
        padding: 0 20px;
    }
}

@media (max-width: 1070px) {
    .container-link-top{
        display: none;
    }
}

@media (max-width: 470px) {
    .dropdown-container{
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    .dropdown-container{
        gap: 5px;
        margin-bottom: 10px;
        padding: 0 10px;
    }
    .header-line{
        gap: 10px;
        justify-content: center;
        background-color: var(--white);
    }
}

@media (max-width: 400px) {
    .dropdown-container{
        width: 220px;
    }
}
</pre></body></html>