/*----------------------------------
 nav user
----------------------------------*/
.nav-user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.nav-user ul {
  display: flex;
  align-items: center;
}

.nav-user a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-user ul>li:nth-child(1) i {
  color: #455c6b;
  font-size: 35px;
  margin: 0 5px;
}

.nav-user ul>li:nth-child(2) a {
  width: 110px;
  height: 40px;
  background-color: #d74c4c;
  border: 1px solid #d595ae ;
  color: #ffe2df;
  font-size: 14px;
  border-radius: 3px;
}

.nav-user ul>li:nth-child(3) i {
  color: #455c6b;
  font-size: 35px;
  margin: 0 7px;
}

.nav-user a:hover {
  opacity: 85%;
}

/*----------------------------------
 cart-nav-user
----------------------------------*/
.cart-nav-user {
  height: 40px;
}

.cart-nav-user a {
  height: 100%;
  display: flex;
  background-color: #48b959;
  border-radius: 3px;
}

.cart-nav-user .right {
  width: 45px;
  height: 100%;
  background-color: #2d694d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-nav-user .right i {
  font-size: 18px;
  color: #24c994;
}

.cart-nav-user .left {
  width: 105px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-nav-user .left .count {
  width: 25px;
  height: 25px;
  background-color: white;
  color: #222f3e;
  border-radius: 50%;
  margin: 0 5px;
  text-align: center;
}

/*----------------------------------
 ریسپانسیو 
----------------------------------*/
@media screen and (max-width: 520px) {
  .nav-user {
    justify-content: center;
    width: 100%;
  }

  .nav-user ul {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .nav-user ul li:nth-child(2) {
    width: 100%;
  }

  .nav-user ul li:nth-child(2) a {
    width: 100%;
  }
}