h1 {
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1em;
  text-transform: uppercase;
}

h2 {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}

h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25em;
}

h4 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}

a {
  color: #d14f00;
  text-decoration: none;
}
a:hover {
  color: #ff6500;
}
a.nocolor {
  color: inherit;
}

.small-font {
  font-size: 0.75rem;
}

.space {
  margin: 24px 0;
}

body {
  font-size: 14px;
}

.container {
  min-height: 100%;
  position: relative;
  padding-bottom: 48px;
}

.content-wrapper {
  margin-left: 200px;
}

.content {
  margin: 72px 24px 24px;
}

.topbar {
  position: fixed;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  height: 48px;
}
.topbar .topbar-content {
  position: relative;
  float: right;
  z-index: 100;
  background: transparent;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.topbar .topbar-content .topbar-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  height: 48px;
}
.topbar .topbar-content .topbar-box:last-child {
  padding-right: 0;
}

.infomessage-container {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 50;
  height: 48px;
  padding: 12px 24px;
  margin-left: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.infomessage-container.info {
  color: #00529B;
  background-color: #BDE5F8;
}
.infomessage-container.success {
  color: #4F8A10;
  background-color: #DFF2BF;
}
.infomessage-container.warning {
  color: #9F6000;
  background-color: #FEEFB3;
}
.infomessage-container.error {
  color: #D8000C;
  background-color: #FFBABA;
}

.breadcrumbs {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 40;
  height: 48px;
  margin-left: 200px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.sidemenu {
  width: 200px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  color: #b9bbbe;
  border-right: 1px solid #e5e5e5;
  z-index: 200;
}
.sidemenu .logo {
  margin: 0 auto;
}
.sidemenu .logo img {
  padding: 10% 25% 5% 25%;
}
.sidemenu .title {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  margin: 0 auto;
  text-align: center;
}
.sidemenu .entries {
  margin-top: 24px;
}
.sidemenu .entries .entry {
  height: 48px;
  border-bottom: 1px solid #e5e5e5;
}
.sidemenu .entries .entry:first-child {
  border-top: 1px solid #e5e5e5;
}
.sidemenu .entries .entry a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 24px;
}
.sidemenu .entries .entry a:hover {
  color: #d14f00;
}
.sidemenu .entries .entry:hover {
  background-color: #e0e0e0;
}
.sidemenu .entries .entry.empty:hover {
  background-color: transparent;
}
.sidemenu .entries .entry.active {
  background-color: #e5e5e5;
}

.form input[type=text],
.form input[type=search],
.form input[type=email],
.form input[type=date],
.form input[type=password],
.form textarea {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  outline: 0;
  background: #f2f2f2;
  border: 0;
  margin: 0 0 16px;
  padding: 12px 2.2em 12px 8px;
}
.form input[type=text].full-width,
.form input[type=search].full-width,
.form input[type=email].full-width,
.form input[type=date].full-width,
.form input[type=password].full-width,
.form textarea.full-width {
  width: 100%;
}
.form input[type=text]::placeholder,
.form input[type=search]::placeholder,
.form input[type=email]::placeholder,
.form input[type=date]::placeholder,
.form input[type=password]::placeholder,
.form textarea::placeholder {
  color: #777777;
}
.form.form-invers input[type=text],
.form.form-invers input[type=email],
.form.form-invers input[type=date],
.form.form-invers input[type=password],
.form.form-invers textarea {
  background: #ffffff;
}
.form select.full-width {
  width: 100%;
}
.form .show-inner-icon {
  position: relative;
}
.form .show-inner-icon i {
  position: absolute;
  right: 0.55em;
  top: 0.55em;
  padding: 1em;
  pointer-events: none;
  background: url("/static/img/checkmark.svg") no-repeat;
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  background: #3d454d;
  color: #f9f9f9;
  font-family: inherit;
  font-size: inherit;
  padding: 12px 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
}
.btn:hover {
  background: #d14f00;
}

.btn-lighter {
  background: #5d6975;
}

.btn-red-bg {
  background-color: #d14f00;
}

.btn-grey-bg {
  background-color: #b0afb0;
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

/****************
* Tables
*****************/
.list-table {
  width: 100%;
}

.list-table th,
.list-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px #ddd solid;
  overflow: hidden;
}
.list-table th a,
.list-table td a {
  display: block;
  margin: -5em;
  padding: 5em;
  color: #333;
  text-decoration: none;
}

.list-table th.no-border-padding,
.list-table td.no-border-padding {
  padding: 12px 8px 12px 0;
}

.list-table th {
  background-color: #e7e7e7;
  color: #909090;
  vertical-align: middle;
  height: 38px;
}

.list-table-preview-image-cell {
  width: 86px;
}

.list-table td.strong {
  font-weight: 700;
}

.list-table tr {
  cursor: pointer;
}

.list-table tr:hover {
  background-color: #f2f2f2;
}

.list-table tr .editicons {
  display: none;
}

.list-table tr:hover .editicons {
  display: inline;
}

.list-table tr.topOfTOPList {
  background-color: #bae7ba;
}

.list-table tr.topOfTOPList:hover {
  background-color: #aae7aa;
}

table tr.no-td-border td {
  border: 0;
}

.list-reloaded .pagination li {
  display: inline-block;
  background-color: #f8f8f8;
  margin-right: 6px;
}
.list-reloaded .pagination li.active {
  background-color: #ff6500;
}
.list-reloaded .pagination li.active a.page {
  color: #f9f9f9;
}
.list-reloaded .pagination li.active a.page:hover {
  cursor: pointer;
  background-color: #d14f00;
}
.list-reloaded .pagination li a.page {
  padding: 12px;
  display: block;
}
.list-reloaded .pagination li a.page:hover {
  cursor: pointer;
  background-color: #e5e5e5;
}

/****************
* Block
*****************/
.block {
  width: 100%;
  padding: 12px;
  background-color: #f8f8f8;
}

.season-picker .season-picker-title {
  float: left;
}
.season-picker .season-picker-seasons {
  float: right;
}

/****************
* Calendar (JS)
*****************/
.fc-content {
  cursor: pointer;
}

.fc-scroller {
  overflow-y: hidden !important;
}

.fc-title {
  color: #fff;
}

.fc-event {
  border-radius: 0;
}

.teamblock {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.teamblock .teamlogo {
  height: 32px;
  margin-right: 4px;
}

.gameblock {
  display: flex;
  align-items: center;
  margin: 6px 0;
}
.gameblock .gameblock-inner {
  width: 100%;
  margin: 6px 2px;
}
.gameblock a {
  width: 100%;
}
.gameblock a:hover {
  background-color: #e5e5e5;
}
.gameblock .gameblock-home {
  float: left;
  width: 40%;
  text-align: right;
}
.gameblock .gameblock-score {
  float: left;
  width: 20%;
  padding: 0 6px;
  text-align: center;
  line-height: 0.8rem;
}
.gameblock .gameblock-score .gameblock-gameday {
  font-size: 0.6rem;
}
.gameblock .gameblock-away {
  width: 40%;
  float: left;
  text-align: left;
}

.gameblockfull .gameblockfull-info {
  width: 25%;
}
.gameblockfull .gameblockfull-scores {
  width: 50%;
}
.gameblockfull .gameblockfull-scores .gameblockfull-teamname h3 {
  font-size: 0.9rem;
  font-weight: 700;
}
.gameblockfull .gameblockfull-scores .gameblockfull-score {
  font-weight: 700;
  font-size: 3rem;
  color: #e1712e;
}
.gameblockfull .gameblockfull-quarters {
  width: 25%;
  padding: 0 24px;
}

.gamestats .graph canvas {
  width: 100%;
  height: 300px;
}

#horizon-chart {
  height: 300px;
}

.gamestats-horizon .horizon-empty {
  text-align: center;
}

.gamestats-boxscore {
  font-size: 0.8rem;
}
.gamestats-boxscore table th {
  text-align: left;
}
.gamestats-boxscore table tr:hover {
  background-color: #f8f8f8;
}
.gamestats-boxscore table tr.separator td {
  border-top: 1px solid #d14f00 !important;
}
.gamestats-boxscore table td.colseparator {
  border-left: 1px solid #999 !important;
}

.gamestats-topperformer .gamestats-topperformer-image {
  width: 40%;
}
.gamestats-topperformer .gamestats-topperformer-stats {
  min-height: 100%;
  padding-left: 6px;
}
.gamestats-topperformer .gamestats-topperformer-stats .gamestats-topperformer-value {
  font-weight: 700;
  color: #ff6500;
  font-size: 2rem;
}
.gamestats-topperformer .gamestats-topperformer-stats .gamestats-topperformer-name {
  font-size: 1rem;
}

[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

.news-editor {
  min-height: 200px;
  background-color: #fff;
}

.news-upload-area {
  min-height: 300px;
  padding: 12px;
  background-color: #f8f8f8;
  border: dashed 1px #ff6500;
}
.news-upload-area.news-upload-area-main {
  margin-bottom: 48px;
  min-height: 150px;
  width: 100%;
  display: inline-block;
}
.news-upload-area .dz-preview {
  float: left;
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-right: 6px;
  margin-bottom: 6px;
  cursor: move;
}
.news-upload-area .dz-preview .dz-details {
  height: 100%;
  background-color: #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
#news-image-upload-main .dz-preview {
  width: 100%;
  height: auto;
  margin-right: 0;
  margin-bottom: 0;
}
#news-image-upload-main .dz-preview .dz-details {
  background-color: transparent;
}

.roster-list {
  width: 100%;
}
.roster-list td {
  vertical-align: middle;
}
.roster-list th {
  text-align: left;
}
.roster-list tr.odd td {
  background-color: #f9f9f9;
}
.roster-list tr.even td {
  background-color: #f1f1f1;
}
.roster-list .roster-list-picture {
  width: 35px;
}
.roster-list .isHidden {
  color: #d2a275;
}

.roster-stats {
  font-size: 1.9rem;
}

.standing-table th {
  text-align: left;
}
.standing-table td {
  padding: 5px 15px 5px 0;
}
.standing-table tr.odd td {
  background-color: #f9f9f9;
}
.standing-table tr.even td {
  background-color: #f1f1f1;
}

.competition-small-block {
  padding: 12px 6px;
  cursor: pointer;
  color: #d14f00;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.competition-small-block:hover {
  color: #ff6500;
  background-color: #e5e5e5;
}
.competition-small-block .competition-logo {
  float: left;
  width: 100px;
  margin-right: 12px;
}
.competition-small-block .competition-name {
  float: left;
}

.competiton-team-banner .competiton-team-logo {
  float: left;
}
.competiton-team-banner .competiton-team-name {
  float: left;
}

.largegame-list-entry:hover {
  cursor: pointer;
  color: #f9f9f9;
  background-color: #ff6500;
  transition: background-color 120ms linear;
}
.largegame-list-entry:hover .largegame-date {
  background-color: #ff6500;
  transition: background-color 120ms linear;
}
.largegame-list-entry .largegame-date {
  padding: 8px 6px;
  background-color: #e5e5e5;
  font-size: 0.9rem;
}
.largegame-list-entry .largegame-boxscore {
  margin: 6px 6px 24px 6px;
}
.largegame-list-entry .largegame-boxscore .largegame-table {
  margin-bottom: 0;
}
.largegame-list-entry .largegame-boxscore .largegame-table th {
  text-align: left;
}
.largegame-list-entry .largegame-boxscore .largegame-table-name {
  width: 30%;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.largegame-list-entry .largegame-boxscore .largegame-table-name td {
  padding: 6px 0;
}
.largegame-list-entry .largegame-boxscore .largegame-table-final-score {
  font-size: 1.5rem;
  margin-right: 2rem;
  margin-bottom: 0;
}
.largegame-list-entry .largegame-boxscore .largegame-table-final-score td {
  padding: 6px 0;
}
.largegame-list-entry .largegame-boxscore .largegame-table-quarters {
  margin-top: 6px;
  margin-bottom: 0;
}
.largegame-list-entry .largegame-boxscore .largegame-top {
  margin-right: 24px;
  margin-bottom: 0;
}
.largegame-list-entry .largegame-boxscore .largegame-top .largegame-topscorer {
  text-align: right;
}
.largegame-list-entry .largegame-boxscore .largegame-top .largegame-player {
  text-align: right;
}
.largegame-list-entry .largegame-boxscore .largegame-top .largegame-top-image {
  margin-left: 6px;
}
.largegame-list-entry .largegame-boxscore .largegame-top .largegame-top-image img {
  height: 75px;
}

.team-headline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team-headline .team-logo {
  float: left;
}
.team-headline .team-name {
  float: left;
}
.team-headline .team-name h1 {
  margin: 0;
}

.boxscore-player {
  width: 100%;
}

.topstats-box {
  float: left;
  width: 10%;
  margin-right: 4%;
}
.topstats-box .topstats-number-container {
  text-align: center;
}
.topstats-box .topstats-number-container .topstats-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #ff6500;
  text-align: center;
}
.topstats-box .topstats-number-container .topstats-label {
  font-size: 0.95em;
  text-align: center;
}
.topstats-box .topstats-teams {
  margin-top: 12px;
}
.topstats-box .topstats-date {
  margin-top: 6px;
  font-size: 0.8em;
  text-align: center;
}

.news-small-box {
  padding: 4px;
}
.news-small-box:hover {
  background-color: #e5e5e5;
  cursor: pointer;
}
.news-small-box .news-small-box-icon {
  float: left;
  width: 32px;
}
.news-small-box .news-small-box-details {
  float: left;
  margin-left: 6px;
}
.news-small-box .news-small-box-details .news-small-box-details-date {
  font-size: 0.95em;
}
.news-preview-image {
  width: 75px;
  height: 50px;
}

.attachment-preview {
  width: 100px;
}

.news-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background-color: #f2f2f2;
  min-height: 200px;
}
.news-main-image div {
  text-align: center;
}

.editor-part {
  position: relative;
  margin-bottom: 32px;
  padding: 1rem;
  background-color: #f2f2f2;
  cursor: move;
}
.editor-part:hover {
  background-color: #eaeaea;
}
.editor-part * {
  background-color: #f2f2f2;
}
.editor-part > * {
  cursor: default;
}
.editor-part textarea, .editor-part input, .editor-part trix-editor {
  cursor: auto;
}
.editor-part.editor-image img {
  width: 40%;
}
.editor-part .editor-part-delete {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px;
  cursor: pointer;
}
.editor-part .editor-part-delete img {
  width: 10px;
  cursor: pointer;
}
.editor-part .gallery-items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.editor-part .add-gallery-item-container {
  margin-top: 12px;
}
.editor-part .gallery-item {
  cursor: pointer;
  width: 22.5%;
  padding-top: 17.5%;
  margin-right: 2.5%;
  position: relative;
  overflow: hidden;
}
.editor-part .gallery-item .editor-preview-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.editor-part .gallery-item:hover {
  opacity: 0.8;
}
.editor-part .remove-current-image {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 16px;
  right: 6px;
  padding: 4px;
  width: 20px;
  border-radius: 50%;
  z-index: 3;
}

.gu-transit .remove-current-image, .gu-mirror .remove-current-image {
  display: none;
}

.news-element-input {
  background-color: #fff !important;
  width: 100%;
}

.news-block-button-width {
  float: left;
  width: 18%;
  margin: 0 1% 0 0;
}
.news-block-button-width button {
  width: 100%;
}
.news-block-button-width.margin-top-half {
  margin-top: 12px;
}

.select2-dropdown {
  z-index: 3147483647;
}

trix-editor ul {
  list-style: disc inside;
}

.banner-preview {
  width: 100%;
}

.featherlight-content {
  width: 90%;
}

.mediathek-folders .mediathek-thumbnail {
  width: 75px;
}
.mediathek-folders .mediathek-thumbnail.mediathek-thumbnail-folder {
  width: 50px;
}
.mediathek-folders .mediathek-thumbnail-container {
  padding: 0 !important;
}
.mediathek-folders .list-table tr.mediathek-nolink {
  cursor: default !important;
}
.mediathek-folders .list-table tr.mediathek-nolink:hover {
  background-color: #ffffff !important;
}

.mediathek-upload-progress, .team-upload-progress, .player-upload-progress {
  position: relative;
  width: 100%;
}
.mediathek-upload-progress .text, .team-upload-progress .text, .player-upload-progress .text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  height: 25px;
  z-index: 10;
}
.mediathek-upload-progress .bar, .team-upload-progress .bar, .player-upload-progress .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 25px;
  background-color: #ff6500;
  z-index: 5;
}

.mediathek-dropzone, .team-dropzone, .player-dropzone {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  background-color: #ddd;
  border: #3d454d dashed 2px;
  color: #555;
}

.team-dropzone {
  height: 100px;
}

.player-dropzone {
  height: 75px;
}

.mediathek-metadata-content {
  min-height: 600px;
}

.mediathek-iframe iframe {
  min-width: 1024px;
  width: 100%;
  min-height: 600px;
  height: 100%;
}

.mediathek-choose {
  color: #d14f00;
}
.mediathek-choose span:hover {
  text-decoration: underline;
}

.calendar-mini-entry {
  padding: 4px;
}
.calendar-mini-entry:hover {
  background-color: #e5e5e5;
  cursor: pointer;
}
.calendar-mini-entry .calendar-icon {
  float: left;
  width: 32px;
}
.calendar-mini-entry .calendar-details {
  float: left;
  margin-left: 6px;
}
.calendar-mini-entry .calendar-details .calendar-details-date {
  font-size: 0.95em;
}
.legend-container {
  margin-bottom: 4px;
}
.legend-container .legend-bar {
  width: 42px;
  height: 16px;
  margin-top: 1px;
  margin-right: 10px;
  vertical-align: middle;
  display: block;
}

.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}

.gu-hide {
  display: none !important;
}

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.gu-transit {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}

.loader {
  display: none;
  position: relative;
  width: 64px;
  height: 11px;
}

.loader div {
  position: absolute;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loader div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}

.loader div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}

.loader div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}

.loader div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
.loadership {
  display: flex;
  position: relative;
  width: 68px;
  height: 68px;
}

.loadership div {
  animation: loadership_roller 1.2s infinite;
  animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
  transform-origin: 34px 34px;
}

.loadership div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6500;
}

.loadership div:nth-child(1) {
  animation-delay: 0s;
}

.loadership div:nth-child(1):after {
  top: 60px;
  left: 30px;
}

.loadership div:nth-child(2) {
  animation-delay: -0.04s;
}

.loadership div:nth-child(2):after {
  top: 56px;
  left: 45px;
}

.loadership div:nth-child(3) {
  animation-delay: -0.07s;
}

.loadership div:nth-child(3):after {
  top: 45px;
  left: 56px;
}

.loadership div:nth-child(4) {
  animation-delay: -0.11s;
}

.loadership div:nth-child(4):after {
  top: 30px;
  left: 60px;
}

.loadership div:nth-child(5) {
  animation-delay: -0.14s;
}

.loadership div:nth-child(5):after {
  top: 15px;
  left: 56px;
}

.loadership div:nth-child(6) {
  animation-delay: -0.18s;
}

.loadership div:nth-child(6):after {
  top: 4px;
  left: 45px;
}

.loadership div:nth-child(7) {
  animation-delay: -0.22s;
}

.loadership div:nth-child(7):after {
  top: 0px;
  left: 30px;
}

.loadership div:nth-child(8) {
  animation-delay: -0.25s;
}

.loadership div:nth-child(8):after {
  top: 4px;
  left: 15px;
}

.loadership div:nth-child(9) {
  animation-delay: -0.29s;
}

.loadership div:nth-child(9):after {
  top: 15px;
  left: 4px;
}

.loadership div:nth-child(10) {
  animation-delay: -0.32s;
}

.loadership div:nth-child(10):after {
  top: 30px;
  left: 0px;
}

.loadership div:nth-child(11) {
  animation-delay: -0.36s;
}

.loadership div:nth-child(11):after {
  top: 45px;
  left: 4px;
}

.loadership div:nth-child(12) {
  animation-delay: -0.4s;
}

.loadership div:nth-child(12):after {
  top: 56px;
  left: 15px;
}

@keyframes loadership_roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=bbu.css.map */
