.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.background-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

img {
    display: block;
    max-width: 100%;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.img-responsive {
    display: block;
    max-width: 100%;
}

.rounded-corners {
    border-radius: .5rem;
}

.rounded-corners-small {
    border-radius: .25rem;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

    .bg > video, .bg > img, .bg > span, .bg > figure {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: block;
        position: relative;
    }

.image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nowrap {
    white-space: nowrap;
}

button.blank {
    padding: 0;
    border: 0;
    background: transparent;
    outline: 0;
  }

.list-inline {
    padding-left: 0;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    list-style: none;
  
    > li {
      display: inline-block;
      padding-right: 0.5rem;
      padding-left: 0.5rem;
      margin-top: 0;
      margin-bottom: 0;
    }

    @media (min-width:991px) {
        margin-left: -0.7rem;
        margin-right: -0.7rem;

        > li {
            padding-right: 0.7rem;
            padding-left: 0.7rem;
          }
    }
  }

  .bc-list {
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
  
    li {
      display: inline-block;
      position: relative;
      padding: 0;
      padding-right: 0.8rem;
      margin-right: 0.1rem;
      color: var(--white);
      font-size: var(--fs-xs);
  
      a {
        color: inherit;
        text-decoration: none;
  
        &:hover {
          text-decoration: none;
          opacity: 0.8;
        }
      }
  
      &:after {
        content: ">";
        display: inline-block;
        position: absolute;
        top: 45%;
        right: 0;
        transform: translateY(-50%);
      }
  
      &:last-child {
        padding-right: 0;
        margin-right: 0;
        font-weight: 700;
  
        a {
          pointer-events: none;
        }
  
        &:after {
          display: none;
        }
      }
    }
  }

  .bc-list + h1 {
    margin-top: 0;
  }

.row-split > div {
    position: relative;
}

    .row-split > div:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 1px;
        background-color: var(--black);
    }

    @media (max-width:767px) {
        .row-split > div:before {
            display: none;
        }
    }

.row-split > div:last-child:before {
    display: none;
}

.crop-image16x9 {
    position: relative;
    display: block;
    padding-bottom: 56.25%;
}

    .crop-image16x9 .play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100px;
    }

.crop-image70 {
    position: relative;
    display: block;
    padding-bottom: 70%;
}

.crop-image100 {
    position: relative;
    display: block;
    padding-bottom: 100%;
}

/* Jump Nav */
.JumpNav {
    position: absolute;
    top: -200px;
    z-index: 500;
    color: #ffffff;
    background: #666666;
    padding: 5px;
}

    .JumpNav:focus {
        top: 0;
        left: 0;
        color: #ffffff;
    }

.moncur-bug {
    position: relative;
    display: inline-block;
    width: 0.75em;

    @media (min-width:768px) {
        margin-left: 1.5rem;
        top: .25em;
    }

    @media (max-width:767px) {
        display: block;
        margin: 0 auto;
        margin-top: 1em;
    }

    img {
        opacity: 0.4;
        -webkit-transition: all .15s;
        transition: all .15s;
    }

    &:hover, &:focus, &:active {

        &:before {
            opacity: 1;
        }

        img {
            opacity: 0.8;
        }
    }
}
