html{
    position: relative;
    min-height: 100%;
}

body{
    background: rgba(12, 13, 19, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    margin-bottom: 60px;
}

footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    /*background: rgba(12, 13, 19, 0.9);*/
}

.col-custom-1{
    flex: 0 0 4.16666%;
    max-width: 4.16666%;
  }

.form-control{
    font-size: 13px;
    padding: .5rem!important;
}

.login{
    margin-top: 25%;
}
.signout {
    width:100%;
}
.user-button{
    font-size: 13px!important;
    width: 100%;
}
.user-list-height{
    margin-bottom: 1rem;
}

.hidden{
    display:none;
}

.form_field label{
    margin-top: .5rem;
    margin-right: .5rem;
}
.course-container{
    height: 2rem;
    line-height: 2rem;
}
.course-text{
    vertical-align: middle;
    display: inline-block;
    font-size: 14px;
}

.mid-row{
    margin-top: 3rem!important;
}
.questions{
    margin-top: .5rem;
}

.form_field{
    margin-top: 1rem;
}

.logo{
    height: 100px;
    line-height: 100px;
}

.header-primary{
    min-height: 100px;
    /*background: rgba(12, 13, 19, 0.9);*/
    margin-bottom: 1rem;
}

button > a {
    color:white;
}

button > a:hover {
    color:white;
}

.copyright{
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    color: white;
    font-size: 12px;
}

.header-title{
    margin: 0 auto;
    width: 100%;
    line-height: 100px;
    font-size: 24px;
    color: #f8a219;
    text-align: center;
}

.section{
    border-bottom: 1px #0c0d13;
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom-style: dashed;
}

.session_title{
    font-size: 16px;
    margin: 10px 0;
}

.section_title{
    font-size: 16px;
    margin: 10px 0;
}
.session{
    margin: 10px 0;
}

.buttons{
    margin-top: 2rem;
    width: 100%;
    padding: .5rem;
}

.accept-button{
    margin-top: 5px;
    width: 100%;
}

.white{
    color: white;
}

.social{
    font-size: 18px;
}
.social-call{
    font-size: 14px;
}

.social-call > i > a {
    color: #FF7E47;
    font-weight: 600;
}

.textarea {
    margin-top: .75rem;
}


.main{
    padding-bottom: 1.5rem;
}


body ::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

body ::-webkit-scrollbar-thumb:vertical {
    height: 20px;
    background-color: #10334e;
	border-radius: 6px;
}

.no-border {
    border:none;
}

.custom-guttering{
    padding-right:0!important;
}

.right-align{
    text-align: right!important;
    padding-right:0;
}

.left-align{
    text-align: left!important;
}

.center-align{
    text-align:center!important;
}

.padding-row{
    padding: 5px 0;
}
a{
    color: #f63800;
    text-decoration: none;
}

a:hover{
    color: #f63800;
    text-decoration: none;
}


#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 7000;
    display: none; 
}
  
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #91a12a;
    -webkit-animation: spin 2s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001; 
}

    #loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #c9338b;
    -webkit-animation: spin 3s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */ 
}

    #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ffd744;
    -webkit-animation: spin 1.5s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */ 
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */ 
    }
    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */ 
    } 
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */ 
    }
    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */ 
    } 
}

    #loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #393b6d;
    z-index: 1000;
    -webkit-transform: translateX(0);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);
    /* IE 9 */
    transform: translateX(0);
    /* Firefox 16+, IE 10+, Opera */ 
}

#loader-wrapper .loader-section.section-left {
    left: 0; 
}

#loader-wrapper .loader-section.section-right {
    right: 0; 
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);
    /* IE 9 */
    transform: translateX(-100%);
    /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); 
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);
    /* IE 9 */
    transform: translateX(100%);
    /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); 
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; 
}

    .loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);
    /* IE 9 */
    transform: translateY(-100%);
    /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out; 
}

.eMain{
    font-size: 15px;
    margin: 3rem;
}
.error-logo{
    color:#393b6d;
    font-size: 16rem;
}

.header-warning{
    margin: 1rem 0;
}

.mobile{
    display: none;
}
.multiple{
    display: none;
}

.event-mobile-button:after {
    margin-top: 12%!important; 
}
.quotation__exclusion-text{
    font-size: 11px;
    margin-top: 1.2rem;
}
.mobile-button:after {
        content: '';
        position: absolute;
        left: 87%;
        margin-top: 10%;
        background-image: url(../images/icon.png);
        width: 1.75rem;
        height: 1.75rem;
        background-size: 1.75rem;
        transform: translateY(-150%);
        transition: transform .5s ease;
        -ms-transform: translateY(-150%);
        -moz-transition: transform .5s ease;
        -moz-transform: translateY(-150%);
        -webkit-transition: transform .5s ease;
        -webkit-transform: translateY(-150%);
}
.open:after{
        transform: translateY(-150%) rotate(225deg);
        transition: transform .5s ease;
        -ms-transform: translateY(-150%) rotate(225deg);
        -moz-transition: transform .5s ease;
        -moz-transform: translateY(-150%) rotate(225deg);
        -webkit-transition: transform .5s ease;
        -webkit-transform: translateY(-150%) rotate(225deg);
}
@media only screen and (max-width: 576px) {
    
    .header-title,.potential_facts_accordion{
        font-size: 18px;
        line-height: inherit;
        margin-top: 30px;
    }

    .results_summary{
        width: 100%!important;
        margin-left:0!important;
    }
    p{
        font-size: 14px;
    }
    .left-align{
        text-align: center!important;
    }
    .social-call{
        padding-top: 1rem !important;
        padding: inherit;
    }
    .social{
        display: none;
    }
    
    .events-title{
        text-align: left;
    }
    .mobile-buffer{
        margin-top: .75rem;
    }
    .mobile-header{
        text-align: left!important;
    }
    .mobile-value{
        text-align: right!important;
    }
    .social-call{
        text-align: center!important;
    }
    
  }
 

  /** Champs **/

  .skills,.outcome,.stageInfo {
      margin-top: 20px;
  }
  .stageInfo,.wave_container{
    display: inline-block;
    width: 100%;
  }
  .skill_container,.result_container,.wave_container{
      padding-left: 20px;
      padding-right: 20px;
  }
  .skill_container > div,.result_container > div,.wave_container > div,.champ_summary > div{
      padding-bottom: 10px;
      color: white;
  }
  
  .champ_summary > div{
    padding-bottom: 10px;
    color: white;
    display: flex;
    align-content: center;
    justify-content: center;
    float: left;
    width: 50%;
    flex-direction: column;
  }
  .stat_title{
      width: 55%;
      float: left;
  }
  .champ_img{
      display: block;
      margin: auto;
      overflow: auto;
      margin-bottom: 10px;
  }
  .champion_details{
      display: inline-flex;
      width: 100%;
  }
  .champion_details > div{
      width: 25%;
  }
  .champ_portrait{
      width: 45%;
  }
  .champ_summary,.champ_portrait,.champ_lookup{
      float: left;
  }
  .affinity img {
      transform: scale(0.85);
      -webkit-transform: scale(0.85);
      -moz-transform: scale(0.85);
  }
  .red_req{
      color: #f8a219;
  }
  .champ_portrait img{
      display: block;
      height: 100px;
      width: auto;
      margin: auto;
  }
  .champ_lookup img{
    display: block;
    height: 130px;
    width: auto;
    margin: auto;
  }
  .champ_title,.sr_title{
      font-weight: 600;
      padding-bottom: 5px;
      text-align: center;
      font-size: 16px;
      padding-right: 20px;
  }
  .room_requirements{
      display: flex;
      justify-content: space-evenly;
  }
  .secret_room{
      margin-bottom: 20px;
  }
  .value_title{
      width: 45%;
      float:left;
      text-align: right;
  }
  .enemy {
      width: 20%;
      float: left;
  }
  .reward-img{
      width: auto;
      height: 100px;
      display: flex;
      margin: 0 auto;
      margin-bottom: 10px;
  }

  .stage_select_field{
      width: 27%;
      margin-right: 2.9%;
      margin-left: 2.9%;
      float: left;
      margin-top: 0;
  }
  .cb_chest_field{
    width: 46%;
    margin-right: 2.9%;
    margin-left: 2.9%;
    float: left;
    margin-top: 0;
}
    .cb_chest_button{
        width: 46%;
    }
  .rewards_container{
      display: flex;
      flex-wrap: wrap;
  }
  .reward_item{
      display: flex;
      justify-content: center;
      flex: 14%;
  }
  .reward_item > p{
      text-align: center;
      font-size: 1rem;
  }

  @media(min-width: 1024px){      
    .line_title, .results_title{
        padding-right:20px;
    }
    }

  @media(max-width: 1024px){  
    .champ_portrait img{
        height: 80px;
        }
    }
  @media(max-width: 813px){
      .header-primary{
          min-height: 50px;
      }
      .line_title, .results_title{
        padding-right:20px;
      }
    .enemy{
        width: 25%;
        float: left;
    }
    .champ_portrait img{
        height: 80px;
    }
}

  @media(max-width: 576px){
    .stage_select_field{
        width: 95%;
    }
    .wave_container{
        padding-left: 0;
        padding-right: 0;
    }
    .line_title, .results_title{
        padding-right: 10px;
    }
    
  .wave_container > .enemy:nth-child(odd) > .line_title{
    padding-right: 0;
}
      .enemy,.champion_details > div{
          width: 50%;
          float: left;
      }
      .champion_details{
          display: inline-block;
      }
      .champ_summary{
          width: 100%!important;
          margin: 20px!important;
      }
      .champ_portrait img{
          height: 80px;
      }
      .skill_container{
          margin-bottom: 20px;
      }
  }
  .skill_title,.wave_title, .reward_title{
      text-align: center;
      font-size: 18px;
      border-bottom: 1px solid #f8a219;
      margin-bottom: 10px;
  }
  .hydra_title{
      float:left;
      width: 100%;
      text-align: center;
      font-size: 15px;
      margin-bottom: 10px;
  }
  .reward_title{
      color: white;
  }
  .results_summary{
      width: 60%;
      display: flex;
      margin-left: 20%;
      font-size: 18px;
  }
  .cb_results_summary{
    width: 100%;
    display: flex;
    font-size: 18px;
}
  
  .ehp_summary{
    width: 80%;
    display: flex;
    margin-left: 10%;
    font-size: 18px;
}
.skill_line_title{
    font-weight: 600;
    padding-right:20px;
}
  .line_title, .results_title, .cb_results_title{
      font-weight: 600;
      width: 100%;
      display: inline-block;
  }

  .cb_result_value{
      margin-top: 10px;
}


.results_title, .cb_results_title{
    text-align: center;

}
.results_title > div, .cb_results_title > div {
    font-weight: 400!important;
}
  .btn-success{
      background-color: #0c0d13!important;
      border-color: #fff!important;
  }


/* Style the buttons that are used to open and close the accordion panel */
.potential_facts_accordion, .rewards_accordion {
    background-color: rgba(12, 13, 19, 0.9);
    border-color: #fff;
    color: #f8a219;
    cursor: pointer;
    font-size: 18px;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
  }
  .rewards_accordion{
      margin: 10px 0;
  }
  .shown{
      max-height: inherit!important;
      transition: 0.4s;
  }
  label{
      color: #f8a219;
  }
  p{
      color: white;
  }
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .potential_facts_accordion:hover, .rewards_accordion:hover {
    border-color: #f63800;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .potential_panel, .rewards_panel {
    font-size: 14px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
  }

  .potential_panel > p, .rewards_panel > p {
    padding: 20px;
    padding-bottom: 0;
    margin: 0;
  }
  .potential_facts_accordion:after, .rewards_accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 18px;
    color: #FF7E47;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

  .sr_val{
      font-weight: 400;
      padding-left: 20px;
  }

  /** HH CUSTOM EMBED **/
    .hh-change-transparency{
    background: none!important
    }
    .hh-change-transparency a {
        color: #f8a219;
    }
    .hh-change-transparency a:hover{
        color: darken(#f8a219,20%);
    }
    .hh-remove-header{
    display: none;
    }
    .hh-embed-top-padding{
        margin-top: .5em;
    }