.chilldeck-mainHeader--height {
  position: fixed;
  width: 100%;
  left: 0;
  top: 48px;
  z-index: 999;
  padding: 15px 0;
  transition: .3s all; }
  @media (max-width: 992px) {
    .chilldeck-mainHeader--height {
      top: 79px;
      padding: 0px 0; } }
  .chilldeck-mainHeader--height.is-scrolled {
    top: 0 !important; }
  .chilldeck-mainHeader--height:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition-duration: var(--timing-base);
    transition-property: height, visibility, opacity;
    background-color: var(--header-active-background);
    transition-timing-function: ease, ease, cubic-bezier(0.6, 0.14, 0, 1); }
  .chilldeck-mainHeader--height:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--header-background-1) 0%, transparent 100%);
    pointer-events: none; }
  .chilldeck-mainHeader--height:hover:before {
    visibility: visible;
    opacity: 1;
    height: calc(100% + var(--menu-height, 0px)); }

/*========Header========*/
.chilldeck-mainHeader {
  width: 100%;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  color: #000000; }
  .chilldeck-mainHeader .menu-decoration__decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; }
  .chilldeck-mainHeader .menu-decoration__decoration-border-part {
    visibility: visible;
    opacity: 1;
    transition-duration: var(--timing-base);
    transition-delay: 0s, 0s, var(--timing-base), var(--timing-base);
    transition-property: stroke-dasharray, stroke-dashoffset, opacity, visibility; }
  .chilldeck-mainHeader .menu-decoration__decoration-border {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    color: var(--menu-decoration-border-color); }
  .chilldeck-mainHeader .menu-decoration__decoration-border-part {
    visibility: hidden;
    opacity: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    color: var(--menu-decoration-border-part-color); }
  .chilldeck-mainHeader .menu-decoration.is-active .menu-decoration__decoration-border-part {
    visibility: visible;
    opacity: 1;
    transition-duration: var(--timing-base);
    transition-delay: 0s, 0s, var(--timing-base), var(--timing-base);
    transition-property: stroke-dasharray, stroke-dashoffset, opacity, visibility; }
  .chilldeck-mainHeader .chilldeck-flex-header {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 10; }
    .chilldeck-mainHeader .chilldeck-flex-header > [class*='chilldeck-header-wrap-'] {
      padding: 0px 10px; }
  .chilldeck-mainHeader .chilldeck-header-left, .chilldeck-mainHeader .chilldeck-header-right {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .chilldeck-mainHeader .chilldeck-header-center {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .chilldeck-mainHeader .chilldeck-header-left {
    display: flex;
    align-items: center;
    gap: 40px; }
  .chilldeck-mainHeader .chilldeck-header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px; }
    .chilldeck-mainHeader .chilldeck-header-right .chilldeck-header-hotline .hotline {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px; }
      .chilldeck-mainHeader .chilldeck-header-right .chilldeck-header-hotline .hotline .icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        background: rgba(0, 0, 0, 0.1);
        color: #000000; }
  .chilldeck-mainHeader .chilldeck-header-wrap-menu {
    flex: 1; }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-navbar-mainmenu {
      position: relative;
      display: inline-flex;
      padding: 10px 8px;
      border-radius: calc(var(--global-border-radius) / 2);
      z-index: 10; }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main {
      margin: 0;
      justify-content: start;
      display: inline-flex;
      flex-wrap: wrap;
      border-radius: calc(var(--global-border-radius) / 4);
      background-color: var(--header-main-menu-background);
      -webkit-backdrop-filter: blur(24px);
      backdrop-filter: blur(24px); }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li {
        display: inline-block;
        padding: 4px;
        position: relative; }
        .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li > a {
          position: relative;
          z-index: 2;
          display: block;
          border-radius: 4px;
          width: 100%;
          font-size: 15px;
          overflow: hidden;
          line-height: 1.4;
          padding: 8px 12px;
          -webkit-transition: none;
          transition: none;
          color: #000000; }
          .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li > a svg {
            display: inline-block;
            vertical-align: middle;
            margin-left: 0;
            fill: currentcolor;
            -webkit-transition: transform .2s;
            -moz-transition: transform .2s;
            -o-transition: transform .2s;
            transition: transform .2s; }
        .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li.active > a, .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li:hover > a, .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li.active:hover > a {
          color: #000000; }
          .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li.active > a:before, .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li:hover > a:before, .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li.active:hover > a:before {
            background: #000000;
            opacity: 1; }
          .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li.active > a > svg, .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li:hover > a > svg, .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li.active:hover > a > svg {
            opacity: 1;
            transform: rotate(180deg); }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main li.chilldeck-has-submenu .chilldeck-menuList-submain {
        background: #ffffff;
        min-width: 185px;
        max-width: 180%;
        position: absolute;
        z-index: 99;
        top: 150%;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        border-radius: 12px;
        overflow: hidden; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main li.chilldeck-has-submenu .chilldeck-menuList-submain ul.chilldeck-menuList-submain {
        left: 100%;
        top: 0; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main li.chilldeck-has-submenu:hover > a {
        background: #111111;
        color: white; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main li.chilldeck-has-submenu:hover > .chilldeck-menuList-submain {
        pointer-events: auto;
        visibility: visible;
        top: 100%;
        opacity: 1; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main .chilldeck-item-live {
        display: -webkit-flex;
        display: flex; }
        .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main .chilldeck-item-live .chilldeck-header-box-live .chilldeck-btn-live {
          padding: 5px 12px 5px 20px;
          background: transparent;
          outline: none;
          border: none;
          position: relative; }
          .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main .chilldeck-item-live .chilldeck-header-box-live .chilldeck-btn-live:after {
            content: '';
            width: 8px;
            height: 8px;
            position: absolute;
            left: 7px;
            top: calc(50% - 4px);
            border-radius: 50%;
            animation: pulselive 1.65s linear infinite; }
      @media (max-width: 1199px) and (min-width: 992px) {
        .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li > a {
          font-size: 13px; } }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-submain li {
      position: relative; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-submain li:not(:last-child):before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, 0.1); }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-submain li a {
        padding: 16px 24px;
        text-align: left;
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #000000; }
        .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-submain li a:hover {
          background: rgba(158, 158, 158, 0.4);
          font-weight: 500; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-submain li a svg {
        width: 15px;
        position: absolute;
        right: 15px;
        top: 50%;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: right 0.3s ease-in-out;
        -ms-transition: right 0.3s ease-in-out;
        transition: right 0.3s ease-in-out; }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-submain li a:hover, .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-submain li a:hover i {
      color: #000000; }
  .chilldeck-mainHeader .chilldeck-header-wrap-logo {
    text-align: center; }
    @media (max-width: 992px) {
      .chilldeck-mainHeader .chilldeck-header-wrap-logo {
        margin-right: auto;
        margin-left: auto; } }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo h1, .chilldeck-mainHeader .chilldeck-header-wrap-logo a {
      font-size: 26px;
      font-weight: 600;
      text-decoration: none;
      text-transform: uppercase;
      margin: 0;
      color: #000000;
      white-space: initial;
      overflow: hidden;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical; }
  .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action {
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    gap: 10px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item {
      align-self: center; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text {
        position: relative;
        height: 100%;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-box-triangle {
        position: absolute;
        width: 24px;
        height: 15px;
        top: 100%;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        left: 0;
        right: 0;
        margin: 0 auto; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-box-triangle svg {
        -webkit-filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
        filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
        fill: #ffffff; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link {
        position: relative;
        display: block;
        font-size: 13px;
        color: #000000;
        white-space: nowrap; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon,
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text {
        display: inline-block;
        vertical-align: middle; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text {
        padding-left: 2px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text .txtnw {
        font-size: 11px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text .txtbl {
        font-size: 13px;
        display: block;
        font-weight: 500; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text .txt-overflow {
        white-space: nowrap;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: middle;
        max-width: 115px;
        overflow: hidden; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text .fa {
        display: inline-block;
        font-size: 16px;
        vertical-align: middle;
        margin-left: 3px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon {
        position: relative;
        width: 32px;
        height: 40px;
        text-align: center; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon svg:not(.icon-circle-decoration-border) {
        width: 22px;
        height: 40px;
        fill: currentColor; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon svg.chilldeck-svg-ico-account {
        width: 22px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon svg.chilldeck-svg-ico-search {
        width: 20px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .chilldeck-box-icon--close {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.3);
        transition: opacity 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
        transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
        transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .chilldeck-box-icon--close svg {
          width: 18px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .chilldeck-count-holder {
        display: inline-block;
        vertical-align: top;
        background: #000000;
        color: #fff;
        font-size: 11px;
        text-align: center;
        position: absolute;
        left: 16px;
        top: -1px;
        padding: 0px 3px;
        min-width: 20px;
        height: 20px;
        line-height: 20px;
        border-radius: 50%; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link:hover svg.chilldeck-svg-ico-search {
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg); }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_dropdown {
        position: absolute;
        top: calc(100% + 7px);
        left: auto;
        right: -15px;
        z-index: 990;
        min-width: 280px;
        border-radius: 3px;
        color: #000000;
        background: #ffffff;
        border: solid 1px #d5d5d5;
        box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
        visibility: hidden;
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s, -webkit-transform 0.25s ease-in-out;
        transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s;
        transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s, -webkit-transform 0.25s ease-in-out;
        will-change: transform; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_dropdown .chilldeck-box-triangle {
          position: absolute;
          bottom: calc(100% - 2px);
          margin: 0 auto;
          width: 22px;
          height: 15px;
          right: 19px; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_dropdown .chilldeck-box-triangle svg {
          -webkit-filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12)); }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_dropdown .chilldeck-header-dropdown_content {
          width: 100%;
          height: 100%;
          max-height: 100%;
          overflow: hidden;
          padding: 15px 20px; }
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_dropdown .chilldeck-header-dropdown_content .chilldeck-sitenav-content .chilldeck-boxtitle {
            font-size: 18px;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0;
            font-weight: 500;
            padding-bottom: 8px;
            text-align: center; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_account .chilldeck-header-action_dropdown .chilldeck-box-triangle {
        right: 58px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_search .chilldeck-header-action_dropdown .chilldeck-box-triangle {
        right: 98px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_cart {
        position: relative; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_info .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon {
        display: flex;
        align-items: center;
        margin-left: 10px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_info .chilldeck-hamburger-menu {
        width: 20px;
        height: 20px;
        display: inline-block;
        background: #000000;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='30' height='30' x='0px' y='0px' viewBox='0 0 488.8 488.8' style='enable-background:new 0 0 488.8 488.8;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M244.4,8C211.7,8,185,34.6,185,67.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S277.1,8,244.4,8z M244.4,102.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9S263.6,102.3,244.4,102.3z'/%3E%3Cpath d='M429.4,8C396.7,8,370,34.6,370,67.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S462.1,8,429.4,8z M429.4,102.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9c19.2,0,34.9,15.7,34.9,34.9S448.6,102.3,429.4,102.3z'/%3E%3Cpath d='M59.4,8C26.7,8,0,34.6,0,67.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S92.2,8,59.4,8z M59.4,102.3 c-19.2,0-34.9-15.7-34.9-34.9s15.7-34.9,34.9-34.9s34.9,15.7,34.9,34.9S78.7,102.3,59.4,102.3z'/%3E%3Cpath d='M244.4,185c-32.7,0-59.4,26.6-59.4,59.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S277.1,185,244.4,185z M244.4,279.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9S263.6,279.3,244.4,279.3z'/%3E%3Cpath d='M429.4,185c-32.7,0-59.4,26.6-59.4,59.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S462.1,185,429.4,185z M429.4,279.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9c19.2,0,34.9,15.7,34.9,34.9S448.6,279.3,429.4,279.3z'/%3E%3Cpath d='M59.4,185C26.7,185,0,211.6,0,244.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S92.2,185,59.4,185z M59.4,279.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9S78.7,279.3,59.4,279.3z'/%3E%3Cpath d='M244.4,362c-32.7,0-59.4,26.6-59.4,59.4c0,32.7,26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4C303.8,388.7,277.1,362,244.4,362 z M244.4,456.3c-19.2,0-34.9-15.7-34.9-34.9c0-19.2,15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9C279.3,440.7,263.6,456.3,244.4,456.3 z'/%3E%3Cpath d='M429.4,362c-32.7,0-59.4,26.6-59.4,59.4c0,32.7,26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4C488.8,388.7,462.1,362,429.4,362 z M429.4,456.3c-19.2,0-34.9-15.7-34.9-34.9c0-19.2,15.6-34.9,34.9-34.9c19.2,0,34.9,15.7,34.9,34.9 C464.3,440.7,448.6,456.3,429.4,456.3z'/%3E%3Cpath d='M59.4,362C26.7,362,0,388.6,0,421.4c0,32.7,26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4C118.8,388.7,92.2,362,59.4,362z M59.4,456.3c-19.2,0-34.9-15.7-34.9-34.9c0-19.2,15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9C94.3,440.7,78.7,456.3,59.4,456.3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/contain;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='30' height='30' x='0px' y='0px' viewBox='0 0 488.8 488.8' style='enable-background:new 0 0 488.8 488.8;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M244.4,8C211.7,8,185,34.6,185,67.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S277.1,8,244.4,8z M244.4,102.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9S263.6,102.3,244.4,102.3z'/%3E%3Cpath d='M429.4,8C396.7,8,370,34.6,370,67.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S462.1,8,429.4,8z M429.4,102.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9c19.2,0,34.9,15.7,34.9,34.9S448.6,102.3,429.4,102.3z'/%3E%3Cpath d='M59.4,8C26.7,8,0,34.6,0,67.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S92.2,8,59.4,8z M59.4,102.3 c-19.2,0-34.9-15.7-34.9-34.9s15.7-34.9,34.9-34.9s34.9,15.7,34.9,34.9S78.7,102.3,59.4,102.3z'/%3E%3Cpath d='M244.4,185c-32.7,0-59.4,26.6-59.4,59.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S277.1,185,244.4,185z M244.4,279.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9S263.6,279.3,244.4,279.3z'/%3E%3Cpath d='M429.4,185c-32.7,0-59.4,26.6-59.4,59.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S462.1,185,429.4,185z M429.4,279.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9c19.2,0,34.9,15.7,34.9,34.9S448.6,279.3,429.4,279.3z'/%3E%3Cpath d='M59.4,185C26.7,185,0,211.6,0,244.4s26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4S92.2,185,59.4,185z M59.4,279.3 c-19.2,0-34.9-15.7-34.9-34.9s15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9S78.7,279.3,59.4,279.3z'/%3E%3Cpath d='M244.4,362c-32.7,0-59.4,26.6-59.4,59.4c0,32.7,26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4C303.8,388.7,277.1,362,244.4,362 z M244.4,456.3c-19.2,0-34.9-15.7-34.9-34.9c0-19.2,15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9C279.3,440.7,263.6,456.3,244.4,456.3 z'/%3E%3Cpath d='M429.4,362c-32.7,0-59.4,26.6-59.4,59.4c0,32.7,26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4C488.8,388.7,462.1,362,429.4,362 z M429.4,456.3c-19.2,0-34.9-15.7-34.9-34.9c0-19.2,15.6-34.9,34.9-34.9c19.2,0,34.9,15.7,34.9,34.9 C464.3,440.7,448.6,456.3,429.4,456.3z'/%3E%3Cpath d='M59.4,362C26.7,362,0,388.6,0,421.4c0,32.7,26.6,59.4,59.4,59.4s59.4-26.6,59.4-59.4C118.8,388.7,92.2,362,59.4,362z M59.4,456.3c-19.2,0-34.9-15.7-34.9-34.9c0-19.2,15.6-34.9,34.9-34.9s34.9,15.7,34.9,34.9C94.3,440.7,78.7,456.3,59.4,456.3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/contain;
        mask-repeat: no-repeat; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-js-action-show .chilldeck-header-action_text .chilldeck-box-triangle {
      visibility: visible;
      opacity: 1; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-js-action-show .chilldeck-header-action_dropdown {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
      transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), visibility 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1);
      transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), visibility 0.4s linear;
      transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), visibility 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1); }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_account.chilldeck-js-action-show .chilldeck-header-action_dropdown .site_account_panel.is-selected {
      visibility: visible; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_locale.chilldeck-js-action-show .overlays:before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 100vh;
      width: 100%;
      background: #000;
      opacity: 0.7;
      z-index: 100;
      margin: auto; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_locale.chilldeck-js-action-show .overlays .chilldeck-header-action__link {
      z-index: 101; }
  .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_backlink {
    display: none; }
  .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_backlink a {
    margin-right: 0px;
    width: 20px;
    line-height: 32px;
    color: #000000;
    height: 35px;
    display: block;
    font-size: 28px; }
  .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-header-action_dropdown .chilldeck-box-triangle {
    right: initial;
    left: 16px; }
  .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon {
    width: 25px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-hamburger-menu {
      width: 25px;
      height: 35px;
      cursor: pointer;
      display: block;
      position: relative; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-hamburger-menu .chilldeck-bar, .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-hamburger-menu .chilldeck-bar:after, .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-hamburger-menu .chilldeck-bar:before {
        height: 1px;
        background: #000000; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-hamburger-menu .chilldeck-bar {
        position: relative;
        top: 22px;
        display: block;
        margin: auto;
        width: 25px;
        -ms-transition: all 0ms 100ms, width 150ms linear;
        -webkit-transition: all 0ms 100ms, width 150ms linear;
        transition: all 0ms 100ms, width 150ms linear;
        -ms-transform: translateY(-2px);
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px); }
      .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-hamburger-menu .chilldeck-bar:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 7px;
        width: 25px;
        -ms-transition: bottom 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        -webkit-transition: bottom 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        transition: bottom 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-hamburger-menu .chilldeck-bar:after {
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 25px;
        -ms-transition: top 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        -webkit-transition: top 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        transition: top 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-box-icon .chilldeck-box-icon--close svg {
      height: 35px; }
  .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu.chilldeck-js-action-show .chilldeck-hamburger-menu {
    opacity: 0;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1); }
  .chilldeck-mainHeader .chilldeck-header-navbar-menu .chilldeck-header-wrap-menu {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .chilldeck-mainHeader .chilldeck-header-wrap-menu-desktop {
    display: flex;
    align-items: center;
    gap: 30px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu-desktop .chilldeck-header-hotline a {
      color: #000000;
      font-size: 16px;
      font-weight: 600; }
  @media (min-width: 1200px) {
    .chilldeck-mainHeader {
      position: relative; } }
  @media (min-width: 1200px) and (max-width: 1620px) {
    .chilldeck-mainHeader .chilldeck-header-left {
      gap: 25px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li {
      margin: 0 6px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li a {
        font-size: 15px; } }
  @media (min-width: 992px) {
    .chilldeck-mainHeader .chilldeck-flex-header {
      -webkit-align-items: center;
      align-items: center; }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu {
      padding-left: 0px;
      padding-right: 0; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-navbar-mainmenu {
        height: 100%; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main {
        height: 100%;
        display: -webkit-flex;
        display: flex;
        -ms-justify-content: start;
        justify-content: start; }
      .chilldeck-mainHeader .chilldeck-header-wrap-menu .chilldeck-menuList-main > li {
        display: -webkit-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo, .chilldeck-mainHeader .chilldeck-header-wrap-action {
      -ms-align-self: center;
      align-self: center; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo a img {
      max-width: 210px;
      max-height: 70px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo .chilldeck-wrap-logo {
      min-width: 100px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_cart .chilldeck-header-action_dropdown {
      width: 420px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_search .chilldeck-header-action_dropdown {
      width: 420px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_account .chilldeck-header-action_dropdown {
      width: 340px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_locale .chilldeck-header-action_dropdown {
      width: 420px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_account .chilldeck-header-action_dropdown.chilldeck-header-action_widthAuto {
      width: auto;
      min-width: 260px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .pulse {
      border-radius: 50%;
      height: 6px;
      width: 6px;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 4px;
      opacity: 1;
      margin: 0 auto;
      transform: rotateX(55deg); }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .pulse:after {
        content: "";
        border-radius: 50%;
        height: 25px;
        width: 25px;
        position: absolute;
        margin: -8px 0 0 -12px;
        animation: pulsate 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 0;
        animation-delay: 1.1s; }
    .chilldeck-mainHeader .chilldeck-header-wrap-info li:nth-child(2) {
      margin-left: 15px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-info li svg {
      width: 22px;
      height: 22px;
      transform: translateY(-2px); } }
  @media (max-width: 1199px) and (min-width: 992px) {
    .chilldeck-mainHeader .container {
      width: auto; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo h1, .chilldeck-mainHeader .chilldeck-header-wrap-logo a {
      font-size: 26px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo a img {
      max-width: 200px;
      max-height: 70px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.locationContainer .chilldeck-header-action_text .box-text .txtnw {
      font-size: 10px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.locationContainer .chilldeck-header-action_text .box-text .txtbl {
      font-size: 12px; } }
  @media (max-width: 991px) {
    .chilldeck-mainHeader .chilldeck-mainHeader-middle {
      position: relative;
      padding: 10px 0; }
    .chilldeck-mainHeader .chilldeck-header-center {
      display: none; }
    .chilldeck-mainHeader .chilldeck-header-left {
      -ms-flex: 0 0 calc(100% - 150px);
      flex: 0 0 calc(100% - 150px);
      max-width: calc(100% - 150px);
      gap: 10px; }
    .chilldeck-mainHeader .chilldeck-header-right {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 150px; }
    .chilldeck-mainHeader .chilldeck-header-hotline, .chilldeck-mainHeader .chilldeck-header-btn {
      display: none; }
    .chilldeck-mainHeader .chilldeck-flex-header {
      margin: 0; }
      .chilldeck-mainHeader .chilldeck-flex-header > [class*='chilldeck-header-wrap-'] {
        position: initial;
        padding: 0; }
      .chilldeck-mainHeader .chilldeck-flex-header .chilldeck-header-wrap-right {
        flex: 0 0 85px; }
      .chilldeck-mainHeader .chilldeck-flex-header .chilldeck-header-wrap-iconav .chilldeck-header-action {
        justify-content: start;
        -webkit-justify-content: start; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action {
      display: flex;
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 150px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action:not(.chilldeck-header-wrap-iconav) {
        justify-content: end; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action {
        position: initial;
        height: 100%; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item {
          position: initial;
          height: 100%; }
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-box-triangle {
            top: calc(100% - 5px); }
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text {
            display: none; }
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_dropdown {
            right: 0;
            left: 0;
            top: 100%;
            width: 100vw;
            height: 100vh; }
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-js-action-show .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .chilldeck-box-icon--close {
            opacity: 1;
            visibility: visible;
            -webkit-transform: scale(1);
            transform: scale(1); }
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-js-action-show .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon > svg,
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-js-action-show .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .chilldeck-count-holder {
            opacity: 0;
            visibility: visible;
            -webkit-transform: scale(1);
            transform: scale(1); }
          .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_info {
            display: none; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-header-action_dropdown .chilldeck-header-dropdown_content {
          padding: 0 0px 80px; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-header-action_dropdown {
          right: 0;
          left: 0px;
          top: 100%;
          width: 100vw;
          height: 100vh; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-header-action_dropdown .chilldeck-header-dropdown_content {
          overflow: auto;
          padding-bottom: 120px;
          -webkit-overflow-scrolling: touch; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_cart {
          display: none; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_cart.chilldeck-show-mb {
          display: block; }
    .chilldeck-mainHeader .chilldeck-header-wrap-menu-desktop {
      display: none; } }
  @media (max-width: 992px) and (min-width: 768px) {
    .chilldeck-mainHeader .chilldeck-header-wrap-logo a img {
      max-height: 65px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo h1, .chilldeck-mainHeader .chilldeck-header-wrap-logo a {
      font-size: 26px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.locationContainer .chilldeck-header-action__link .box-text {
      padding: 3px 10px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu {
      margin-left: 15px;
      margin-right: 0; } }
  @media (max-width: 767px) {
    .chilldeck-mainHeader .chilldeck-header-left {
      -ms-flex: 0 0 calc(100% - 150px);
      flex: 0 0 80%;
      max-width: calc(100% - 105px); }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo a img {
      max-height: 60px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo h1, .chilldeck-mainHeader .chilldeck-header-wrap-logo a {
      font-size: 20px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-logo .chilldeck-wrap-logo a {
      transition: none;
      word-wrap: break-word;
      white-space: initial;
      overflow: hidden;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      display: -webkit-box; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action {
      position: initial;
      gap: 3px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item {
        position: initial; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu .chilldeck-header-action_text .chilldeck-box-triangle {
          top: calc(100% - 5px); }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .box-text .txt-overflow {
          max-width: 90px;
          vertical-align: initial; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.locationContainer .chilldeck-header-action_text .box-text .txtnw {
          font-size: 8px; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.locationContainer .chilldeck-header-action_text .box-text .txtnw .fa {
          font-size: 10px;
          margin-left: 1px; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item.locationContainer .chilldeck-header-action_text .box-text .txtbl {
          font-size: 10px; }
        .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_dropdown .chilldeck-header-dropdown_content {
          overflow: auto;
          padding-bottom: 180px;
          -webkit-overflow-scrolling: touch; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon svg.chilldeck-svg-ico-account {
        width: 18px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon svg.chilldeck-svg-ico-search {
        width: 18px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon svg {
        width: 18px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .chilldeck-box-icon--close svg {
        width: 18px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon {
        width: 28px; }
      .chilldeck-mainHeader .chilldeck-header-wrap-action .chilldeck-header-action .chilldeck-header-action-item .chilldeck-header-action_text .chilldeck-header-action__link .chilldeck-box-icon .chilldeck-count-holder {
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        left: 12px;
        top: 1px; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item {
      padding: 0; }
    .chilldeck-mainHeader .chilldeck-header-wrap-action.chilldeck-header-wrap-iconav .chilldeck-header-action .chilldeck-header-action-item.chilldeck-header-action_menu {
      margin-left: 7px;
      margin-right: 0; } }

.chilldeck-mainHeader--height.chilldeck-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999 !important;
  animation: smoothScroll 0.8s forwards;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1); }

@keyframes smoothScroll {
  0% {
    transform: translateY(-90px); }
  100% {
    transform: translateY(0px); } }

/*--------------------------------------------------------------------------------
SIDEBAR MAIN
--------------------------------------------------------------------------------*/
.chilldeck-sidebar-main .chilldeck-sitenav-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999;
  background: transparent; }
  .chilldeck-sidebar-main .chilldeck-sitenav-wrapper.chilldeck-sitenav-right {
    right: 0; }
    .chilldeck-sidebar-main .chilldeck-sitenav-wrapper.chilldeck-sitenav-right .chilldeck-sitenav-inner {
      right: 0;
      -webkit-transform: translateX(120%);
      transform: translateX(120%);
      -webkit-transition: transform 0.35s ease,right 0.25s ease, visibility 0s;
      transition: transform 0.35s ease,right 0.25s ease, visibility 0s; }
  .chilldeck-sidebar-main .chilldeck-sitenav-wrapper.chilldeck-sitenav-left {
    left: 0; }
    .chilldeck-sidebar-main .chilldeck-sitenav-wrapper.chilldeck-sitenav-left .chilldeck-sitenav-inner {
      left: 0;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      -webkit-transition: transform 0.35s ease,left 0.25s ease, visibility 0s;
      transition: transform 0.35s ease,left 0.25s ease, visibility 0s; }
  .chilldeck-sidebar-main .chilldeck-sitenav-wrapper .chilldeck-sitenav-inner {
    margin: 0 auto;
    max-width: 480px;
    position: absolute;
    top: 0;
    bottom: 0;
    background: #ffffff;
    background-clip: padding-box;
    display: flex;
    flex-direction: column; }
    .chilldeck-sidebar-main .chilldeck-sitenav-wrapper .chilldeck-sitenav-inner:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: #fff;
      z-index: 1;
      opacity: 1;
      visibility: visible; }

.chilldeck-sidebar-main.chilldeck-is-show-right .chilldeck-sitenav-wrapper.chilldeck-show {
  left: 0 !important;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

.chilldeck-sidebar-main.chilldeck-is-show-right .chilldeck-sitenav-wrapper.chilldeck-show .chilldeck-sitenav-inner {
  right: 0;
  width: 85%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .chilldeck-sidebar-main.chilldeck-is-show-right .chilldeck-sitenav-wrapper.chilldeck-show .chilldeck-sitenav-inner:after {
    visibility: hidden;
    opacity: 0; }

.chilldeck-sidebar-main.chilldeck-is-show-right .chilldeck-sitenav-wrapper.chilldeck-show .chilldeck-sidebar-overlay {
  opacity: 1;
  visibility: visible; }

.chilldeck-sidebar-main.chilldeck-is-show-left .chilldeck-sitenav-wrapper.chilldeck-show {
  right: 0 !important;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

.chilldeck-sidebar-main.chilldeck-is-show-left .chilldeck-sitenav-wrapper.chilldeck-show .chilldeck-sitenav-inner {
  left: 0;
  width: 85%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .chilldeck-sidebar-main.chilldeck-is-show-left .chilldeck-sitenav-wrapper.chilldeck-show .chilldeck-sitenav-inner:after {
    visibility: hidden;
    opacity: 1; }

.chilldeck-sidebar-main.chilldeck-is-show-left .chilldeck-sitenav-wrapper.chilldeck-show .chilldeck-sidebar-overlay {
  opacity: 1;
  visibility: visible; }

.chilldeck-sidebar-main .chilldeck-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-inner {
  max-width: 380px;
  padding: 30px; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-header {
  border-bottom: none; }
  .chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-header .logo a {
    font-size: 28px;
    font-weight: 600; }
  .chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-header .chilldeck-btn-sitenav-close {
    display: block;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    opacity: 1;
    text-align: center;
    outline: none;
    border: none;
    background: rgba(0, 0, 0, 0.05); }
    .chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-header .chilldeck-btn-sitenav-close svg {
      width: 15px;
      height: 15px;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      fill: #000000; }
    .chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-header .chilldeck-btn-sitenav-close:hover svg {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-content {
  display: flex;
  flex-flow: column;
  justify-content: space-between; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-social li svg {
  width: 20px;
  height: 20px;
  fill: currentcolor; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-social li span {
  font-size: 18px;
  font-weight: 600;
  margin-left: 20px; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-social li a {
  display: inline-flex;
  align-items: center; }
  .chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-social li a:hover {
    color: #000000;
    opacity: 0.6; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-social li.svg-tiktok svg {
  width: 22px;
  height: 22px; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-social li.svg-lazada svg {
  stroke: #000000; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-social li:not(:last-child) {
  margin-bottom: 20px; }

.chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-bottom {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000; }
  .chilldeck-sidebar-main .chilldeck-sitenav-info .chilldeck-sitenav-bottom .chilldeck-info-phone {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px; }

.chilldeck-sitenav-inner .chilldeck-sitenav-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #d5d5d5; }
  .chilldeck-sitenav-inner .chilldeck-sitenav-header__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #000000; }
  .chilldeck-sitenav-inner .chilldeck-sitenav-header__btn svg {
    width: 17px;
    height: 100%;
    margin: 0 auto;
    cursor: pointer;
    fill: #000000; }
  .chilldeck-sitenav-inner .chilldeck-sitenav-header .chilldeck-cart-shipping {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 18px; }
    .chilldeck-sitenav-inner .chilldeck-sitenav-header .chilldeck-cart-shipping__title {
      font-size: 14px;
      font-weight: 400;
      color: rgba(0, 0, 0, 0.6);
      letter-spacing: 0.5px;
      min-height: 30px; }
      .chilldeck-sitenav-inner .chilldeck-sitenav-header .chilldeck-cart-shipping__title .price {
        font-weight: 600;
        color: #ff2c26; }
      .chilldeck-sitenav-inner .chilldeck-sitenav-header .chilldeck-cart-shipping__title .free-ship {
        text-transform: uppercase;
        color: #000000;
        font-weight: 600; }

.chilldeck-sitenav-inner .chilldeck-sitenav-content {
  padding: 15px;
  position: relative;
  overflow-y: scroll;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
  overscroll-behavior: none; }
  .chilldeck-sitenav-inner .chilldeck-sitenav-content::-webkit-scrollbar {
    width: 4px;
    height: 3px; }
  .chilldeck-sitenav-inner .chilldeck-sitenav-content::-webkit-scrollbar-track {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: 10px; }
  .chilldeck-sitenav-inner .chilldeck-sitenav-content::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #e1e3e4;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }
  .chilldeck-sitenav-inner .chilldeck-sitenav-content::-webkit-scrollbar-thumb:window-inactive {
    background: #e1e3e4; }

.chilldeck-sitenav-inner .chilldeck-sitenav-footer {
  padding: 15px;
  margin-top: auto;
  border-top: 1px solid #d5d5d5; }

.chilldeck-menuList-links {
  margin: 0; }

.chilldeck-menuList-links li {
  position: relative; }

.chilldeck-menuList-links li a {
  color: #000000;
  position: relative;
  font-size: 13px;
  display: block; }

.chilldeck-menuList-links li a:hover, .chilldeck-menuList-links li a:focus {
  color: #000000; }

.chilldeck-menuList-links > li {
  border-bottom: 1px dashed #d5d5d5; }

.chilldeck-menuList-links > li:last-child {
  border-bottom: none; }

.chilldeck-menuList-links > li > a {
  padding: 12px 0;
  font-weight: 500;
  font-size: 15px; }

.chilldeck-menuList-links > li.chilldeck-has-submenu > a {
  padding-right: 30px; }

.chilldeck-menuList-links > li.chilldeck-has-submenu span.chilldeck-icon-plus-submenu {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: none; }

.chilldeck-icon-plus-submenu:after, .chilldeck-icon-plus-submenu:before {
  background: rgba(0, 0, 0, 0.6);
  content: '';
  display: block;
  position: absolute;
  margin-right: 7px;
  top: 50%;
  right: 0;
  -moz-transition: all .25s linear;
  -o-transition: all .25s linear;
  -webkit-transition: all .25s linear;
  transition: all .25s linear; }

.chilldeck-icon-plus-submenu:before {
  width: 9px;
  height: 1px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.chilldeck-icon-plus-submenu:after {
  width: 1px;
  height: 9px;
  right: 4px;
  transform-origin: center;
  -moz-transform: translateY(-50%) scale(1, 1);
  -ms-transform: translateY(-50%) scale(1, 1);
  -webkit-transform: translateY(-50%) scale(1, 1);
  transform: translateY(-50%) scale(1, 1); }

li.chilldeck-has-submenu.opened > a .chilldeck-icon-plus-submenu:after {
  -moz-transform: translateY(-50%) scale(1, 0);
  -ms-transform: translateY(-50%) scale(1, 0);
  -webkit-transform: translateY(-50%) scale(1, 0);
  transform: translateY(-50%) scale(1, 0); }

ul.chilldeck-menuList-links li ul.chilldeck-submenu-links {
  display: none; }

ul.chilldeck-submenu-links li a {
  padding: 8px 0 8px 0px; }

li.chilldeck-has-submenu.chilldeck-level0 > ul.chilldeck-submenu-links {
  border-top: 1px dashed #d5d5d5; }

li.chilldeck-has-submenu.chilldeck-level0 > ul.chilldeck-submenu-links li a {
  padding-left: 12px; }

li.chilldeck-has-submenu.chilldeck-level1 > ul.chilldeck-submenu-links li a {
  padding-left: 25px; }

li.chilldeck-has-submenu.chilldeck-level2 > ul.chilldeck-submenu-links li a {
  padding-left: 35px; }

/*----- LIVE STREAM ------*/
.chilldeck-modal-live {
  position: fixed;
  max-width: 45%;
  max-height: 75%;
  bottom: 5px;
  left: 5px;
  z-index: 999;
  transform: translateY(calc(100% + 5px));
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out; }
  .chilldeck-modal-live .chilldeck-modal-live--inner {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12); }
  .chilldeck-modal-live.opened {
    transform: translateY(0); }
  .chilldeck-modal-live .chilldeck-btn-close--live {
    position: absolute;
    right: -40px;
    top: 0;
    cursor: pointer;
    opacity: 0;
    padding: 0 10px; }
  .chilldeck-modal-live iframe {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 100%; }
  .chilldeck-modal-live:hover .chilldeck-btn-close--live {
    opacity: 1; }
  @media (max-width: 992px) {
    .chilldeck-modal-live {
      max-width: 100%;
      max-height: 100%; }
      .chilldeck-modal-live .chilldeck-btn-close--live {
        right: -5px;
        top: 5px;
        opacity: 1; } }

.box-item.box-live {
  position: relative;
  margin-top: 15px; }
  .box-item.box-live .svgico {
    position: relative;
    z-index: 4;
    display: block;
    height: 48px;
    width: 48px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    animation: pulse 2s infinite;
    animation: pulse 2s infinite; }
    .box-item.box-live .svgico svg {
      fill: #ffffff;
      width: 28px;
      height: 100%;
      transition: opacity 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
      transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
      transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out; }
  .box-item.box-live:before, .box-item.box-live:after {
    position: absolute;
    content: '';
    height: 48px;
    width: 48px;
    left: 0;
    top: 0;
    border-radius: 50%; }
  .box-item.box-live:before {
    animation: euiBeaconPulseSmall_live 2s infinite ease-out; }
  .box-item.box-live:after {
    animation: euiBeaconPulseSmall_live 2s  infinite ease-out 0.4s; }

@keyframes euiBeaconPulseSmall_live {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.4);
    opacity: 0; } }

/*----- END LIVE STREAM ------*/
/*----- Translate ------*/
body {
  top: 0 !important; }

.skiptranslate {
  display: none;
  /* width: 0;
  height: 0;
  opacity: 0;*/ }

.chilldeck-translate-wrapper {
  position: relative;
  cursor: pointer; }
  .chilldeck-translate-wrapper .language-text {
    font-size: 14px; }
  .chilldeck-translate-wrapper .chilldeck-translate-dropdown-wrapper {
    position: absolute;
    left: 0;
    z-index: 9;
    padding-top: 12px;
    margin-top: -12px;
    width: 100%;
    transition: .3s all;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
    .chilldeck-translate-wrapper .chilldeck-translate-dropdown-wrapper .chilldeck-translate-dropdown {
      overflow-y: auto;
      font-size: 12px;
      scroll-padding: .5rem 0;
      width: 100%;
      min-width: 105px;
      background-color: #111111;
      text-align: left;
      z-index: 99;
      left: 0;
      box-shadow: 0px 7px 18px rgba(0, 0, 0, 0.2); }
      .chilldeck-translate-wrapper .chilldeck-translate-dropdown-wrapper .chilldeck-translate-dropdown .js-language-select .flag svg {
        width: 14px;
        height: 14px; }
      .chilldeck-translate-wrapper .chilldeck-translate-dropdown-wrapper .chilldeck-translate-dropdown a {
        display: block;
        padding: 5px 8px;
        transition: .3s all;
        color: #000000;
        background-color: transparent; }
        .chilldeck-translate-wrapper .chilldeck-translate-dropdown-wrapper .chilldeck-translate-dropdown a:hover {
          background-color: rgba(0, 0, 0, 0.1);
          color: #000000; }
  .chilldeck-translate-wrapper .icon-svg {
    --icon-height: 14px;
    --icon-width: 14px; }
  .chilldeck-translate-wrapper:hover .chilldeck-translate-dropdown-wrapper, .chilldeck-translate-wrapper.active .chilldeck-translate-dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  .chilldeck-translate-wrapper:hover .icon-svg, .chilldeck-translate-wrapper.active .icon-svg {
    transform: rotate(-180deg); }

@media (max-width: 991px) {
  .chilldeck-header-action_translate {
    display: none; } }

.searchform {
  position: relative; }
  .searchform #search-header-btn {
    width: 50px;
    height: 100%;
    line-height: 40px;
    position: absolute;
    padding: 0;
    top: 0;
    right: 0;
    background: transparent;
    transition: opacity 150ms linear; }
    .searchform #search-header-btn svg {
      width: 18px;
      height: 100%;
      display: block;
      margin: auto; }

.chilldeck-sitenav-menu .chilldeck-mobile-menu__section .chilldeck-mobile-menu__section-title {
  font-size: 15px;
  color: var(--shop-color-title);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal; }

.chilldeck-sitenav-menu .chilldeck-mobile-menu__section .chilldeck-mobile-menu__help-wrapper + .chilldeck-mobile-menu__help-wrapper {
  margin-top: 15px; }

.chilldeck-sitenav-menu .chilldeck-mobile-menu__section .chilldeck-mobile-menu__help-wrapper {
  color: #677279;
  display: flex;
  display: -ms-flex;
  align-items: center; }

.chilldeck-sitenav-menu .chilldeck-mobile-menu__section .chilldeck-mobile-menu__help-wrapper .icon--bi-phone {
  margin-right: 16px;
  width: 24px;
  height: 24px; }

.chilldeck-sitenav-menu .chilldeck-mobile-menu__section .chilldeck-mobile-menu__help-wrapper .icon--bi-email {
  margin-right: 18px;
  width: 22px;
  height: 22px; }

.chilldeck-sitenav-menu .chilldeck-mobile-menu__section .chilldeck-mobile-menu__help-wrapper a {
  border-bottom: 0 !important;
  text-transform: none !important; }

.chilldeck-sitenav-menu .chilldeck-menuList-links li.chilldeck-has-submenu.level0 > ul.chilldeck-submenu-links {
  border: 0; }

.chilldeck-sitenav-menu .chilldeck-menuList-links > li {
  border: 0; }

.chilldeck-sitenav-menu .chilldeck-menuList-links > li > a {
  font-weight: 600; }

.chilldeck-sitenav-menu .chilldeck-menuList-links > li.chilldeck-has-submenu .chilldeck-icon-plus-submenu:hover {
  border: none; }

.chilldeck-sitenav-menu .chilldeck-menuList-links .chilldeck-has-submenu.level0 > ul.chilldeck-submenu-links li a {
  font-weight: 500; }
