#content:has(.personal-container),
#content:has(.orders) {
  background-color: #F5F5F5;
}
.maxwidth-theme:has(.personal-container) {
  @media (max-width: 1499px) {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/*  */
.personal-container {
  display: flex;
  gap: 56px;
  margin-bottom: 120px;

  @media (max-width: 1199px) {
    margin-bottom: 24px;
  }
}
/*  */
.personal-content {
  flex: 1;
  max-width: 100%;

  .personal-exit {
    display: none;

    @media (max-width: 1199px) {
      display: flex;
      width: 100%;
      justify-content: center;
      border-radius: 10px;
      font-size: 12px;
      padding: 10px 0px;
    }
  }
}
/*  */
.personal__title {
  font-size: 32px;
  font-weight: 500;
  color: #3E3E3E;

  @media (max-width: 1199px) {
    font-size: 16px;
    line-height: 19.2px;
  }
}
/*  */
.personal-exit {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 16px 25px;
  gap: 8px;
  border-radius: 14px;
  background: #3DB845;
  font-weight: 600;
  line-height: 22.4px;
  font-size: 16px;
  color: #FFFFFF;

  &:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #2BAB33;
  }

  svg {
    width: 24px;
    height: 24px;
  }
}
/*  */
.support {
  margin-top: 40px;

  @media (max-width: 1199px) {
    margin-top: 24px;
  }
}
/*  */
.support__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 16px;
  margin-top: 16px;

  @media (max-width: 1199px) {
    grid-template-columns: 1fr;
  }

  > * {
    padding: 25px 40px;
    gap: 16px;
    border-radius: 24px;
    background: #FFFFFF;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    transition: 200ms ease all;
  }

  .personal-call-icon,
  .personal-shops-icon {
    height: 82px;
    color: #3E3E3E;

    @media (max-width: 1199px) {
      padding: 18px 32px;
      font-size: 12px;
      height: 60px;
      border-radius: 8px;
    }

    &:hover {
      color: #3DB845;
      border-color: #3DB845;
      opacity: 1;
    }

    svg {
      display: block;
      width: 32px;
      height: 32px;

      @media (max-width: 1199px) {
        width: 24px;
        height: 24px;
      }
    }
  }
}
/*  */
.support__manager {
  grid-row-start: 1;
  grid-row-end: 3;
  flex-direction: column;
  align-items: start;

  @media (max-width: 1199px) {
    padding: 24px 32px;
    align-items: normal;
    gap: 8px;
    border-radius: 16px;
  }

  .support__manager-title {
    font-size: 16px;
    color: #3E3E3E;

    @media (max-width: 1199px) {
      font-size: 14px;
    }
  }
  .support__manager-body {
    display: flex;
    gap: 16px;
    /* font-family: Inter; */
    font-size: 14px;

    @media (max-width: 1199px) {
      font-size: 12px;
    }
  }
  .support__manager-image {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: cover;
    margin: 0;
  }
  .support__manager-info {
    /* font-family: Inter; */
    font-size: 14px;
    color: #3E3E3E;

    @media (max-width: 1199px) {
      font-size: 12px;
    }
  }
  .support__manager-phone {
    display: inline-block;
    font-weight: 700;
    color: #3E3E3E;

    &:hover {
      color: #3E3E3E;
      opacity: .7;
    }
  }
  .support__manager-write {
    display: block;
    color: #3DB845;

    &:hover {
      opacity: .7;
    }
  }
}
/*  */
.orders {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;

  @media (max-width: 1199px) {
    padding: 24px;
    gap: 16px;
  }
}