.order-header {
    z-index: 3;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    max-height: 146px;
    background-color: #3098f3;
}

.header-shadow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    z-index: 2;
    background-color: #3098f3;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    /*box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);*/
}

.header-body {
    position: relative;
    display: flex;
    min-height: 60px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

@media only screen and (max-width: 600px) {
    .header-body,
    .header-shadow:before {
        min-height: 60px;
    }
}

#site-header > .cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*max-width: 100%;*/
    margin: 0 auto;
    /*padding-left: 1rem;*/
    /*padding-right: 1rem;*/
}

.header-list {
    display: flex;
    position: relative;
    z-index: 2;
}

.header-list li {
    list-style: none;
    margin: 0 0 0 2px;
}

.header-link {
    color: #000000;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
}

.header-logo {
    overflow: hidden;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo span {
    text-align: left;
    word-break: break-word;
    box-sizing: inherit;
    background-color: transparent;
    font-style: normal;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.5rem;
    color: #FFFFFF !important;
    white-space: normal;
    vertical-align: -4px;
    text-decoration: none;
    font-weight: normal;
    line-height: inherit !important;
}

.header-logo span:hover {
    /*color: #cccccc;*/
    /*transition: 0.2s ease-in-out;*/
}

.header-logo img {
    -webkit-tap-highlight-color: transparent;
    text-align: left;
    white-space: nowrap;
    font-size: 4rem;
    cursor: pointer;
    line-height: 1;
    word-break: break-word;
    font-weight: 400;
    color: #1a99aa;
    font-style: normal;
    box-sizing: border-box;
    vertical-align: middle;
    border-style: none;
    transition: all 0.3s ease-in-out;
    display: flex;
    width: auto;
    margin-right: 0.8rem;
    height: 40px;
}

.header-burger {
    display: none;
}

.menu-container {
    max-width: 1140px;
    margin: 0 auto;
}
.nav-dropdown {
    background-color: white;
    box-shadow: -1px 1px 10px #d0d0d0;
}
.sub-menu {
    display: none;
    position: absolute;
    padding-left: 0;
    padding: 1.25rem 0 0;
    background-color: #fff !important;
}

.sub-menu li:hover {
    color: #333333 !important;
    transition: all 0.25s ease-in-out;
}

.sub-menu li a {
    color: #000000 !important;
}

.sub-menu li a:hover {
    color: #333333 !important;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
    background-color: #000;
    border: 2px solid #333;
    border-radius: 10px;
    top: 50px;
    min-width: 250px;
}

.sub-menu li {
    margin: 0px;
    line-height: 1;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0.25rem 1.5rem;
    white-space: nowrap;
}


.menu-item a {
    color: #232323;
    font-weight: 600;
    transition: color .2s ease-in-out;
    font-family: inherit;
    font-size: 0.94rem;
    line-height: 1.73;
}

#menu-primary li {
    padding: 0 0.2em !important;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#menu-primary li:last-child {
    padding-right: 0em !important;
}

#menu-primary li:first-child a {
    list-style: none;
    box-sizing: inherit;
    font-style: normal;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    word-break: break-word;
    font-family: inherit;
    font-size: 16px;
    color: #FFFFFF;
    margin: .667em 20px .667em 20px;
    transition: color .2s ease-in-out;
    font-weight: 500;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

#menu-primary .sub-menu li:first-child {
    padding: 0 .2em !important;
}

#menu-primary > .sub-menu > .menu-item {
    margin: 0em !important;
}

.menu-item-has-children a {
    margin: .667em .0em .667em 0em;
}

.menu-item-has-children:after {
    /*content: "";*/
    /*border-top: 0.27em solid;*/
    /*border-right: 0.35em solid transparent;*/
    /*border-left: 0.35em solid transparent;*/
    /*border-bottom: 0;*/
    /*position: relative;*/
    /*margin-top: -10px;*/
    /*margin-left: -5px;*/
    /*top: 7px;*/
    /*color: #000;*/
}

.sub-menu li {
    width: auto;
    transition: all 0.25s ease-in-out;
}

.sub-menu li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    transition: all 0.3s;
    left: -5px;
    opacity: 0;
    transform: translateY(-50%);
    background: #ff9083;
}

.sub-menu li:hover {
    margin-left: 10px;
}

.sub-menu li:hover:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    transition: all 0.3s;
    left: 20px;
    opacity: 1;
    transform: translateY(-50%);
    background: #ff9083;
    margin-top: 5px;
}
#breadcrumbs {
    text-align: left;
    padding: 5rem 0 1rem;
}
.page-template-default #breadcrumbs {
    padding: 1rem 0;
}
#breadcrumbs {
    max-width: 1140px;
    margin: 0 auto;
}

#breadcrumbs > span > span > a {
    color: #232323;
    text-align: left;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 1rem;
    font-style: normal;
    word-break: break-word;
    font-weight: 600;
    font-family: inherit;
    font-size: 1.3rem;
    line-height: 1.3;
}

#breadcrumbs > span > span,
#breadcrumbs > span > span > span,
#breadcrumbs > span > span > span > a {
    color: #232323;
    text-align: left;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 1rem;
    font-style: normal;
    word-break: break-word;
    font-weight: 400;
    font-family: inherit;
    font-size: 1.3rem;
    line-height: 1.3;
}

#breadcrumbs > span > span > span > a {
    color: #000000;
    font-weight: 600;
}

body.blog #breadcrumbs {
    padding: 1rem 0 1rem 0rem;
}

.bc-w-center {
    display: flex;
    justify-content: left;
}

.bc-w-center > #breadcrumbs > span > span > a {
    color: #010101;
}

@media (max-width: 992px) {
    #menu-primary li {
        padding: 0 0.2em !important;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }
.nav-dropdown {
    max-width: 400px;
    height: 400px;
    overflow-y: scroll;
    position: static!important;
}
    .top_line {
        display: none !important;
        min-height: 0px !important;
        height: 0px !important;
    }

    body.lock {
        overflow: hidden;
    }

    #breadcrumbs {
        padding-left: 15px;
        padding-right: 15px;
    }

    .menu-container {
        padding: 0 0rem;
        min-height: 55px;
    }

    #breadcrumbs {
        text-align: left;
        padding: 4rem 15px 1rem;
        padding-left: 25px !important;
    }

    .header-body {
        height: 50px;
        justify-content: space-between;
    }

    .header-burger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 4;
        margin-right: 10px;
    }

    .header-burger span {
        position: absolute;
        width: 100%;
        background-color: #000;
        left: 0;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all 0.5s ease 0s;
    }

    .header-burger:before,
    .header-burger:after {
        content: '';
        background-color: #000;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.5s ease 0s;
    }

    .header-burger:before {
        top: 0;
    }

    .header-burger:after {
        bottom: 0;
    }

    .header-burger.active span {
        transform: scale(0);
    }

    .header-burger.active:before {
        transform: rotate(45deg);
        top: 9px;
    }

    .header-burger.active:after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .header-menu {
        position: fixed;
        top: -100%;
        height: auto;
        width: 100%;
        overflow: auto;
        background-color: #3098f3;
        padding: 5px 10px 20px 10px;
        transition: all 0.4s ease 0s;
        text-align: center;
    }

    .header-menu.active {
        z-index: 3;
        right: 0;
        top: 58px;
        height: calc(100% - 58px);
        width: 100%;
        box-shadow: 0px 14px 7px -18px #000;
    }

    .logged-in .header-menu.active {
        top: 90px;
    }

    .header-list {
        display: block;
    }

    .header-list li {
        margin: 0;
    }

    .menu-item {
        padding: .667em 1em;
    }

    .menu-item > a {
        text-decoration: none;
        font-size: 16px;
        color: #000000;
    }

    .sub-menu {
        position: relative;
    }

    .mbr-fullscreen {
        height: auto;
    }

    /*#site-header {*/
    /*background-color: #000000;*/
    /*}*/
    .header-logo span {
        color: #000000;
    }

    .header-logo img {
        padding: 3px;
    }

    .header-logo span {
        margin-left: 10px;
    }

    #menu-primary {
        padding-left: 0;
    }

    .sub-menu li {
        justify-content: center;
        padding: 0px !important;
    }

    .sub-menu li a {

        margin: 0px !important;
    }

    #menu-primary li {
        padding: 10px 0em !important;
    }

    .menu-item-has-children > .list-group-item {
        margin-right: -10px;
    }

    #site-header > .cont {
        margin: 0px;
        padding-right: 0px;
        padding-left: 0px;
    }

    #site-header {
        padding-left: 10px;
        padding-right: 10px;
        background-color: #3098f3;
    }

    .header-logo span {
        margin-left: 0px;
    }

    .header-logo span {
        text-align: left;
        white-space: nowrap;
        box-sizing: border-box;
        background-color: transparent;
        cursor: pointer;
        text-decoration: none;
        transition: color 0.6s;
        word-break: break-word;
        font-weight: 400;
        color: #111111;
        font-family: inherit;
        font-size: calc(1.35rem + (2 - 1.35) * ((100vw - 20rem) / 28));
        line-height: calc(1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / 28)));
        font-style: normal;
    }

    .header-burger:before, .header-burger:after,
    .header-burger span {
        background-color: #FFFFFF;
    }


}

@media only screen and (max-width: 600px) {
    #breadcrumbs {
        padding-left: 15px !important;
    }
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    float: left;
    position: relative;
}

nav ul li a,
nav ul li a:visited {
    -webkit-font-smoothing: antialiased;
    list-style-type: none;
    font-family: inherit;
    font-size: 16px;
    white-space: nowrap;
    box-sizing: content-box;
    margin: 0;
    padding: 0 15px;
    border: 0;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;

}

/*nav ul li a:hover,*/
/*nav ul li a:visited:hover {*/
    /*color: #000;*/

/*}*/

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 0px;
    content: ' ▾';
}

nav ul li ul li {
    min-width: 200px;
}

nav ul li ul li a {
    padding: 15px;
    line-height: 20px;

}

#menu-primary .list-group-item,
.menu-item-has-children a {
    list-style: none;
    box-sizing: inherit;
    font-style: normal;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    word-break: break-word;
    font-family: inherit;
    font-size: 16px;
    color: #FFFFFF;
    margin: .667em 20px .667em 20px;
    transition: color .2s ease-in-out;
    font-weight: 500;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}
#menu-primary .nav-dropdown li a {
    color: #0a0a0b;
}

.nav-dropdown > li:hover {
    background: #fafafa;
    color: #000000;
}

.nav-dropdown > li:hover .list-group-item {
    color: #000000;
}

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    top: 45px;
    /*box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;*/

}

.menu-item-has-children:hover .nav-dropdown {
    display: block;
}

.nav-dropdown > li {
    padding: 0 0.2em !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
}

.nav-dropdown > li > a {
    padding: 0px;
}
.nav-dropdown .list-group-item {
    margin: .9em 1.667em !important;
}
/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #262626;
    height: 70px;
    width: 70px;
}

@media only screen and (max-width: 798px) {
    #menu-primary li a {
        /*width: 140px;*/
        /*text-align: center;*/
        /*font-size: calc(1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / 28));*/
    }
    .menu-item-has-children a {
        margin-right: -18px !important;
    }
    .nav-mobile {
        display: block;
    }

    #menu-primary > .menu-item:before {
        display: none;
    }

    .menu-item-has-children a {
        margin: .267em .3em .267em .1em;
    }

    .menu-item-has-children:after {
        display: none;
    }

    nav {
        width: 100%;
        padding: 70px 0 15px;
    }

    nav ul {
        display: none;
    }

    nav ul li {
        float: none;
    }

    nav ul li a {
        padding: 8px;
        line-height: 20px;
        font-weight: 400;
    }

    nav ul li ul li a {
        padding-left: 30px;
    }

    .nav-dropdown {
        position: static;
        padding: 5px 10px;
        box-shadow: none;
    }

    .nav-dropdown li a {
        padding: 3px 0px;
    }

    .list-group-item {
        font-size: calc(1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / 28));
        line-height: calc(1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / 28)));
    }

    .order-header a {
        margin: 0rem auto !important;
        max-width: 250px;
    }
}

@media screen and (min-width: 799px) {
    .nav-list {
        display: block !important;
    }
}

/**/
@media (max-width: 1024px) {
    #breadcrumbs {
        padding-left: 20px;
    }

    .header {
        padding: 0px 20px;
    }

    body.blog #breadcrumbs {
        padding: 1rem 0 1rem 2rem;
    }
    .blog-single #main {
        flex: 0 0 100% !important;
    }
    #menu-primary .list-group-item {
        margin: .667em .667em .667em .667em;
    }
    #menu-primary li:first-child a {
        margin: .667em auto .667em !important;
    }
}


.content {
    padding: 0;
}

@media (max-width: 767px) {
    .content {
        padding: 0;
    }
}

.navbar-fixed-top {
    top: 0px;
}

body.admin-bar .navbar-fixed-top {
    top: 28px !important;
}

.logged-in > .wr header {
    padding-top: 30px;
    max-height: 200px;
}

.logged-in > .wr header:before {
    margin-top: 32px;
}

@media only screen and (max-width: 1024px) {
    header.header-shadow {
        background-color: #FFFFFF !important;
    }

    #site-header > .cont {
        border-top: 1px solid transparent;
    }
}

@media only screen and (max-width: 798px) {
    .header-logo span {
        color: #333333;
    }

}

@media only screen and (max-device-width: 992px) and (min-device-width: 798px) {
    .header-burger:before, .header-burger:after,
    .header-burger span,
    .header-burger:before, .header-burger:after {
        background-color: #333333;
    }

    #menu-primary {
        display: flex;
        flex-direction: column;
    }

    #menu-primary > .menu-item > a {
        /*color: #6c757d;*/
    }

    .order-header a {
        width: 200px;
    }
}

@media only screen and (max-width: 1500px) and (min-width: 1300px) {
    nav ul li a, nav ul li a:visited {
        padding: 0 0.3rem;
    }
}

@media only screen and (max-width: 1299px) and (min-width: 1200px) {
    nav ul li a, nav ul li a:visited {
        padding: 0 0.3rem;
    }

    #menu-primary .menu-item a {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 1100px) {
    nav ul li a, nav ul li a:visited {
        padding: 0 0.3rem;
    }

    #menu-primary .menu-item a {
        font-size: 0.9rem;
    }

    #site-header > .cont {
        padding-right: 0px;
        padding-left: 0px;
    }

    .order-header {
        margin-left: 0px;
    }

    .header-logo span {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 1100px) and (min-width: 993px) {
    nav ul li a, nav ul li a:visited {
        padding: 0 0.3rem;
    }

    #site-header > .cont {
        padding-right: 0px;
        padding-left: 0px;
    }

}

.top_line {
    display: flex;
    justify-content: space-between;
    min-height: 83px;
    height: 100%;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.top_line_phone {
    display: flex;
}

.top_line_phone a {
    text-align: left;
    box-sizing: border-box;
    margin-top: 0;
    word-break: break-word;
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #5c5c5c;
    font-weight: 600;
    margin-bottom: 7px;
}

.top_line_phone img {
    width: 26px;
    height: 26px;
    margin-right: 1rem;
}

.order > a.list-group-item {
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    font-weight: 600;
    font-style: normal;
    margin: 0.6rem 0.6rem;
    white-space: normal;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    word-break: break-word;
    border-width: 2px;
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.3;
    padding: 0.6rem 1.2rem !important;
    background-color: #fafafa !important;
    border-color: #fafafa !important;
    color: #082C4E !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 100px;
}

.order > a.list-group-item:hover {


}

@media only screen and (max-width: 600px) {
    .top_line_phone {
        justify-content: center;
        margin-top: 20px;
    }

    .top_line_phone a {
        font-style: normal;
        visibility: visible;
        text-align: left;
        box-sizing: border-box;
        margin-top: 0;
        word-break: break-word;
        font-family: inherit;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / 28));
        line-height: calc(1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / 28)));
        color: #5c5c5c !important;
        font-weight: 600;
        margin-bottom: 7px;
    }
}

@media only screen and (max-width: 768px) {
    .top_line_phone {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .top_line_phone a {
        font-style: normal;
        visibility: visible;
        text-align: left;
        box-sizing: border-box;
        margin-top: 0;
        word-break: break-word;
        font-family: inherit;
        font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / 28));
        line-height: calc(1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / 28)));
        color: #5c5c5c !important;
        font-weight: 600;
        margin-bottom: 7px;
    }
}