html,
body {
  height: 100%;
}
.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    height: unset;
    min-height: 100%;
  }
}
.wrapper .dashboard {
  flex: 1;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard {
    flex-direction: column;
  }
}
.wrapper .dashboard .sidebar {
  width: 264px;
  background: #0199b0;
  padding: 28px 37px;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .sidebar {
    width: 80px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    position: relative;
  }
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar {
    width: 100%;
    height: 80px;
    flex-direction: row;
    justify-content: center;
  }
}
.wrapper .dashboard .sidebar .user-bar {
  margin-bottom: 40px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .user-bar {
    margin-bottom: 0 !important;
    position: absolute;
    left: 20px;
  }
}
.wrapper .dashboard .sidebar .user-bar img {
  width: 44px;
  height: 44px;
  margin-bottom: 17px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .user-bar img {
    margin-bottom: 0;
  }
}
.wrapper .dashboard .sidebar .user-bar .username {
  color: white;
  font-weight: bold;
  font-size: 14px;
}
.wrapper .dashboard .sidebar .user-bar a {
  color: white !important;
  text-decoration: underline;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .sidebar .user-bar {
    margin-bottom: 90px;
  }
  .wrapper .dashboard .sidebar .user-bar .username,
  .wrapper .dashboard .sidebar .user-bar a {
    display: none;
  }
}
.wrapper .dashboard .sidebar .menu {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu {
    flex-direction: row;
    width: calc(100% - 168px);
    margin: 0 84px;
    max-width: 250px;
  }
}
.wrapper .dashboard .sidebar .menu a {
  color: white !important;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 30px;
  position: relative;
  padding-left: 38px;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu a {
    width: 20px;
    height: 20px;
    padding: 0 15%;
  }
}
.wrapper .dashboard .sidebar .menu a > img {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition: opacity 0.1s;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu a > img {
    left: 50%;
  }
}
.wrapper .dashboard .sidebar .menu a > span.counter {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 5px;
  height: 15px;
  line-height: 15px;
  background: #ee1144;
  border-radius: 8px;
  font-size: 9px;
  font-weight: bold;
  margin-top: 8px;
  margin-left: 8px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu a > span.counter {
    left: 50%;
  }
}
.wrapper .dashboard .sidebar .menu a > span:not(.counter) {
  opacity: 0.7;
  transition: opacity 0.1s;
}
.wrapper .dashboard .sidebar .menu a.active {
  font-weight: bold;
  opacity: 1;
}
.wrapper .dashboard .sidebar .menu a:hover > img {
  opacity: 1;
}
.wrapper .dashboard .sidebar .menu a:hover > span:not(.counter) {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .sidebar .menu a {
    height: 36px;
    padding-left: 14px;
  }
  .wrapper .dashboard .sidebar .menu a > span:not(.counter) {
    display: none;
  }
}
.wrapper .dashboard .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wrapper .dashboard .content > header {
  height: 91px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid #d5d5dd;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .content > header {
    display: none;
  }
}
.wrapper .dashboard .content > header > img {
  width: 44px;
  margin-right: 26px;
}
.wrapper .dashboard .content .dashboard-content {
  flex: 1;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .content .dashboard-content {
    display: block;
  }
}
.wrapper .dashboard .content .dashboard-content.not-columned {
  flex-direction: column;
  padding: 30px;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper {
  display: flex;
  flex-direction: row;
  width: 45%;
  margin-top: 45px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .content .dashboard-content .edit-profile-wrapper {
    width: 100%;
    flex-direction: column;
  }
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 35px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .avatar-wrapper {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .avatar-wrapper img.avatar {
  width: 120px;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .avatar-wrapper a {
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .form-wrapper {
  flex: 1;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .form-wrapper .form-group {
  margin-bottom: 20px;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .form-wrapper .form-group.address {
  overflow: hidden;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .form-wrapper .form-group.address label {
  width: 100%;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .form-wrapper .form-group.address input.address {
  width: calc(40% - 20px);
  float: left;
  margin-right: 20px;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .form-wrapper .form-group.address select.city {
  width: 60%;
  float: left;
}
.wrapper .dashboard .content .dashboard-content .edit-profile-wrapper .form-wrapper .btn-primary {
  margin-top: 30px;
}
.wrapper footer {
  background: #008d9f;
}
.btn.btn-csc.btn-primary {
  background: #0199b0;
}
.btn.btn-csc:hover:not(:disabled) {
  box-shadow: 0 0 15px 0 rgba(1, 153, 176, 0.5) !important;
}
.btn.btn-csc:active,
.btn.btn-csc:focus {
  background-color: #0199b0;
}
/*# sourceMappingURL=styles.css.map */