/* Scrollbar Work */
html {
  --scrollbarBG: #292929;
  --thumbBG: #afafaf;
}
html::-webkit-scrollbar {
  width: 12px;
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
html::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
html::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
  transition: 1s ease;
}

/* PAGE ELEMENTS */
#page-content {
  background-color: #dddddd;
}
#content-frame {
  background-color:  #ffffff;
}

/* Footer */
footer {
  color: #fff;
  background-color: #424242;
  width: 100%;
}

/* Banner */
.fbn-banner {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
}

.fbn-banner-entry {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  box-sizing: border-box;
}
@media (max-width:1399px) {
  .fbn-banner-entry {
	  padding: 0;
  }
}
@media (min-width:1400px) {
  .fbn-banner-entry {
	  padding: 100px 0 0;
  }
}
#underbar, #underbar2 {
  height: 20px; 
  width: 100%;
}
#statusbar {
  width: 100%;
  height: 5px;
  background-color: #fff;
}
#statusbar div {
  box-sizing: border-box;
}
.overall {
  width: 1300px;
  max-width: 100%;
}
.overall-small {
  width: 1400px;
  max-width: 100%;
}
.fbnci-container, .fbnci-container-small { 
  position: relative; 
} 
@media screen and (orientation: landscape) {
  .fbnci-container { 
    width: 100%; 
    padding-top: 61.5384615384624%; /* 13:8; Aspect Ratio */ 
  } 

}
@media screen and (orientation: portrait) {
  .fbnci-container { 
    width: 100%; 
    padding-top: 162.5%; /* 8:13; Aspect Ratio */ 
  } 

}


.fbnci-inner { 
  position: absolute; 
  top: 0; 
  left: 0; 
  bottom: 0; 
  right: 0; 
} 

/*ADD CONTAINER TO MEDIA QUERIES FOR SAKE OF SCREEN SIZE AND LAYOUT*/
.container, .container-small {
  width: 100%;
  height: 100%;
  display: grid;
}

@media screen and (orientation: landscape) {
  .container {
    grid-template-columns: 23.076923076923% 7.6923076923077% 7.6923076923077% 61.538461538462%;
    grid-template-rows: 25% 12.5% 62.5%;
    grid-template-areas: "C D D A" "C F E A" "B B B A";
  }
}

@media screen and (orientation: portrait) {
  .container {
    grid-template-columns: 25% 12.5% 62.5%;
    grid-template-rows: 23.076923076923% 7.6923076923077% 7.6923076923077% 61.538461538462%;
    grid-template-areas: "C C B" "D F B" "D E B" "A A A";
  }

}
@media (min-width:640px) {
  .fbnci-container-small { 
    width: 100%; 
    padding-top: 23.076923076923077% /* 13:3; Aspect Ratio */
  }
  .container-small {
    grid-template-columns: 23.076923076923% 7.6923076923077% 7.6923076923077% 61.538461538462%;
    grid-template-rows: 63% 37%;
    grid-template-areas: "C D D A" "C F E A";
  }
}
@media (max-width:639px) {
  .fbnci-container-small { 
    width: 100%; 
    padding-top: 37.5% /* 8:3; Aspect Ratio */ 
  }
  .container-small {
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    grid-template-areas: "A";
  }
}
.crsr:hover {
  cursor: pointer;
}

.white > * {
  color: #fff !important;
}

.item {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  color: white;
}

.item.a {
  grid-area: A;
  background-color: #666;
}

.item.b {
  grid-area: B;
  background-color: #666;
}

.item.c {
  grid-area: C;
  background-color: #666;
}

.item.d {
  grid-area: D;
  background-color: #666;
}

.item.e {
  grid-area: E;
  background-color: #666;
}

.item.f {
  grid-area: F;
  background-color: #666;
}

.transition {
  transition: 1s ease;
}

.one-one-out {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.eight-three-out {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.one-one-in {
  position: absolute; 
  top: 0; 
  left: 0; 
  bottom: 0; 
  right: 0; 
}

.banner-buttons {
  color: rgba(102, 102, 102, 0.6);
  transition: 0.25s ease;
}
.banner-buttons:hover {
  color: rgba(102, 102, 102, 0.2);
  transition: 0.25s ease;
}

/* Change Our Alert Colors */
.uk-alert-danger {
  background: #f0506e;
  color: #fff;
}
.uk-alert-success {
  background: #02b473;
  color: #fff;
}
.uk-alert-warning {
  background:#faa05a;
  color: #fff;
}
.uk-alert-primary {
  background: #1e87f0;
  color: #fff;
}
