* {
margin: 0;
padding: 0;
--greylight: #868686;
--greymid: #717171;
--greydark: #5D5D5D;
--whitelight:#fff;
--whitemid:#F4F4F4;
--whitedark:#F5F5F5;
--aquamid:#73C2C9;
--aqualight:#8BCFD1;
--orange:#FF9953;
--pink:#FF8BE4;
--green:#98C788;
--goldmid: #988957;
--goldlight: #BCAB71;
--blue:#73C2C9;
--deepbluemid:#1D2B39;
--deepbluelight:#26505D;
--blackdark: #161616;
--blackmid: #383838;
--blacklight: #AFAFAF;
--yellowmid: #FFE96E;
--burntmid: #83693A;
--burntlight: #CC9F4E;
--addydisplay: none;

}

@font-face {
  font-family: 'Bebas';
  src: url('/fonts/BebasNeue-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Sora-L';
  src: url('/fonts/Sora-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Sora-B';
  src: url('/fonts/Sora-Bold.ttf') format('truetype');
}


body {
font-family: 'Sora-L', sans-serif;
font-size:14px;
}

strong,
b {
    font-family: 'Sora-B', sans-serif;
    font-weight: normal; /* prevent fake bold stacking */
}

#bio-editor .ql-editor u {
    text-decoration: underline;
}

#bio-editor .ql-editor strong {
    font-family: 'Sora-B', sans-serif;
    font-weight: normal;
}

.bio-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 90%;
}

.bio-wrapper .ql-toolbar,
.bio-wrapper .ql-container {
    border: none !important;
    background: #fff;
}

.bio-wrapper .ql-toolbar button {
    color: var(--greydark);
}

.bio-wrapper .ql-toolbar button:hover {
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
}

.bio-wrapper .ql-toolbar button.ql-active {
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
}

.bio-wrapper .ql-editor {
    font-family: 'Sora-R', sans-serif;
    font-size: 16px;
    padding: 12px;
    min-height: 120px;
}

.bio-wrapper .ql-editor,
.bio-wrapper .ql-editor p,
.bio-wrapper .ql-editor span {
    color: var(--greydark) !important;
    opacity: 1 !important;
}

.bio-wrapper .ql-editor.ql-blank::before {
    color: var(--greydark);
    opacity: 0.4;
}

.bio-wrapper .ql-editor ul {
    padding-left: 18px;
    margin: 8px 0;
}

.bio-wrapper .ql-editor li {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.bio-wrapper .ql-editor li::marker {
    font-size: 0.8em;
}




a {
    text-decoration:none;
    padding:0px;
    margin:0px;
}

h3 {
    font-size: 48px;
    font-family: 'Bebas', sans-serif;
    line-height:.9;
}

h2 {
    font-size: 30px;
    font-family: 'Bebas', sans-serif;
    line-height:.9;
}

h1 {
    font-size: 24px;
    font-family: 'Bebas', sans-serif;
    line-height:.9;
}

p {
  font-size: 14px;
  margin:8px 13px 8px 13px;
}

.divider {
    position:relative;
    display:block;
    width:340px;
    max-width:100%;
    height:2px;
    margin:15px 0px 15px 0px;
    opacity:.3;
}

ul {
    font-size: 14px;
    list-style-position: outside;
    padding-left:40px;
}


.blur {
  filter: blur(3px) saturate(0.3);
}

.overlay {
  position:fixed;
  display:none;
  height:100vh;
  width:100vw;
  opacity:.85;
  z-index:120;
}

.modal_open {
  overflow:hidden;
}

.content {
    position:relative;
    display:block;
    width:100vw;
    height:fit-content;
    z-index:1;
}

.column_half {
  position:relative;
  display:inline-block;
  vertical-align:top;
  margin-bottom:10px;
  padding:30px;
  width:40%;
}

.menu_portsicleicon_closed{
  position:fixed;
  display:block;
  right: -2px;
  top:10px;
  transform:scale(1);
  cursor:pointer;
  z-index:5000;
  -webkit-transition: right .3s ease;
	-ms-transition: right .3s ease;
	transition: right .3s ease;
}

.menu_portsicleicon_closed:hover{
  transform:scale(1.2);
  -webkit-transition: transform .2s ease;
	-ms-transition: transform .2s ease;
	transition: transform .2s ease;
}

.menu_portsicleicon_open{
  position:fixed;
  display:block;
  right:97px;
  top:10px;
  transform:scale(1);
  z-index:5000;
  -webkit-transition: right .3s ease;
	-ms-transition: right .3s ease;
	transition: right .3s ease;
}

.menu_title_closed {
  position:fixed;
  display:block;
  text-align:right;
  top:80px;
  right:-360px;
  padding:15px 30px 15px 30px;
  border-radius: 50px 0px 0px 50px;
  z-index:4000;
  -webkit-box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .45);
  box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .45);
  -webkit-transition: right .3s ease;
	-ms-transition: right .3s ease;
	transition: right .3s ease;
}

.menu_title_open {
  position:fixed;
  display:block;
  text-align:right;
  top:80px;
  right:0px;
  padding:15px 30px 15px 30px;
  border-radius: 50px 0px 0px 50px;
  z-index:4000;
  -webkit-box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .45);
  box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .45);
  -webkit-transition: right .3s ease;
	-ms-transition: right .3s ease;
	transition: right .3s ease;
}

.menu_box_open {
  position:fixed;
  display:block;
  width:163px;
  right:-20px;
  top:0px;
  z-index:1000;
  -webkit-transition: right .3s ease;
	-ms-transition: right .3s ease;
	transition: right .3s ease;
}

.menu_box_closed {
  position:fixed;
  display:block;
  width:163px;
  right:-200px;
  top:0px;
  z-index:1000;
  -webkit-transition: right .3s ease;
	-ms-transition: right .3s ease;
	transition: right .3s ease;
}

.menu_box_top {
  position:relative;
  display:block;
  width:100%;
  height:186px;
}

.menu_box_middle {
  position:relative;
  display: block;
  text-align:right;
  width:100%;
}

.menu_box_bottom {
  position:relative;
  display:block;
  width:100%;
  height:60px;
}

.menu_item_box{
  position:relative;
  display:block;
  width:100%;
  height: 42px;
  text-align: left;
}

.menu_item{
  position:relative;
  font-family: 'Sora-B', sans-serif;
  font-size:14px;
  width: fit-content;
  border-radius:20px;
  padding:8px 12px 8px 12px;
  cursor:pointer;
  margin-left:10px;
}

.menu_item:hover{
    -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
}

.menu_closebutton {
  position:fixed;
  display:none;
  top:18px;
  right:50px;
  padding:8px 10px 9px 10px;
  border-radius:50%;
  cursor:pointer;
  -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .65);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .65);
  z-index:5000;
}

.footer {
  position:fixed;
  display:block;
  height:197px;
  width:360px;
  text-align:center;
  font-family: 'Sera-R', sans-serif;
  font-size:10px;
  z-index:5000;
}

.footer_item{
  position:relative;
  display:inline-block;
  font-family: 'Sora-B', sans-serif;
  font-size:12px;
  width: fit-content;
  border-radius:20px;
  padding:8px 12px 8px 12px;
  cursor:pointer;
  margin:2px;
}

.footer_item:hover{
    -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
}

.footer_open {
  right:30px;
  transform:translateX(0%);
  bottom:-100px;
  -webkit-transition: bottom .3s ease;
	-ms-transition: bottom .3s ease;
	transition: bottom .3s ease;
}

.footer_closed {
  right:30px;
  transform:translateX(0%);
  bottom:-199px;
  -webkit-transition: bottom .3s ease;
	-ms-transition: bottom .3s ease;
	transition: bottom .3s ease;
}

.special_box {
  position:fixed;
  display:none;
  right:155px;
  top:190px;
  width:270px;
  height:360px;
  border-radius:20px;
  text-align:right;
  -webkit-border-radius:20px;
  z-index:10000;
}

.featured_container {
    position:relative;
    display:block;
    top:40%;
    width:fit-content;
    height:fit-content;
}

.featured_info {
    position:relative;
    display:block;
    background-color:var(--orange);
    padding:15px;
    width:fit-content;
    max-width:300px;
    border-radius: 0px 20px 20px 0px;
}

.featured_avatar {
    position:relative;
    display:inline-block;
    height:40px;
    width:40px;
    border-radius:50%;
    vertical-align:top;
    background-color:var(--whitemid);
    -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
    box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
}

.featured_background_box {
  position:relative;
  display:block;
  width:100vw;
  height:45vh;
  z-index:98;
  top:0px;
  left:0px;
  background-size:cover;
  background-position:center;
  border-radius: 0px 0px 100px 0px;
}



.avatar {
  position:relative;
  display:block;
  width:120px;
  height:120px;
  left:10px;
  top:10px;
  z-index:105;
  border-radius:50%;
  background-size:cover;
  background-position:center;
  -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
}

.avatar_container {
  position:relative;
  display:block;
  z-index:104;
  height:140px;
  width:fit-content;
  top:calc(55vh - 110px);
}

.avatar_profile_block {
  position:relative;
  display:inline-block;
  width:650px;
  height:100%;
  border-radius: 70px 50px 0px 0px;
}

.avatar_profile_block_cornerright {
  position:relative;
  display:block;
  height:40px;
  width:40px;
  left:650px;
  top:-63px;
}

.avatar_profile_block_info {
  position:relative;
  display:inline-block;
  vertical-align:top;
  margin-top:18px;
  width:500px;
  overflow:visible;
}

.avatar_profile_block_buttons {
  margin-top:6px;
}

.avatar_profile_button {
    position:relative;
    display:inline-block;
    padding:8px 8px 8px 8px;
    border-radius: 50%;
    margin-right:2px;
}

.bio_surround {
  margin-top:20px;
}


/* The tooltip bubble */
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-90%) translateY(5px);

  font-family: 'Sera-R', sans-serif;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 11px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
  z-index:25000;
}

/* Show on hover */
.tooltip:hover::after {
  opacity: 1;
  transform: translateX(-90%) translateY(0);
}

.button1 {
    position:relative;
    display:block;
    font-size:16px;
    padding: 8px 12px 8px 12px;
    border-radius: 20px;
    cursor:pointer;
}

.button1:hover {
    -webkit-box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
    box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, .45);
}

input:not([type="checkbox"])
     :not([type="radio"])
     :not([type="file"])
     :not([type="date"])
     :not([type="datetime-local"])
     :not([type="month"])
     :not([type="week"])
     :not([type="time"])
     :not([type="color"]),
textarea,
select {
  padding:5px 10px 5px 10px;
  border-radius:10px;
  box-shadow:none;
  outline:none;
  -webkit-appearance:none;
  appearance:none;
  font-size:16px !important;
}


input:not([type="checkbox"])
     :not([type="radio"])
     :not([type="file"])
     :not([type="date"])
     :not([type="datetime-local"])
     :not([type="month"])
     :not([type="week"])
     :not([type="time"])
     :not([type="color"]):focus,
textarea:focus,
select:focus {
  -webkit-appearance:none;
  appearance:none;
  box-shadow:none;
  outline:none;
}

.welcome_container {
    position:fixed;
    display:block;
    left:0px;
    top:0px;
    height:fit-content;
    width:fit-content;
    z-index:99;
}

.welcome_box {
    position:relative;
    display:block;
    left:0px;
    top:0px;
    height:fit-content;
    width:fit-content;
    max-width:300px;
    padding: 17px 15px 13px 12px;
    border-radius: 0px 20px 20px 0px;
}

.theme-picker{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
    margin-top:10px;
}

.theme-option{
    width:70px;
    height:70px;
    cursor:pointer;
    border:4px solid transparent;
    border-radius:50%;
    transition:0.2s;
}

.theme-option:hover {
    -webkit-box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .65);
    box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .65);
}

.theme-option.active{
    border:4px solid var(--orange);
}

.special_message_modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 360px;
    height: fit-content;
    z-index: 20000;

    border-radius: 20px;

    justify-content: center;
    align-items: center;

    -webkit-box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .45);
    box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, .45);
}

.special_message_modal_content {
    max-width: 600px;
    width: 90%;
    padding: 20px;
    position: relative;
}

.special_message_modal_close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 24px;
}

.special_message_overlay {
  position:fixed;
  display:none;
  height:100vh;
  width:100vw;
  opacity:.7;
  z-index:19000;
}

.read_more_msg {
    padding:5px 7px 6px 7px;
    border-radius: 50%;
}

.profile_hero_box {
    position:relative;
    display:block;
    width:100vw;
    height:55vh;
    z-index:98;
    top:0px;
    left:0px;
    background-size:cover;
    background-position:center;
    border-radius: 0px 0px 100px 0px;
}

@media (max-width: 900px) {
  body {
    font-size:12px;
  }
  
  h3 {
    font-size:24px;
  }
  
  .column_half {
    padding:20px;
    width:40%;
  }

  .menu_portsicleicon_open{
    transform:scale(1);
  }

  .menu_portsicleicon_closed{
    transform:scale(1);
    -webkit-transition: transform .2s ease;
    -ms-transition: transform .2s ease;
    transition: transform .2s ease;
    }

  .footer_open {
    right:30px;
    transform:translateX(0%);
    bottom:-100px;
  }

  .footer_closed {
    right:30px;
    transform:translateX(0%);
    bottom:-240px;
  }

  .featured_background_box {
    height:45vh;
    border-radius: 0px 0px 50px 0px;
  }

  .profile_hero_box {
    height:32vh;
    border-radius: 0px 0px 50px 0px;
  }

  .avatar {
    width:80px;
    height:80px;
    left:7px;
    top:7px;
  }

  .avatar_container {
    height:100px;
    top:calc(32vh - 92px);
  }

  .avatar_profile_block {
    position:relative;
    display:inline-block;
    width:350px;
    height:100%;
    border-radius: 45px 50px 0px 0px;
  }

  .avatar_profile_block_cornerright {
    display:block;
    height:40px;
    width:40px;
    left:350px;
    top: -60px;
  }

  .avatar_profile_block_info {
    margin-top:12px;
    width:220px;
  }

  .avatar_profile_block_buttons {
    margin-top:6px;
  }

  .bio_surround {
    margin-top:20px;
  }
}

@media (max-width: 400px) {
  .column_half {
    padding:10px;
    width:90%;
  }

  .menu_portsicleicon_open{
    transform:scale(1);
  }

  .menu_portsicleicon_closed{
    transform:scale(1);
    -webkit-transition: transform .2s ease;
    -ms-transition: transform .2s ease;
    transition: transform .2s ease;
  }

  .footer_open {
    left:50vw;
    transform:translateX(-50%);
    bottom:-120px;
  }

  .footer_closed {
    left:50vw;
    transform:translateX(-50%);
    bottom:-199px;
  }

  .featured_background_box {
    height:50vh;
    border-radius: 0px 0px 0px 0px;
  }

  .profile_hero_box {
    height:50vh;
    border-radius: 0px 0px 50px 0px;
  }

  .avatar {
    width:60px;
    height:60px;
    left:7px;
    top:7px;
  }

  .avatar_container {
    height:100px;
    top:calc(45vh - 40px);
    width:100vw;
  }

  .avatar_profile_block {
    position:relative;
    display:inline-block;
    width:100%;
    height:100%;
    border-radius: 37px 50px 0px 0px;
  }

  .avatar_profile_block_cornerright {
    display:none;
  }

  .avatar_profile_block_info {
    margin-top:12px;
    width:300px;
  }

  .avatar_profile_block_buttons {
    margin-top:6px;
  }

  .bio_surround {
    margin-top:55px;
  }
}
