.linxo-woo__header {
    display: flex;
    justify-content: space-between;
    background-color: $color-bg-light;
    border: 1px solid $color-border;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;

    &__logo {

        & img {
            height: 50px;
            vertical-align: middle;
        }
    }

    &__support {
        display: flex;

        &__contact {
            display: flex;
            align-items: center;

            &__icon {

                & img {
                    height: 50px;
                    width: auto;
                }
            }

            &__text {
                display: flex;
                flex-direction: column;
                justify-content: center;
                border-left: 1px solid;
                padding-left: 15px;
                margin-left: 15px;
                margin-right: 15px;

                & p {
                    font-size: 12px;
                    font-weight: 400;
                    color: $color-text;
                    padding: 0;
                    margin: 0;
                    margin-bottom: 8.5px;
                }
            }
        }

        &__buttons {
            display: flex;
            flex-direction: column;
            justify-content: space-around;

            & &__download {
                display: inline-block;
                font-size: 12px;
                font-weight: 400;
                line-height: 1.42857;
                text-align: center;
                background-color: $color-link;
                color: $color-text-light;
                text-transform: uppercase;
                background-image: none;
                border: 1px solid $color-link;
                border-radius: 3px;
                cursor: pointer;
                user-select: none;
                vertical-align: middle;
                white-space: nowrap;
                text-decoration: none;
                padding: 6px 8px;
                margin-bottom: 0;

                &:hover {
                    color: $color-text-light;
                    background-color: $color-link-hover;
                    text-decoration: none;
                    border: 1px solid $color-link-hover;
                }
            }
        }
    }
}