/******************************************************************************/
/*  HEADER  *******************************************************************/
/******************************************************************************/

.i-dropdown {
    position: relative;
}

.i-dropdown::after {
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #333 transparent;

    -webkit-transition: border-color 200ms ease-in-out, transform 200ms ease-in-out;
    -moz-transition: border-color 200ms ease-in-out, transform 200ms ease-in-out;
    -ms-transition: border-color 200ms ease-in-out, transform 200ms ease-in-out;
    -o-transition: border-color 200ms ease-in-out, transform 200ms ease-in-out;
    transition: border-color 200ms ease-in-out, transform 200ms ease-in-out;
}

.i-dropdown:hover::after {
    border-color: #fff transparent;

    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}


#full-page-container {
    overflow: auto;
}

#top-line {
    font-size: 0;
    /*display: table;*/
    /*table-layout: fixed;*/
    text-align: justify;
    width: 100%;
    position: relative;
}
#top-line::after {
    content: 'abc';
    display: inline-block;
    width: 100%;
    height: 0;
}
#top-line > li {
    /*display: table-cell;*/
    display: inline-block;
    padding: 0 1em;
    text-align: center;

    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -ms-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

#top-line > li > a {
    padding: 12px 24px;
    display: inline-block;
    width: 100%;
}
#top-line > li > a {
    color: white;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;

    -webkit-transition: color 150ms ease-in-out, background-color 300ms ease-in-out;
    -moz-transition: color 150ms ease-in-out, background-color 300ms ease-in-out;
    -ms-transition: color 150ms ease-in-out, background-color 300ms ease-in-out;
    -o-transition: color 150ms ease-in-out, background-color 300ms ease-in-out;
    transition: color 150ms ease-in-out, background-color 300ms ease-in-out;
}

#top-line > li > a:hover {
    background-color: #0095d7;
    box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.23);
    color: #fff;
}

#top-line > li {
    position: relative;
}

#top-line > li > ul {
    background-color: #fff;
    border-radius: 2px;
    border-bottom: 4px solid #0095d7;
    display: none;
    left: 50%;
    margin-right: -50%;
    padding: 15px;
    position: absolute;
    z-index: 9999;
    min-width: 200px;

    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0,0,0,0.12);

    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

#top-line > li:hover > ul {
    display: block;
}

#top-line > li > ul {
    width: 100%;
    padding: 15px 0;
}
#top-line > li > ul > li > a {
    font-size: 14px;
}

#top-line > li > a {
    white-space: nowrap;
    font-size: 14px;
}

@media (min-width: 768px) {
    #top-line {
        display: block;
    }
    #top-line > li {
        display: inline-block;
    }
    #top-line > li > a {
        padding: 12px 0;
        font-size: 13px;
    }
    #top-line > li > a > i {
        margin-top: -5px;
        font-size: 22px;
        position: absolute;
    }
}
@media (min-width: 992px) {
    #top-line > li {
        display: inline-block;
    }
    #top-line > li > a {
        padding: 12px 24px;
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    #top-line > li > a {
        font-size: 14px;
    }
}

/*
#top-line {
    position: aboslute;
    top: 15px;
    z-index: 99;
}

#top-line li {
    background-color: #f3f3f3;
    text-align: left;
    width: 100%;
}

#top-line > li > a {
    font-weight: 300;
}
*/

#top-menu {
    font-size: 15px;
}

.submenu li > a,
#top-menu li > a {
    color: #333;
    display: block;
    padding: 7px 30px;
    text-align: left;

    -webkit-transition: background-color 200ms linear, color 0ms linear;
    -moz-transition: background-color 200ms linear, color 0ms linear;
    -ms-transition: background-color 200ms linear, color 0ms linear;
    -o-transition: background-color 200ms linear, color 0ms linear;
    transition: background-color 200ms linear, color 0ms linear;
}

.submenu li > a:hover,
#top-menu li > a:hover {
    background-color: #0095d7;
    color: #fff;
    box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.23);

    -webkit-transition: background-color 0ms linear, color 0ms linear;
    -moz-transition: background-color 0ms linear, color 0ms linear;
    -ms-transition: background-color 0ms linear, color 0ms linear;
    -o-transition: background-color 0ms linear, color 0ms linear;
    transition: background-color 0ms linear, color 0ms linear;
}


#top-menu {
    padding-bottom: 15px;
    left: 0;
    background-color: #fff;
    border-radius: 2px;
    border-bottom: 4px solid #0095d7;
    display: none;
    position: absolute;
    z-index: 9999;
    width: 100%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

#top-menu .top-menu_submenu-heading {
    border-bottom: 1px solid #e8e8e8;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 30px;
    margin-bottom: 15px;
}

#top-menu .top-menu_submenu-heading > a {
    color: #000;
}

#top-menu .super-order-link {
    margin-top: 15px;
    color: #333;
    display: inline-block;
    padding: 7px 30px;text-transform: uppercase;
}

#top-menu .super-order-link > i {
    color: #E63F3F;
    font-size: 22px;
    vertical-align: -6px;
}

#top-menu > .top-menu_submenu > ul {
    list-style: none;
}

#top-menu > .top-menu_submenu:first-of-type {
    float: left;
    width: 50%;
}

#top-menu > .top-menu_submenu:not(:first-of-type) {
    float: left;
    width: 25%;
}

#top-menu > .top-menu_submenu:not(:first-of-type) ul li {
    float: left;
    width: 100%;
}

#top-menu > #expand {
    background-color: #f8f8f8;
    color: #0095d7;
    cursor: pointer;
    padding: 9px 30px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

#top-menu > #expand > i {
    font-size: 22px;
    vertical-align: -7px;
}

/******************************************************************************/
/*  TOP FIXED STATUS BLOCK*****************************************************/
/******************************************************************************/

#topStatusBlockWrapper {
    box-shadow: 0 1px 0 #ecf0f1;
}

.status-row__right-block {
    display: inline-block;
    vertical-align: top;
    float: right;
}

.status-row__right-block > * {
    vertical-align: top;
    display: inline-block;
    line-height: 40px;
}

.status-row__right-block i.material-icons {
    vertical-align: middle;
    color: #1c95d7;
    margin-right: 4px;
}

.status-row__right-block a span {
    /* Style for "sale@klv-o" */
    width: 99px;
    height: 12px;
    opacity: 0.7;
    color: #212121;
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
    letter-spacing: 0.6px;
}

.status-row__right-block a {
    margin-right: 50px;
}

#header-workstatus-block .status-str {
    color: #85ae55;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    line-height: 40px;
}

#header-workstatus-block .status-str .status-marker {
    font-size: 40px;
    line-height: 40px;
    vertical-align: middle;
}

#teaser {
    display: inline-block;
    line-height: 40px;
    color: #212121;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

@media (min-width:768px) and (max-width:991px) {
    .status-row__right-block a {
        margin-right: 10px;
    }
}

/******************************************************************************/
/*  HEADER SEARCH PART ********************************************************/
/******************************************************************************/

#headerSearchPart {
    position: relative;
    height: 68px;
    margin: 5px 0;
    vertical-align: middle;
}

#headerSearchPart #logo {
    display: block;
    height: 68px;
    position:absolute;
    left:0;
    top: 0;
    width:180px;
}

#headerSearchPart #logo img {
    height: 100%;
}

#headerSearchPart form.search-block {
    position: relative;
    height: 40px;
    margin-left: 180px;
    margin-right: 455px;
    border-radius: 5px;
    overflow: hidden;
    top: 15px;
}

#headerSearchPart .right-part {
    position:absolute;
    right:0;
    top:0;
    width:455px;
    height:68px;
}

.search-block .search-btn,
.footer-subscribe-block .search-btn {
    position: absolute;
    font-size: 11px;
    line-height: 40px;
    right: 0px;
    height: 40px;
    background-color: #1c95d7;
    color: white;
    text-transform: uppercase;
    padding: 0 20px;
    transition: box-shadow 150ms ease-in-out;
}

.search-block .search-btn:hover,
.footer-subscribe-block .search-btn:hover {
    cursor: pointer;
    background-color: #00a9ea;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: -5px 0 11px 0 rgba(0, 0, 0, 0.18), -4px 0 15px 0 rgba(0, 0, 0, 0.15);
}

.search-block .search-btn i,
.footer-subscribe-block .search-btn i {
    vertical-align: middle;
}

.search-block .search-btn span,
.footer-subscribe-block .search-btn span{
    margin-left: 6px;
}

.search-block .search-input,
.footer-subscribe-block .search-input {
    max-width: 100%;
    padding-left: 20px;
    height: 40px;
    /*box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.02);*/
    background-color: #ecf0f1;
    border-radius: 5px;
}

.search-block .search-input::placeholder,
.footer-subscribe-block .search-input::placeholder {
    color: #333;
    text-transform: uppercase;
    font-size: 11px;
}

#headerSearchPart .header-divider {
    display: inline-block;
    width: 1px;
    height: 60px;
    background-color: #ecf0f1;
    margin: 0 10px;
    margin-top: 4px;
}

#headerSearchPart .favorite-block {
    position: relative;
    height: 68px;
    display: inline-block;
    vertical-align: top;
}

#headerSearchPart .favorite-block:hover i {
    color: #0095d7;
}

#headerSearchPart .favorite-count.active {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background-color: #707173;
    vertical-align: middle;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: white;
    top: 11px;
    right: -12px;
}

#headerSearchPart .favorite-block i {
    font-size: 28px;
    line-height: 68px;
    color: #0095d7;
}

.header-phone-numbers-cont {
    display: inline-block;
    vertical-align: top;
}

.header-phone-numbers-cont a {
    color: #212121;
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.header-phone-numbers-cont a .phone-code {
    font-weight: 400;
}

.header-phone-numbers-cont .header-phone-number:first-of-type {
    margin-top: 8px;
}

#headerSearchPart .header-callback {
    float: right;
    margin-top: 15px;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s;
    -ms-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
}

.header-callback {
    display: inline-block;
    color: #0095d7 !important;
    box-shadow: 0 0 0 1px #0095d7 inset !important;
    font-size: 11px;
}

.header-callback:hover {
    background-color: #00a9ea !important;
    color: white !important;
    box-shadow: 0 0 0 1px #0095d7 inset!important;
}

.header-trustedshop-block img{
    width: 40px;
    height: 40px;
    display: inline-block;
}

#headerSearchPart .right-part .span-label{
    display: inline-block;
    font-size: 12px;
    height: 68px;
    line-height: 64px;
    vertical-align: middle;
    color: #212121;
    opacity: 0.7;
}

#headerSearchPart .header-trustedshop-block {
    display: inline-block;
    position: relative;
    top: -13px;
    text-align: right;
}

#headerSearchPart .header-trustedshop-block .span-label {
    padding-top: 5px;
    line-height: 100%;
}

/*md*/

@media(min-width:992px) and (max-width:1199px) {
    .search-block .search-btn span {
        display: none;
    }
    #headerSearchPart #logo {
        width: 168px;
    }
    #headerSearchPart form.search-block {
        margin-left: 168px;
    }
}

/*sm*/
@media (min-width:768px) and (max-width:991px) {
    .search-block .search-btn span {
        display: none;
    }
    #headerSearchPart #logo {
        height: 48px;
        width: 116px;
        margin-top: 11px;
    }
    #headerSearchPart form.search-block {
        margin-left: 116px;
        margin-right: 382px;
    }
    #headerSearchPart .header-divider {
        margin: 0 14px;
        margin-top: 4px;
    }
    #headerSearchPart .right-part{
        width: 382px;
    }

    #headerSearchPart .header-trustedshop-block .span-label {
        display: none;
    }
}

/******************************************************************************/
/*  TOP MENU  *****************************************************************/
/******************************************************************************/
#topNavMenuWrapper {
    background-color: #198bca;
}

.navigation_box {
    z-index: 6;
    position: relative;
    height: 100%;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    display: flex;
}

.navigation:first-child {
    text-align: left;
}

#header_main_part nav {
    position: relative;
    height: 40px;
}

header, section, footer, aside, nav, main, article, figure {
    display: block;
}

div.navigation_box > div > a, div.navigation_box > div > p {
    padding: 0 35px 0 35px;
}

.navigation > a, .navigation > p, .item_menu {
    color: #363636;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    cursor: default;
    display: inline-block;
    padding-left: 23.9px;
    padding-right: 23px;
}

.navigation {
    text-align: center;
    height: 100%;
    float: left;
    transition: 0.4s;
}
.navigation {
    text-align: center;
}

@media(max-width:767px) {
    #top-menu > .top-menu_submenu:nth-child(1) > ul {
        columns: 1;
    }
}

@media(min-width: 768px) {
    #top-menu > .top-menu_submenu:nth-child(1) > ul {
        columns: 2;
    }

    #top-menu {
        -webkit-border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        border-radius: 0 !important;
    }

    #top-menu::before,
    #top-menu::after {
        content: '';
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    #top-menu::before {
        background-color: #fff;
        position: absolute;
        z-index: -1;
    }

    #top-menu::after {
        background-color: rgba(0, 0, 0, .4);
        position: fixed;
        z-index: -2;
    }

}


/******************************************************************************/
/*  TOP MENU @ MOBILE  ********************************************************/
/******************************************************************************/
#topNavMenuPhoneBlockMobile {
    display: none;
}

#top-line .bg-full-width {
    display: none;
}

#top-line > li.search-row {
    display: none;
}

@media(max-width:767px) {
    #topStatusBlockWrapper #teaser{
        margin-top:60px;
        font-size:16px;
        text-align:center;
        line-height:30px;
    }
    #top-line {
        display: none;
    }

    #topNavMenuWrapper {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }
    #topNavMenuWrapper.open{
        background-color: white;
    }

    body.with-utp #topNavMenuWrapper{
        top: 40px;
    }

    .bg-full-width:before,
    .bg-full-width:after {
        content: "";
        position: absolute;
        background-color: #1c95d7;
        top: 0;
        bottom: 0;
        width: 9999px;
        height: 100%;
    }

    .bg-full-width:before {
        right: 100%;
    }

    .bg-full-width:after {
        left:100%;
    }

    #topNavMenuWrapper.open {
        height: 100vh;
        overflow: hidden;
        overflow-y: scroll;
    }

    #top-line > li.search-row {
        display: block;
    }

    #topNavMenuWrapper.open #topNavMenuPhoneBlockMobile {
        display: block;
        height: 80px;
        z-index: 9999;
    }

    #topNavMenuPhoneBlockMobile {
        position: fixed;
        bottom: 0px;
        left: 0px;
        background-color: #ecf0f1;
    }

    #topNavMenuPhoneBlockMobile .header-phone-numbers-cont .header-phone-number:first-of-type {
        margin-top: 16px;
    }

    #topNavMenuWrapper.open #top-line {
        display: block;
        /*todo right size?*/
        padding-bottom: 110px;
    }

    #topNavMenuMobile {
        position: relative;
        background-color: #1c95d7;
        padding: 0px;
        height: 60px;
        line-height: 60px;
    }

    #topNavMenuPhoneBlockMobile .header-callback {
        top: 22px;
        float: right;
    }

    #topNavMenuMobile a.logo {
        display: inline-block;
        vertical-align: middle;
        height: 40px;
        /*margin-left: 20px;*/
        margin-left: 0px;
    }

    #topNavMenuMobile a.logo img {
        height: 100%;
        width: auto;
    }

    #hamburger {
        display: inline-block;
        vertical-align: middle;
        /*width: 30px;*/
        /*height: 20px;*/
        width: 60px;
        height: 60px;
        margin-left: -14px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    #hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: white;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    #hamburger span:nth-child(1) {
        top: 0px;
        margin-top: 20px;
        width: 30px;
        margin-left: 14px;
    }

    #hamburger span:nth-child(2),#hamburger span:nth-child(3) {
        top: 8px;
        margin-top: 20px;
        width: 30px;
        margin-left: 14px;
    }

    #hamburger span:nth-child(4) {
        top: 16px;
        margin-top: 20px;
        width: 30px;
        margin-left: 14px;
    }

    #hamburger.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    #hamburger.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #hamburger.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #hamburger.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    .favorite-mobile-btn,
    .cart-mobile-btn,
    .callback-mobile-btn {
        display: inline-block;
        text-align: center;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        border: 1px solid #ffffff;
        color: white;
        float: right;
        position: relative;
        top: 10px;
        margin-left: 10px;
    }

    .favorite-mobile-btn i,
    .cart-mobile-btn i,
    .callback-mobile-btn i {
        vertical-align: top;
        line-height: 40px;
    }

    .callback-mobile-btn {
        background-color: white;
        color: #1c95d7;
    }

    .favorite-mobile-btn.active {
        background-color: white;
        color: #1c95d7;
    }

    .favorite-mobile-btn .favorite-count {
        display: none;
    }

    .favorite-mobile-btn.active .favorite-count {
        position: absolute;
        display: inline-block;
        height: 18px;
        width: 18px;
        border-radius: 9px;
        background-color: #707173;
        vertical-align: middle;
        font-size: 10px;
        line-height: 18px;
        text-align: center;
        color: white;
        top: -1px;
        right: -1px;
    }

    #topNavMenuInnerWrapper {
        padding: 0px;
    }

    #top-line > li {
        min-height: 55px;
        height: auto;
        display: block;
        text-align: left;
        border-bottom: 1px solid #ecf0f1;
    }

    #top-line > li:active {
        background-color: rgba(28, 149, 215, 0.13);
    }

    #top-menu .top-menu_submenu-heading:active {
        background-color: rgba(28, 149, 215, 0.13);
    }

    #top-line > li > a {
        color: black;
        padding: 0px;
        line-height: 55px;
        font-weight: 700;
    }

    #top-line > li > a i,
    .sidebar-panel-title label i,
    #top-menu .top-menu_submenu-heading > i {
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
        display: inline-block;
        right: 0px;
        line-height: 55px;
        margin-top: 0px !important;
        font-size: 28px !important;
    }

    #top-line > li > a:hover {
        background-color: inherit;
        color: inherit;
        box-shadow: none !important;
    }

    #top-line > li.search-row .search-block {
        position: relative;
        top: 9px;
        border-radius: 5px;
        overflow: hidden;
    }

    #top-line .bg-full-width {
        display: block;
    }

    #top-line .bg-full-width:before,
    #top-line .bg-full-width:after {
        z-index: 3;
        background-color: white;
        border-bottom: 1px solid #ecf0f1;
        top: 1px;
    }

    #top-line li.expandable + div {
        max-height: 0px !important;
        -webkit-transition: max-height 0.9s;
        -moz-transition: max-height 0.9s;
        -ms-transition: max-height 0.9s;
        -o-transition: max-height 0.9s;
        transition: max-height 0.9s;
    }

    #top-line li.expandable.open + div {
        display: block !important;
        position: relative !important;
        border-bottom: 0px !important;
        border-radius: 0px !important;
        box-shadow: none !important;
        /*height: auto !important;*/
        background-color: transparent !important;
        padding-bottom: 0px !important;
        max-height: none !important;
    }

    #top-line li.expandable.open a i{
        position: absolute !important;
        right: 0px !important;
        -webkit-transform: rotate(0deg) !important;
        -moz-transform: rotate(0deg) !important;
        -ms-transform: rotate(0deg) !important;
        -o-transform: rotate(0deg) !important;
        transform: rotate(0deg) !important;
        z-index: 4;
    }

    #top-line li.expandable.open a {
        position: relative !important;
        color: #1c95d7 !important;
    }

    #top-menu {
        font-size: 14px;
    }

    #top-menu .top-menu_submenu {
        float: none !important;
        width: 100% !important;
    }

    #top-menu .top-menu_submenu ul li {
        position: relative;
        float: none !important;
        width: 100% !important;
        box-shadow: 0 1px 0 #ecf0f1;
    }

    #top-menu .top-menu_submenu ul li a {
        padding: 20px 0px 20px 32px;
    }

    #top-menu .top-menu_submenu-heading {
        position: relative;
        height: 55px;
        display: block;
        text-align: left;
        border-bottom: 1px solid #ecf0f1 !important;
        margin-bottom: 0px !important;
        background-color: white;
        margin-left: 16px;
        line-height: 16px;
        padding: 20px 0;
    }

    #top-menu .top-menu_submenu-heading.open,
    #top-menu .top-menu_submenu-heading.open > a {
        color: #1c95d7 !important;
    }

    #top-line li > a i.material-icons {
        margin-top: -5px; font-size: 22px; position: absolute;
    }

    #top-menu .top-menu_submenu-heading + ul {
        max-height: 0px;
        overflow: hidden;
        -webkit-transition: max-height 0.3s;
        -moz-transition: max-height 0.3s;
        -ms-transition: max-height 0.3s;
        -o-transition: max-height 0.3s;
        transition: max-height 0.3s;
    }

    #top-line #top-menu .top-menu_submenu-heading .bg-full-width::before,
    #top-line #top-menu .top-menu_submenu-heading .bg-full-width::after {
        top: 0px;
        z-index: 22;
        background-color: white;
        border-bottom: none;
        -webkit-box-shadow: 0 1px 0 #ecf0f1;
        -moz-box-shadow: 0 1px 0 #ecf0f1;
        box-shadow: 0 1px 0 #ecf0f1;
    }

    #top-line #top-menu .top-menu_submenu-heading.open .bg-full-width::before,
    #top-line #top-menu .top-menu_submenu-heading.open .bg-full-width::after {
        background-color: white;
    }

    #top-menu .top-menu_submenu-heading.open + ul {
        max-height: none;
        overflow: visible;
    }

    #top-menu .top-menu_submenu-heading > i {
        position: absolute;
        top: 0px;
        right: 0px;
        line-height: 55px;
        display: inline-block;
    }

    #top-menu .top-menu_submenu-heading.open > i {
        -webkit-transform: rotate(0deg) !important;
        -moz-transform: rotate(0deg) !important;
        -ms-transform: rotate(0deg) !important;
        -o-transform: rotate(0deg) !important;
        transform: rotate(0deg) !important;
    }

    #top-menu #expand {
        display: none;
    }

    #top-menu .super-order-link {
        display: none !important;
    }

    #top-line > li.expandable > ul.submenu {
        display: inline-block;
        position: relative;
        padding: 0px;
        border-bottom: 0px;
        border-radius: 0px;
        box-shadow: none;
        margin-right: 0px;
        max-height: 0px;
        overflow: hidden;
        -webkit-transition: max-height 0.3s;
        -moz-transition: max-height 0.3s;
        -ms-transition: max-height 0.3s;
        -o-transition: max-height 0.3s;
        transition: max-height 0.3s;
    }

    #top-line > li.expandable.open > ul.submenu {
        max-height: 900px;
        overflow: visible;
    }

    #top-line > li.expandable.open > ul.submenu > li {
        position: relative;
    }

    #top-line > li.expandable.open > ul.submenu > li {

    }

    #top-line > li.expandable.open > ul.submenu > li .bg-full-width {
        display: block;
    }

    #top-line > li.expandable.open > ul.submenu > li .bg-full-width:before,
    #top-line > li.expandable.open > ul.submenu > li .bg-full-width:after {
        z-index: 3;
        background-color: white;
        border-bottom: 1px solid #ecf0f1;
        top: 0px;
    }

    #top-line > li.expandable > ul.submenu a {
        color: black !important;
        line-height: 55px;
        padding-left: 10px;
        left: 0px !important;
        border-bottom: 1px solid #ecf0f1;
    }

    #top-line > li.expandable.open > ul.submenu li:first-of-type a {
        border-top: 1px solid #ecf0f1;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    #top-line > li.expandable.open > ul.submenu > li:first-of-type .bg-full-width:before,
    #top-line > li.expandable.open > ul.submenu > li:first-of-type .bg-full-width:after {
        z-index: 3;
        background-color: white;
        border-bottom: 1px solid #ecf0f1;
        border-top: 1px solid #ecf0f1;
    }

}


#headerSearchPart div.header-trustedshop-block {
    width: 30%;
}