@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@500&display=swap');

/* layout */

#td_banner nav a,
html.touch #td_banner nav a:hover,
.td-banner-section--links a,
html.touch .td-banner-section--links a:hover,
.td-banner-menu-close
{
  color: #1293cf !important;
  text-decoration: none;
}
html.no-touch #td_banner nav a:hover,
html.no-touch .td-banner-section--links a:hover
{
  color: rgb(0, 90, 151) !important;
}

.td-banner {
  background: #f1f3f3;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
  display: flex;
  font-family: 'Fira Sans', Arial, sans-serif !important;
  font-weight: 500 !important;
  padding: 10px 8px;
  position: relative;
  z-index: 200000;
  width: 100%;
  height: 62px;
}

.td-banner-section {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
}

.td-banner-item {
  display: flex;
  font-size: 13px;
  line-height: 20px;
  padding: 0 4px;
}
.td-banner-item::before {
  color: #999;
  content: '/';
  padding-right: 6px;
}

.td-banner-section--logo {
  flex: 0 0 121px;
}

.td-banner-section--tap {
  margin-left: auto;
  margin-right: 0;
}
#td_banner_btn_tap div {
  background-color: #1293cf;
  border-radius: 16px;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  padding: 3px 6px 2px 6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.td-banner-section--account {
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  margin-right: 0;
}
.td-banner-section--account a {
  margin-left: 4px;
}
.td-banner-section--tap ~ .td-banner-section--account {
  margin-left: 6px;
}

/* icon buttons */

a.td-banner-icon {
  display: block;
  background-color: #1293cf;
  color: #fff !important;
  border-radius: 100%;
  font-size: 11px;
  padding: 6px 4px 4px 4px;
  position: relative;
  width: 30px;
  height: 30px;
  text-align: center;
  white-space: nowrap;
}
html.no-touch a.td-banner-icon {
  color: #fff !important;
}

a.td-banner-icon .fa {
  color: #fff !important;
  display: inline;
  font-size: 16px;
  vertical-align: middle;
}

#td_banner_icon_cart,
a.td-banner-icon span
{
  display: none;
}

.td-banner-icon-notify {
  background-color: #ff1a1a;
  border-radius: 16px;
  color: #fff !important;
  display: none;
  font-size: 10px;
  line-height: 13px;
  height: 16px;
  min-width: 16px;
  padding: 2px;
  text-align: center;
  position: absolute;
  left: -4px;
  top: 16px;
  z-index: 2;
}

/* mobile menu */

.td-banner nav {
  background-color: #fff;
  position: absolute;
  top: 62px;
  left: 0;
  width: 100%;
}
.td-banner nav ul {
  border-top: 1px solid #ccc;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
  list-style-type: none;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
.td-banner nav ul li {
  margin-left: 16px;
  text-align: center;
}
.td-banner nav ul li a {
  display: inline-block;
  font-size: 14px;
  padding: 4px;
}

.td-banner-menu-close {
  color: #999;
  cursor: pointer;
  display: none;
  font-size: 20px;
  position: absolute;
  top: 16px;
  left: 18px;
}

.td-banner-menu-label {
  margin: 0;
  cursor: pointer;
}

#td_banner_menu_checkbox {
  display: none;
}
#td_banner_menu_checkbox:checked ~ nav ul {
  max-height: 210px !important;
  padding: 8px 0;
  transition: all 0.5s;
}
#td_banner_menu_checkbox:checked ~ nav .td-banner-menu-close {
  display: inline-block;
}

/* media queries */

@media (min-width: 768px) and (max-width: 780px) {
  .td-banner-item {
    padding: 0 2px;
  }
  .td-banner-item::before {
    padding-right: 4px;
  }
}

@media (max-width: 767px) {
  .td-banner-hidden-xs {
    display: none;
  }
  .td-banner {
    padding-left: 2px;
    padding-right: 6px;
  }
  .td-banner-section--links {
    align-items: flex-start;
    flex: 0 1 50%;
    flex-direction: column;
  }
  .td-banner-section--logo img {
    margin-top: 4px;
  }
}
@media (max-width: 380px) {
  .td-banner {
    padding-right: 4px;
  }
  .td-banner-section--tap ~ .td-banner-section--account {
    margin-left: 2px;
  }
}

@media (min-width: 768px) {
  .td-banner-hidden-sm {
    display: none;
  }
}
@media (min-width: 425px) {
  #td_banner_icon_account {
    border-radius: 16px;
    padding: 6px 7px 4px 7px;
    width: auto;
  }
  #td_banner_icon_account span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
  }
}