/* PROFILE START 
COLOR CODES:
use find & replace in a word processor to quickly change all hex codes
DEFAULT COLORS:
Text: #14171a
Dark Gray: #31333d 
Gray: #6c757d
Light Gray (Timeline): #a5abb0
Lightest Gray (Divider): #e1e8ed
Near-White (Timeline): #F7F7F7
Ourple: #857afa
Ourple Dark: #545d97
*/

/* PROFILE BASE */
.profilecontainer {
    width: 100%;
    margin: auto;
    align-content: center;
    /* FIGURE OUT A FUCKING FONT */
  }
  
  .profilebg {
    width: 100%;
    height: auto;
    padding: 4rem;
    margin-bottom:-1px;
    background-image: url('https://i.postimg.cc/50sSLChS/bg-def.png');
  }
  @media only screen and (max-width: 768px) {
    .profilebg {
      width: 100%;
      padding:1rem;
    }
  }
  .profilecontent {
    font-size: 10.5pt;
    max-width: 1600px;
    margin: auto;
    text-align: left;
  }
    #info {
      text-align:center;
    }
  

  /* TAB NAMES */
  .tabname {
    border-bottom: 1px solid #e1e8ed;
    padding: 1rem 1rem 0 1rem;
    text-align: left;
  }
  .tabname h1 {
    color: #857afa;
    font-size:2.5em;
    letter-spacing:1px;
    text-transform:uppercase;
  }
  
  /* TAB CONTENT */
  .tabcontent {
    padding: 1rem 1rem 0 1rem;
    height: 600px;
    overflow: auto;
    font-size: 16px;
    color: #14171a;
  }
  .tabcontent a {
    color: #857afa;
    text-decoration: none;
  }
  .tabcontent a:hover {
    color: #545d97;
    text-decoration:underline;
  }
  .tabcontent hr {
    color: #e1e8ed;
    clear:both;
  }
  .tabcontent h4 {
    font-size: 20px;
    font-weight: bold;
  }
  .tabcontent h3 {
    font-size: 24px;
    font-weight: bold;
  }
  .tabcontent h2 {
    font-size: 28px;
    font-weight: bold;
  }
  .tabcontent h1 {
    font-size: 32px;
    font-weight: bold;
  }

  /* TAB CONTENT-SPECIFIC */
   #details ul {
    list-style-type:square;
    list-style-position: outside;
  }
    #timeline ul {
    list-style-type:none;
  }
    #palette {
    height: 100px;
    border-radius: .25em; 
    margin-bottom:0.5rem;
  }

  /* INTRO IMG */
  .intro {
  background-position:center center;
  background-size:cover;
  padding-top: 100%;
  padding:0.25rem;
  height:350px;
  border:0;
  }
  @media only screen and (max-width: 576px) {
    .intro {
      height:164px;
      width:164px;
      margin:auto;
    }
  }

  /* QUOTES */
  .introquote {
    text-align: center;
    letter-spacing:0.5px;
    padding:0.5rem;
    margin-bottom:1.5rem;
  }
  .bioquote {
    padding: 0.5rem 1rem 0.5rem 1rem;
    background-color: #31333d;
    border-radius: 5px;
    text-align: center;
  }
  .bioquote p {
    margin-bottom:0.25rem;
    font-size:1em;
    letter-spacing: 1px;
    color: white;
    font-weight: bold;
  }

  /* FOCAL & CAROUSEL IMAGES */
  .focalimg, .carouselimg {
    background-color: white;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 250px;
    width:100%;
    height:100%;
    border-radius: 5px;
    border:0;
  }
  .focalimg {
    position:relative;
  }
  .focaltxt, .vitrinetxt {
    border-radius: 0 0 3px 3px;
    display: block;
    padding: 0.5rem;
    position:absolute;
    color: white;
    background-color: #31333d;
    opacity:0;
    bottom:0;
    right:0;
    left:0;
    font-style: italic;
    text-transform:lowercase;
    text-align: center;
    font-size:16px;
    transition:0.2s;
  }
  @media only screen and (min-width: 1182px) {
    .carouselimg {
      height:719px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 1182px) {
    .carouselimg {
      height:770px;
    }
  }

/* CAROUSEL STYLE */
  .carousel-item {
    background-color: white;
    border-radius: 6px;
  }
  .carouseltxt {
    border-radius: 0 0 3px 3px;
    display: block;
    padding: 0.5rem;
    margin-top: auto;
    color: white;
    background-color: #31333d;
    opacity: 0;
    font-style: italic;
    text-transform:lowercase;
    text-align: center;
    font-size:16px;
    transition:0.2s;
  }
  .carouselnav {
    opacity:0;
    transition:0.2s;
    text-shadow: 2px 0 #14171a, -2px 0 #14171a, 0 2px #14171a, 0 -2px #14171a,
             1px 1px #14171a, -1px -1px #14171a, 1px -1px #14171a, -1px 1px #14171a, 1px 1px 2px #14171a;
  }
  .carouselnav:hover {
    opacity:1;
    color:white;
    text-shadow: 2px 0 #14171a, -2px 0 #14171a, 0 2px #14171a, 0 -2px #14171a,
             1px 1px #14171a, -1px -1px #14171a, 1px -1px #14171a, -1px 1px #14171a, 1px 1px 2px #14171a;
  }
  .carouselnav:active {
    color: #6c757d;
  }
  .carousel-control-prev:focus:not(:hover), .carousel-control-next:focus:not(:hover)  {
      opacity:0;
  }
  
  /* TIMELINE */
  .tabcontent table {
    border: none;
    width: 100%;
  }
  .tabcontent #year {
    padding: 1.5rem 1rem 0 0;
    text-align: right;
    border-right: 2px solid #a5abb0;
    vertical-align: top;
  }
  .tabcontent #desc {
    background-color: #e1e8ed;
    border-radius: 5px;
    padding: 1rem;
    margin: 0 0 0.25rem 0.5rem;
  }
  
  /* TIMELINE CONTENT */
  .bubble {
    background-color: #F7F7F7;
    padding: 1rem;
    margin-left:0.5rem;
    margin-bottom:0.25rem;
    border-radius:3px;
  }
  .event {
    padding-top:1rem;
    padding-right:1rem;
    text-align:right;
    border-right:2px solid #a5abb0;
    vertical-align:top;
    width:15%;
  }
  .dot {
    color: #857afa;
  }
  
  /* OC LINK CONTENT */
  .ocdot {
    color: #a5abb0;
    letter-spacing: 3px;
  }
    /* LINK IMGS */
  .linkimg {
    display:block;
    padding:1em;
    margin-bottom:0.5em;
    width:11em;
    height:11em;
    margin-left:auto;
    margin-right:auto;
    border-radius: 50%;
  }
  
  /* VITRINE CONTENT */
  .vitrine {
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 97%;
  padding:0.25rem;
  height:260px;
  border:0;
  position: relative;
  }
  @media only screen and (max-width: 576px) {
    .vitrine {
      height:165px;
      width:165px;
      margin:auto;
    }
  }
  .vitrinetxt:hover, .carouseltxt:hover, .focaltxt:hover {
    opacity: 0.9;
  }

  /* CUSTOM COLUMN WIDTH */
  .col-3h, .col-sm-3h, .col-md-3h, .col-lg-3h, .col-xl-3h, .col-xxl-3h {
    flex: 0 0 auto;
    width: 30%;
  }
  .col-8h, .col-sm-8h, .col-md-8h, .col-lg-8h, .col-xl-8h, .col-xxl-8h {
    flex: 0 0 auto;
    width: 70%;
  }
   @media only screen and (max-width: 768px) {
    .col-3h, .col-sm-3h, .col-md-3h, .col-lg-3h, .col-xl-3h, .col-xxl-3h, .col-8h, .col-sm-8h, .col-md-8h, .col-lg-8h, .col-xl-8h, .col-xxl-8h {
      width:100%;
    }
  }

  /* TOOLTIP */
.tooltip-inner { 
  background-color: #31333d;
  font-size:1em;
  text-transform:lowercase;
  width:fit-content;
  }
  .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #31333d;
  }
  .tooltip.show {
     opacity:1;
  }

  /* TAB BUTTONS */
  .tabmenu {
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .tabbut {
    margin-bottom:0.5rem;
    margin-left:0.25rem;
    margin-right:0.25rem;
    border-radius:4px;
    background-color: #857afa;
    transition:0.2s;

  }
  #butone {
    margin-left:0;
  }
  #butcred {
    margin-right:0;
  }
  .tabbut:hover {
    background-color: #6c757d;
  }
  .tablink {
    border:3px solid rgba(108, 117, 125,0.5);
    border:0;
    color:white;
  }
  .tablink:hover {
    color:white;
  }

  /* PAGINATION */
  .ocprev, .ocnext {
    height:50px;
    width:50px;
    background-color: #857afa;
    color: white;
    border-radius:50%;
    position:absolute;
    text-align:center;
    font-size:2em;
  }
  .ocprev {
    left:0.5%;
    top:50vh;
  }
  .ocnext {
    right:0.5%;
    top:50vh;
  }
    @media only screen and (max-width: 768px) {
    .ocprev {
      position: static;
      margin-right:3em;
      padding: 0px 12px 0px 12px;
    }
    .ocnext {
      position: static;
      margin-left:3em;
            padding: 0px 12px 0px 12px;
    }
  }
  .ocprev:hover, .ocnext:hover {
    background-color: #545d97;
    color: white;
  }
  .ocprev:active, .ocnext:active {
    background-color: #857afa;
    color: white;
  }
