:root {
    --header-height: 103px;
}

.buttons-with-images {
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 50px;
        padding: 9px 20px;

        img {
            width: 32px;
            height: 32px;
            border-radius: 2px;
            object-fit: cover;
            display: inline-block;
        }

        span {
            position: relative;
            top: -1px;
        }
    }
}

.top-header {
    background-color: #04937f;
    color: white;
    font-size: 14px;

    @media screen and (max-width: 1200px) {
        display: none;
    }

    .top-header__inner {
        width: 100%;
        max-width: 1300px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        padding: 0 24px;
        align-items: center;
        gap: 32px;
        height: 32px;
    }

    .top-header__right {
        ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 24px;
            margin: 0;
            padding: 0;

            a {
                color: white;
            }
        }
    }
}

.top-header__menu--mobile {
    display: none !important;

    @media screen and (max-width: 1200px) {
        display: block !important;
        margin-top: 32px !important;

        li {
            margin: 0 !important;
        }
    }
}

.header-navigation {
    .menu-menu-header-container {
        > ul {
            li {
                a {
                    font-size: 16px !important;
                }
            }
            li:last-of-type {
                margin-right: 0 !important;

                a {
                    padding: 9px 14px 9px;
                }
            }
        }
        ul.sub-menu {
          li {
              a {
                  padding: 7px 0;
              }
          }
        }
    }
}

body {
    @media screen and (min-width: 1201px) {
        padding-top: var(--header-height);
    }

    #header {
        @media screen and (min-width: 1201px) {

            &.header_fix {
                top: calc(0px - var(--header-height));
            }

            .admin-bar & {
                top: 32px;
            }

            .menu-menu-header-container {
                right: 0;
                left: auto;
            }
        }
    }
}