.private-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  margin-left: 30px;
}

.private-area-menu {
  width: 200px;
  margin-right: 40px;
  position: relative;
}

.private-area-menu__item {
  width: 100%;
}

.private-area .profile-avatar {
  width: 100px;
  height: 100px;
  margin-bottom: 5px;
  position: relative;
}

.private-area .profile-avatar img {
  height: 100%;
  width: 100%;
}

.private-area-content {
  width: 75%;
}

.store-name {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
}

.private-area-list__item {
  margin-bottom: 15px;
  font-size: 16px;
}

.private-area-list__item span {
  padding: 6px;
  cursor: pointer;
}

.content-block {
  -webkit-box-shadow: 2px 3px 5px #ddd;
          box-shadow: 2px 3px 5px #ddd;
  padding: 8px 15px;
  border-radius: 5px;
}

.content-block__header {
  margin-top: 0;
}

.content-block button {
  margin-top: 15px;
}

.user-stats-cont {
  display: flex;
  justify-content: space-between;
}

.dashboard-help-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.list-item-active {
  background-color: #ebebeb;
  border-radius: 8px;
}

.order {
  margin-bottom: 25px;
}

.order-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order-number{
  font-size: 18px;
}

.custom-table{
  border-collapse: collapse;
  font-size: 16px;
  width: 100%;
}

.custom-table td{
  padding: 10px 5px;
  text-align: center;
}

.custom-table__header{
  margin-bottom: 10px;
}

.custom-table tr:not(:first-child){
  border: 1px solid #0000001a;
}

.order-sum {
  font-weight: 600;
  font-size: 18px;
}

.edit-profile-panel {
  border: 1px solid #ccc;
  padding: 20px;
}

.edit-profile-panel .edit-profile-input-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eeeeee;
  padding: 8px;
  margin-bottom: 15px;
}

.edit-profile-panel .edit-profile-input-cont:last-child {
  margin-bottom: 0;
}

.edit-profile-panel .edit-profile-param {
  color: #797979;
  font-size: 16px;
}

.edit-profile-panel input {
  width: 100%;
  border: none;
  outline: none;
  margin-left: 8px;
  height: 25px;
  margin-right: 8px;
  background-color: #eeeeee;
  font-size: 16px;
}

.register-btn {
  border: none;
  outline: none;
  background-color: rgb(9, 214, 0) !important;
}

@media (max-width: 600px) {
  .private-area {
    display: block;
  }
  .private-area-menu {
    width: 100%;
  }
  .private-area-content {
    width: 100%;
  }
  .dashboard-help-cont {
    display: block;
  }

  .user-stats-cont {
    display: unset;
  }

  .user-stats-cont > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/*# sourceMappingURL=private-area.css.map */