/**/
.full-header {
  position: relative;
  z-index: 2;
  overflow-x:clip ;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
}
/**/
@media only screen and (min-width: 640px) {
  .full-header.sticky {
    background-color: #fff;
    padding: 5px 0;
    top: 0;
    position: sticky;
    z-index: 999;
    -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,.15);
    box-shadow: 1px 1px 10px rgba(0,0,0,.15);
    -webkit-animation: stuckMoveDown .6s;
    animation: stuckMoveDown .6s;
  }
}
  @keyframes stuckMoveDown {
    0% {
      -webkit-transform:translateY(-100%);
      transform:translateY(-100%)
    }
    100% {
      -webkit-transform:translateY(0);
      transform:translateY(0)
    }
  }
  .sticky .header-logo a {
    padding: 5px 0;
  }
  .sticky .header-logo a img {
    max-height: 50px;
  }
  .sticky .btn-dki {
    padding: 10px 20px;
    font-size: 15px;
  }
  .sticky .icon-search img {
    width: 40px;
    height: 40px;
  }
  .sticky .header-right-wrap {
    overflow-y: clip;
  } 
  /**/
.header-wrap {
  justify-content: space-between;
  align-items: center;
}
/**/
.header-right{
  position:relative;
  flex: 1;
  padding-left: 80px;
}
/**/
.main-menu {
  flex: 1;
  padding-left: 80px;
}
.main-menu ul {
}
.header-logo a {
  display: block;
}
.header-logo a img {
  max-width: 88px;
  object-fit: contain;
}
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}
.main-menu .menu-primary > ul {
  display: flex;
  flex-wrap: wrap;
}
.main-menu ul li {
  position: relative;
  margin: 0;
}
.main-menu ul li a {
  padding: 0 20px;
  font-weight: 600;
  color: #275C86;
}

/*submenu*/
.main-menu a:hover {
  color: #00ADEF;
}
@media only screen and (max-width: 768px) {
	.main-menu .menu-primary>ul>li {border-bottom: 1px dashed #ccc;}
}
.main-menu .menu-primary>ul>li {
  min-height: 40px;
  line-height: 40px;
}
@media only screen and (min-width: 1101px) {
  .has-children i.fa{
    display: none;
  }
  .has-children>a::after{
    content: "\f107";
    font-family: FontAwesome;
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}
.main-menu ul li {
  position: relative;
}

ul.sub-menu {
  display: none;
  background-color: #fff;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.12));
  min-width: 250px;
  padding: 10px 0;
}
@media only screen and (min-width: 1100px) {
ul.sub-menu {
  position: absolute;
}
  li:hover > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
  }
  ul.sub-menu::before {
    position: absolute;
    top: -9px;
    left: 20px;
    content: "";
    width:0px;
    height:0px;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:10px solid #fff;
  }
}
ul.sub-menu li {
  margin-bottom: 10px;
}
ul.sub-menu li:last-child{
  margin-bottom: 0;
}
ul.sub-menu li a{
  padding: 0 20px;
  min-height: 35px;
  display: block;
  line-height: 22px;
  display: flex;
  align-items: center;
}
/**/
.btn-login {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-weight: 700;
}
.btn-login a {
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    border: none;
    background-size: 150% auto;
    background-image: linear-gradient(315deg, #43cea2 0%, #02a6e5 75%);
    font-size: 15px;
}
.btn-login img{
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
/**/
.main-menu .menu-toggle {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .main-menu .menu-primary > ul{
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1100px) {
  .full-header{
    overflow: hidden;
    padding: 10px 0;
  }
  .full-header.menu-opend{
    z-index: 999;
  }
  .main-menu .menu-toggle {
    display: block;
    background: linear-gradient(180deg, #00ADEF 0%, #0084B7 100%);
    border: 0;
    box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    padding: 2px 10px;
    color: #fff;
    font-size: 18px;
  }
  .main-menu .menu-toggle::after {
    position: fixed;
    width: 100%;
    height: 99999px;
    content: "";
    top: 0;
    left: 0;
    opacity: 0.5;
    background: black;
    cursor: pointer;
    z-index: 9999999998;
  }
  .main-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
  } 
  .main-menu:not(.active) .menu-toggle::after{
    display: none;
  }
  .main-menu .menu-primary{
    position: fixed;
    width: 300px;
    max-width: 90%;
    height: 100vh;
    max-height: 100vh;
    top: 0;
    box-sizing: border-box;
    transition: left 200ms ease-in-out, right 200ms ease-in-out;
    overflow: auto;
    z-index: 9999999999;
    overscroll-behavior: contain;
    left: -300px;
    background-color: #fff;
  }
  .main-menu.active .menu-primary{
    left: 0;
  }
  .main-menu ul li {
    line-height: 35px;
    font-size: 14px;
    width: 100%;
  }
  .main-menu ul li a {
    padding: 0 10px;
    color: #262626;
    display: block;
  }
  .main-menu .menu-primary > ul {
    display: block;
    padding: 0;
  }
  ul.sub-menu {
    width: 100%;
    background-color: #fff;
    z-index: 1;
  }

.has-children i {
  display: block;
  color: #333;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 35px;
  text-align: right;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition:.3s all;
}
.has-children.active i::before{
  content: "\f068";
}
  /**/
  .header-cart a {
    height: 33px;
    width: 36px;
  }
  .header-search {
    padding-left: 40px;
    order: -1;
  }
}

@media only screen and (max-width: 900px) {
  .full-header-top {
    padding: 5px 0;
    font-size: 13px;
  }
  .header-logo a img {
    max-height: 90px;
  }
  /**/
  button.search-submit img {
    width: 15px;
    height: 15px;
    object-fit: contain;
  }
  /**/
  .header-right-wrap::before {
    border-width: 0px 0 62px 62px;
  }
  .header-right-wrap .square {
    width: 70px;
    left: -60px;
  }
  .header-right-wrap::after {
    border-width: 60px 60px 0 0;
    left: -50px;
  }
}
@media only screen and (max-width: 768px) {
  .header-wrap-top {
    justify-content: center;
  }
  .header-wrap-top p,
  .header-wrap-top ul{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .header-right {
    padding-left: 80px;
  }
  .searchform input{
    width: 180px;
  }
}
@media only screen and (max-width: 640px) {
  .btn-dki{
    display: none;
  }
  .header-search .searchform {
    right: 10px;
  }
  .header-search {
    padding-right: 0;
  }
  .header-search{
    display: none;
  }
  /**/
  .menu-primary .searchform {
    width: calc(100% - 20px);
    display: block;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 10px auto;
  }
  /**/
}
@media only screen and (max-width: 480px) {
  .btn-login a {
    padding: 6px;
    background: linear-gradient(180deg, #00ADEF 0%, #0084B7 100%);
    box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    width: 35px;
    height: 33px;
  }
  .btn-login span {
    display: none;
  }
  .btn-login img {
    margin: 0;
  }
  .main-menu {
    padding-right: 10px;
  }
}