
@font-face {
  font-family: ArialRounded; /* set name */
  src: url(ArialRounded.TTF); /* url of the font */
}

@font-face {
  font-family: ArialRoundedBold; /* set name */
  src: url(ArialRoundedBold.TTF); /* url of the font */
}

/* CSS is how you can add style to your website */
body {
  user-select: none;
  margin: 0;
  background: url("pattern.png");
  overflow-y: hidden;
  background-size: auto;
  background-position: left;
  background-repeat: repeat;
  font-family: Arial, sans-serif;
}

.text {margin: 0;}
.text.front {text-align: end;}
.text.end {text-align: start;}

.boxshadow {filter: drop-shadow(0px 1px 3.5px #00000060);}

.button {
  background: #f0f0f0;
  border: 1px solid #9e9e9e;
  border-radius: 5px;
  padding: calc(5/810*100vh);
}

.tab {
  position: relative;
  top: 0px;
  width: fit-content;
  border-bottom: none;
  display: block;
  z-index: 10;
  margin: 0;
  align-content: center;
}


#contentcontainer {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100vh;
}

/*header*/
#header {
  margin: 0;
}
.header {margin: 0;}

.nav {
  box-sizing: border-box;
  padding: calc(10/810*100vh);
  display: flex;
  color: #fff;
  background: #000;
  width: 100%;
  height: calc(80/810*100vh);
  align-items: flex-end;
  justify-content: space-between;
}

.navigation {
  text-decoration: none;
  color: #fff;
}

.userInfo {
  box-sizing: border-box;
  background: #fff;
  width:100%;
  padding: calc(10/810*100vh);
  height: calc(40/810*100vh);
}

.adbanner {
  background: #000;
  width:100%;
  height: 20px;
}

/* Core elements */

#maincontents {
  max-width: 100vw;
  overflow-y: auto;
  height: 100%;
  margin-bottom: calc(15/810*100vh);
  display: flex;
  width: 100%;
  padding-top: calc(20/810*100vh);
}

#otherprofiles {
  width: 30%;
  overflow-y: scroll;
  overflow-x: hidden;
}

#profile1 {
 width: 70%;
 background: #00000040;
}

#profile2 {
  width: 1%;
}

.profile{
  height: 100%;
  padding: calc(10/810*100vh);
}

.smallprofile {
  width: 100%;
  height: min-content;
  background: #fff;
  position: relative;
  align-items: flex-start;
  padding: calc(10/810*100vh);
  border-bottom: 1px solid black;
}

.topsection {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.imgSection {
  width: calc(100/810*100vh);
  height: 100%;
  margin-right: calc(15/810*100vh);
}

.faceImg {
  margin: 0;
  height: calc(100/810*100vh);
  width: calc(100/810*100vh);
  background: #fff;
  position: relative;
  margin-right: calc(15/810*100vh);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image {
  position: relative;
  height: 100%;
}
.quote {
  font-style: italic;
  margin-top: 10px;
}

.traitsbox {width: 100%;}
.pTraits {
  box-sizing: border-box;
  margin-top: calc(25/810*100vh);
  height: min-content;
  width: calc(500/810*100vh);
}

.boldtext {
  margin: 0;
  font-weight: bold;
}

.profileTrait {
  width: 100%;
  display: flex;
  align-items: baseline;
  font-size: calc(14/810*100vh);
  gap: calc(20/810*100vh);
}

.traitswheel {
  background: #fff;
  padding: calc(20/810*100vh);
  padding-top: calc(10/810*100vh);
  border-radius: 0 5px 5px 5px;
}

.sliders {
  display: block;
  height: 100%;
}

/* same slider as on homepage */
.slider {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 1px;
  overflow: hidden;
  margin: 0;
  height: 6px;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.6);
}

.slider:after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: flex;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: 
  linear-gradient(
      to bottom, 
      rgba(0,0,0,0) 5%, 
      rgba(255,255,255,1) 20%, 
      rgba(0,0,0,0.2) 40%,
      rgba(255,255,255,0.8) 100%);
}

.slider::-webkit-range-track {
  height: 15px;
  background: #ccc;
  border-radius: 16px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  height: 6px;
  width: 0.1px;
  background: transparent;
  border: none;
  box-shadow:-50px 0 0 50px blue;
}

.slider::-moz-range-track {
  height: 15px;
  background: #ccc;
  border-radius: 16px;
}

.slider::-moz-range-thumb {
  height: 6px;
  width: 0.1px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  box-shadow:-50px 0 0 50px blue;
}

/*#96ec16*/
/*#ff8400*/
/*#cc3399 */
/*#ffb600*/
/*#ed0009*/
/*#3cb3b3*/
/*#ff3399*/


/* Tester */



/* Footer */
#footer {
  position: absolute;
  box-sizing: border-box;
  overflow: hidden;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(#525252,#000000 );
  color: white;
  font-size: calc(16 / 810 * 100vh);
  text-align: left;
  margin: 0px;
  padding: calc(5 / 810 * 100vh);
  z-index: 2;
}
#footer a:link {color: #50aed2;}
#footer a:visited {color: #50aed2;}

/* styles */
.inactive {
  border: 1px solid #9e9e9e;
  color: #000;
}

.profile.inactive {
  background: linear-gradient(#f0f0f0 60%, #e3e3e3 120%);
}

.tab.inactive {
  background: linear-gradient(#939393 30%, #717171 55%, #939393 120%);
  border-radius: 7px 7px 0 0;
  box-shadow: 0 1px 2px 0px #ffffff inset;
  padding: 0px calc((20 / 810) * 100vh) 0px;
  text-decoration: none;
  font: normal calc((14 / 810) * 100vh) Arial;
  color: #f0f0f0;
}

.faceImg.inactive {
}

.girly {
  color: #60025D;
}

.profile.girly {
  border: 0.5px solid #f6a2c9;
  box-shadow: 0 0 0 8px #fff;
  background: #ffe7f5;
  font-family: ArialRounded;
  border-radius: 0px 5px 5px 5px;
  letter-spacing: -0.5px;
}

.tab.girly {
  left: -8px;
  border: 8px solid #fff;
  border-bottom: 0;
  background: linear-gradient(#ffb0d8 0, #e20497 100%);
  border-radius: 15px 15px 0 0;
  padding: 2px calc((20 / 810) * 100vh) 2px;
  text-decoration: none;
  font: normal calc((16 / 810) * 100vh) ArialRoundedBold;
  color: #f0f0f0;
}

.faceImg.girly {
  box-sizing: border-box;
  border-radius: 100%;
  border: 2px dashed #f6a2c9;
  box-shadow: 0px 0px 0 3px #fff inset, 0px 0px 0 3px #fff, 0.2px 0.8px 0 5px #f6a2c9;
}
