/**************************
        Misc.
**************************/

::selection {
  background-color: #BE122A;
}

.uk-navbar-nav {
  font-size: 0px;
}

.uk-navbar-nav>li {
  margin: 0;
  font-size: 14px;
}


/**************************
        Fonts
**************************/
@font-face {
    font-family: "Archive";
    src: url("../fonts/archive.otf") format("opentype");
}


/**************************
    Body + Content
**************************/

html, body {
    width: 100%;
    height: 100%;
    background: #F2F2F2;
}

.content-box {
    position: absolute;
    width: 100%;
    max-width: 1330px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background: #FFFFFF;
}

.video-overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;

    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.0);

    transition: all 0.4s;
    pointer-events: none;

    display: -webkit-flex;
    -webkit-transition: all 0.4s;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.video-overlay iframe {
    display: none;
    width: 100%;
    height: 100%;
    max-width: 960px;
    max-height: 540px;

    border: solid 2px #CCCCCC;
    background: #000000;

    overflow: hidden;
}

/**************************
    Navbar + Menu
**************************/

.mouz-navbar {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    background: none;
    border: none;
    box-shadow: none;
}

.mouz-navbar nav {
    background: none;
}

ul.mouz-navbar-nav li:hover a {
    color: white;
}

ul.mouz-navbar-nav li a {
    display: inline-block;
    margin: 0 12px;
    padding: 0;
    color: white;
    font-family: 'Archive';
    font-size: 14px;
    text-transform: uppercase;
    background: none;
}

ul.mouz-navbar-nav li.mouz-active a,
ul.mouz-navbar-nav li a:hover {
    box-shadow: inset 0px 4px 0px 0px white;
    -webkit-box-shadow: inset 0px 4px 0px 0px white;
    -webkit-appearance: none;
    background: none;
}

ul.mouz-navbar-nav li a:hover,
ul.mouz-navbar-nav li a:focus {
    color: white;
}

.mouz-mobile-menu {
    position: relative;

    display: none;
    overflow: hidden;
    width: 100%;
    min-height: 65px;

    background: #BE122A;
}

.mouz-mobile-menu .menu {
    margin-top: -100%;

    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.mouz-mobile-menu .menu .mouz-navbar-nav {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;

    margin: 5px 0px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    -webkit-flex-direction: column;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.mouz-mobile-menu .menu .mouz-navbar-nav > li > a {
    height: 50px;
    margin: 5px 0px;
    padding: 0 16px;

    line-height: 46px;
}

.mouz-mobile-menu .menu ul.mouz-navbar-nav li.mouz-active a {
    border: solid 3px white;
    border-radius: 2px;
    box-shadow: none;
}

.mouz-mobile-menu .menu ul.mouz-navbar-nav li a:hover {
    box-shadow: none;
}

.mouz-mobile-menu .bottom {
    position: absolute;
    bottom: 0px;

    width: 100%;
    height: 65px;
}

.mouz-mobile-menu .logo {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);

    width: auto;
    height: 32px;
    margin-top: -3px;
}

.mouz-mobile-menu #nav-toggle {
    position: fixed;
    right: 45px;
    top: 28px;
}

.mouz-mobile-menu #nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
    position: absolute;

    display: block;
    height: 3px;
    width: 25px;
    border-radius: 1px;

    background: white;

    content: '';
    cursor: pointer;
}

.mouz-mobile-menu #nav-toggle span:before {
    top: -7px;
}

.mouz-mobile-menu #nav-toggle span:after {
    bottom: -7px;
}

.mouz-mobile-menu #nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
}

.mouz-mobile-menu #nav-toggle.active span {
    background-color: transparent;
}

.mouz-mobile-menu #nav-toggle.active span:before, #nav-toggle.active span:after {
    top: 0;
}

.mouz-mobile-menu #nav-toggle.active span:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.mouz-mobile-menu #nav-toggle.active span:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}


/**************************
    Header
**************************/

.mouz-header {
    vertical-align: middle;
    position: relative;
    height: 656px;
    overflow: hidden;
}

.mouz-header .header-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-size: cover;
    background-position: center;
    background-image: url('/packages/mouz/mouzTheme/images/header.jpg');
}

.mouz-header .header-video {
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: -1000;
    overflow: hidden;
}

.mouz-header .color-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #BE122A;
    opacity: 0.9;
}

.mouz-header .teams {
    position: absolute;
    left: 35%;
    top: 27px;
    transform: translateX(-65%);
    -webkit-transform: translateX(-65%);
    z-index: 1000;
}

.mouz-header .teams a {
    margin-left: 5px;
}

.mouz-header .teams a:first-of-type {
    margin-left: 0px;
}

.mouz-header .teams a img.logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.mouz-header .teams a:hover img.logo {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
}

.mouz-header .headline {
    position: absolute;
    min-width: 80%;
    max-width: 100%;
    left: 50%;
    top: 50%;
    margin: 0;
    padding: 0 10%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    text-align: center;
    line-height: normal;
    color: #FFFFFF;
    font-family: 'Archive';
    font-size: 60px;
    box-sizing: border-box;
}

.mouz-header .arrow-left {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 10000;
    cursor: pointer;
}

.mouz-header .arrow-left.closer {
    left: 40px;
}

.mouz-header .arrow-right {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 10000;
    cursor: pointer;
}

.mouz-header .arrow-right.closer {
    right: 40px;
}


/**************************
      Content Layout
**************************/

.mouz-container {
    position: relative;
    width: 100%;
    max-width: 1330px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.mouz-container .headline {
    margin: 30px 0 50px 0;
    text-align: center;
    text-transform: uppercase;
    color: #BE122A;
    font-family: 'Archive';
    font-size: 60px;
    line-height: 72px;
}

.mouz-container p {
    margin: 0px;
}

.mouz-container.story img {
    position: relative;
    width: 980px;
    height: auto;
    left: 50%;
    margin: 20px 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    max-width: none;
}

.mouz-container h1 {
    text-transform: uppercase;
    color: #BE122A;
    font-family: 'Archive';
    font-size: 36px;
}

.mouz-container blockquote {
    position: relative;
    width: 640px;
    left: 50%;
    margin: 60px 0 65px 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    border: none;
}

.mouz-container blockquote .border {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    margin: 20px 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border: none;
    background: #BE122A;
}

.mouz-container .button {
    display: -webkit-flex;
    display: flex;
    position: relative;
    width: 135px;
    height: 35px;
    left: 50%;
    margin-top: 30px;
    padding-bottom: 2px;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    -webkit-transform: translateX(-50%);
    -webkit-align-items: center;
    -webkit-justify-content: center;
    text-align: center;
    font-family: 'Archive';
    font-size: 12px;
    line-height: normal;
    color: whitesmoke;
    background: #BE122A;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.mouz-container .button:hover {
    text-decoration: none;
    background: #A2162E;
}

.mouz-flex-grid {
    display: -webkit-flex;
    display: flex;
}

.mouz-flex-column {
    flex: 1;
    padding: 50px 0;
    justify-content: center;

    -webkit-flex: 1;
    -webkit-justify-content: center;
}

.mouz-flex-column .description {
    padding: 0 50px;
    color: #6F6F6F;
    text-align: center;
    font-size: 15px;
}

.mouz-list .title {
    margin-bottom: 25px;
    text-align: center;
    color: #BE122A;
    font-family: 'Archive';
    font-size: 36px;
}

.mouz-list .separator {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background: #BE122A;

    -webkit-transform: translateX(-50%);
}

.mouz-list .items {
    margin-top: 20px;
}

.mouz-list .items p {
    text-align: center;
    cursor: default;
}

.mouz-list .items .title {
    margin: 0;
    margin-top: 30px;
    font-size: 14px;
}

.mouz-list .items .title.red {
    color: #BE122A;
}

.mouz-list .items a.title {
    color: #BE122A;
}

.mouz-list .items a.title p {
    margin: 0;
    margin-top: 30px;
}

.mouz-list .items p.title {
    color: #6F6F6F;
}

.mouz-list .items .description {
    margin: 0;
    text-align: center;
    color: #6F6F6F;
    font-size: 14px;
}


/**************************
  Sponsors (Top + Bottom)
**************************/

.mouz-sponsors {
    display: -webkit-flex;
    display: flex;
    width: 100%;

    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-flex-wrap: wrap;
}

.mouz-sponsors > div {
    height: 125px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-flex-wrap: wrap;
}

.mouz-sponsors .head {
    position: relative;
    padding: 0 25px;
    margin-right: 30px;
    box-sizing: border-box;
}

.mouz-sponsors .head p {
    position: absolute;
    top: 0px;
    margin: 0;
    height: 0;
  	width: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;

    -webkit-transform: translateX(-50%);
}

.mouz-sponsors .head p.label {
    font-family: 'Archive';
    font-size: 13px;
    top: -1px;
    color: #FFF;
    cursor: default;
}

.mouz-sponsors .head p.trapezoid {
    border-top: 25px solid #B9B9B9;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.mouz-sponsors .head .right-border {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 50px;
    background: #CCCCCC;
}

.mouz-sponsors .logo {
    display: inline-block;
    position: relative;
    width: auto;
    height: auto;
    max-height: 50px;
    max-width: 140px;
    margin: 0px 30px;
}

.mouz-sponsors.footer .partner {
    width: 200px;
}


/**************************
      Product banners
**************************/

.mouz-banners {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 373px;
    margin-bottom: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Archive";
    overflow: hidden;
    background: #BE122A;
    cursor: default;

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

.mouz-banners .empty {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    opacity: 0.5;
    background: none;
    transition: all 0.2s;

    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-transition: all 0.2s;
}

.mouz-banners .empty:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.mouz-banners a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    overflow: hidden;
}

.mouz-banners div.banner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.2s;

    -webkit-transition: all 0.2s;
}

.mouz-banners div.banner:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.mouz-banners .highlight {
    flex: 0.65;
    position: relative;
    height: 100%;
    font-size: 24px;

    -webkit-flex: 0.65;
}

.mouz-banners .grid {
    flex: 0.35;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    position: relative;
    flex-direction: column;

    -webkit-flex: 0.35;
    -webkit-flex-direction: column;
}

.mouz-banners .panorama {
    flex: 1;
    position: relative;

    -webkit-flex: 1;
}

.mouz-banners .columns {
    flex: 1;
    display: -webkit-flex;
    display: flex;
    position: relative;

    -webkit-flex: 1;
}

.mouz-banners .compact {
    flex: 1;
    display: -webkit-flex;
    display: flex;
    position: relative;

    -webkit-flex: 1;
}

.mouz-banners .store-link {
    flex: 1;
    display: -webkit-flex;
    display: flex;
    position: relative;

    -webkit-flex: 1;
}

.mouz-banners .store-link a {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: white;
    background: none;
    transition: background 0.2s;

    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-transition: background 0.2s;
}

.mouz-banners .store-link a:hover {
    text-decoration: none;
}

.mouz-banners .store-link a:hover {
    background: rgba(0, 0, 0, 0.2);
}

.mouz-banners .mobile-banners {
    display: none;
}


/**************************
          Home
**************************/

.mouz-header.home {
    position: relative;
    overflow: auto;
}

.mouz-header.home .indicators {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    left: 65px;
    bottom: 50px;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;

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

.mouz-header.home .indicator {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 7px;
    border-radius: 50%;
    border: solid 3px rgba(255, 255, 255, 0.0);
    box-shadow: inset 7px 7px 0 #FFFFFF;
    transition: box-shadow 0.4s, border 0.2s;

    -webkit-transition: box-shadow 0.4s, border 0.2s;
}

.mouz-header.home .indicator.active {
    border: solid 3px rgba(255, 255, 255, 1.0);
    box-shadow: inset 7px 7px 0 rgba(255, 255, 255, 0.0);
}

.mouz-header.home .stories-button {
    position: absolute;
    width: 33px;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%);
    margin: -10px;
    padding: 10px;
    z-index: 10000;
    cursor: pointer;
    box-sizing: border-box;

    -webkit-transform: translateX(-50%);
}

img.stories-button-image {
    position: absolute;
    left: 30%;
    bottom: 55px;
    transform: translateX(-50%);
    z-index: 10000;
    cursor: pointer;

    -webkit-transform: translateX(-50%);
}

.mouz-header.home .stories-button .line {
    display: block;
    position: relative;
    width: 23px;
    height: 2px;
    margin-top: 6px;
    background: #FFFFFF;
    transition: all 0.2s;

    -webkit-transition: all 0.2s;
}

.mouz-header.home .stories-button .line.left {
    left: 0px;
}

.mouz-header.home .stories-button .line.right {
    left: 10px;
}

.mouz-header.home .stories-button .line.middle {
    left: 5px;
}

.mouz-header.home .stories-button:hover .line.left,
.mouz-header.home .stories-button:hover .line.right {
    left: 5px;
}

.mouz-header.home .scroll-down-button {
    position: absolute;
    right: 65px;
    bottom: 55px;
    padding: 10px;
    margin: -10px;
    z-index: 10000;
    cursor: pointer;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;

    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
}

.mouz-header.home .scroll-down-button:hover {
    animation-name: scroll-down;
    -webkit-animation-name: scroll-down;
}

.mouz-header.home .latest-posts {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: nowrap;
    overflow: hidden;

    -webkit-flex-wrap: nowrap;
}

.mouz-header.home .latest-posts .post {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 100%;
}

.mouz-header.home .latest-posts .post .headline {
    z-index: 1000;
}

.mouz-container.home .mouz-flex-column h1 {
    text-align: center;
    font-size: 60px;
}

.mouz-container.home .mouz-flex-column.content {
    margin: 100px 0;
}

.mouz-container.home .mouz-flex-column.content p {
    padding: 0 100px;
    text-align: center;
    font-size: 14px;
    color: #6F6F6F;
}

.mouz-container.home .random-player {
    display: -webkit-flex;
    display: flex;
    padding: 0px;
    align-items: flex-end;

    -webkit-align-items: flex-end;
}

.mouz-container.home .random-player .player-info {
    display: -webkit-flex;
    display: flex;
    height: 100%;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    text-align: left;

    -webkit-flex: 1;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
}

.mouz-container.home .random-player .player-info .name {
    margin: 0;
    font-family: 'Archive';
    font-size: 18px;
}

.mouz-container.home .random-player .player-info .description {
    margin-top: 12px;
    margin-bottom: 113px;
    padding: 0;
    text-align: left;
    padding-right: 20px;
    font-size: 14px;
}

.mouz-container.home .random-player .picture {
    flex: 1;
    text-align: left;

    -webkit-flex: 1;
}

.mouz-container.home .instagram-feed {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-wrap: wrap;

    -webkit-flex-wrap: wrap;
}

.mouz-container.home .instagram-image {
    width: 33%;
    padding: 50px;
    box-sizing: border-box;
    overflow: hidden;
}

.mouz-container.home .instagram-image .insta-image {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.mouz-container.home .instagram-image .insta-image:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.mouz-container.home .instagram-image a {
    text-decoration: none;
}

.mouz-container.home .instagram-image .insta-data {
    width: 100%;
    padding: 8px 4px 0px 4px;
    box-sizing: border-box;
    cursor: default;
}

.mouz-container.home .instagram-image .insta-data span {
    position: relative;
    top: 1px;
    margin-left: 2px;
    margin-right: 12px;
    font-size: 14px;
    color: #A5A5A5;
}

.mouz-container.home .instagram-image .insta-data span.account-name {
    float: right;
    margin-right: 0px;
    text-align: right;
    font-weight: bold;
    color: #BE122A;
}

.mouz-container.home .instagram-image .insta-data span.account-name:hover {
    text-decoration: underline;
}

.mouz-container.home .instagram-image .insta-description {
    margin: 0;
    padding: 6px 4px;
    color: #A5A5A5;
    font-size: 14px;
}

.mouz-container.home .instagram-image .insta-description:hover {
    text-decoration: underline;
    color: #BE122A;
}


/**************************
          Team
**************************/

.mouz-header .team-name {
    position: absolute;
    width: 100%;
    top: 115px;
    margin: 0;
    padding: 0 10%;
    text-align: center;
    line-height: normal;
    color: #FFFFFF;
    font-family: 'Archive';
    font-size: 36px;
    box-sizing: border-box;
}

.mouz-header .separator {
    position: absolute;
    width: 110px;
    height: 3px;
    left: 50%;
    top: 175px;
    transform: translateX(-50%);
    background: #FFFFFF;

    -webkit-transform: translateX(-50%);
}

.mouz-header .team-players {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: 450px;
    max-width: 1330px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    padding-left: 50px;
    align-items: flex-end;
    justify-content: center;

    -webkit-transform: translateX(-50%);
    -webkit-align-items: flex-end;
    -webkit-justify-content: center;
}

.mouz-header .team-players .team-player {
    margin-left: -50px;
    z-index: 0;
}

.mouz-header .team-player .player-name {
    position: relative;
    top: 3px;

    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Archive';
    font-size: 14px;
    transition: all 0.4s;

    opacity: 0.5;

    -webkit-transition: all 0.4s;
}

.mouz-header .team-players .team-player img.player-picture {
    position: relative;
    top: 10px;

    max-height: 400px;

    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.mouz-header .team-players .team-player:hover {
    z-index: 1;
}

.mouz-header .team-players .team-player:hover .player-name {
    top: 0px;

    font-size: 16px;
    opacity: 1.0;
    text-decoration: underline;
    color: white;
}

.mouz-header .team-players .team-player:hover img.player-picture {
    top: 0px;
}

.mouz-header .team-players .team-player.fadeout img.player-picture {
    filter: opacity(0.8) grayscale();
    -webkit-filter: opacity(0.8) grayscale();
}


/**************************
         Player
**************************/

.mouz-header .player {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: 450px;
    max-width: 1330px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    align-items: flex-end;

    -webkit-transform: translateX(-50%);
    -webkit-align-items: flex-end;
}

.mouz-header .player .picture {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;

    -webkit-align-items: flex-end;
    -webkit-justify-content: center;
}

.mouz-header .player .picture img {
    height: 97%;
    width: auto;
}

.mouz-header .player .data {
    display: -webkit-flex;
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    margin-right: 16%;
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    box-sizing: border-box;

    -webkit-flex-direction: column;
    -webkit-align-items: flex-end;
    -webkit-justify-content: flex-start;
}

.mouz-header .player .description {
    max-width: 25%;
    text-align: justify;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: default;
}

.mouz-header .player .social {
    text-align: right;
}

.mouz-header .player .social a {
    margin: 0 3px;
}

.mouz-header .player .info {
    margin-top: 25px;
    text-align: right;
}

.mouz-header .player .row {
    font-family: 'Archive';
    text-transform: uppercase;
    cursor: default;
}

.mouz-header .player .row .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.mouz-header .player .row .value {
    margin-left: 6px;
    color: rgba(255, 255, 255, 1);
}

.mouz-list .team-plays,
.mouz-list .player-equipment {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-bottom: 65px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;

    -webkit-flex-wrap: wrap;
    -webkit-align-items: flex-start;
    -webkit-justify-content: center;
}

.mouz-list .team-plays .play,
.mouz-list .player-equipment .product {
    width: 25%;
    width: 238px;
    min-width: 238px;
    margin: 65px 30px 0px 30px;
}

.mouz-list .team-plays .play:hover,
.mouz-list .player-equipment .product:hover {
    text-decoration: none;
}

.mouz-list .team-plays .play .thumbnail,
.mouz-list .player-equipment .product .thumbnail {
    position: relative;
    height: 185px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.2s;
    cursor: pointer;

    -webkit-transition: all 0.2s;
}

.mouz-list .player-equipment .product .thumbnail {
    background-size: contain;
}

.mouz-list .team-plays .play .thumbnail .play-button {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    background: rgba(190, 18, 42, 0.8);
    transition: all 0.4s;

    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-transition: all 0.4s;
}

.mouz-list .team-plays .play .thumbnail .empty,
.mouz-list .player-equipment .product .thumbnail .empty {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: #BE122A;

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

.mouz-list .team-plays .play:hover .thumbnail,
.mouz-list .player-equipment .product:hover .thumbnail {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.mouz-list .team-plays .play:hover .thumbnail .play-button {
    background: rgba(0, 0, 0, 0.4);
}

.mouz-list .team-plays .play .details,
.mouz-list .player-equipment .product-details {
    display: -webkit-flex;
    display: flex;
    margin: 0;
    margin-top: 12px;
}

.mouz-list .team-plays .play .title,
.mouz-list .player-equipment .product-name {
    flex: 1;
    color: #BE122A;
    text-transform: uppercase;
    text-align: left;
    font-family: 'Archive';
    font-size: 14px;

    -webkit-flex: 1;
}

.mouz-list .team-plays .play .author,
.mouz-list .player-equipment .product-price {
    color: #6F6F6F;
    font-size: 14px;
}

.mouz-list .team-plays .playstv-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    box-sizing: border-box;
    width: 180px;
    margin-top: 20px;
    padding: 4px 12px 6px 12px;

    font-size: 12px;
    font-weight: bold;
    text-align: center;

    border: solid 1px;
    border-radius: 4px;
    border-color: #42819B;
    color: white;
    background: #477F96;

    -webkit-transform: translateX(-50%);
}

.mouz-list .team-plays .playstv-button:hover {
    background: #5190AA;
}

.mouz-list .team-plays .playstv-link:hover {
    text-decoration: none;
}

.mouz-container .player-fb-posts-start {
    position: relative;
    left: 50%;
    top: 2px;
    z-index: 1;
    transform: translateX(-9px);

    width: 10px;
    height: 10px;
    margin-top: 40px;

    border: solid 1px rgba(255, 255, 255, 0.75);
    border-radius: 50%;

    background: #A8B5D3;

    -webkit-transform: translateX(-9px);
}

.mouz-container .player-fb-posts {
    margin-top: 0px !important;
}

.mouz-container .player-fb-posts .story {
    margin-top: 40px !important;
}

.mouz-container .player-fb-posts .story:last-of-type {
    margin-bottom: 40px !important;
}

.mouz-container .player-fb-posts .story .story-message {
    font-size: 14px;
    line-height: 19px;

    color: #141823;
}

.mouz-container .player-fb-posts .story .story-headline a {
    font-size: 14px;
}

.mouz-container .player-fb-posts .story .created-time {
    padding-top: 2px;
}

.mouz-container .player-fb-posts-end {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    box-sizing: border-box;
    width: 180px;
    margin-top: 3px;
    padding: 4px 12px 6px 12px;

    font-size: 12px;
    font-weight: bold;
    text-align: center;

    border: solid 1px;
    border-radius: 4px;
    border-color: #435a8b #3c5488 #334c83;
    color: white;
    background: #4E69A2;

    -webkit-transform: translateX(-50%);
}

.mouz-container .player-fb-posts-end:hover {
    background: #5876B7;
}

.mouz-container .player-fb-posts-end-link:hover {
    text-decoration: none;
}


/**************************
    Sponsors (Overview)
**************************/

.mouz-header .partners {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 100px 30px 100px 30px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    -webkit-flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.mouz-header .partners .header-partner {
    cursor: pointer;
}

.mouz-header .partners .partner-logo {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: auto;
    margin: 30px;
    margin-top: 100px;
    align-items: center;
    justify-content: center;
    flex: 1;

    -webkit-flex: 1;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.mouz-header .partners .partner-logo.head img {
    width: 235px;
    height: auto;
    margin: 0 50px;
}

.mouz-header .partners .partner-logo.main img {
    width: 150px;
    height: auto;
    margin: 0 50px;
}

.mouz-header .partners .partner-logo.simple img {
    width: 100px;
    height: auto;
    margin: 0 50px;
}

.mouz-container.partners {
    margin: 60px 0;
}

.mouz-container.partners .mouz-flex-grid {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.mouz-container.partners .mouz-flex-grid.single {
    position: relative;
    left: 50%;

    max-width: 50%;

    justify-content: center;
    transform: translateX(-50%);

    -webkit-justify-content: center;
    -webkit-transform: translateX(-50%);
}

.mouz-container.partners .mouz-flex-column {
    min-width: 50%;
    text-align: center;
}

.mouz-container.partners .sponsors-separator {
    width: 100%;
    height: 3px;
    background: #E8E8E8;
}

.mouz-container.partners .partner-logo {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 215px;
    align-items: center;
    justify-content: center;

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

.mouz-container.partners .partner-logo img {
    width: auto;
    height: auto;
    max-width: 320px;
    max-height: 100%;
}

.mouz-container.partners .separator {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    margin: 25px 0 50px 0;
    background: #BE122A;

    -webkit-transform: translateX(-50%);
}

.mouz-container.partners .description {
    margin: 0;
    color: #6F6F6F;
    text-align: center;
    font-size: 14px;
}


/**************************
         About
**************************/

.mouz-container.about {
    margin: 100px 0;
}

.mouz-container.about .content,
.mouz-container.about .pressrelease {
    position: relative;
    max-width: 900px;
    left: 50%;
    transform: translateX(-50%);

    -webkit-transform: translateX(-50%);
}

.mouz-container.about .content h1 {
    margin: 30px 0 50px 0;
    text-align: center;
    text-transform: uppercase;
    color: #BE122A;
    font-family: 'Archive';
    font-size: 60px;
}

.mouz-container.about .two-column-layout {
    display: -webkit-flex;
    display: flex;
    width: 100%;
}

.mouz-container.about .two-column-layout > * {
    flex: 1;
    margin: 0 20px;
    text-align: center;
    font-size: 14px;
}

.mouz-container.about .pressrelease {
    padding: 0 50px;
    box-sizing: border-box;
}

.mouz-container.about .separator {
    width: 100%;
    height: 3px;
    margin: 100px 0;
    background: #E8E8E8;
}

.mouz-container.about .pressrelease .headline {
    margin: 20px 0;
    font-size: 36px;
    line-height: normal;
}

.mouz-container.about .pressrelease .headline.subtitle {
    margin: 10px 0;
    color: #6F6F6F;
    font-size: 18px;
}

.mouz-container.about .pressrelease .separator,
.mouz-container.about .management .separator {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    margin: 20px 0;
    transform: translateX(-50%);
    background: #BE122A;

    -webkit-transform: translateX(-50%);
}

.mouz-container.about .pressrelease .text {
    max-height: 300px;
    text-align: justify;
    font-size: 18px;
    line-height: 30px;
    overflow: hidden;
}

.mouz-container.about .pressrelease .text.expanded {
    max-height: none;
}

.mouz-container.about .pressrelease .read-more {
    position: relative;
    z-index: 1000;
}

.mouz-container.about .pressrelease .read-more .fade {
    position: relative;
    top: -40px;
    height: 40px;
    background: linear-gradient(rgba(255, 255, 255, 0), white);
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0), white);
}

.mouz-container.about .pressrelease .read-more .fade.expanded {
    background: none;
}

.mouz-container.about .pressrelease .read-more .label {
    margin-top: -20px;
    text-align: center;
    font-family: 'Archive';
    font-size: 18px;
    line-height: normal;
    color: #BE122A;
    cursor: pointer;
}

.mouz-container.about .pressreleases {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.mouz-container.about #pressreleases-scrollers {
    z-index: 1000;
}

.mouz-container.about #pressreleases-scrollers .arrow-left {
    position: fixed;
    left: -30px;
    transform: translateY(23px);
    z-index: 10000;
    cursor: pointer;

    -webkit-transform: translateY(23px);
}

.mouz-container.about #pressreleases-scrollers .arrow-right {
    position: fixed;
    right: -30px;
    transform: translateY(23px);
    z-index: 10000;
    cursor: pointer;

    -webkit-transform: translateY(23px);
}

.mouz-container.about .headline.subtitle {
    margin: 50px 0 20px 0;
    color: #6F6F6F;
    font-size: 18px;
}

.mouz-container.about .pressreleases .release {
    min-width: 50%;
    margin-top: 20px;
    color: #BE122A;
    cursor: pointer;
}

.mouz-container.about .pressreleases .release:hover {
    text-decoration: none;
}

.mouz-container.about .pressreleases .release-name {
    margin: 0;
    color: #BE122A;
    text-align: center;
    font-family: 'Archive';
    font-size: 18px;
    box-sizing: border-box;
}

.mouz-container.about .pressreleases .release-date {
    margin: 0;
    color: #6F6F6F;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    box-sizing: border-box;
}

.mouz-container.about .pressreleases .release.active .release-date {
    color: #BE122A;
}

.mouz-container.about .pressreleases .release .release-content {
    display: none
}

.mouz-container.management {
    margin-bottom: 100px;
}

.mouz-container.management .headline {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 36px;
}

.mouz-container.management .members {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    padding-left: 30px;
    flex-wrap: wrap;

    -webkit-flex-wrap: wrap;
}

.mouz-container.management .member {
    display: -webkit-flex;
    display: flex;
    width: 50%;
    margin-top: 80px;
    padding-right: 60px;
    box-sizing: border-box;
}

.mouz-container.management .member .picture {
    display: inline-block;
    width: 210px;
    height: 312px;
    overflow: hidden;
}

.mouz-container.management .member .picture .empty {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: #BE122A;

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

.mouz-container.management .member .member-info {
    display: inline-block;
    flex: 1;

    -webkit-flex: 1;
}

.mouz-container.management .member-info .name {
    margin: 0;
    padding-left: 35px;
    text-transform: uppercase;
    font-family: 'Archive';
    font-size: 18px;
    color: #BE122A;
}

.mouz-container.management .member-info .position {
    margin: 0;
    padding-left: 35px;
    font-family: 'Archive';
    font-size: 14px;
    color: #6F6F6F;
}

.mouz-container.management .member-info .description {
    margin: 0;
    padding-left: 35px;
    padding-top: 20px;
    font-size: 14px;
    text-align: justify;
    color: #6F6F6F;
}

.mouz-container.management .member-info .social {
    padding-left: 35px;
    padding-top: 20px;
}

.mouz-container.management .member-info .social a:hover {
    text-decoration: none;
}

.mouz-container.staff {
    margin: 100px 0;
}

.mouz-container.staff .headline {
    margin: 25px 0;
    font-size: 36px;
}

.mouz-container.staff .separator {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    margin: 20px 0;
    transform: translateX(-50%);
    background: #BE122A;

    -webkit-transform: translateX(-50%);
}

.mouz-container.staff .arrow-left {
    position: fixed;
    left: 10px;
    transform: translateY(190px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(190px);
}

.mouz-container.staff .arrow-right {
    position: fixed;
    right: 10px;
    transform: translateY(190px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(190px);
}

.mouz-container.staff .members {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    padding-left: 40px;
    overflow: hidden;
    box-sizing: border-box;
}

.mouz-container.staff .member {
    display: -webkit-flex;
    display: flex;
    min-width: 260px;
    max-width: 20%;
    margin-top: 60px;
    padding-right: 60px;
    flex-direction: column;
    box-sizing: border-box;

    -webkit-flex-direction: column;
}

.mouz-container.staff .member .picture {
    display: inline-block;
    width: 210px;
    height: 312px;
    overflow: hidden;
}

.mouz-container.staff .member .picture .empty {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: #BE122A;

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

.mouz-container.staff .member .member-info {
    display: inline-block;
    flex: 1;
    margin-top: 25px;

    -webkit-flex: 1;
}

.mouz-container.staff .member-info .name {
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: #BE122A;
}

.mouz-container.staff .member-info .position {
    margin: 0;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: #6F6F6F;
}

.mouz-container.staff .member-info .description {
    margin: 0;
    padding: 20px 6px;
    font-size: 14px;
    text-align: center;
    color: #6F6F6F;
}


/**************************
        History
**************************/

.mouz-container .milestones {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

.mouz-container .milestones .arrow-left {
    position: fixed;
    left: 15px;
    transform: translateY(125px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(125px);
}

.mouz-container .milestones .arrow-right {
    position: fixed;
    right: 15px;
    transform: translateY(125px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(125px);
}

.mouz-container .milestones .milestone {
    display: -webkit-flex;
    display: flex;
    min-width: 88%;
    margin: 0 7% 0 5%;
}

.mouz-container .milestone .info {
    flex: 0.45;
    -webkit-flex: 0.45;
}

.mouz-container .milestone .info .headline {
    margin: 0;
    padding: 0 40px;
    font-size: 36px;
    line-height: 48px;
}

.mouz-container .milestone .info .separator {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    margin: 20px 0;
    transform: translateX(-50%);
    background: #BE122A;

    -webkit-transform: translateX(-50%);
}

.mouz-container .milestone .info .text {
    margin: 0;
    padding: 0 40px;
    text-align: center;
}

.mouz-container .milestone .picture {
    flex: 0.55;
    position: relative;
    max-height: 333px;
    overflow: hidden;

    -webkit-flex: 0.55;
}

.mouz-container .milestone .picture .image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.mouz-container .milestone .picture .empty {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Archive';
    font-size: 28px;
    line-height: 34px;
    background: #BE122A;
    cursor: default;

    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-text-align: center;
}

.mouz-container .timeline {
    display: -webkit-flex;
    display: flex;
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin-top: 111px;
    overflow: hidden;
    box-sizing: border-box;
}

.mouz-container .timeline .timebar {
    position: absolute;
    width: calc(100% - 80px);
    height: 3px;
    transform: translateY(65px);
    background: #E8E8E8;

    -webkit-transform: translateY(65px);
}

.mouz-container .timeline .edge-left {
    position: fixed;
    left: 0px;
    width: 100px;
    height: 250px;
    transform: translateY(-50px);
    z-index: 1000;
    cursor: pointer;
    box-shadow: inset 100px 0px 50px rgba(255, 255, 255, 0.95);

    -webkit-transform: translateY(-50px);
}

.mouz-container .timeline .edge-right {
    position: fixed;
    right: 0px;
    width: 100px;
    height: 250px;
    transform: translateY(-50px);
    z-index: 1000;
    cursor: pointer;
    box-shadow: inset -100px 0px 50px rgba(255, 255, 255, 0.95);

    -webkit-transform: translateY(-50px);
}

.mouz-container .timeline .arrow-left {
    position: fixed;
    left: 25px;
    transform: translateY(44px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(44px);
}

.mouz-container .timeline .arrow-right {
    position: fixed;
    right: 25px;
    transform: translateY(44px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(44px);
}

.mouz-container .timeline .milestone {
    cursor: pointer;
}

.mouz-container .timeline #milestones {
    display: -webkit-flex;
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mouz-container .timeline .milestone {
    position: relative;
    width: 124px;
    min-width: 124px;
    margin: 0 5px;
}

.mouz-container .timeline #milestones div:first-of-type {
    margin-left: 0px;
}

.mouz-container .timeline #milestones div:last-of-type {
    margin-right: 0px;
}

.mouz-container .timeline .milestone .year {
    display: -webkit-flex;
    display: flex;
    position: relative;
    width: 124px;
    height: 124px;
    min-width: 124px;
    align-items: center;
    justify-content: center;
    font-family: 'Archive';
    font-size: 36px;
    color: #BE122A;
    border: solid 3px #E8E8E8;
    border-radius: 50%;
    background: #FFFFFF;

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

.mouz-container .timeline .milestone .title {
    width: 100%;
    margin: 0;
    padding: 12px 8px;
    text-align: center;
    font-family: 'Archive';
    font-size: 16px;
    color: #6F6F6F;
    box-sizing: border-box;
}

.mouz-container .timeline .empty {
    position: relative;
    width: 124px;
    height: 124px;
    min-width: 124px;
    margin: 0 5px;
}

.mouz-container .timeline .milestone.active .year,
.mouz-container .timeline .milestone .year:hover {
    border: solid 3px #BE122A;
}

.mouz-container .timeline .milestone.active .title,
.mouz-container .timeline .milestone .title:hover {
    color: #BE122A;
}

.mouz-container.halloffame {
    margin: 100px 0;
}

.mouz-container.halloffame .headline {
    margin: 25px 0;
    font-size: 36px;
}

.mouz-container.halloffame .separator {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    margin: 20px 0;
    transform: translateX(-50%);
    background: #BE122A;

    -webkit-transform: translateX(-50%);
}

.mouz-container.halloffame .arrow-left {
    position: fixed;
    left: 10px;
    transform: translateY(190px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(190px);
}

.mouz-container.halloffame .arrow-right {
    position: fixed;
    right: 10px;
    transform: translateY(190px);
    z-index: 1000;
    cursor: pointer;

    -webkit-transform: translateY(190px);
}

.mouz-container.halloffame .members {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    padding-left: 40px;
    overflow: hidden;
    box-sizing: border-box;
}

.mouz-container.halloffame .member {
    display: -webkit-flex;
    display: flex;
    min-width: 260px;
    max-width: 20%;
    margin-top: 60px;
    padding-right: 60px;
    flex-direction: column;
    box-sizing: border-box;

    -webkit-flex-direction: column;
}

.mouz-container.halloffame .member .picture {
    display: inline-block;
    width: 210px;
    height: 312px;
    overflow: hidden;
}

.mouz-container.halloffame .member .picture .empty {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: #BE122A;

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

.mouz-container.halloffame .member .member-info {
    display: inline-block;
    flex: 1;
    margin-top: 25px;

    -webkit-flex: 1;
}

.mouz-container.halloffame .member-info .name {
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: #BE122A;
}

.mouz-container.halloffame .member-info .position {
    margin: 0;
    text-align: center;
    font-family: 'Archive';
    font-size: 14px;
    color: #6F6F6F;
}

.mouz-container.halloffame .member-info .description {
    margin: 0;
    padding: 20px 6px;
    font-size: 14px;
    text-align: center;
    color: #6F6F6F;
}


/**************************
    Stories (Overview)
**************************/

.mouz-story-overview {
    display: -webkit-flex;
    display: flex;
    padding: 0px 34px 100px 34px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: space-between;

    -webkit-flex-wrap: wrap;
    -webkit-justify-content: space-between;
}

.mouz-story-overview .uk-article {
    flex: 1;
    display: inline-block;
    width: 30%;
    min-width: 238px;
    max-width: 30%;
    margin: 0 12px;
    margin-top: 80px;
    box-sizing: border-box;

    -webkit-flex: 1 1 auto;
}

.mouz-story-overview .uk-article .thumbnail {
    position: relative;
    width: 100%;
    height: 183px;
    overflow: hidden;
}

.mouz-story-overview .uk-article .thumbnail:hover .image {
    transform: translateX(-50%) scale(1.05);
    -webkit-transform: translateX(-50%) scale(1.05);
}


.mouz-story-overview .uk-article .thumbnail .image {
    position: absolute;
    width: auto;
    height: 185px;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s;

    -webkit-transform: translateX(-50%);
    -webkit-transition: all 0.2s;
}

.mouz-story-overview .uk-article .title {
    color: #BE122A;
}

.mouz-story-overview .uk-article .title h1 {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    font-family: 'Archive';
    font-size: 18px;
    line-height: inherit;
    color: #BE122A;
}

.mouz-story-overview .uk-pagination {
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

.mouz-story-overview .uk-pagination .uk-active span {
    color: #B71C31;
    cursor: default;
}


/**************************
         Story
**************************/

.mouz-container.story {
    width: 800px;
    max-width: 80%;
    margin-top: 70px;
}

.mouz-container.story .headline {
    margin: 0px;
    font-size: 72px;
    line-height: 90px;
}

.mouz-container.story .headline.small {
    margin: 0px;
    font-size: 36px;
}

.mouz-container.story .headline.author {
    margin: 0px;
    font-size: 18px;
    color: #6F6F6F;
}

.mouz-container.story .separator {
    position: relative;
    width: 110px;
    height: 3px;
    left: 50%;
    margin: 40px 0px;
    transform: translateX(-50%);
    background: #BE122A;

    -webkit-transform: translateX(-50%);
}

.mouz-container.story .social-share {
    position: absolute;
    left: -60px;

    margin-top: 10px;
}

.mouz-container.story .social-share .label {
    display: block;
    padding-bottom: 6px;
    color: #BE122A;
    font-family: 'Archive';
    font-size: 12px;
    line-height: normal;
}

.mouz-container.story .social-share img {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    margin-top: 10px;
}

.mouz-container.story .excerpt {
    font-size: 21px;
    font-weight: bold;
    color: #6F6F6F;
    line-height: 40px;
}

.mouz-container.story .content {
    margin-bottom: 100px;
    font-size: 18px;
    color: #6F6F6F;
    line-height: 36px;
}

.mouz-container.story .articles {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;

    -webkit-flex-wrap: nowrap;
    -webkit-justify-content: center;
}

.mouz-container.story .uk-article {
    flex: 1;
    display: inline-block;
    min-width: 238px;
    max-width: 33%;
    margin: 40px 14px 80px 14px;
    box-sizing: border-box;

    -webkit-flex: 1;
}

.mouz-container.story .uk-article .thumbnail {
    position: relative;
    width: 100%;
    height: 183px;
    overflow: hidden;
    background: #B71C31;
}

.mouz-container.story .uk-article .thumbnail .image {
    position: absolute;
    width: auto;
    height: 185px;
    max-width: none;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);

    -webkit-transform: translateX(-50%);
}

.mouz-container.story .uk-article .title {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    line-height: inherit;
    color: #BE122A;
}

.mouz-container.story .uk-article .title h1 {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    font-family: 'Archive';
    font-size: 18px;
    line-height: inherit;
    color: #BE122A;
}


/**************************
         Imprint
**************************/

.mouz-container.imprint {
    width: 800px;
    max-width: 80%;
    margin-top: 70px;
}

.mouz-container.imprint strong {
    font-family: 'Archive';
}


/**************************
         Contact
**************************/

.mouz-container.contact {
    width: 800px;
    max-width: 80%;
    margin-top: 70px;
}

.mouz-container.contact a {
    font-family: 'Archive';
    color: #BE122A;
}

.mouz-container.contact form input {
    display: block;
    width: 100%;
    height: 56px;
    margin-top: 14px;
    padding: 0 16px;
    font-size: 18px;
    border: solid 3px #BE122A;
    box-sizing: border-box;
}

.mouz-container.contact form textarea {
    display: block;
    width: 100%;
    min-height: 300px;
    margin-top: 14px;
    padding: 16px;
    font-size: 18px;
    border: solid 3px #BE122A;
    box-sizing: border-box;
}

.mouz-container.contact form .submit-button {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    justify-content: flex-end;

    -webkit-justify-content: flex-end;
}

.mouz-container.contact form .submit-button input[type="button"] {
    width: initial;
    min-width: 100px;
    color: white;
    font-family: 'Archive';
    background: #BE122A;
    cursor: pointer;
}


/**************************
        Footer
**************************/

.mouz-partners-label {
    position: relative;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);

    width: 200px;
    margin: 0px;
    padding-top: 12px;
    padding-bottom: 8px;

    text-align: center;
    font-size: 12px;
    font-family: 'Archive';

    border-top: solid 1px #CCCCCC;

    color: #BBB;

    cursor: default;

    -webkit-transform: translateX(-50%);
}

.mouz-footer {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    min-height: 115px;
    flex-wrap: wrap;
    align-items: center;
    background: #BE122A;

    -webkit-flex-wrap: wrap;
    -webkit-align-items: center;
}

.mouz-footer .logo {
    flex: 1;
    position: relative;
    margin-top: -2px;

    -webkit-flex: 1;
}

.mouz-footer .logo img {
    width: auto;
    height: 100%;
    margin-left: 35px;
}

.mouz-footer h3 {
    display: none;
}

.mouz-footer .menu {
    flex: 1;
    width: 100%;
    text-align: center;

    -webkit-flex: 1;
}

.mouz-footer .menu .links {
    display: block;
    margin: 0px;
    margin-left: 2px;
    margin-top: 10px;
    font-size: 12px;
    color: white;
}

.mouz-footer .menu .links a {
    margin: 0;
    margin-right: 12px;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.mouz-footer .menu .links a:last-of-type {
    margin: 0;
}

.mouz-footer .menu .links a:hover {
    text-decoration: none;
}

.mouz-footer .social-profiles {
    flex: 1;
    width: 100%;
    text-align: center;

    -webkit-flex: 1;
}

.mouz-footer .social-profiles a img {
    max-width: 32px;
    max-height: 32px;
    transition: all 0.2s;

    -webkit-transition: all 0.2s;
}

.mouz-footer .social-profiles a:hover img {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
}

.mouz-footer img {
    margin-left: 5px;
}

.mouz-footer .copyright {
    flex: 1;
    position: relative;
    color: white;
    font-size: 13px;
    line-height: 22px;
    text-align: right;
    cursor: default;

    -webkit-flex: 1;
}

.mouz-footer .copyright > div {
    margin-right: 35px;
}

.mouz-footer .copyright a {
    color: white;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 12px;
    font-weight: bold;
}

.mouz-footer .copyright a:hover {
    text-decoration: none;
}


/******************************
    Responsive Adjustments
******************************/

@media (-webkit-min-device-pixel-ratio: 2) and (min-width: 560px) and (max-width: 768px) {
    .uk-navbar-flip.uk-hidden-small {
        display: block !important;
    }

    ul.mouz-navbar-nav li a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1219px) {
    .mouz-header .teams {
        top: 90px;
    }

    .mouz-header .team-name {
        top: 150px;
    }

    .mouz-header .separator {
        top: 210px;
    }
}

@media screen and (max-width: 945px) {
    .mouz-container.home .instagram-feed .instagram-image {
        padding: 25px;
    }
}

@media screen and (max-width: 845px) {
    .mouz-container.mouz-flex-grid.home {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .mouz-flex-column.random-player {
        align-items: center;
        justify-content: center;

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

    .mouz-flex-column.random-player .player-info {
        flex: 0.6;
        padding: 0 30px;

        -webkit-flex: 0.6;
    }

    .mouz-flex-column.random-player .picture {
        flex: 0.4;
        -webkit-flex: 0.4;
    }

    .mouz-banners .highlight,
    .mouz-banners .grid {
        display: none;
    }

    .mouz-banners .mobile-banners {
        display: -webkit-flex;
        display: flex;
        position: relative;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        flex-wrap: nowrap;
        overflow: hidden;

        -webkit-flex-wrap: nowrap;
    }

    .mouz-banners .mobile-banner {
        flex: 1;
        position: relative;
        min-width: 100%;
        height: 100%;

        -webkit-flex: 1;
    }

}

@media screen and (max-width: 782px) {
    .mouz-story-overview {
        justify-content: space-around;
        -webkit-justify-content: space-around;
    }
}

@media screen and (max-width: 767px) {
    .uk-navbar-brand {
        position: relative;
        left: 50%;
        transform: translateX(-50%);

        -webkit-transform: translateX(-50%);
    }
}

@media screen and (max-width: 745px) {
    .mouz-footer {
        padding: 20px 0;
    }

    .mouz-footer .copyright {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 590px) {
    .mouz-container.home .random-player .player-info .description {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 525px) {
    .mouz-header.home .scroll-down-button {
        display: none;
    }

    .mouz-header.home .stories-button {
        left: auto;
        right: 65px;
        transform: none;

        -webkit-transform: none;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px), screen and (max-width: 420px) {
    .mouz-mobile-menu {
        display: block;
    }

    .mouz-mobile-menu .menu.active {
        margin-top: 0px;

        opacity: 1;
    }

    .mouz-navbar {
        display: none;
    }

    .mouz-header {
        height: 425px;
    }

    .mouz-header .teams {
        top: 27px;
    }

    .mouz-header .headline {
        font-size: 32px;
    }

    .mouz-header .arrow-left {
        width: 20px;
        left: 10px;
    }

    .mouz-header .arrow-right {
        width: 20px;
        right: 10px;
    }

    .mouz-sponsors {
        position: relative;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: hidden;

        -webkit-flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
    }

    .mouz-sponsors > div {
        flex: 1;
        min-width: 100%;

        -webkit-flex: 1;
    }

    .mouz-sponsors .head {
      margin-right: 0px;
    }

    .mouz-container.partners .sponsors-separator {
        display: none;
    }

    .mouz-banners {
        height: 200px;
        margin-bottom: 20px;
    }

    .mouz-container.about {
        margin: 0;
    }

    .mouz-container.home .mouz-flex-column.content {
        margin: 0;
    }

    .mouz-container .headline {
        margin: 15px 0 30px 0;
        font-size: 32px;
        line-height: normal;
    }

    .mouz-container h1 {
        font-size: 32px;
        line-height: normal;
    }

    .mouz-container.story,
    .mouz-container.imprint,
    .mouz-container.contact {
        overflow: hidden;
        margin-top: 20px;
    }

    .mouz-container.home .mouz-flex-column.content h1 {
        margin: 0;
        margin-bottom: 10px;
        font-size: 32px;
        line-height: normal;
    }

    .mouz-container.home .mouz-flex-column.content p {
        padding: 0 20px;
    }

    .mouz-container.home .random-player .player-info .name {
        margin-bottom: 50px;
    }

    .mouz-container.home .random-player .player-info .description {
        display: none;
    }

    .instagram-feed .instagram-image {
        width: 100% !important;
    }

    .mouz-header.home.story-overview .indicators {
        width: 100%;
        left: 0px;
    }

    .mouz-container.story .articles,
    .mouz-story-overview {
        box-sizing: border-box;
        width: 100%;
        padding: 0 34px 0px 34px;

        flex-wrap: wrap;
        flex-direction: column;

        -webkit-flex-wrap: wrap;
        -webkit-flex-direction: column;
    }

    .mouz-container.story .articles {
        padding: 0px;
    }

    .mouz-container.story .uk-article,
    .mouz-story-overview .uk-article {
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-top: 20px;
    }

    .mouz-container.story .headline {
        font-size: 32px;
        line-height: 42px;
    }

    .mouz-container.story .headline.author {
        margin-top: 15px;
        font-size: 16px;
        line-height: 22px;
    }

    .mouz-container.story .social-share {
        position: relative;
        left: 0px;
        width: 100%;
        margin-top: -10px;
        margin-bottom: 30px;
        text-align: center
    }

    .mouz-container.story .social-share img {
        left: 0px;
        display: inline-block;
        transform: none;

        -webkit-transform: none;
    }

    .mouz-container.story .excerpt {
        font-size: 16px;
        line-height: 28px;
    }

    .mouz-container.story img {
        width: 120%;
    }

    .mouz-container.story .content {
        font-size: 14px;
        line-height: 26px;
    }

    .mouz-container blockquote {
        width: 100%;
        margin: 40px 0;
        padding: 0px;
        font-size: 20px;
    }

    .mouz-flex-grid {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .mouz-list .title {
        font-size: 32px;
    }

    .mouz-container.story .headline.small {
        font-size: 26px;
    }

    .mouz-container.about .two-column-layout {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .mouz-container.about .two-column-layout > p {
        margin-bottom: 20px;
    }

    .mouz-container.about .separator {
        margin: 50px 0;
    }

    .mouz-container.management {
        overflow: hidden;
    }

    .mouz-container.about .headline,
    .mouz-container.management .headline {
        font-size: 32px !important;
    }

    .mouz-container.about .headline.subtitle {
        font-size: 18px !important;
    }

    .mouz-container.about .pressrelease {
        padding: 0 30px;
    }

    .mouz-container.about .pressrelease .text {
        font-size: 14px;
        line-height: 24px;
    }

    .mouz-container.about #pressreleases-scrollers .arrow-left {
        left: 10px;
        width: 18px;
        transform: translateY(28px);

        -webkit-transform: translateY(28px);
    }

    .mouz-container.about #pressreleases-scrollers .arrow-right {
        right: 10px;
        width: 18px;
        transform: translateY(28px);

        -webkit-transform: translateY(28px);
    }

    .mouz-container.management .member {
        width: 100%;
        flex-direction: column;
        text-align: center;

        -webkit-flex-direction: column;
    }

    .mouz-container.management .member .picture {
        flex: 1;
        width: 100%;
        height: auto;

        -webkit-flex: 1;
    }

    .mouz-container.management .member .picture .empty {
        min-height: 390px;
    }

    .mouz-container.management .member-info .name {
        margin-top: 15px;
        padding: 0;
    }

    .mouz-container.management .member-info .position {
        padding: 0;
    }

    .mouz-container.management .member-info .description {
        margin-top: 15px;
        padding: 0;
    }

    .mouz-container.management .member-info .social {
        margin-top: 15px;
        padding: 0;
    }

    .mouz-container.staff {
        overflow: hidden;
    }

    .mouz-container.staff .headline {
        font-size: 32px;
        line-height: normal;
    }

    .mouz-container.staff .members {
        flex-direction: column;
        align-items: center;
        justify-content: center;

        -webkit-flex-direction: column;
        -webkit-align-items: center;
        -webkit-justify-content: center;
    }

    .mouz-header .arrow-left.closer {
        left: 10px;
    }

    .mouz-header .arrow-right.closer {
        right: 10px;
    }

    .mouz-header .team-name {
        top: 86px;

        display: -webkit-flex;
        display: flex;
        height: 40px;

        font-size: 18px;

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

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

    .mouz-header .separator {
        top: 150px;
    }

    .mouz-header .team-players {
        width: 100%;
        height: 260px;
        padding-left: 0px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-end;
        overflow-x: scroll;
        overflow-y: hidden;

        -webkit-flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
    }

    .mouz-header .team-players .team-player {
        height: 100%;
        min-width: 70%;
        text-align: center;
        text-decoration: none;
    }

    .mouz-header .team-players .team-player:first-of-type {
        margin-left: 15%;
    }

    .mouz-header .team-players .team-player:last-of-type {
        padding-right: 15%;
    }

    .mouz-header .team-players .team-player:hover .player-name {
        top: 3px;

        font-size: 14px;
        text-decoration: none;

        color: #BE122A;
        opacity: 0.6;
    }

    .mouz-header .team-players .team-player:hover img.player-picture {
        top: -10px;
    }

    .mouz-header .team-players .team-player img.player-picture {
        top: -10px;
        height: 100%;

        filter: none;
        -webkit-filter: none;
    }

    #team-competitions {
        order: 2;
        -webkit-order: 2;
    }

    #team-description {
        order: 1;
        padding: 20px 0;

        -webkit-order: 1;
    }

    #team-achievements {
        order: 3;
        -webkit-order: 3;
    }

    .mouz-header.player-profile {
        height: auto;
    }

    .mouz-header.player-profile .arrow-left.closer,
    .mouz-header.player-profile .arrow-right.closer {
        top: 152px;
        transform: none;

        -webkit-transform: none;
    }

    .mouz-header .player {
        position: relative;
        height: auto;
        margin-top: 200px;
        flex-direction: column;
        align-items: center;

        -webkit-flex-direction: column;
        -webkit-align-items: center;
    }

    .mouz-header .player .picture {
        position: relative;
        height: auto;
    }

    .mouz-header .player .data {
        height: auto;

        flex: 1;
        align-items: center;
        justify-content: center;
        margin-right: 0;

        -webkit-flex: 1;
        -webkit-align-items: center;
        -webkit-justify-content: center;
    }

    .mouz-header .player .description {
        flex: 1;
        max-width: 80%;
        text-align: center;

        -webkit-flex: 1;
    }

    .mouz-header .player .info {
        min-height: 82px;
        text-align: left;
    }

    .mouz-list .player-equipment {
        flex-direction: column;
        align-items: center;
        -webkit-flex-direction: column;
        -webkit-align-items: center;
    }

    .mouz-container .player-fb-posts-start {
        display: none;
    }

    .mouz-container .player-fb-posts {
        position: relative;
        left: 50%;
        transform: translateX(-50%);

        width: 90%;
        margin-top: 40px !important;

        -webkit-transform: translateX(-50%);
    }

    .mouz-container .player-fb-posts .story {
        margin-top: 20px !important;
        padding-bottom: 30px !important;
    }

    .mouz-header .partners {
        padding: 0px;
        padding-top: 100px;
        padding-bottom: 50px;
        flex-direction: column;

        -webkit-flex-direction: column;
    }

    .mouz-header.partners-overview {
        height: auto;
    }

    .mouz-header .partners {
        position: relative;
        padding-top: 130px;
    }

    .mouz-header .partners .partner-logo.head {
        width: 100%;
        height: auto;
        margin: 0px;
        align-items: flex-start;
        justify-content: center;

        -webkit-align-items: flex-start;
        -webkit-justify-content: center;
    }

    .mouz-header .partners .partner-logo.main {
        width: 75%;
        height: auto;
        margin: 0px;
        margin-top: 25px;
        align-items: flex-start;
        justify-content: center;

        -webkit-align-items: flex-start;
        -webkit-justify-content: center;
    }

    .mouz-header .partners .partner-logo.simple {
        width: 60%;
        height: auto;
        margin: 0;
        margin-top: 25px;
        flex-direction: column;

        -webkit-flex-direction: column;
    }

    .mouz-header .partners .partner-logo img {
        width: 65%;
        margin: 25px 0;
    }

    .mouz-container.partners .partner-logo img {
        padding: 0 50px;
    }

    .mouz-container.partners .mouz-flex-grid.single {
        max-width: none;
    }

    .mouz-container #milestones {
        overflow-x: scroll !important;
    }

    .mouz-container .milestones .milestone {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .mouz-container .milestone .info .headline {
        font-size: 32px;
        line-height: normal;
    }

    .mouz-container .milestone .picture {
        min-height: 200px;
        margin-top: 20px;
    }

    .mouz-container .timeline {
        padding: 0 30px;
        flex-direction: row;

        -webkit-flex-direction: row;
    }

    .mouz-container .timeline .milestone {
        min-width: 124px;
        text-align: center;
    }

    .mouz-container.halloffame {
        overflow: hidden;
    }

    .mouz-container.halloffame .headline {
        font-size: 32px;
        line-height: normal;
    }

    .mouz-container.halloffame .members {
        flex-direction: column;
        align-items: center;
        justify-content: center;

        -webkit-flex-direction: column;
        -webkit-align-items: center;
        -webkit-justify-content: center;
    }

    .mouz-footer {
        display: block;
    }

    .mouz-footer > * {
        display: block;
        margin-top: 50px;
    }

    .mouz-footer .logo {
        margin-top: 25px;
        text-align: center;
    }

    .mouz-footer .logo img {
        margin-left: 0px;
    }

    .mouz-footer .copyright > div {
        margin-right: 0px;
        padding: 0 10px;
        font-size: 11px;
    }
}


/******************************
        Animations
******************************/

@keyframes scroll-down {
    0%      { bottom: 55px }
    50%     { bottom: 50px }
    100%    { bottom: 55px }
}
