.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 0px rgb(85 85 85 / 8%), 0px 2px 16px rgb(85 85 85 / 16%);
  background: #fff;
  padding: 0 36px;
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
  z-index: 11111;
}

.logo img {
  /* overflow: hidden; */
  width: 200px;
  height: 50px;
}

.navbar a {
  /* float: left; */
  display: block;
  color: black;
  text-align: center;
  padding: 0 16px;
  text-decoration: none;
  font-size: 20px;
}
.navbar .btn {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.active {
  background-color: #04aa6d;
  color: white;
}

.navbar .icon {
  display: none;
}
.navbar > :first-child {
  display: flex;
  align-items: center;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .btn {
  color: #2a2a2a;
  font-size: 0.875rem;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-menu {
  transition: 1s;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-menu a {
  float: none;
  color: black;
  padding: 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown .btn:hover {
  /* background-color: #555555; */
  cursor: pointer;
  color: #ce297e;
  border-right: 1px solid black;
  border-left: 1px solid black;
}

.dropdown-menu a:hover {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  /* background-color: #cccccc; */
  color: #ce297e;
}

.dropdown:hover .dropdown-menu {
  display: block;
  /* margin-top: 7px; */
}

#right_nav {
  /* width: 100%; */
  display: flex;
  margin-right: 50px;
}
#right_nav > div {
  font-size: 12px;
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 5%;
  margin-left: 20px;
}

#right_nav > div > p {
  margin-top: 5px;
  font-size: 11px;
  /* font-weight: bold; */
}
#right_nav #searchBox {
  position: fixed;
  top: 11px;
  right: 8%;
  flex-direction: row;
  display: flex;
  /* border: 1px solid red; */
}

#right_nav #serch_cancle {
  font-size: 16px;
  top: auto;
  left: 30px;
  position: relative;
  /* padding-left: 100px; */
  /* border: 2px solid red; */
}
#right_nav #serch_icon {
  font-size: 16px;
  top: auto;
  right: 30px;
  position: relative;
  /* padding-left: 100px; */
  /* border: 2px solid red; */
}
#right_nav #searchBox input {
  /* border: none; */
  /* border: 1px solid red; */
  outline: none;
  /* background-color: transparent; */

  font-size: 16px;
  height: 40px;
  padding: 5px 35px;
  border-radius: 5px;

  width: 800px;
}
.serch_item {
  display: none;
}
input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

#app {
  width: 94%;
  margin: auto;
  /* border: 1px solid red; */
}
.hide {
  display: none;
}

@media screen and (max-width: 600px) {
  .navbar a {
    /* display: none; */
  }
  .dropdown .btn {
    display: none;
  }
  .navbar a.icon {
    position: absolute;
    top: 20px;
    right: 20px;
    /* float: left; */
    display: block;
    /* border: 2px solid red; */
  }
  .navbar .logo {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .navbar.responsive {
    position: relative;
  }
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar.responsive a {
    /* float: none; */
    display: block;
    text-align: left;
  }
  .navbar.responsive .dropdown {
    float: none;
  }
  .navbar.responsive .dropdown-menu {
    position: relative;
  }
  .navbar.responsive .dropdown .btn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
