/*---top---*/
.header-top {
  height: 20vh;
  background: #fff;
  color: #000;
  text-align: center;
  line-height: 48px;
  border: 10px solid #000;
  padding-left: 10px!important;
  padding-right: 10px!important;
  position: relative;
  z-index: 11;
}
.header-top .top-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-top .warning {
  font-size: 2.5vw;
  line-height: 1.2;
  font-family: Arial,sans-serif;
  color: #000;
  font-weight: bold;
}
.header-top a {
  color: #FD9556;
  font-size: 13px;
}
.header-top a:hover {
  color: #FD9556;
}
.public-header {
    width: 100%;
    height: var(--localnav-height);
    z-index: 999;
    background: #000;
    color: #fff;
    position: relative;
    width: 100%;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
}
.right-nav {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.right-nav .right-nav-item {
  font-size: 20px;
  color: #fff;
  padding: 10px;
  line-height: 1;
  height: 40px;
}
.right-nav .right-nav-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 100%;
}
.header-box {
    max-width: 1740px;
    height:100%;
    margin:0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    position: relative;
}
.public-header .logo{
  width: 200px;
  height: 60px;
}

.logo {
    display: inline-block;
    background: url(/static/images/web/logo.svg) no-repeat;
    background-size: 100% 100%;
}

.top-nav {
  height: 100%;
  color: #666;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}

.top-nav>ul {
    display: table-cell;
    vertical-align: middle;
}

.top-nav>ul>li {
    float: left;
    color: #999;
    font-size: 14px;
    position: relative;
}

.top-nav>ul>li a {
    position: relative;
    display: block;
    margin: 0 30px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    transition: color .2s ease;
}
.top-nav>ul>li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--theme-color);
  opacity: 0;
  width: 0;
  transition: all .3s ease;
  transform-origin: center;
}
.top-nav>ul>li a:hover:after {
  width: 100%;
}

.top-nav>ul>li a i:not(.icon-arrow-down) {
    display: none;
}


.top-nav>ul>li a:hover {
  color: var(--theme-color);
}
.top-nav>ul>li a:hover:after {
  opacity: 1;
}


.top-nav-button .icon-down {
    padding: 1px 5px;
    font-size: 12px;
}

.top-nav-button:hover .icon-down {
    transform: rotate(180deg)
}

.top-nav-button:hover .top-dropmenu {
    max-height: 40px;
}

.top-nav-button:hover .top-nav-bg {
    max-height: 40px
}

.top-nav-button a {
    font-size: 15px;
    color: #fff;
    transition: all 0.2s ease-in;
}

.top-dropmenu a {
    color: #000;
    font-size: 15px;
}

.top-nav>ul>li .top-nav-button {
    padding: 21px 30px;
    display: block;
    position: relative;
}
.top-nav .link-li {
  display: none;
}

.mobile-icons, .mobile-back {
    display: none;
}
@media (max-width: 1100px) {
    .header-top .warning {
        font-size: 32px;
    }
    .public-header {
      height: 60px;
      padding-left: 16px !important;
      padding-right: 8px !important;
    }
    .public-header.fixed {
      top:0;
      padding-top: 0;
    }
    .mobile-icons, .mobile-back {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 20px;
        line-height: 1;
        padding: 10px;
    }
    .header-top .right-nav {
      display: none;
    }
    .public-header .logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
    }

    .top-nav {
        position: fixed;
        top: 108px;
        left: 100%;
        height: 100%;
        z-index: 999;
        float: none;
        width: 100%;
        max-width: 100%;
        background: #111;
        display: block;
        padding: 10px 0;
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    .top-nav.in {
        left: 0;
    }
    .top-nav>ul>li a {
      margin: 0 24px;
      line-height: 48px;
      text-align: center;
    }
    .top-nav>ul>li a:after {
        content: none;
    }

    .top-nav>ul>li{
        float: none;
        line-height: 48px;
        height: 48px;
        font-size: 16px;
    }

    .top-nav>ul>li a i {
        display: none !important;
    }
    .mobile-back {
      left: 0;
      max-width: max-content;
    }

    .top-nav>ul{
        display: block;
        margin-bottom: 80px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .public-header .logo,.public-header.fixed .logo {
        width: 132px;
        height: 36px;
    }
}

@media (max-width: 767px) {
  .header-top {
    line-height: 18px;
    padding: 5px 0;
  }
  .header-top .warning {
    font-size: 4vw;
    line-height: 1.3;
  }
  .public-header {
    height: 52px;
  }
  .top-nav>ul>li a {
    font-size: 14px;
  }
}
.googleelement {
  position: absolute;
  top: 36px;
  right: 0;
  padding:12px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
  z-index: 3333;
}
.goog-te-gadget-simple img, .goog-te-gadget-simple span {
  display: inline-block;
}
.googleelement a{
  display: inline !important;
  margin: 0 12px !important;
  line-height: 24px !important;
}
.showlanguagebox {
  position: relative;
  cursor: pointer;
  display: none;
}
.right-nav .showlanguagebox {
  display: block;
  height: 100%;
  margin-left: 16px;
  position: relative;
}
.right-nav .showlanguagebox > a {
  color: #fff;
  display: -webkit-flex;
  display: flex;
}
.right-nav .showlanguagebox > a:hover {
  color: #fff;
}
.right-nav .showlanguagebox .icon-arrow-down {
  float: right;
  margin-top: 15px;
}
.showlanguagebox > a {
  line-height: 40px;;
}
.showlanguagebox .googleelement{
display: none;
}
.showlanguagebox:hover .googleelement{
display: block;
}
.showlanguagebox a:after {
  content: none !important;
}
.showlanguagebox .icon-arrow-down{
  display: inline-block;
  margin-left: 4px;
}
.goog-te-banner-frame.skiptranslate {display: none !important;}
body { top: 0px !important; }

@media (max-width: 1100px) {
  .showlanguagebox .language_a{
    display: none;
  }
  .right-nav {
    margin-right: 40px;
  }
  .showlanguagebox .googleelement {
    top: 48px;
  }
  .showlanguagebox {
    display: block;
    padding: 9px 0;
    text-align: center;
    max-width: max-content;
    margin: 0 auto;
  }
  .showlanguagebox .googleelement{
    display: inline;
    box-shadow: none;
    line-height: 24px;
    padding: 0;
    margin: 0;
    position: relative;
    top: 0;
  }
  .right-nav .showlanguagebox {
    display: none;
  }
  .right-nav .showlanguagebox > a {
    height: 100%;
  }
}