/* ib-am: mobile menu grid + close icon */
#mobile-menu-wrap {
  right: -280px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "search close"
    "menu menu";
  align-items: start;
  column-gap: 8px;
  row-gap: 12px;
}

.mobile-menu-open #container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mobile-menu-open #mobile-menu-wrap {
  -webkit-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}

.mobile-search-form {
  grid-area: search;
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.mobile-search-form input {
  background: transparent !important;
  border: 2px solid #ebeef0 !important;
  border-radius: 20px;
  color: #737980 !important;
  font-size: 14px !important;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  padding: 0 16px !important;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-menu-close {
  grid-area: close;
  position: static;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  color: #00bde5;
  background: transparent;
  border: 0;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(0, 189, 229, 0.08);
  outline: none;
}

.mobile-menu-close .ss-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  color: #00bde5;
  font-size: 0 !important;
  font-family: Arial, sans-serif !important;
  font-feature-settings: normal !important;
  line-height: 1 !important;
  vertical-align: 0;
  overflow: hidden;
  text-indent: -9999px;
}

.mobile-menu-close .ss-delete::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  text-indent: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / contain no-repeat;
}

#mobile-menu {
  grid-area: menu;
  padding-bottom: 10px;
  min-width: 0;
}

#mobile-menu ul li {
  border: none;
  margin: 0;
}

#mobile-menu ul li a {
  background: transparent;
  border-bottom: 2px solid transparent;
  color: #737980;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  height: 44px;
  line-height: 54px;
  padding: 0;
  text-transform: uppercase;
}

#mobile-menu ul li a:hover,
#mobile-menu ul li a:active,
#mobile-menu ul li a:focus {
  border-color: #00bde5;
  color: #00bde5;
}

#mobile-menu ul li.current-menu-item a {
  color: #00bde5;
}
