.mobile-view {
    display: none !important;
}

.desktop-view {
    display: block !important;
}

.desktop-view-flex {
    display: flex !important;
}

.top_header {
    background: #50b6c0;
    padding: 1rem 0;
}

.top_header .page-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_header .top_header-left {
    display: flex;
    align-items: center;
}

.top_header a.call {
    color: #fff;
    text-decoration: none;
    position: relative;
    margin-left: 4rem;
    display: flex;
    align-items: center;
    opacity: 1;
    transition: 300ms opacity ease-in-out;
    margin-right: 10px;
}

.top_header a.call:hover {
    opacity: 0.8;
    transition: 300ms opacity ease-in-out;
}

.button-orange,
.button-sale {
    border-radius: 0.5rem;
    transition: 500ms background-color ease-in-out;
    position: static;
}

.button-orange:hover,
.button-sale:hover {
    transition: 500ms background-color ease-in-out;
}

.button-orange {
    background-color: #e6873c;
}

.button-orange:hover {
    background-color: #e76e0e;
}

.button-sale {
    background-color: #1a1717;
}

.button-sale:hover {
    background-color: #040000;
}


.button-orange:before,
.button-orange:after,
.button-sale:before,
.button-sale:after {
    display: none;
}

.top_header .top_header-right {
    display: flex;
}

.top_header .top_header-right .button-sale {
    margin: 0 3rem;
}

.top_header .button-orange {
    background-color: #e6873c;
    border-radius: 20px;
    height: 36px;
    padding: 0 30px;
    min-width: 0px;
    min-height: unset;
}

.header-social {
    display: flex;
    width: 110px;
    justify-content: space-between;
    padding-left: 20px;
    gap: 10px;
}

.header-social svg {
    width: 20px;
    fill: #fff;
}

.header-social-facebook svg {
    width: 10px;
}

.header-social a {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 1;
    transition: 300ms opacity ease-in-out;
}

.header-social a:hover {
    opacity: 0.8;
    transition: 300ms opacity ease-in-out;
}

.header--has-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header__inline-menu .list-menu li {
    text-transform: uppercase;
}

/*
.header__inline-menu .list-menu li:first-child a {
  text-transform: none;
  font-size: 1.6rem;
  font-weight:bold;
  padding-left: 32px;
  position: relative;
}

.header__inline-menu .list-menu li:first-child a span {
  position: relative;
}

.header__inline-menu .list-menu li:first-child a:before, .header__inline-menu .list-menu li:first-child a:after, .header__inline-menu .list-menu li:first-child a span:before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #1a1717;
  position: absolute;
}

.header__inline-menu .list-menu li:first-child a:before {
  left: 0;
  top: 15px;
}

.header__inline-menu .list-menu li:first-child a:after {
  left: 0;
  bottom: 16px;
}

.header__inline-menu .list-menu li:first-child a span:before {
  left: -32px;
  bottom: 10px;
}
*/

.header__menu-item {
    padding-left: 1rem;
    padding-right: 1rem;
}

.header__menu-item span {
    color: #1a1717;
}

.mobile-icon-lists {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-icon-lists li {
    display: inline-block;
    padding: 0 1.5rem;
}

.mobile-icon-lists li:first-child,
.mobile-icon-lists li:last-child {
    padding: 0;
}


/* On screens that are 1210px or less */
@media screen and (max-width: 1210px) {
    .button-orange {
        padding: 0 1.5rem;
    }

    .top_header .top_header-right .button-sale {
        margin: 0 1.5rem;
        padding: 0 2rem;
        min-width: 0;
    }

    .header__inline-menu .link {
        font-size: 1.2rem
    }

    .header__inline-menu .list-menu li:first-child a {
        font-size: 1.4rem;
        top: -2px
    }

    .header__inline-menu .list-menu li:first-child a:after {
        bottom: 13px;
    }

    .header__inline-menu .list-menu li:first-child a span:before {
        bottom: 7px;
    }
}

/* On screens that are 1024px or less */
@media screen and (max-width: 1024px) {
    .top_header .page-width {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .top_header .top_header-left {
        width: 100%;
    }

    .top_header .top_header-right {
        display: flex;
        width: 100%;
        justify-content: end;
    }
}

/* On screens that are 992px or less */
@media screen and (max-width: 992px) {
    .mobile-view {
        display: block !important;
    }

    .desktop-view,
    .desktop-view-flex {
        display: none !important;
    }

    .top_header .top_header-left {
        justify-content: space-between;
    }
}