:root {
  --white-color: #ffff;
  --backgroundBody-color: #f2f1f1;
  --background-gray-md-color: #c7c7c7;
  --background-gray-light-color: #f0f0f1;
  --background-socket: 201,201,201;
  --black-main-color: 32,32,32;
  --primary-color: 229,81,183;
  --primary-medium-color:236,175,212;
  --primary-light-color:236,175,212;
  --success-color: 76,175,80;
  --secondary-medium-color:79,158,208;
  --gray-md-color: 153,153,153;
  --gray-dark-color: 51,51,51;
  --gray-light-color: 255,229,254;
  --gray-blur-color:255,255,255;
  --menu-height:12rem;
  --phone-menu-height:16rem;
  --gap-small:2rem;
  --gap-md:4rem;
  --gap-lg:6rem;
  --nav-font-light:1.3rem;
  --nav-font-md:1.5rem ;
  --nav-font-lg:2rem ;
  --font-extra-lg: 3.5rem;
  --review-height:60rem; }
  @media (max-width: 37.5em) {
    :root {
      --nav-font-light:2rem;
      --nav-font-md:2.5rem ; } }

.infoCont {
  position: sticky;
  top: var(--menu-height);
  width: content-box; }

.profile {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-column-gap: 5rem;
  min-height: calc(100vh - var(--menu-height));
  padding-right: 3%;
  padding-left: 3%;
  padding-top: calc(var(--menu-height) + 1%);
  overflow: visible; }
  .profile-info {
    position: relative;
    display: flex;
    flex-direction: column; }
    .profile-info__adv {
      width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-around;
      align-items: center;
      background-image: linear-gradient(rgba(var(--primary-color), 0.5), rgba(var(--primary-color), 0.5)), url("/img/category-background.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      padding: 1.5rem;
      border-radius: 3rem;
      box-shadow: 0.4rem 1.5rem 2.5rem 0.4rem rgba(0, 0, 0, 0.25); }
      .profile-info__adv svg {
        height: 5rem;
        width: 5rem;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.31));
        fill: var(--white-color); }
      .profile-info__adv h3 {
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.31);
        color: var(--white-color);
        font-size: 2.5rem;
        font-weight: bold; }
    .profile-info__info {
      width: 100%;
      background-color: rgba(var(--primary-color), 0.6);
      margin-top: 10%;
      height: auto;
      border-radius: 3rem;
      box-shadow: 0.4rem 1.5rem 2.5rem 0.4rem rgba(0, 0, 0, 0.25);
      padding: 2rem;
      display: grid;
      grid-template-rows: [pic-start] max-content [pic-end] 1% [header-start] max-content [header-end info-start] 1fr [info-end btn-start] min-content; }
      .profile-info__info--picInfo {
        min-height: 10rem;
        grid-row: pic-start/ pic-end;
        grid-row-gap: 1%;
        display: flex;
        flex-direction: row;
        justify-content: space-around; }
      .profile-info__info--name {
        padding: 1rem 1.5rem; }
      .profile-info__info--img {
        width: 7rem;
        height: 7rem;
        border-radius: 50%;
        border: 4px dashed transparent;
        box-shadow: 0 4px 6px 2px white; }
      .profile-info__info--nameHeader {
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.31);
        color: var(--white-color);
        font-size: 2rem;
        font-weight: bold;
        white-space: nowrap; }
      .profile-info__info--header {
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
        color: var(--white-color);
        font-size: 2rem;
        font-weight: bold;
        height: auto;
        grid-row: header-start / header-end;
        margin: 0 auto;
        display: block;
        border-bottom: 3px solid var(--white-color);
        width: 90%;
        text-align: center;
        padding: .8rem; }
      .profile-info__info--contInfo {
        min-height: 20rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 3%;
        grid-row: info-start/ info-end;
        padding: 2.2rem 5%; }
      .profile-info__info--infoKeyCont {
        grid-column: 1/2;
        text-align: right; }
      .profile-info__info--infoValueCont {
        text-align: right; }
      .profile-info__info--infoKey {
        font-size: 1.5rem;
        padding: .5rem 0;
        font-weight: bold; }
      .profile-info__info--infoValue {
        font-size: 1.5rem;
        padding: .5rem 0;
        font-weight: bold;
        color: var(--white-color);
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        direction: ltr; }
      .profile-info__info--btn {
        grid-row: btn-start / -1;
        width: fit-content !important;
        border-bottom: unset !important;
        text-align: center !important;
        margin: 0 auto !important;
        color: var(--white-color) !important;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        transition: all .2s;
        cursor: pointer; }
      .profile-info__info--btnIcon {
        padding: 0 .2rem;
        transition: all .2s; }
      .profile-info__info--btn:hover {
        transform: translateY(-0.1rem); }
      .profile-info__info--btn:hover .profile-info__info--btnIcon {
        transform: translateX(-0.2rem); }
  .profile-main {
    padding: 1% 0;
    width: 100%; }
    .profile-main__container {
      display: grid;
      grid-template-rows: repeat(2, auto);
      z-index: 0;
      width: 100%;
      margin: 0 auto; }
    .profile-main__headerCont {
      grid-row: 1/ 2;
      display: flex;
      margin-right: 1.3%; }
    .profile-main__headerBtn {
      outline: none;
      margin-left: 2rem;
      background: var(--white-color);
      box-shadow: -2px -3px 10px rgba(var(--black-main-color), 0.25);
      border-radius: 1rem 1rem 0 0;
      transition: all .2s;
      padding: 1rem 2rem;
      text-shadow: -1px 3px 4px rgba(var(--black-main-color), 0.2);
      transition: all .2s; }
      .profile-main__headerBtn-active {
        background-color: rgba(var(--primary-color), 0.6);
        box-shadow: -2px -2px 4px rgba(var(--black-main-color), 0.25);
        color: var(--white-color);
        border-radius: 2rem 2rem 0 0; }
    .profile-main__exit {
      cursor: pointer;
      background: rgba(var(--secondary-medium-color), 1);
      color: var(--white-color); }
    .profile-main__mainContainer {
      background: var(--white-color);
      width: 100%;
      box-shadow: 4px 15px 25px 4px rgba(0, 0, 0, 0.25);
      border-radius: 3rem;
      padding: 3rem; }

.editAccount {
  position: relative; }
  .editAccount__title {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(var(--secondary-medium-color), 0.5);
    margin-bottom: 1rem;
    width: fit-content;
    font-weight: bold;
    font-size: 2rem; }
  .editAccount__inputGroup {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 3rem;
    margin-right: 5%;
    padding: .5rem;
    width: 80%; }
  .editAccount__inputLabel {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    font-weight: bold; }
  .editAccount__input {
    width: 70%;
    padding: 1rem 2rem;
    border: 2px solid #202020;
    box-shadow: 0.3rem 0.5rem 1rem rgba(0, 0, 0, 0.14);
    border-radius: 3rem;
    font-family: inherit;
    transition: all .2s; }
  .editAccount__input:focus {
    outline: none;
    box-shadow: inset 0.3rem 0.5rem 1rem rgba(0, 0, 0, 0.14); }
  .editAccount__submit {
    color: var(--white-color);
    text-align: center;
    float: left; }

.orders {
  display: flex;
  flex-direction: column;
  padding: 2%; }
  .orders__headerCont {
    display: flex;
    flex-direction: row;
    padding: 2% 0 0 0;
    border-bottom: 1px solid rgba(var(--gray-md-color), 0.5); }
  .orders__headerBtn:link, .orders__headerBtn:visited {
    padding: 2rem;
    outline: none;
    transition: all .2s;
    position: relative;
    display: flex;
    justify-self: center;
    align-items: baseline; }
    .orders__headerBtn:link:hover, .orders__headerBtn:visited:hover {
      color: rgba(var(--primary-color), 1); }
  .orders__headerBtn-active {
    color: rgba(var(--primary-color), 1); }
    .orders__headerBtn-active::before {
      content: '';
      height: 2px;
      width: 95%;
      background: rgba(var(--primary-color), 1);
      position: absolute;
      bottom: 0;
      right: 0%;
      transition: all .5s;
      border-radius: 1rem; }
  .orders__headerBtn:active, .orders__headerBtn:focus {
    color: rgba(var(--primary-color), 1); }
  .orders__headerNumber {
    display: inline-block;
    transition: all .5s;
    border: 2px solid transparent;
    border-radius: 50%;
    font-size: 1rem;
    width: 2rem;
    margin-right: 1rem;
    height: 2rem; }
    .orders__headerNumber-active {
      border: 2px solid rgba(var(--primary-color), 1);
      background: var(--white-color);
      color: rgba(var(--primary-color), 1);
      text-align: center;
      font-weight: bold; }
  .orders__orderItem {
    width: 100%;
    padding: 2rem;
    border: 1px solid rgba(var(--black-main-color), 1);
    display: grid;
    margin-top: 2rem;
    grid-template-columns: [pic-start] 15% [pic-end detail-start] max-content [detail-end barCont-start] 15rem repeat(2, [bar-start] 1fr [bar-edn]) [barCont-end];
    grid-template-rows: max-content repeat(2, 1fr);
    border-radius: 3rem; }
  .orders__orderImg {
    width: 100%;
    height: 100%;
    grid-row: 1/-1;
    grid-column: pic-start/ pic-end; }
  .orders__orderTitle {
    grid-column: detail-start/ detail-end;
    padding: .5rem 2rem; }
  .orders__orderDelivery {
    grid-row: 2/3;
    grid-column: detail-start/ detail-end;
    padding: .5rem 2rem; }
    .orders__orderDelivery-price {
      grid-row: 3/4;
      grid-column: detail-start/ detail-end;
      padding: .5rem 2rem; }
  .orders__subtitle {
    padding-right: 5%; }
  .orders__orderProgress {
    grid-column: bar-start 1/ -1;
    padding: .5rem 2rem;
    display: flex;
    flex-direction: column; }
    .orders__orderProgress-title {
      padding-bottom: 1rem; }
    .orders__orderProgress-barCont {
      border-radius: 3rem;
      border: 2px solid #202020;
      height: 2rem;
      padding: .5px;
      overflow: hidden; }
    .orders__orderProgress-bar {
      transition: all .2s;
      height: 100%;
      border-radius: 3rem; }
    .orders__orderProgress-barCompleted {
      width: 100%;
      box-shadow: -3px 0 8px -2px rgba(var(--success-color), 1);
      background: rgba(var(--success-color), 1); }
    .orders__orderProgress-barProgress {
      width: 50%;
      box-shadow: -3px 0 8px -2px rgba(var(--secondary-medium-color), 1);
      background: rgba(var(--secondary-medium-color), 1); }
  .orders__orderPrice {
    grid-column: bar-start 1 / -1;
    grid-row: 3 / -1;
    text-align: left;
    padding-left: 5%; }
  .orders__emptyCont {
    width: 100%;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .orders__emptyCont-title {
      font-size: 1.7rem; }
    .orders__emptyCont-icon {
      font-size: 10rem;
      margin: 3% 0; }
  .orders__comments {
    grid-row: 3/4;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
    grid-column: detail-start/ 5;
    width: 85%; }
    .orders__comments--link {
      grid-row: 3/4;
      grid-column: bar-start 2/ -1;
      text-align: center;
      max-width: 100%;
      margin: 0 auto;
      font-size: 1.4rem !important;
      color: rgba(var(--secondary-medium-color), 1) !important;
      border-bottom: 1px solid rgba(var(--secondary-medium-color), 1) !important; }
    .orders__comments--progress {
      grid-column: bar-start 2/ -1;
      background: rgba(var(--secondary-medium-color), 1);
      color: var(--white-color);
      max-width: 100%;
      display: flex;
      padding: 1rem;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      border-radius: 3rem; }
      .orders__comments--progress-success {
        background: rgba(var(--success-color), 1); }
  .orders__msg {
    width: 100%;
    padding: 2rem;
    border: 1px solid rgba(var(--black-main-color), 1);
    display: grid;
    margin-top: 2rem;
    grid-template-columns: [main-start] 4fr [main-end date-start] 1fr [date-end];
    grid-template-rows: repeat(2, 1fr);
    border-radius: 3rem; }
    .orders__msg--title {
      grid-column: main-start/ main-end; }
    .orders__msg--main {
      grid-column: main-start/ main-end;
      grid-row: 3 /4;
      white-space: pre;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 80%; }
    .orders__msg--date {
      grid-column: 3/-1;
      grid-row: 1/2;
      display: flex;
      justify-content: flex-end;
      align-items: center; }
  .orders__mainMsg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%);
    z-index: 1000000000;
    background: var(--white-color);
    border: 1px solid rgba(var(--black-main-color), 0.7);
    border-radius: 3rem;
    max-width: 50vw;
    max-height: 50vh;
    padding: 3rem;
    box-shadow: 1rem 1.5rem 1.3rem rgba(var(--black-main-color), 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    visibility: hidden;
    transition: all 1s;
    opacity: 0; }
    .orders__mainMsg--title {
      margin-bottom: 3rem; }
