.designer-item {
  width: 100%;
  height: 100%;
  padding-right: 10px;
  padding-left: 10px;
}
.designer-item .image {
  display: flex;
  justify-content: center;
  height: auto;
  position: relative;
  top: 60px;
}
.designer-item .image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.designer-item .content {
  padding-top: 70px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #fff;
}
.designer-item .content .name-area {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.designer-item .content .name-area .name-title {
  font-weight: bold;
  font-size: 19px;
}
.designer-item .content .name-area .members {
  margin-top: 2px;
}
.designer-item .content .short-description {
  font-size: 15px;
  margin-bottom: 5px;
}
.designer-item .content .sample-images {
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 5px;
}
.designer-item .content .sample-images .img {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
}
.designer-item .content .sample-images .img img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.designer-item .content .follow-button {
  width: 100%;
  height: 42px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 2px solid var(--colorMain);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--colorMain);
  text-decoration: none;
  transition: all 0.3s;
}
.designer-item .content .follow-button:hover {
  color: #fff;
  background-color: var(--colorMain);
}

.designer-page .designer-profile .image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 30px;
  padding-top: 0;
}
.designer-page .designer-profile .image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.designer-page .designer-profile .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.designer-page .designer-profile .content .name-area {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.designer-page .designer-profile .content .name-area .name .name-title {
  font-weight: bold;
  font-size: 20px;
}
.designer-page .designer-profile .content .name-area .members {
  margin-top: 5px;
}
.designer-page .designer-profile .content .short-description {
  font-size: 15px;
}
.designer-page .designer-profile .content .buttons .follow-button, .designer-page .designer-profile .content .buttons .request-button {
  width: 100%;
  height: 42px;
  border: 2px solid;
  border-radius: 5px;
  padding: 3px 5px;
  font-size: 13px;
  transition: all 0.3s;
  margin-bottom: 10px;
}
.designer-page .designer-profile .content .buttons .unfollow {
  color: #fff !important;
  border-color: var(--colorGreen) !important;
  background-color: var(--colorGreen) !important;
}
.designer-page .designer-profile .content .buttons .follow-button {
  color: var(--colorMain);
  border-color: var(--colorMain);
}
.designer-page .designer-profile .content .buttons .follow-button:hover {
  color: #ffffff;
  background-color: var(--colorMain);
}
.designer-page .designer-profile .content .buttons .request-button {
  color: #0d6dea;
  border-color: #0d6dea;
}
.designer-page .designer-profile .content .buttons .request-button:hover {
  color: #ffffff;
  background-color: #0d6dea;
}
.designer-page .designer-profile .content .socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.designer-page .designer-profile .content .socials .social-icon {
  font-size: 22px;
  color: var(--colorSecondary);
  text-decoration: none;
}

.mloading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.77);
  z-index: 10000;
  width: 100vw;
  height: 100vh;
}
.mloading .mloading-image {
  width: 90px;
  height: 90px;
}
