/* NAV */
ul.main.v2 li {
  position: relative;
}
ul.main.v2 li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  min-width: 350px;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.25);
  background: #fff;
  padding: 0 1.5rem 1.5rem;
}
.dropdown h5 {
  font-size: 16px;
  margin: 1.5rem 0 0 10px;
  padding-bottom: 1.5rem;
  position: relative;
  text-align: left;
}
.dropdown h5::after {
  content: '';
  background: #C4D1DB;
  width: 100%;
  bottom: 0.75rem;
  height: 2px;
  left: 0;
  right: 0;
  position: absolute;
  display: block;
  transform: skew(-45deg);
}
.dropdown ul.col {
  list-style-type: none;
  margin: 0 1rem 0 0;
  padding: 0;
}
.dropdown li {
  text-align: left;
  border-radius: 6px;
  padding: 0 10px 0 10px;
}
.dropdown li a {
  font-size: 14px;
  color: #263644;
  text-decoration: none;
  padding: 0.25rem 0.125rem;
  margin: 0;
  transition: 0.1s ease-in-out;
  position: relative;
  z-index: 3;
  display: flex;
}
.dropdown li span.chevron {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  padding-left: 10px;
}
.dropdown li svg {
  color: #fff;
}
.dropdown li:hover {
  background: #F1F7FB;
  transition: 0.1s ease-in-out;
}
.dropdown li:hover svg {
  color: #ccc;
}
.dropdown li:hover a {
  color: #1593FF;
}

/* CONTEXT */
ul.context.v2 {
  margin-bottom: 0;
  border-bottom: none;
  background-color: #f8f9f9;
  border-top: 1px solid #E4EFF7;
}
ul.context.v2 > li:first-child {
  background-color: #f8f9f9;
  padding-right: 0;
}
ul.context.v2 > li:first-child span {
  padding-right: 20px;
  border-right: 2px solid #E4EFF7;
  color: black;
}
ul.context.v2 > li.active {
  background-color: #1493ff;
}
ul.context.v2 > li.active > a {
  color: white;
  font-weight: 400;
}
ul.context.v2 > li.active > a:hover {
  color: white;
}

/* title-container:not(.player):not(.box) */
div.title-container:not(.player):not(.box) {
    margin-bottom: 1rem;
}
/* title-container:not(.team) */
div.title-container:not(.team) {
    position: relative;
}
div.title-container:not(.team) img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    z-index: 0;
}
div.title-container:not(.team) div.inner {
    position: relative;
}
div.title-container:not(.team) div.inner h1 {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    padding: 0.7rem 0 0.7rem 1rem;
    display: flex;  /* for span.postfix */
    margin: 0;
}
div.title-container:not(.team) div.inner h1 span.postfix {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    color: #ccc;
    font-weight: normal;
    border-left: 1px solid #ccc;
    padding-left: 1rem;
    margin-left: 1rem;
    margin-top: 3px;
    margin-bottom: 3px;
}