.cabinetDesigner,
.cabinetProvider {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  z-index: 3;
}
.cabinetDesigner .labelImgForMenuActive,
.cabinetProvider .labelImgForMenuActive {
  top: 16px;
  left: 0;
  width: 100px;
  height: 32px;
  z-index: 5;
}
.cabinetBox {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 96px 0;
  width: 100%;
  box-sizing: border-box;
}

.cabinetLeft {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 296px;
}
.cabinetTablet {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 8px;
  gap: 16px;
  background: var(--color-grey-775);
}
.cabBtn {
  position: relative;
  text-align: center;
  border-radius: 8px;
  background: var(--color-grey-775);
  padding: 12px 8px;
  cursor: pointer;
}
.exitFromCabinetImg {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 12px;
  height: 20px;
  z-index: 3;
}
.exitFromCabinet {
  cursor: pointer;
}

.cabinetTablet h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 133%;
  margin-bottom: 8px;
}
.cabinetTablet img {
  width: 100px;
  border-radius: 50%;
}
.cabinetTablet h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  color: white;
  text-align: center;
}
.cabinetTablet hr {
  width: 100%;
}
.cabinetTablet p {
  font-size: 14px;
  font-weight: 400;
  line-height: 143%;
  color: var(--grayColor);
}
.cabinetTabletChild {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 0 16px;
  text-align: center;
}

.cabinetRight {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: calc(100% - 344px);
}
.cabinetDateCategory {
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 100%;
}
.cabinetDateCategory h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
.cabinetDateCategory p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.cabBox {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cabBox h5 {
  font-size: 12px;
  font-weight: 400;
  line-height: 133%;
  color: var(--grayColor);
}
.cabBox p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.cabDocsBox {
  display: flex;
  gap: 6px;
}
.cabDocsBox img {
  width: 24px;
  height: 24px;
}
.cabDocsBox p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.4;
}
@media (max-width: 960px) {
  .cabinetLeft {
    width: 40%;
  }
  .cabinetRight {
    width: 60%;
  }
}
@media (max-width: 640px) {
  .cabinetLeft {
    width: 100%;
  }
  .cabinetRight {
    width: 100%;
  }
  .cabinetDesigner .labelImgForMenuActive {
    display: none;
  }
  .cabinetBox {
    flex-direction: column;
    padding: 88px 0;
  }
  .cabinetTablet {
    width: 100%;
    padding: 16px 0;
  }
  .cabinetTablet h2 {
    font-size: 20px;
  }
  .cabinetTablet h5 {
    font-size: 16px;
  }
  .cabinetTablet p {
    font-size: 12px;
  }
  .cabinetDateCategory h4 {
    font-size: 16px;
  }
  .cabinetDateCategory p {
    font-size: 14px;
  }
}
