.profile-navtabs > a:nth-child(1){
    background-color: var(--color-10);
    border: 2px var(--color-6) outset;
    border-radius: 5px 5px 0px 0px;
    border-bottom: transparent;
}
.profile-navtabs > a:not(:nth-child(1)):hover{
    background-color: var(--color-10);
    border-bottom: 2px var(--color-6) solid;
    border-radius: 5px 5px 0px 0px;
}
/*[Columns]*/
.flex-container{
    display: flex;
    flex-direction: row;
}
.flex-left, .flex-right{
    flex:50%;
}
.flex-left-content{

}
.flex-right-content{

}
/*@media screen and (width <= 1600px) and (orientation: landscape) {
    .flex-container{flex-direction: column;}
    .flex-left{width: 100%;}
    .flex-right{width: 100%;}
    .profile-navtabs{visibility: hidden;}
}*/
/*@media handheld, screen and (width <= 300px) {
    .flex-container{flex-direction: column !important;}
    .flex-left{width: 100%;}
    .flex-right{width: 100%;}
    .profile-navtabs{visibility: hidden;}
}*/
/*.profile-stats{
    line-height: 14px;

}
.profile-stats > span{
    margin-left: 6px;
    font-size: var(--font-size-3);
    color: var(--color-2);
}
@media screen and (width <= 720px) and (orientation: portrait) {
    .flex-container{flex-direction: column;}
    .flex-left{width: 100%;}
    .flex-right{width: 100%;}
}*/
.profile-stats{
    display: flex;
    
}
.profile-stats > span{
    display: flex;
    flex-direction: row;
    height: 47px;
    padding-inline: 14px;
    white-space: nowrap;
    font-family: var(--font-family-2);
    font-size: var(--font-size-3);
}
.profile-stats > span:nth-child(1){
    min-width: 336px;
}
.profile-stats > span:nth-child(2){
  min-width: 68px;
  display: none;
}
.profile-stats > span:nth-child(3){
  min-width: 222px;
}
.profile-stats > span:nth-child(4){
  min-width: 126px;
}
.profile-stats > span:nth-child(-n+3){
    border-right: 2px dotted #808080;
}
.profile-stats > span > span{
    margin-top: 8px;
}
.profile-stats > span > span:nth-last-child(2){
  margin-left: auto;
}
.profile-stats > span > div{
  display: none;
  position: absolute;
  top: 42px;
  border: 2px solid red;
  background: white;
  min-width: calc(100% - 32px);
}
.profile-stats > span{
  position: relative;
}
.profile-stats button{
    border: 2px var(--color-6) outset;
    border-radius: 5px;
    position: absolute;
    left: 14px;
    background: var(--color-10);
    opacity: 0.0;
    min-width: inherit;
    margin-top: 4px;
    transition: opacity 0.2s;
    animation-timing-function: ease-in-out;
    box-shadow: 
      2px 2px white,
      -2px -2px white,
      -2px 2px white,
      2px -2px white,
      -2px -6px var(--color-14) inset;
}
.profile-stats button:hover{
    opacity: 1.0;
}
.profile-stats button > div{
    font: bold var(--font-size-6) var(--font-family-2);
    padding: 4px 8px 12px 8px;
    height: inherit;
    text-align: left;
}
.profile-stats > span:nth-last-child(1){
    line-height: 12px;
    font-size: var(--font-size-4);

}
/*Styles for headerbar and icon*/
/*.header-bar{
    display: flex;
  }
  .header-bar > div:first-child{
    margin: 4px 8px;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    scale: 0.8;
  }
  .header-bar > div:first-child::before{
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    left: 2px;
    width: 36px;
    height: 36px;
    border: 2px solid greenyellow;
    border-radius: 5px;
    background-color: var(--color-3);
    box-shadow: 
      2px 2px var(--color-3),
      -2px 2px var(--color-3),
      2px -2px var(--color-3),
      -2px -2px var(--color-3);
  }
  .header-bar > div:first-child div{
    position: absolute;
    left: -8px;
    top: -4px;
    scale: 1;
  }
  .header-bar > div:first-child div span{
    position: absolute;
    top: 7px;
    color: greenyellow;
    font-family: var(--font-family-2);
    font-size: 24px;
    transform:
      scaleX(0.8)
      scaleY(2.2);
  }
  .header-bar > div:first-child div span:first-child{
    left: 0;
    text-shadow:
      3px 0px var(--color-3),
      7px 0px var(--color-3);
  }
  .header-bar > div:first-child div span:first-child::before,
  .header-bar > div:first-child div span:last-child::before{
    top: 0.05em;
    font-weight: bold;
    text-shadow: 
      2px -1px 1px rgba(0,0,0,0.3), 
      -2px -1px 1px rgba(0,0,0,0.3) !important;
  }
  .header-bar > div:first-child div span:first-child::before{
    content: "R";
    position: absolute;
    left: 18px;
    transform:
      scaleX(1)
      scaleY(0.8);
    text-shadow: 0px 0px transparent;
  }
  .header-bar > div:first-child div span:last-child{
    left: 40px;
    text-shadow:
      -2px 0px var(--color-3),
      -6px 0px var(--color-3);
  }
  .header-bar > div:first-child div span:last-child::before{
    content: "E";
    position: absolute;
    left: -15px;
    transform:
      scaleX(1)
      scaleY(0.8);
    text-shadow: 0px 0px transparent;
  }
  .header-bar > div:first-child div span::before{
    display: inline-block;
    left: 0;
  }

  .header-bar > div:last-child{
    display: inherit;
    font-family: var(--font-family-1);
    font-size: 24px;
    position: relative;
    bottom: -4px;
    color: white;
    text-shadow: 
      0px -3px 2px var(--color-3),
      1px -2px 1px var(--color-3),
      -1px -2px 1px var(--color-5);
    transform: scaleY(0.9);
  }
  .header-bar > div:last-child span:first-child{
    font-weight: bold;
    font-size: 22px;
    margin-right: 2px;
    letter-spacing: -2px;
  }*/
@media screen and (width <= 720px) and (orientation: portrait) {
    .flex-container{flex-direction: column;}
    .flex-left{width: 100%;}
    .flex-right{width: 100%;}
    .profile-stats{display: none;}
}