#cabinet {
  width: 70%;
  margin: auto;
  padding-bottom: 200px;
}

#cabinet h1 {
  text-align: center;
  margin: 50px 0px;
  font-weight: 500;
}

#cabinet .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 30px;
}

#cabinet .tabs ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

#cabinet .tabs button {
  background: #fff;
  border: 2px solid #000;
  border-bottom: 2px solid #fff;
  padding: 10px 20px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: 300ms;
  transition: 300ms;
}

#cabinet .tabs button.active, #cabinet .tabs button:hover {
  border-bottom: 2px solid #000;
  background: #000;
  color: #fff;
}

#cabinet .tabs a {
  background: #fff;
  border: 2px solid #000;
  border-bottom: 2px solid #fff;
  padding: 10px 20px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: 300ms;
  transition: 300ms;
}

#cabinet .tabs a.active, #cabinet .tabs a:hover {
  border-bottom: 2px solid #000;
  background: #000;
  color: #fff;
}

#cabinet .tabs-content {
  width: 100%;
  border: 2px solid #000;
}

#cabinet .tabs-content .profile-tab h1 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
}

#cabinet .tabs-content .profile-tab form {
  width: 60%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#cabinet .tabs-content .profile-tab form input {
  margin-bottom: 20px;
  font-size: 20px;
  padding: 5px;
}

#cabinet .tabs-content .profile-tab form button {
  font-size: 26px;
  padding: 5px;
  border: 2px solid #000;
  background: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
}

#cabinet .tabs-content .profile-tab form button:hover {
  color: #fff;
  background: #000;
}

#cabinet .tabs-content .orders-tab {
  display: none;
}

#cabinet .tabs-content .orders-tab .order {
  border-bottom: 2px solid #000;
  padding: 40px 20px;
  position: relative;
}

#cabinet .tabs-content .orders-tab .order .order-number h3 {
  font-size: 26px;
}

#cabinet .tabs-content .orders-tab .order .options-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: 2px solid #000;
  padding: 10px 10px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: 300ms;
  transition: 300ms;
}

#cabinet .tabs-content .orders-tab .order .options-btn.active, #cabinet .tabs-content .orders-tab .order .options-btn:hover {
  border-bottom: 2px solid #000;
  background: #000;
  color: #fff;
}

@media screen and (max-width: 992px) {
  #cabinet {
    width: 90%;
  }
  #cabinet .tabs {
    padding: 0;
  }
  #cabinet .tabs-content .orders-tab .order .options-btn {
    position: static;
  }
}
/*# sourceMappingURL=admin_panel.css.map */