/* --- GLOBAL --- */

*, *::before, *::after { box-sizing: border-box; }
section { max-width: 1920px; margin: auto; }      /* sets EVERYTHING inside a Section to have a max-width: 1920px; -- child items adapt) */
footer {  max-width: 1920px; margin: auto; }      /* sets EVERYTHING inside a footer to have a max-width: 1920px; -- child items adapt) */
nav {  max-width: 1920px;}
/* .container-fluid { max-width: 1920px; } */     /* not needed anymore if outside container is limited to max-width: 1920px; */



/* --- BODY --- */

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #222222;
  background-color: #e9e9e9; /* #e9e9e9 */
}



/* --- FONT SIZE MODIFIER --- */
.x0-85 {
  font-size: 0.85em;
}
.x1-25 {
  font-size: 1.25em;
}
.x1-5 {
  font-size: 1.5em;
}
.x1-75 {
  font-size: 1.75em;
}


/* --- TEXT WARNING OVERRIDES --- */
.text-danger {
  color: #D9534F;
  font-weight: 700;
}
.text-warning {
  color: #F0AD4E;
  font-weight: 700;
}
.text-info {
  color: #5BC0DE;
  font-weight: 700;
}
.text-success {
  color: #5CB85C;
  font-weight: 700;
}
.text-primary {
  color: #337AB7;
  font-weight: 700;
}




/* --- NAVBAR --- */

/* NAVBAR modification - add spaces according to viewport */
@media (max-width: 1200px) {

  .navbar .nav > li {
      padding-left: 2px;
  }

}

@media (min-width: 1200px) {

  .navbar .nav > li {
      padding-left: 20px;
  }

}


/* NAVBAR transition (mobile) */

.collapsing {
  -webkit-transition: none;
  transition: none;
}

/* NAVBAR modification, remove rounded borders, max width */
.navbar-default {
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.30);        /* subtle box shadow */
  -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.30);           /* subtle box shadow */
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.30);                /* subtle box shadow */
}



/* SMARTNAV modification, add dark background for submenu */
.navbar-nav:not(.sm-collapsible) ul a.has-submenu {
  background-color: rgb(50, 50, 50);
}
.navbar-nav.sm-collapsible a.has-submenu {
  background-color: rgb(50, 50, 50);
}
.navbar-nav.sm-collapsible[data-sm-skip-collapsible-behavior] a.has-submenu {
  background-color: rgb(50, 50, 50);
}




/* --- GENERAL PAGE LAYOUT --- */

.header-offset {          /* needs to be in the first col after ROW that starts the page */
  margin-top: 30px;;
}

.text-block {             /* this declares the block of text padding */
   padding-top: 30px; padding-bottom: 30px;
}

.paragraph-offset {       /* an additional paragraph offset to push the <p> a bit further */
  margin-top: 30px;
}

.paragraph-jump {         /* INFO - PARAGRAPH IS EMPTY */
  margin-top: 15px;
}

.check-block {             /* For checking layout issues */
  border: 1px solid green;"
}

.sponsor {                /* Sponsor Block */
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 7%;
  padding-right: 7%;
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: rgb(245, 245, 245);
  border: 0;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.20);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.20);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.20);
}

.panel {                  /* INFO - Drop Shadow for Panels like Warning, Dropdown Carussel, etc - see SPONSOR Page */
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.20);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.20);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.20);
}

.host-block {             /* for the host image and info */
  margin: 10px 0px;                         /* outer border space */
  border-radius: 1px;                       /* rounded corners, yo! */
  background-color: #E5E5E5;
}
.host-block-text {
  padding: 10px 7px;
}
.host-block-img {
  width: 100%;
}

dt, dd {                      /* Horizontal Description List */
  padding-bottom: 5px;
} 

.sp-list {                    /* song provider list */
  padding-top: 20px;
}




/* --- FOOTER --- */

.footer-color {
  color: #f2f2f2;
  background-color: rgb(50, 50, 50);
  padding-top: 0.75rem;
  font-size: 0.85em;
}

a.footer-links:link, a.footer-links:visited {
  color: rgb(241, 241, 241); /* #f2f2f2 */
}
a.footer-links:hover, a.footer-links:focus {
  color: rgb(153,153,153);  /* #999999 */
}




/* --- JUMBOTRON / HERO (2019) --- */

/* .hero-container-fluid { max-width: 1920px; } */    /* not needed, because HERO is wrapped in section, section has max-width: 1920px; -- child adapts */
.hero-main-col p { font-weight: 700; }
.hero-bg-fade {
  background: linear-gradient(96deg, rgba(254, 254, 254, 1.0) 40%, rgba(0, 0, 0, 0.1));
}
.hero-row {
  display:flex;
  min-height: 575px;   /* hero image vertical size max */
}
.hero-main-col {
  background-image: linear-gradient(98deg, rgba(254, 254, 254, 1.0) 220px, rgba(254, 254, 254, 0.1)), url(../images/mc-landing-bg-right.jpg); /* fade top: dark to bright: bottom */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-main-col::before { /* slanted block - large view only */
  content: '';
  height: 100%;
  display: block;
  position: absolute;
  width: 45px;
  left: -44px;
  background: rgb(254, 254, 254);
  -webkit-clip-path: polygon(95% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(85% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-main-textblock {
  margin: 0;
  max-width: 500px;
  padding-right: 20px;
  margin-top: 60px;
}
.hero-bg-img {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55)), url(../../media/launch-bg/rotator.php); /* fade top: dark to bright: bottom */
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-logo {
  margin: 50px auto;
}
.hero-logo-hidden {  /* is the Mix Challenge Logo for small screens */
  display:none;
  text-align: center;
  padding-top: 15px;
  margin-bottom: 5px;
}
.btn-games {
  display: block;
  width: 100%;
  padding: .5em 1.25em;
  background: rgb(50, 50, 50);
  border-radius: 1px;
  box-shadow: 0px 6px 10px -6px rgba(0,0,0,0.5);
  color: rgb(241, 241, 241);
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 576px) {   /* formerly 768px */
    .hero-row .col-sm-7 {
      display:none;
    }
    .hero-logo-hidden {
      display:block !important;
    }
    .hero-row .hero-main-col .hero-main-textblock {
      margin: 0;
    }
}
@media only screen and (max-width: 1024px) {
    .hero-row .hero-main-col .hero-main-textblock {
      padding-right: 10px;
    }
}




/* --- COUNTDOWN(s)--- */

@media only screen and (max-width: 319px) {
    .adjust-countdown-left {
      padding-left: 45px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 360px) {
    .adjust-countdown-left {
      padding-left: 70px;
    }
}


.timer-next {
  margin-top: 35px;
  margin-bottom: 10px;
}

#countdown1a.is-countdown {
  max-width: 396px;     /* width outer border */
  margin: auto;
  color: #FFFFFF;       /* font color */
}
#countdown1a .countdown-rtl {
  direction: rtl;
}
#countdown1a .countdown-row {                /* sets general rules for the timer row */
  clear: both;
  width: 100%;
  margin: auto;
  padding: 0px 2px;
  text-align: center;
}
#countdown1a .countdown-show4 .countdown-section {   /* sets the block width and background of the timer */
  width: auto;
  margin: 6px 4px;                          /* sets distance to each block */
  background-color: #353535;
  border-radius: 1px; 
}
#countdown1a .countdown-section {            /* sets the block lettering of the timer */
  display: block;
  float: left;
  text-align: center;
}
#countdown1a .countdown-amount {             /* sets timer counter values */
  display: block;
  width: 90px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: inset 1px #3A3A3A;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
#countdown1a .countdown-period {             /* sets timer description */
  display: block;
  padding-top: 7px;
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

/* -------------------------------------------------------------------------------- */

#countdown2a.is-countdown {
  max-width: 396px;     /* width outer border */
  margin: auto;
  color: #FFFFFF;       /* font color */
}
#countdown2a .countdown-rtl {
  direction: rtl;
}
#countdown2a .countdown-row {                /* sets general rules for the timer row */
  clear: both;
  width: 100%;
  margin: auto;
  padding: 0px 2px;
  text-align: center;
}
#countdown2a .countdown-show4 .countdown-section {   /* sets the block width and background of the timer */
  width: auto;
  margin: 6px 4px;                          /* sets distance to each block */
  background-color: #353535;
  border-radius: 1px; 
}
#countdown2a .countdown-section {            /* sets the block lettering of the timer */
  display: block;
  float: left;
  text-align: center;
}
#countdown2a .countdown-amount {             /* sets timer counter values */
  display: block;
  width: 90px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: inset 1px #3A3A3A;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
#countdown2a .countdown-period {             /* sets timer description */
  display: block;
  padding-top: 7px;
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

/* -------------------------------------------------------------------------------- */

#countdown3a.is-countdown {
  max-width: 396px;     /* width outer border */
  margin: auto;
  color: #FFFFFF;       /* font color */
}
#countdown3a .countdown-rtl {
  direction: rtl;
}
#countdown3a .countdown-row {                /* sets general rules for the timer row */
  clear: both;
  width: 100%;
  margin: auto;
  padding: 0px 2px;
  text-align: center;
}
#countdown3a .countdown-show4 .countdown-section {   /* sets the block width and background of the timer */
  width: auto;
  margin: 6px 4px;                          /* sets distance to each block */
  background-color: #353535;
  border-radius: 1px; 
}
#countdown3a .countdown-section {            /* sets the block lettering of the timer */
  display: block;
  float: left;
  text-align: center;
}
#countdown3a .countdown-amount {             /* sets timer counter values */
  display: block;
  width: 90px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: inset 1px #3A3A3A;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
#countdown3a .countdown-period {             /* sets timer description */
  display: block;
  padding-top: 7px;
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

/* -------------------------------------------------------------------------------- */

#countdown4a.is-countdown {
  max-width: 396px;     /* width outer border */
  margin: auto;
  color: #FFFFFF;       /* font color */
}
#countdown4a .countdown-rtl {
  direction: rtl;
}
#countdown4a .countdown-row {                /* sets general rules for the timer row */
  clear: both;
  width: 100%;
  margin: auto;
  padding: 0px 2px;
  text-align: center;
}
#countdown4a .countdown-show4 .countdown-section {   /* sets the block width and background of the timer */
  width: auto;
  margin: 6px 4px;                          /* sets distance to each block */
  background-color: #353535;
  border-radius: 1px; 
}
#countdown4a .countdown-section {            /* sets the block lettering of the timer */
  display: block;
  float: left;
  text-align: center;
}
#countdown4a .countdown-amount {             /* sets timer counter values */
  display: block;
  width: 90px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: inset 1px #3A3A3A;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
#countdown4a .countdown-period {             /* sets timer description */
  display: block;
  padding-top: 7px;
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}



/* --- CAROUSEL (Countdown mainly) --- */

.carousel {
  max-width: 1920px;
  margin: auto;
  background-color: #fefefe;
}
.carousel-inner {
    min-height: 280px;
    max-height: 800px;
}

@media only screen and (max-width: 360px) {
    .carousel-inner {
        min-height: 385px;
    }
}
@media only screen and (min-width: 361px) and (max-width: 480px) {
    .carousel-inner {
        min-height: 320px;
    }
}


.carousel-control {
    background: none !important;
}
a.carousel-control:active, a.carousel-control:hover, a.carousel-control:link, 
a.carousel-control:focus, a.carousel-control:visited {
  color: #444;
}

.carousel-indicators li {
  border: 2px solid #444;
  width: 15px;
  height: 15px;
}
.carousel-indicators .active {
  background-color: #666;
  border: 2px solid #444;
  width: 15px;
  height: 15px;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

/*
  FOR BOOTSTRAT 3.3 and up... - but not mandatory!
  ------------------------------------------------
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
*/
/* 
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
*/




/* --- STATISTICS --- */

.SimpleChart {
  position: relative;
}
.SimpleChart #tip {
  background-color: #f0f0f0;
  border: 1px solid #d0d0d0;
  position: absolute;
  left: -200px;
  top: 30px;
}
.down-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid #d0d0d0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  left: -200px;
}
.SimpleChart #highlighter {
  position: absolute;
  left: -200px;
}
.-simple-chart-holder {
  float: left;
  position: relative;
  width: 100%;
  background-color: #fff;
  border: 1px solid #cecece;
  /*padding: 6px;*/
}
.simple-chart-Header {
  position: absolute;
  font-size: 14px;
  font-weight:600;
}


.chart-legend {
  height:15px;
  width:40px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  display:inline-block;
  margin-right: 10px;
}
.chart-legend + .chart-legend {
  margin-left: 15px;
}

.stats-table {background-color: white;}
.stats-table th {text-align: center;}
.stats-table td {padding: 5px; text-align: center;}
.stats-table .stats-table-year {width: 8%; height: 70px;}
.stats-table .stats-table-month {width: 15%; height: 30px;}
.stats-table .stats-orange {background-color: #FFA500;}
.stats-table .stats-gold {background-color: #FFD700;}
.stats-table .stats-grey {background-color: #e6e6e6; background: repeating-linear-gradient(45deg, #e6e6e6, #e6e6e6 5px, #cccccc 5px, #cccccc 10px);} /* original: 45deg, #606dbc, #606dbc 5px, #465298 5px, #465298 10px */




/* --- BUTTONS (custom) --- */

.alert-above-nav {
  border-radius: 0;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 5px;"
}

.alert-cross {
  color: #000000;
  opacity: 1;
}

.btn-send {
/*    font-weight: 300; */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.warning-star {
  font-weight: 600;
  color: red;
}




/* --- PROGRESS BAR AND ANIMATION (CSS3) --- */
.progress-bar-step {
  position:absolute;
  margin-top:-20px;
  z-index:1;
  font-size:0.75em;
}

.progress-bar-label-txt {
  float: left;
}

.progress-bar-label-line {
  float: right;
  background: #000;
  height:45px;
  width:1px;
  margin-left: 5px;
}

.progress-bar-label-percent {
  float: right;
  margin-left: 5px;   
}


.pbl-server {left: 4.2%;}
.pbl-waypoint {left: 44.1%;} 
.pbl-fundedfull {left: 70.8%;} 

@media only screen and (max-width: 319px) {
    .pbl-server {left: 12.5%;}
    .pbl-waypoint {left: 48.7%;} 
    .pbl-fundedfull {left: 76.8%;} 
    .progress-bar-label-txt {display: none;}
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
    .pbl-server {left: 12.4%;}
    .pbl-waypoint {left: 48.6%;} 
    .pbl-fundedfull {left: 76.7%;} 
    .progress-bar-label-txt {display: none;}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .pbl-server {left: 11.7%;}
    .pbl-waypoint {left: 49.3%;} 
    .pbl-fundedfull {left: 78.4%;} 
    .progress-bar-label-txt {display: none;}
} 
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pbl-server {left: 2.4%;}
    .pbl-waypoint {left: 42.1%;} 
    .pbl-fundedfull {left: 67.6%;} 
} 
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .pbl-server {left: 2.9%;}
    .pbl-waypoint {left: 42.7%;} 
    .pbl-fundedfull {left: 68.6%;} 
}



.progress-bar.patronage {
  width: 0;
  animation: progress 2s ease-in 1s 1; /* name duration timing-function delay iteration-count animation-direction */
  animation-fill-mode: forwards;
  -webkit-animation: progress 2s ease-in 1s 1; /* name duration timing-function delay iteration-count animation-direction */
  -webkit-animation-fill-mode: forwards;
}
.progress-bar.fundexp {
  width: 0;
  animation: progress 3s ease-in 2s 1; /* name duration timing-function delay iteration-count animation-direction */
  animation-fill-mode: forwards;
  -webkit-animation: progress 3s ease-in 2s 1; /* name duration timing-function delay iteration-count animation-direction */
  -webkit-animation-fill-mode: forwards;
}
.progress-bar.sponsorship {
  width: 0;
  animation: progress 4s ease-in 3s 1; /* name duration timing-function delay iteration-count animation-direction */
  animation-fill-mode: forwards;
  -webkit-animation: progress 4s ease-in 3s 1; /* name duration timing-function delay iteration-count animation-direction */
  -webkit-animation-fill-mode: forwards;
}
@keyframes progress {
  from{width: 0;}
  to{width:100%;}
}
@-webkit-keyframes progress {
  from{width: 0;}
  to{width:100%;}
}




/* section colors */

.section-dirtwhite {
  background-color: rgb(254, 254, 254);
}
.section-bg-grey {
  background-color: rgb(233, 233, 233);
}
.section-bg-lightblack {
  background-color: rgb(17, 17, 17);
}
.section-bg-green {
  background-color: rgb(0, 128, 43);
}
.section-bg-brightorange {
  background-color: rgb(255, 69, 0);
}
.survey-bar {     /* addition to .section-bg-? */
  padding-top: 7px;
  padding-bottom: 9px;
  color: #f2f2f2;
  font-weight: 700;
}



/* HORIZONTAL LINE */
.h-divider{
  margin-top:30px;
  /* margin-bottom:30px; */
  margin-left: 15%;
  margin-right: 15%;
  height:1px;
  width:70%;
  border-top:1px solid gray;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.20);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.20);
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.20);
}




/* ROTATION */

.rotate-90ccw {
  -webkit-transform: rotate(-90deg); /* Safari */
  -moz-transform: rotate(-90deg); /* Firefox */
  -ms-transform: rotate(-90deg);/* IE */
  -o-transform: rotate(-90deg); /* Opera */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); /* Internet Explorer */
}

.rotate-90cw {
  -webkit-transform: rotate(90deg); /* Safari */
  -moz-transform: rotate(90deg); /* Firefox */
  -ms-transform: rotate(90deg);/* IE */
  -o-transform: rotate(90deg); /* Opera */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); /* Internet Explorer 0=0, 1=90, 2=180, 3=270 */
}

