.header {
  background-color: #fff;

  .col-check-order {
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 0px;

    a {
      font-size: 14px;
    }
  }

  .top-header-wrapper {
    img {
      width: 100%;
    }

    background-position-x: center;
  }

  .top-menu {
    .header-topbar {
      text-align: end;
    }

    .menu-top {
      height: 50px;
      align-items: center;
      justify-content: space-around;
      padding: 0px 20px;
      background: #0081bf;

      a {
        color: #fff;
        font-size: 16px !important;

        i {
          font-size: 20px;
        }
      }
    }

    .main-menu {
      height: 50%;
      align-items: center;
      justify-content: space-between;
      padding-right: 20px;

      a {
        font-size: 16px;
        color: #757171;

        &:focus {
          opacity: 1;
          outline: none;
          text-decoration: none;
          cursor: pointer;
        }

        &:hover {
          color: rgb(222, 9, 133);
        }
      }
    }

    .header-desktop {
      padding-top: 10px;
      padding-bottom: 10px;

      .big-logo {
        img {
          height: 100px;
        }
      }

      span {
        color: #fff;
      }

      .right-blog {
        margin-top: 40px;
        margin-left: 50px;

        a {
          padding-left: 30px;
        }
      }
    }
  }

  .form-search {
    margin-top: 10px;
    float: left;
    width: 100%;

    .form-wrapper {
      width: 100%;

      input {
        padding-left: 10px;
        padding-top: 8px;
        padding-bottom: 4px;
        width: 85%;
        height: 45px;
        padding: 10px;
        font-style: italic;
        border-radius: 5px 0px 0px 5px;
        border: 1px solid;
        float: left;

        &:hover {
          cursor: pointer;
        }

        &::before {
          border: none;
        }

        &:focus {
          outline: 0px;
          box-shadow: none;
        }
      }

      button {
        width: 15%;
        float: left;
        border-radius: 0px 5px 5px 0px;
        height: 43px;
        margin-top: 1px;
        color: #fff;
        padding: 0;
        line-height: 45px;
        font-size: 20px;
        border: none;
        box-shadow: none;
        position: relative;
        background-color: rgb(255, 182, 0);

        &:hover {
          cursor: pointer;

          i {
            font-size: 18px;
          }
        }

        &:focus {
          outline: 0px;
          box-shadow: none;

          i {
            font-size: 15px;
          }
        }
      }
    }
  }

  .main-header {
    .logo {
      width: 230px;
      float: left;
      margin-right: 10px;

      .big-logo {
        img {
          max-width: 230px;
        }
      }
    }

    .print-now {
      img {
        margin-top: 8px;
        margin-left: 10px;
      }
    }

    .cart-number {
      border-radius: 50%;
      background-color: #1f7f5c;
      color: white;
      font-weight: 700;
      padding: 4px;
      padding-right: 0px;
    }
  }
}

.header-nav {
  background: rgb(225, 225, 225);

  &.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    animation: slideDown 0.3s linear;
    transition: transform 0.3s;
    transition-delay: 2s;
  }

  &.slide-down {
    transform: translateY(0%);
    transition: transform 0.3s;
    z-index: 2;
  }

  .header-nav-inner-container {
    min-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    border-bottom: 1px solid darken($gray-color1, 10%);
    position: relative;

    .search-box {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      display: none;
      z-index: 1;

      form {
        height: 100%;
      }

      input {
        width: 100%;
        height: 100%;
        padding: 0 40px 0 0px;
        border: 0;
        font-size: 25px;

        &::placeholder {
          font-size: 25px;
        }
      }

      .toggle-search-box {
        position: absolute;
        width: 40px;
        height: 100%;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
      }
    }

    .toggle-mobile-menu {
      flex: 1;
    }


  }
}

.header-bottom-inner-container {
  // height: 40px;
  display: flex;
  align-items: center;

  ul {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    // justify-content: space-between;
    li {
      height: 100%;
      display: flex;
      align-items: center;
      padding: 10px 8px;
      font-size: 12px;
      position: relative;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      color: $title-color;

      &:last-child {
        margin-left: auto;
        border: 0;
      }

      &:hover {
        .expand-content {
          display: block;
        }
      }

      img {
        width: 30px;
        margin-right: 10px;
      }

      .expand-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        z-index: 2;
        background-color: #fff;
        padding: 8px 8px 12px 8px;
        border: 1px solid #ebebee;

        &:before,
        &:after {
          content: '';
          position: absolute;
          bottom: 100%;
          left: 20px;
          border-bottom: 8px solid transparent;
          border-left: 8px solid transparent;
          border-right: 8px solid transparent;
        }

        &:before {
          border-bottom-color: #fff;
          z-index: 1;
        }

        &:after {
          left: 18px;
          border-bottom-color: #ebebee;
          border-width: 10px;
        }

      }
    }
  }
}

.category-img-drop {
  width: 50%;
  float: left;
  padding: 10px;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  text-align: center;

  .category-img {
    padding: 10px;
    min-height: auto !important;
    text-align: center;

    a {
      img {
        width: 100%;
      }
    }
  }

  .qd-box-danhmuc-title {
    font-size: 12px;
    overflow: hidden;
    line-height: 22px;
    height: 22px;
  }
}

.bannerheadertopx {
  width: 100%;

  img {
    width: 100%;
  }
}

.container-card {
  padding-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.result_1 {
  margin-top: 20px;
  border: 1px solid #0081bf;
  border-radius: 5px;

  .show_box {
    padding: 20px;
  }
}

// searh modal
.modal-search {
  top: 40%;
  max-width: 60%;

  .modal-content {
    background-color: #fff0;
    border: none;
  }

  form {
    display: flex;

    .form-control {
      height: 60px;
    }

    button {
      position: absolute;
      right: 10px;
      height: 60px;
      border-radius: 0px;
      width: 70px;
      background: #0081bf;
      color: #fff;

      i {
        font-size: 25px;
      }
    }
  }
}