/*Header layout*/
.cafe-absolute-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}

.is-sticky {
  position: fixed;
  left: var(--left, 0);
  top: 0;
  z-index: 11;
}

.cafe-row-sticky {
  width: 100%;

  &.cafe-scroll-up-sticky {
    &.is-sticky {
      transition: all 350ms ease !important;
    }

    &.is-sticky:not(.active-sticky) {
      top: -100%;
    }
  }
}

.elementor-section.elementor-section-stretched.is-sticky {
  position: fixed;
}

@media (min-width: 600px) and (max-width: 782px) {
  .admin-bar {
    .cafe-row-sticky {
      &.is-sticky {
        margin-top: 46px;
      }
    }
  }
}

@media (min-width: 783px) {
  .admin-bar {
    .cafe-row-sticky {
      &.is-sticky {
        margin-top: 32px;
      }
    }
  }
}

/*End Header layout*/
/*Site Logo*/
.elementor-widget-clever-site-logo {
  font-size: 0;
}

.cafe-wrap-site-logo {
  display: block;
  width: 100%;
  position: relative;

  img {
    max-width: 100%;
    max-height: 100%;
    transition: opacity 300ms;
  }
}

.cafe-wrap-sticky-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  text-align: inherit;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
}

.cafe-site-logo {
  transition: all 300ms;
  display: inline-block;

  img {
    transition: all 300ms;
  }
}

.cafe-inner-sticky-logo {
  display: inline-block;
}

.cafe-row-sticky.is-sticky {
  .has-sticky-logo {
    .cafe-site-logo {
      opacity: 0;
      visibility: hidden;
    }
  }

  .cafe-wrap-sticky-logo {
    opacity: 1;
    visibility: visible;
  }
}

.cafe-scroll-up-sticky {
  .cafe-site-logo {
    transition: none;

    img {
      transition: none;
    }
  }

  .cafe-wrap-sticky-logo {
    transition: none;
  }
}

/*End Site Logo*/
/*Site Navigation Menu*/
.cafe-site-menu li > .cmm4e-sub-panel.pos-left {
  left: auto !important;
  right: calc(100% + 20px) !important;
}

.cafe-site-menu,
.cafe-site-offcanvas {
  --menu-color: #000;
  --menu-hover-color: #212121;
  --menu-bg: transparent;
  --menu-hover-bg: #2980b9;
  --menu-icon-color: #000;
  --menu-mask-bg: rgba(0, 0, 0, 0.6);
  font-size: 0;

  .cafe-menu {
    font-size: 0;
  }

  .cafe-menu,
  .menu-item > ul {
    margin: 0;
  }

  .menu-item {
    font-size: 1rem;
    padding: 0;
    list-style: none;
    position: relative;
    width: 100%;

    & > a {
      padding: 10px 25px 10px 15px;
      display: block;
      position: relative;
      line-height: 1.3;
      overflow: hidden;
      z-index: 1;
      color: var(--menu-color);
      background: var(--menu-bg);
    }

    &.current-menu-item,
    &.current-menu-parent,
    &:hover {
      & > a {
        color: var(--menu-hover-color);
        background: var(--menu-hover-bg);
      }
    }
  }

  /*Menu arrow*/
  .cafe-menu-arrow {
    line-height: 1;
    color: inherit;

    &:before {
      font-family: cleversoft;
      font-size: 65%;
    }
  }

  .menu-item .menu-item .cafe-menu-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .cafe-menu-arrow {
    &:before {
      content: "\c059";
    }

    &.active:before {
      content: "\c009";
    }
  }

  &.icon-submenu-carret {
    .cafe-menu-arrow {
      &:before {
        content: "\c264";
      }

      &.active:before {
        content: "\c261";
      }
    }
  }

  &.icon-submenu-plus {
    .cafe-menu-arrow {
      &:before {
        content: "\c025";
      }

      &.active:before {
        content: "\c035";
      }
    }
  }

  //horizontal layout
  &.horizontal {
    &.icon-submenu-arrow {
      .menu-item .menu-item .cafe-menu-arrow {
        &:before {
          content: "\c034";
        }
      }
    }

    .menu-item {
      & > ul {
        position: absolute;
        background: $white_text;
        box-shadow: -2px 2px 81px -17px rgba(0, 0, 0, 0.29);
        width: 280px;
        left: 100%;
        top: 30px;
        z-index: 3;
        opacity: 0;
        visibility: hidden;
        transition: all 300ms;

        &.pos-left {
          right: 100%;
          left: auto;
        }
      }

      &:hover > ul {
        top: 0;
        opacity: 1;
        visibility: visible;
      }
    }

    .cafe-menu > .menu-item {
      display: inline-block;
      width: auto;

      &:first-child {
        margin-left: 0 !important;
      }

      &:last-child {
        margin-right: 0 !important;
      }

      a {
        padding: 10px 15px;

        & > .cafe-menu-arrow {
          margin-left: 3px;
        }
      }

      & > ul {
        left: 0;
        top: calc(100% + 30px);

        &.pos-left {
          right: 0;
          left: auto;
        }
      }

      &:hover > ul {
        top: 100%;
      }

      .menu-item > a {
        padding: 8px 25px 8px 15px;
      }
    }
  }

  //Vertical layout
  &:not(.horizontal) {
    &:not(.icon-submenu-none) {
      .menu-item > ul {
        display: none;
      }
    }

    .cafe-menu > .menu-item {
      width: 100%;
      display: block;

      .cafe-menu-arrow {
        position: absolute;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
      }

      & > ul {
        padding-left: 10px;
        width: 100%;
      }
    }
  }

  /*Hover Style*/
  &.hover-style-normal {
    --menu-hover-bg: transparent;

    .cafe-menu > .menu-item {
      & > a:before {
        height: 100%;
        right: 0;
        bottom: 0;
        visibility: visible;
        opacity: 0;
      }

      &.current-menu-item,
      &.current-menu-parent,
      &:hover {
        & > a:before {
          opacity: 1;
        }
      }
    }
  }

  &.hover-style-slide {
    --menu-hover-color: #fff;
  }

  &:not(.hover-style-slide) {
    .cafe-menu > .menu-item {
      & > a {
        &:before {
          content: "";
          display: block;
          transition: inherit;
          visibility: hidden;
          position: absolute;
          background: var(--menu-hover-bg);
          width: 100%;
          z-index: -1;
        }
      }
    }
  }

  &.hover-style-underline {
    .cafe-menu > .menu-item {
      & > a:before {
        height: 3px;
        left: 0;
        bottom: 50%;
        visibility: visible;
        opacity: 0;
      }

      &.current-menu-item,
      &.current-menu-parent,
      &:hover {
        & > a:before {
          bottom: 0;
          opacity: 1;
        }
      }
    }
  }

  &.hover-style-underline-2 {
    .cafe-menu > .menu-item {
      & > a {
        background: transparent;
      }

      & > a:before {
        height: 1em;
        left: 0;
        top: 50%;
        width: 0;
        visibility: visible;
        transition: 300ms ease-in-out;
      }

      &.current-menu-item,
      &.current-menu-parent,
      &:hover {
        & > a:before {
          width: 100%;
        }
      }
    }
  }

  &.hover-style-underline-3 {
    .cafe-menu > .menu-item {
      & > a {
        background: transparent;
      }

      & > a:before {
        height: 1px;
        left: 0;
        bottom: 0;
        width: 0;
        visibility: visible;
        transition: 300ms ease-in-out;
      }

      &.current-menu-item,
      &.current-menu-parent,
      &:hover {
        & > a:before {
          width: 100%;
        }
      }
    }
  }

  &.hover-style-line-through {
    .cafe-menu > .menu-item {
      & > a:before {
        height: 2px;
        left: 50%;
        width: 0;
        bottom: calc(50% - 1px);
        visibility: visible;
        opacity: 1;
      }

      &.current-menu-item,
      &.current-menu-parent,
      &:hover {
        & > a:before {
          width: 100%;
          left: 0;
        }
      }
    }
  }

  &.hover-style-line-through-2 {
    .cafe-menu > .menu-item {
      & > a:before {
        height: 2px;
        left: 0;
        width: 0;
        bottom: calc(50% - 1px);
        visibility: visible;
        opacity: 1;
      }

      &.current-menu-item,
      &.current-menu-parent,
      &:hover {
        & > a:before {
          width: 35%;
        }
      }
    }
  }

  &.hover-style-double-lines {
    .cafe-menu > .menu-item {
      & > a:after {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        width: 0;
        right: 0;
        top: 0;
        background: var(--menu-hover-bg);
        z-index: -1;
        transition: inherit;
      }

      & > a:before {
        height: 2px;
        left: 0;
        bottom: 0;
        visibility: visible;
        width: 0;
        opacity: 1;
      }

      &.current-menu-item,
      &.current-menu-parent,
      &:hover {
        & > a:before,
        & > a:after {
          width: 100%;
        }
      }
    }
  }

  .cafe-hamburger-input-control,
  .cafe-hamburger-button {
    display: none;
  }

  .cafe-hamburger-mask {
    width: 100vw;
    height: 100vh;
    background: var(--menu-mask-bg);
    opacity: 0;
    visibility: hidden;
    transition: all 500ms;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    cursor: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 18 18' fill='%23fff'%3e%3cpath d='M14.53 4.53l-1.06-1.06L9 7.94 4.53 3.47 3.47 4.53 7.94 9l-4.47 4.47 1.06 1.06L9 10.06l4.47 4.47 1.06-1.06L10.06 9z'/%3e%3c/svg%3e"),
      pointer;
  }

  .cafe-hamburger-button {
    position: relative;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    color: var(--menu-icon-color);
    align-items: center;
    font-size: 1rem;

    .cafe-wrap-hamburger-icon {
      position: relative;
      width: 24px;
      height: 24px;
      display: inline-block;
    }

    .cafe-hamburger-icon {
      width: 100%;
      top: calc(50% - 1px);
      left: 50%;
      height: 2px;
      background: var(--menu-icon-color);
      transform-origin: center;
      transition: 0.5s ease-in-out;
      display: block;
      position: absolute;
      transform: translateX(-50%);

      &:after,
      &:before {
        transition: 0.5s ease-in-out;
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        background: var(--menu-icon-color);
      }

      &:before {
        top: -8px;
      }

      &:after {
        bottom: -8px;
      }
    }
  }

  .cafe-hamburger-close-button {
    display: none;
    cursor: pointer;
    color: var(--menu-color);
  }

  .cafe-wrap-menu {
    .toggle {
      position: relative;

      .arrow {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        font-size: 12px;
        cursor: pointer;

        &:before {
          position: absolute;
          top: 50%;
          right: 15px;
          z-index: 2;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          transition: all 350ms;
        }
      }
    }

    .wrap-menu-inner {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1;
    }

    &.toggle-active {
      .toggle {
        .arrow {
          &:before {
            transform: translateY(-50%) rotate(180deg);
            -moz-transform: translateY(-50%) rotate(180deg);
            -webkit-transform: translateY(-50%) rotate(180deg);
          }
        }
      }
    }
  }

  input.cafe-hamburger-input-control:checked ~ .cafe-hamburger-button {
    .cafe-hamburger-icon {
      transform: translateX(-50%) rotate(45deg);

      &:after {
        transform: rotate(90deg);
        bottom: 0;
      }

      &:before {
        transform: rotate(90deg);
        top: 0;
      }
    }
  }

  &.hamburger {
    --menu-bg: #fff;
    --menu-hover-bg: transparent;

    .menu-item > ul {
      display: none;
    }

    .cafe-hamburger-button {
      display: inline-flex;
    }

    &.cafe-hamburger-fixed-tr-fs-effect {
      .cafe-wrap-offcanvas,
      .cafe-wrap-menu {
        position: fixed;
        left: 50vw;
        top: 50vh;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 360px;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s ease-in-out;
        overflow: hidden;
        overflow-y: auto;
        max-height: calc(100vh - 60px);
        margin-top: 30px;
        z-index: 999;
      }

      .menu-item > a {
        background: transparent;
      }

      .cafe-hamburger-button {
        display: block;
        position: fixed;
        right: 50px;
        top: 50px;
        z-index: 100;
        width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 50%;
        background: var(--menu-bg);
        box-shadow: 0 0 0 0 var(--menu-bg), 0 0 0 0 var(--menu-bg);
      }

      input.cafe-hamburger-input-control:checked ~ .cafe-hamburger-button {
        box-shadow: 0 0 0 100vw var(--menu-bg), 0 0 0 100vh var(--menu-bg);
      }

      input.cafe-hamburger-input-control:checked ~ .cafe-wrap-menu,
      input.cafe-hamburger-input-control:checked ~ .cafe-wrap-offcanvas {
        opacity: 1;
        visibility: visible;
      }
    }

    &.cafe-hamburger-off-canvas-effect {
      & > .cafe-wrap-menu,
      & > .cafe-wrap-offcanvas {
        position: fixed;
        top: 0;
        height: 100vh;
        background: var(--menu-bg);
        width: 360px;
        max-width: calc(100% - 30px);
        padding: 30px 0;
        transition: all 300ms;
        z-index: 99;
        overflow: hidden;
        overflow-y: auto;
      }

      &.left {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          left: 0;
          transform: translateX(-360px);
        }
      }

      &.right {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          right: 0;
          transform: translateX(360px);
        }
      }

      .cafe-menu {
        padding: 0 15px;
      }

      .cafe-hamburger-mask {
        display: block;
        z-index: 98;
      }

      input.cafe-hamburger-input-control:checked ~ {
        & .cafe-wrap-menu,
        .cafe-wrap-offcanvas {
          transform: translateX(0);
        }

        & .cafe-hamburger-mask {
          visibility: visible;
          opacity: 1;
        }
      }
    }

    &.cafe-hamburger-off-canvas-2-effect {
      & > .cafe-wrap-menu,
      & > .cafe-wrap-offcanvas {
        position: fixed;
        top: 0;
        height: 100vh;
        background: var(--menu-bg);
        width: 70vw;
        overflow: hidden;
        overflow-y: auto;
        padding: 30px 5%;
        transition: all 350ms;
        z-index: 99;
        display: flex;
        align-items: center;
      }

      .cafe-hamburger-close-button {
        position: absolute;
        top: 20px;
        left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        z-index: 9;
        width: 1em;
        height: 1em;
      }

      &.left {
        .cafe-hamburger-close-button {
          right: 20px;
          left: auto;
        }

        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          left: 0;
          transform: translateX(-70vw);
        }
      }

      &.right {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          right: 0;
          transform: translateX(70vw);
        }
      }

      .cafe-menu {
        padding: 15px 0;
        width: 100%;

        & > .menu-item {
          transform: translateY(10px);
          opacity: 0;
          transition: 350ms ease-out;
          transition-delay: 300ms;
        }

        .menu-item > a {
          font-size: 2.2rem;
          text-transform: uppercase;
          font-weight: lighter;

          .cafe-menu-arrow {
            display: inline;
            margin: 0 5px;
            position: static;
          }
        }
      }

      .cafe-hamburger-mask {
        display: block;
        z-index: 98;
      }

      input.cafe-hamburger-input-control:checked ~ {
        & .cafe-wrap-menu,
        & .cafe-wrap-offcanvas {
          transform: translateX(0);
          transition: all 750ms cubic-bezier(0.3, 0.88, 0.37, 0.99);
          transition-delay: 0ms;

          .cafe-menu > .menu-item {
            opacity: 1;
            transform: translateY(0);
          }
        }

        & .cafe-hamburger-mask {
          visibility: visible;
          opacity: 1;
        }
      }

      @for $i from 1 through 12 {
        input.cafe-hamburger-input-control:checked ~ {
          & .cafe-wrap-menu,
          & .cafe-wrap-offcanvas {
            .cafe-menu > .menu-item:nth-child(#{$i}) {
              transition-delay: calc(#{$i} * 100ms + 450ms);
            }
          }
        }
      }
    }

    &.cafe-hamburger-full-screen-effect {
      .cafe-hamburger-close-button {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        cursor: pointer;
        font-size: 2rem;
      }

      & > .cafe-wrap-menu,
      & > .cafe-wrap-offcanvas {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: -20px;
        left: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 111;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        overflow-y: auto;
        padding: 30px 0;
        transition: all 100ms ease-out;
      }

      .cafe-hamburger-mask {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: -10vh;
        left: 0;
        background: var(--menu-bg);
        opacity: 0;
        visibility: hidden;
        z-index: 110;
        transition: all 200ms;
        display: block;
      }

      .cafe-menu {
        max-width: 100%;
        width: 460px;

        & > li.menu-item {
          & > a {
            background: transparent;
          }
        }

        .menu-item > a {
          font-weight: normal;
          font-size: 2rem;
        }
      }

      input.cafe-hamburger-input-control:checked ~ {
        .cafe-hamburger-mask {
          visibility: visible;
          opacity: 1;
          top: 0;
        }

        .cafe-wrap-menu,
        .cafe-wrap-offcanvas {
          visibility: visible;
          top: 0;
          opacity: 1;
          transition: opacity 450ms, top 250ms ease;
        }
      }
    }

    &.cafe-hamburger-slide-down-effect {
      & > .cafe-wrap-menu,
      & > .cafe-wrap-offcanvas {
        height: 0;
        overflow: hidden;
        transition: all 450ms ease-out;
      }

      input.cafe-hamburger-input-control:checked ~ {
        .cafe-wrap-menu,
        .cafe-wrap-offcanvas {
          padding-top: 15px;
          padding-bottom: 15px;
          height: 50vh;
          overflow-y: auto;
        }
      }
    }

    &.cafe-hamburger-slide-left-effect {
      --menu-bg: transparent;
      --menu-color: #fff;

      .menu-item {
        font-size: 2rem;
      }

      & > .cafe-wrap-menu,
      & > .cafe-wrap-offcanvas {
        position: fixed;
        top: 50%;
        max-height: 100vh;
        overflow: hidden;
        background: var(--menu-bg);
        width: 360px;
        max-width: calc(100% - 30px);
        padding: 30px 0;
        transition: ease-in-out 300ms;
        z-index: 2;
        right: 0;
        transform: translate(360px, -50%);
      }

      .mega-menu-content {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background: inherit;
      }

      .cafe-menu {
        padding: 0 15px;
        overflow: hidden;
        overflow-y: auto;
      }

      .cafe-hamburger-mask {
        display: block;
        z-index: 1;

        &:before {
          content: "\c067";
          font-family: cleversoft;
          color: var(--menu-color);
          position: fixed;
          top: 15px;
          right: 15px;
          font-size: 1.5rem;
        }
      }
    }
  }

  .cafe-wrap-menu-slide-left {
    position: absolute;
  }
}

.hamburger-active {
  .cafe-site-menu.hamburger.cafe-hamburger-slide-left-effect {
    & > .cafe-wrap-menu,
    & > .cafe-wrap-offcanvas {
      transform: translate(0, -50%);
    }

    .cafe-hamburger-mask {
      visibility: visible;
      opacity: 1;
    }
  }
}

.cafe-wrap-body-content {
  transition: ease-in-out 500ms;
  background: #fff;
  z-index: 3;
}

.cafe-hamburger-slide-left-active {
  overflow: hidden;

  .cafe-wrap-body-content {
    width: 100vw;
    height: 100vh;
    transform: scale(0.8) translateX(-380px);
  }

  .cafe-wrap-body-content-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

/*Mobile style*/
@media (min-width: 1024.98px) {
  .cafe-site-menu.hamburger.cafe-hamburger-slide-left-effect {
    & > .cafe-wrap-offcanvas,
    & > .cafe-wrap-menu {
      width: 33vw;
      transform: translate(33vw, -50%);
      padding: 5vh 5%;
    }
  }
  .cafe-wrap-body-content::after {
    content: "\c067";
    font-family: cleversoft;
    color: #fff;
    display: flex;
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    background: red;
    border-radius: 50%;
    position: fixed;
    z-index: 1;
    right: 0;
    opacity: 0;
    top: 50%;
    transform: translate(50%, -50%);
    cursor: pointer;
    justify-content: center;
    align-items: center;

    &:hover {
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    }
  }
  .cafe-hamburger-slide-left-active {
    .cafe-hamburger-mask:before {
      content: "" !important;
    }

    .cafe-wrap-body-content::after {
      opacity: 1;
    }

    .cafe-wrap-body-content {
      width: calc(100vw - 20px);
      transform: scale(0.8) translateX(-33vw);
    }

    .elementor-section-stretched.elementor-section-full_width {
      width: 100vw !important;
    }
  }
}

@media (max-width: 1024.98px) {
  .cafe-lg-width {
    &.cafe-site-menu {
      --menu-bg: #fff;
      --menu-hover-bg: transparent;

      .menu-item > ul {
        display: none;
        position: static;
        visibility: visible;
        background: none;
        opacity: 1;
        box-shadow: none;
      }

      .cafe-menu > .menu-item {
        width: 100%;

        & > a {
          background: var(--menu-bg);

          &:before {
            display: none;
          }
        }
      }

      .menu-item {
        width: 100%;

        .cafe-menu-arrow {
          position: absolute;
          width: 30px;
          height: 30px;
          display: flex;
          justify-content: center;
          align-items: center;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
        }

        & > ul {
          padding-left: 10px;
          width: 100%;
        }

        .menu-item > a:hover {
          background: none;
        }
      }

      .cafe-hamburger-button {
        display: inline-flex;
      }

      &.cafe-hamburger-fixed-tr-fs-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          position: fixed;
          left: 50vw;
          top: 50vh;
          transform: translate(-50%, -50%);
          width: 100%;
          max-width: 360px;
          opacity: 0;
          visibility: hidden;
          transition: 0.5s ease-in-out;
          overflow: hidden;
          overflow-y: auto;
          max-height: calc(100vh - 60px);
          margin-top: 30px;
          z-index: 999;
        }

        .menu-item > a {
          background: transparent;
        }

        .cafe-hamburger-button {
          display: block;
          position: fixed;
          right: 50px;
          top: 50px;
          z-index: 100;
          width: 40px;
          height: 40px;
          padding: 8px;
          border-radius: 50%;
          background: var(--menu-bg);
          box-shadow: 0 0 0 0 var(--menu-bg), 0 0 0 0 var(--menu-bg);
        }

        input.cafe-hamburger-input-control:checked ~ .cafe-hamburger-button {
          box-shadow: 0 0 0 100vw var(--menu-bg), 0 0 0 100vh var(--menu-bg);
        }

        input.cafe-hamburger-input-control:checked ~ {
          .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            opacity: 1;
            visibility: visible;
          }
        }
      }

      &.cafe-hamburger-off-canvas-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          position: fixed;
          top: 0;
          height: 100vh;
          background: var(--menu-bg);
          width: 360px;
          max-width: calc(100% - 30px);
          overflow: hidden;
          overflow-y: auto;
          padding: 30px 0;
          transition: all 300ms;
          z-index: 99;
        }

        &.left {
          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            left: 0;
            transform: translateX(-360px);
          }
        }

        &.right {
          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            right: 0;
            transform: translateX(360px);
          }
        }

        .cafe-menu {
          padding: 0 15px;
        }

        .cafe-hamburger-mask {
          display: block;
          z-index: 98;
        }

        input.cafe-hamburger-input-control:checked ~ {
          & .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            transform: translateX(0);
          }

          & .cafe-hamburger-mask {
            visibility: visible;
            opacity: 1;
          }
        }
      }

      &.cafe-hamburger-off-canvas-2-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          position: fixed;
          top: 0;
          height: 100vh;
          background: var(--menu-bg);
          width: 70vw;
          overflow: hidden;
          overflow-y: auto;
          padding: 30px 5%;
          transition: all 350ms;
          z-index: 99;
          display: flex;
          align-items: center;
        }

        .cafe-hamburger-close-button {
          position: absolute;
          top: 20px;
          left: 20px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 2rem;
          z-index: 9;
          width: 1em;
          height: 1em;
        }

        &.left {
          .cafe-hamburger-close-button {
            right: 20px;
            left: auto;
          }

          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            left: 0;
            transform: translateX(-70vw);
          }
        }

        &.right {
          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            right: 0;
            transform: translateX(70vw);
          }
        }

        .cafe-menu {
          padding: 15px 0;
          width: 100%;

          & > .menu-item {
            transform: translateY(10px);
            opacity: 0;
            transition: 350ms ease-out;
            transition-delay: 300ms;
          }

          .menu-item > a {
            font-size: 2.2rem;
            text-transform: uppercase;
            font-weight: lighter;

            .cafe-menu-arrow {
              display: inline;
              margin: 0 5px;
              position: static;
            }
          }
        }

        .cafe-hamburger-mask {
          display: block;
          z-index: 98;
        }

        input.cafe-hamburger-input-control:checked ~ {
          & .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            transform: translateX(0);
            transition: all 750ms cubic-bezier(0.3, 0.88, 0.37, 0.99);
            transition-delay: 0ms;

            .cafe-menu > .menu-item {
              opacity: 1;
              transform: translateY(0);
            }
          }

          & .cafe-hamburger-mask {
            visibility: visible;
            opacity: 1;
          }
        }

        @for $i from 1 through 12 {
          input.cafe-hamburger-input-control:checked ~ {
            & .cafe-wrap-menu,
            .cafe-wrap-offcanvas {
              .cafe-menu > .menu-item:nth-child(#{$i}) {
                transition-delay: calc(#{$i} * 100ms + 450ms);
              }
            }
          }
        }
      }

      &.cafe-hamburger-full-screen-effect {
        .cafe-hamburger-close-button {
          top: 20px;
          right: 20px;
          width: 40px;
          height: 40px;
          display: flex;
          justify-content: center;
          align-items: center;
          position: fixed;
          cursor: pointer;
          font-size: 2rem;
        }

        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          width: 100vw;
          height: 100vh;
          position: fixed;
          top: -20px;
          left: 0;
          opacity: 0;
          visibility: hidden;
          z-index: 111;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
          overflow-y: auto;
          padding: 30px 0;
          transition: all 100ms ease-out;
        }

        .cafe-hamburger-mask {
          width: 100vw;
          height: 100vh;
          position: fixed;
          top: -10vh;
          left: 0;
          background: var(--menu-bg);
          opacity: 0;
          visibility: hidden;
          z-index: 110;
          transition: all 200ms;
          display: block;
        }

        .cafe-menu {
          max-width: 100%;
          width: 460px;

          & > li.menu-item {
            & > a {
              background: transparent;
            }
          }

          .menu-item > a {
            font-weight: normal;
            font-size: 2rem;
          }
        }

        input.cafe-hamburger-input-control:checked ~ {
          .cafe-hamburger-mask {
            visibility: visible;
            opacity: 1;
            top: 0;
          }

          .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            visibility: visible;
            top: 0;
            opacity: 1;
            transition: opacity 450ms, top 250ms ease;
          }
        }
      }

      &.cafe-hamburger-slide-down-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          height: 0;
          overflow: hidden;
          padding: 15px 0;
          transition: all 450ms ease-out;
        }

        input.cafe-hamburger-input-control:checked ~ {
          .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            height: 50vh;
            overflow-y: auto;
          }
        }
      }
    }
  }
}

@media (min-width: 768.98px) {
  .cafe-md-width.cafe-site-menu.icon-submenu-none .cafe-menu-arrow {
    display: none;
  }
}

@media (max-width: 768.98px) {
  .cafe-md-width {
    &.cafe-site-menu {
      --menu-bg: #fff;
      --menu-hover-bg: transparent;

      .menu-item > ul {
        display: none;
        position: static;
        visibility: visible;
        background: none;
        opacity: 1;
        box-shadow: none;
      }

      .cafe-menu > .menu-item {
        width: 100%;

        & > a {
          background: var(--menu-bg);

          &:before {
            display: none;
          }
        }
      }

      .menu-item {
        width: 100%;

        .cafe-menu-arrow {
          position: absolute;
          width: 30px;
          height: 30px;
          display: flex;
          justify-content: center;
          align-items: center;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
        }

        & > ul {
          padding-left: 10px;
          width: 100%;
        }

        .menu-item > a:hover {
          background: none;
        }
      }

      .cafe-hamburger-button {
        display: inline-flex;
      }

      &.cafe-hamburger-fixed-tr-fs-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          position: fixed;
          left: 50vw;
          top: 50vh;
          transform: translate(-50%, -50%);
          width: 100%;
          max-width: 360px;
          opacity: 0;
          visibility: hidden;
          transition: 0.5s ease-in-out;
          overflow: hidden;
          overflow-y: auto;
          max-height: calc(100vh - 60px);
          margin-top: 30px;
          z-index: 999;
        }

        .menu-item > a {
          background: transparent;
        }

        .cafe-hamburger-button {
          display: block;
          position: fixed;
          right: 50px;
          top: 50px;
          z-index: 100;
          width: 40px;
          height: 40px;
          padding: 8px;
          border-radius: 50%;
          background: var(--menu-bg);
          box-shadow: 0 0 0 0 var(--menu-bg), 0 0 0 0 var(--menu-bg);
        }

        input.cafe-hamburger-input-control:checked ~ .cafe-hamburger-button {
          box-shadow: 0 0 0 100vw var(--menu-bg), 0 0 0 100vh var(--menu-bg);
        }

        input.cafe-hamburger-input-control:checked ~ {
          .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            opacity: 1;
            visibility: visible;
          }
        }
      }

      &.cafe-hamburger-off-canvas-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          position: fixed;
          top: 0;
          height: 100vh;
          background: var(--menu-bg);
          width: 360px;
          max-width: calc(100% - 30px);
          overflow: hidden;
          overflow-y: auto;
          padding: 30px 0;
          transition: all 300ms;
          z-index: 99;
        }

        &.left {
          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            left: 0;
            transform: translateX(-360px);
          }
        }

        &.right {
          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            right: 0;
            transform: translateX(360px);
          }
        }

        .cafe-menu {
          padding: 0 15px;
        }

        .cafe-hamburger-mask {
          display: block;
          z-index: 98;
        }

        input.cafe-hamburger-input-control:checked ~ {
          & .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            transform: translateX(0);
          }

          & .cafe-hamburger-mask {
            visibility: visible;
            opacity: 1;
          }
        }
      }

      &.cafe-hamburger-off-canvas-2-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          position: fixed;
          top: 0;
          height: 100vh;
          background: var(--menu-bg);
          width: 70vw;
          overflow: hidden;
          overflow-y: auto;
          padding: 30px 5%;
          transition: all 350ms;
          z-index: 99;
          display: flex;
          align-items: center;
        }

        .cafe-hamburger-close-button {
          position: absolute;
          top: 20px;
          left: 20px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 2rem;
          z-index: 9;
          width: 1em;
          height: 1em;
        }

        &.left {
          .cafe-hamburger-close-button {
            right: 20px;
            left: auto;
          }

          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            left: 0;
            transform: translateX(-70vw);
          }
        }

        &.right {
          & > .cafe-wrap-menu,
          & > .cafe-wrap-offcanvas {
            right: 0;
            transform: translateX(70vw);
          }
        }

        .cafe-menu {
          padding: 15px 0;
          width: 100%;

          & > .menu-item {
            transform: translateY(10px);
            opacity: 0;
            transition: 350ms ease-out;
            transition-delay: 300ms;
          }

          .menu-item > a {
            font-size: 2.2rem;
            text-transform: uppercase;
            font-weight: lighter;

            .cafe-menu-arrow {
              display: inline;
              margin: 0 5px;
              position: static;
            }
          }
        }

        .cafe-hamburger-mask {
          display: block;
          z-index: 98;
        }

        input.cafe-hamburger-input-control:checked ~ {
          & .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            transform: translateX(0);
            transition: all 750ms cubic-bezier(0.3, 0.88, 0.37, 0.99);
            transition-delay: 0ms;

            .cafe-menu > .menu-item {
              opacity: 1;
              transform: translateY(0);
            }
          }

          & .cafe-hamburger-mask {
            visibility: visible;
            opacity: 1;
          }
        }

        @for $i from 1 through 12 {
          input.cafe-hamburger-input-control:checked ~ {
            & .cafe-wrap-menu,
            .cafe-wrap-offcanvas {
              .cafe-menu > .menu-item:nth-child(#{$i}) {
                transition-delay: calc(#{$i} * 100ms + 450ms);
              }
            }
          }
        }
      }

      &.cafe-hamburger-full-screen-effect {
        .cafe-hamburger-close-button {
          top: 20px;
          right: 20px;
          width: 40px;
          height: 40px;
          display: flex;
          justify-content: center;
          align-items: center;
          position: fixed;
          cursor: pointer;
          font-size: 2rem;
        }

        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          width: 100vw;
          height: 100vh;
          position: fixed;
          top: -20px;
          left: 0;
          opacity: 0;
          visibility: hidden;
          z-index: 111;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
          overflow-y: auto;
          padding: 30px 0;
          transition: all 100ms ease-out;
        }

        .cafe-hamburger-mask {
          width: 100vw;
          height: 100vh;
          position: fixed;
          top: -10vh;
          left: 0;
          background: var(--menu-bg);
          opacity: 0;
          visibility: hidden;
          z-index: 110;
          transition: all 200ms;
          display: block;
        }

        .cafe-menu {
          max-width: 100%;
          width: 460px;

          & > li.menu-item {
            & > a {
              background: transparent;
            }
          }

          .menu-item > a {
            font-weight: normal;
            font-size: 2rem;
          }
        }

        input.cafe-hamburger-input-control:checked ~ {
          .cafe-hamburger-mask {
            visibility: visible;
            opacity: 1;
            top: 0;
          }

          .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            visibility: visible;
            top: 0;
            opacity: 1;
            transition: opacity 450ms, top 250ms ease;
          }
        }
      }

      &.cafe-hamburger-slide-down-effect {
        & > .cafe-wrap-menu,
        & > .cafe-wrap-offcanvas {
          height: 0;
          overflow: hidden;
          padding: 15px 0;
          transition: all 450ms ease-out;
        }

        input.cafe-hamburger-input-control:checked ~ {
          .cafe-wrap-menu,
          .cafe-wrap-offcanvas {
            height: 50vh;
            overflow-y: auto;
          }
        }
      }
    }
  }
}
.no-mobile-control-button {
}
/*End Mobile style*/
@media (min-width: 992.98px) {
  .cafe-site-menu.hamburger .menu-item > a {
    display: inline-block;
  }
}

/*End Site Navigation Menu*/
/*Search Form*/
.cafe-wrap-search {
  --border-color: #ebebeb;
  --bg-color: #fff;
  --form-height: 40px;
  --result-color: #000;
}

.cafe-mask-close {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 300ms ease-out;
  visibility: hidden;
  opacity: 0;
  z-index: 88;
  cursor: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 18 18' fill='%23fff'%3e%3cpath d='M14.53 4.53l-1.06-1.06L9 7.94 4.53 3.47 3.47 4.53 7.94 9l-4.47 4.47 1.06 1.06L9 10.06l4.47 4.47 1.06-1.06L10.06 9z'/%3e%3c/svg%3e"),
    pointer;
}

.cafe-toggle-input:checked ~ {
  .cafe-mask-close {
    opacity: 1;
    visibility: visible;
  }
}

.cafe-search-form {
  padding: 0;
  margin: 0;

  input.cafe-search-field {
    margin: 0;
    border: none;
    flex-grow: 1;
    width: auto;
    height: auto;
    min-width: 0;
  }

  .cafe-wrap-product-cat {
    position: relative;
    color: var(--form-color);

    &:after {
      content: "\c059";
      font-family: cleversoft;
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
      font-size: 75%;
      color: inherit;
    }
  }

  .cafe-product-cat {
    width: 100%;
    height: 40px;
    padding: 0 20px 0 10px;
    border: none;
    border-left: 1px solid var(--border-color);
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-border-radius: 0;
    color: inherit;
    position: relative;
    z-index: 2;
  }
}

.cafe-wrap-search-fields {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border: 1px solid;
  background: var(--bg-color);
  height: var(--form-height);
}

.cafe-search-submit {
  padding: 0 8px;
  white-space: nowrap;
}

.cafe-toggle-input {
  display: none;
}

.cafe-search-toggle-button {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  color: #000;
  cursor: pointer;
  transition: all 300ms;

  i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
}

.cafe-wrap-search-result {
  margin: 0;
}

.cafe-search-form {
  .cafe-row {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
  }

  .search-result-item {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;

    & > a {
      color: var(--result-color);
    }

    .title-result {
      color: var(--result-color);
      margin-bottom: 5px;
      font-size: 1rem;
    }

    p {
      margin-bottom: 0;
      color: inherit;
    }
  }

  &.result-list-layout {
    .cafe-wrap-search-result {
      padding: 20px 0;
    }

    .search-result-item {
      & > a {
        display: flex;
        align-items: center;
      }

      .wrap-img-result {
        max-width: 80px;
      }

      .wrap-result-content {
        padding: 0 15px;
      }
    }
  }

  &.result-grid-layout {
    .wrap-img-result {
      width: 100%;
      margin-bottom: 10px;
    }

    .wrap-result-content {
      width: 100%;
      text-align: center;
    }
  }

  &.searching,
  &.searched {
    .cafe-wrap-search-form-content {
      margin-bottom: 0;
    }
  }

  .cafe-wrap-search-result {
    &:before,
    &:after {
      -webkit-animation: bounce 2s infinite ease-in-out;
      animation: bounce 2s infinite ease-in-out;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #3ea4f8;
      position: absolute;
      top: calc(50% - 20px);
      left: calc(50% - 20px);
      content: "";
      visibility: hidden;
      transition: all 300ms;
      opacity: 0;
    }

    &:after {
      -webkit-animation-delay: -1s;
      animation-delay: -1s;
    }

    & > * {
      transition: all 300ms;
    }
  }

  &.searching .cafe-wrap-search-result {
    &:after,
    &:before {
      opacity: 0.6;
      visibility: visible;
      z-index: 11;
    }

    & > * {
      opacity: 0;
      visibility: hidden;
    }
  }
}

.cafe-wrap-search {
  &:not(.normal) {
    --form-height: auto;

    .cafe-search-form {
      display: flex;
      width: 100vw;
      justify-content: center;
      align-items: center;
      background: var(--bg-color);
      top: 0;
      left: 0;
      position: fixed;
      transition: 350ms ease-out;
      z-index: 105;

      input,
      button {
        font-size: 2rem;
        padding: 0;
      }

      .cafe-wrap-search-result {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        overflow: hidden;
        overflow-y: auto;
        max-height: 50vh;
        align-content: flex-start;
      }
    }

    .cafe-search-submit {
      background: none;
      color: var(--form-color);
      text-transform: none;
      letter-spacing: normal;
      margin-left: 20px;
    }

    .cafe-search-field {
      color: var(--form-color);
    }

    .cafe-product-cat {
      border: none;
    }

    .cafe-wrap-search-form-content {
      width: 100%;
      max-width: 992px;
      position: relative;
    }

    .cafe-wrap-search-fields {
      width: 100%;
      flex-direction: column;
      border: none;
      border-bottom: 2px solid var(--border-color);
      background: none;
    }
  }

  &.normal {
    .cafe-wrap-search-result {
      position: absolute;
      left: 0;
      top: 100%;
      opacity: 0;
      visibility: hidden;
      z-index: 22;
      max-height: 60px;
      transition: all 300ms;
      background: var(--bg-color);
      width: 100%;
      overflow: hidden;
      overflow-y: visible;
      padding: 20px 20px 0;
      box-shadow: -2px 2px 81px -17px rgba(0, 0, 0, 0.29);
    }

    .cafe-search-form {
      &.searching,
      &.searched {
        .cafe-wrap-search-result {
          opacity: 1;
          visibility: visible;
        }
      }

      &.searching {
        .cafe-wrap-search-result {
          height: 60px;
        }
      }

      &.searched {
        .cafe-wrap-search-result {
          max-height: 50vh;
        }
      }
    }

    .no-result {
      margin-bottom: 20px;
    }
  }

  &.slide-down {
    --border-color: #000;
    --form-color: #000;

    .cafe-search-form {
      height: 100vh;
      transform: translateY(-100vh);

      .cafe-wrap-search-result {
        background: var(--bg-color);
        transition: all 300ms;
        max-height: 20vh;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 20px 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
      }

      &.searching {
        .cafe-wrap-search-result {
          height: 60px;
          overflow-y: hidden;
        }
      }

      &.searched {
        .cafe-wrap-search-result {
          max-height: 50vh;
        }
      }
    }

    .cafe-toggle-input:checked ~ {
      .cafe-search-form {
        transform: translateY(0);

        &.searching,
        &.searched {
          .cafe-wrap-search-result {
            opacity: 1;
            visibility: visible;
          }
        }
      }

      .cafe-search-close,
      .cafe-search-mask {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
      }
    }
  }

  &.modal {
    --form-color: #000;
    --border-color: #000;
    --bg-color: #fff;
    --result-color: #000;

    .cafe-search-form {
      height: 100vh;
      opacity: 0;
      visibility: hidden;

      .cafe-wrap-search-result {
        height: 50vh;
      }

      .cafe-wrap-search-form-content {
        transition: all 350ms;
        margin-bottom: -50vh;
      }
    }

    .cafe-toggle-input:checked ~ {
      .cafe-search-form {
        opacity: 1;
        visibility: visible;
      }

      .cafe-search-close {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
      }
    }
  }

  .cafe-search-close {
    width: 45px;
    height: 45px;
    font-size: 2rem;
    position: fixed;
    right: 30px;
    top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.5);
    visibility: hidden;
    transition: 450ms ease;
    z-index: 111;
    cursor: pointer;
    color: var(--form-color);
  }
}

@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@media (min-width: 556px) {
  .cafe-search-form .cafe-product-cat {
    height: 100%;
  }
  .cafe-wrap-search.slide-down {
    .cafe-search-form {
      height: 35vh;
      transform: translateY(-35vh);

      .cafe-wrap-search-result {
        max-height: 10vh;
      }
    }
  }
  .cafe-wrap-search:not(.normal) {
    --form-height: 60px;

    .cafe-wrap-search-fields {
      flex-direction: row;
    }
  }
}

/*End Search Form*/
/*Canvas Cart*/
.elementor-widget-clever-canvas-cart {
  --bg-color: #fff;
  --color: #000;
  --count-color: #fff;
  --count-bg-color: #f56f5e;

  .elementor-widget-container {
    font-size: 0;
  }
}

.cafe-wrap-icon-cart {
  min-width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  position: relative;
  transition: color 300ms;

  .cafe-cart-count {
    position: absolute;
    height: 20px;
    min-width: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    padding: 0 3px;
    justify-content: center;
    align-items: center;
  }
}

.cafe-cart-count {
  color: var(--count-color);
  background: var(--count-bg-color);
  line-height: 1;
}

.cafe-cart-subtotal {
  line-height: 1;
}

.cafe-wrap-right-cart {
  display: flex;
  align-items: center;
  color: var(--count-color);
}

.cafe-canvas-cart {
  display: inline-block;
  cursor: pointer;
  font-size: 1rem;

  .cafe-wrap-icon-cart {
    float: left;
  }

  &.subtotal-before .cafe-wrap-icon-cart {
    float: right;
  }

  &.count-top-right {
    .cafe-cart-count {
      top: 0;
      right: 0;
      transform: translate(50%, -50%);
    }
  }

  &.count-top-left {
    .cafe-cart-count {
      top: 0;
      left: 0;
    }
  }

  &.count-center {
    .cafe-cart-count {
      top: 50%;
      left: 50%;
    }
  }

  &.count-inline {
    --count-color: #000;
    --count-bg-color: transparent;
  }

  &:hover {
    .cafe-wrap-icon-cart {
      color: var(--color) !important;
    }
  }
}

.cafe-heading-cart-content {
  width: 100%;
  color: #000;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  display: inline-block;

  .cafe-cart-count {
    color: inherit;
    background: transparent;
    font-size: inherit !important;
  }

  .cafe-close-cart {
    float: right;
    font-size: 1rem;
    cursor: pointer;

    i {
      margin-left: 10px;
    }
  }
}

.cafe-canvas-cart-content {
  position: fixed;
  text-align: left;
  top: 0;
  right: 0;
  width: calc(100% - 50px);
  max-width: 480px;
  height: 100%;
  background: var(--bg-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 99;
  visibility: hidden;
  transform: translateX(480px);
  transition: all 300ms;
  padding: 20px 15px;
  font-size: 1rem;

  .lazy-img:not(.loaded) {
    filter: blur(0);
  }

  .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 55px);
  }

  ul.woocommerce-mini-cart {
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 10px 0;
    flex-grow: 1;
  }

  .woocommerce-mini-cart__buttons {
    margin-bottom: 0;
  }

  .woocommerce-mini-cart__empty-message {
    padding: 30px 0;
    text-align: center;
  }

  &.loading {
    &:before {
      content: "";
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.6);
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      z-index: 1;
    }

    &:after {
      width: 20px;
      height: 20px;
      background: #000;
      content: "";
      display: block;
      position: fixed;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      transform: translate(-50% -50%);
      animation: blink 500ms infinite ease-in-out;
      z-index: 2;
    }
  }
}

.cafe-toggle-input:checked ~ {
  .cafe-canvas-cart-content {
    visibility: visible;
    transform: translateX(0);
  }
}

/*End Canvas Cart*/
/* Account widget*/
.elementor-widget-clever-account {
  --bg-modar: #fff;
  --color: #000;
}

.cafe-account-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-modar);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 110;
  transition: all 300ms;
  opacity: 0;
  visibility: hidden;

  .woocommerce-form input {
    margin-bottom: 0;
  }

  button {
    width: 100%;
  }

  .form-row {
    margin-bottom: 15px;
  }

  .wrap-register-toggle-button {
    display: none;
  }

  .cafe-notice {
    text-align: center;
    margin-bottom: 10px;
    font-size: 80%;
    color: var(--danger-color);
    transition: all 300ms;
    max-height: 100vh;
    overflow: hidden;
    width: 100%;
  }

  &:after {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--black-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: blink 800ms infinite ease-in-out;
    z-index: 3;
    border-radius: 50%;
    visibility: hidden;
    transition: all 300ms;
  }

  &:before {
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    background: var(--white-color);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms;
    position: absolute;
    display: block;
  }

  &.cafe-loading {
    .cafe-notice {
      max-height: 0;
    }

    &:after {
      visibility: visible;
    }

    &:before {
      visibility: visible;
      opacity: 0.4;
    }
  }
}

.heading-account-modal,
.additional-login-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.heading-account-modal {
  margin-bottom: 30px;

  .lb-login {
    text-transform: uppercase;
    color: var(--color);
  }
}

.cafe-account-mask {
  background: none;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  font-size: 1.5rem;
  z-index: 111;
}

.cafe-toggle-input:checked ~ .cafe-account-modal {
  visibility: visible;
  opacity: 1;
}

.cafe-wrap-account {
  display: inline-block;
  position: relative;

  .woocommerce-MyAccount-navigation {
    position: absolute;
    top: calc(100% + 20px);
    opacity: 0;
    visibility: hidden;
    background: var(--bg-modar);
    padding: 20px 30px;
    z-index: 5;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    transition: all 300ms;

    &.left {
      left: 0;
    }

    &.right {
      right: 0;
    }

    ul {
      margin: 0;
    }

    li {
      list-style: none;
      padding: 2px 0;
      margin: 0;
      white-space: nowrap;
      line-height: 1.3;
      font-size: 14px;
    }

    a {
      color: var(--color);
    }
  }

  &:hover {
    .woocommerce-MyAccount-navigation {
      top: 100%;
      opacity: 1;
      visibility: visible;
    }

    .cafe-account-btn {
      color: var(--color) !important;
    }
  }
}

.cafe-account-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  cursor: pointer;

  i {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    transition: color 300ms;
  }
}

@media (min-width: 481.98px) {
  .cafe-canvas-cart-content {
    padding: 30px 40px 20px;
  }
  .cafe-account-modal {
    max-width: 430px;
    height: auto;
  }
  .cafe-account-mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: block;
    z-index: 105;

    i {
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      float: right;
    }
  }
}

/* End Account widget*/
/*Wishlist & Compare*/
.cafe-wlcp {
  display: inline-block;
  --color: #000;
}

.cafe-wlcp-url {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
}

.cafe-wlcp-icon {
  position: relative;

  i {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    transition: color 300ms;
  }
}

.cafe-wlcp-label {
  transition: color 300ms;
}

.cafe-wlcp-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #f56f5e;
  min-width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 50%;
  transition: all 300ms;

  &.top-left {
    right: 100%;
    bottom: 100%;
    transform: translate(50%, 50%);
  }

  &.top-right {
    left: 100%;
    bottom: 100%;
    transform: translate(-50%, 50%);
  }

  &.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/*End Wishlist & Compare*/
/*Language switcher*/
.cafe-language-switcher {
  position: relative;

  .cafe-language-options {
    width: 100%;
    display: flex;
    align-items: center;

    &:after {
      font-family: cleversoft;
      content: "\c059";
      margin-right: 5px;
      margin-left: 5px;
      font-size: 75%;
    }
  }

  &:hover {
    .cafe-langs {
      top: 100%;
      opacity: 1;
      visibility: visible;
    }
  }
}

.cafe-langs {
  --box-shadow: #ebebeb;
  position: absolute;
  background: $white_text;
  top: calc(100% + 15px);
  margin: 0;
  min-width: 150px;
  width: 100%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
  box-shadow: 0 0 15px 10px var(--box-shadow);

  &.box-align-left {
    left: 0;
  }

  &.box-align-right {
    right: 0;
  }

  li {
    list-style: none;
    padding: 8px 15px;

    a {
      color: inherit;
    }
  }
}

/*End Language switcher*/
