/*
$font-family-sans-serif:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
$font-family-monospace:       SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
$font-family-base:            $font-family-sans-serif !default;
// stylelint-enable value-keyword-case
*/
/*
$alert-padding-y:                   .75rem !default;
$alert-padding-x:                   1.25rem !default;
$alert-margin-bottom:               1rem !default;
$alert-border-radius:               $border-radius !default;
$alert-link-font-weight:            $font-weight-bold !default;
$alert-border-width:                $border-width !default;

$alert-bg-level:                    -10 !default;
$alert-border-level:                -9 !default;
$alert-color-level:                 6 !default;


// Progress bars

$progress-height:                   1rem !default;
$progress-font-size:                $font-size-base * .75 !default;
$progress-bg:                       $gray-200 !default;
$progress-border-radius:            $border-radius !default;
$progress-box-shadow:               inset 0 .1rem .1rem rgba($black, .1) !default;
$progress-bar-color:                $white !default;
$progress-bar-bg:                   theme-color("primary") !default;
$progress-bar-animation-timing:     1s linear infinite !default;
$progress-bar-transition:           width .6s ease !default;


// List group

$list-group-color:                  null !default;
$list-group-bg:                     $white !default;
$list-group-border-color:           rgba($black, .125) !default;
$list-group-border-width:           $border-width !default;
$list-group-border-radius:          $border-radius !default;

$list-group-item-padding-y:         .75rem !default;
$list-group-item-padding-x:         1.25rem !default;

$list-group-hover-bg:               $gray-100 !default;
$list-group-active-color:           $component-active-color !default;
$list-group-active-bg:              $component-active-bg !default;
$list-group-active-border-color:    $list-group-active-bg !default;

$list-group-disabled-color:         $gray-600 !default;
$list-group-disabled-bg:            $list-group-bg !default;

$list-group-action-color:           $gray-700 !default;
$list-group-action-hover-color:     $list-group-action-color !default;

$list-group-action-active-color:    $body-color !default;
$list-group-action-active-bg:       $gray-200 !default;


// Image thumbnails

$thumbnail-padding:                 .25rem !default;
$thumbnail-bg:                      $body-bg !default;
$thumbnail-border-width:            $border-width !default;
$thumbnail-border-color:            $gray-300 !default;
$thumbnail-border-radius:           $border-radius !default;
$thumbnail-box-shadow:              0 1px 2px rgba($black, .075) !default;


// Figures

$figure-caption-font-size:          90% !default;
$figure-caption-color:              $gray-600 !default;


// Breadcrumbs

$breadcrumb-padding-y:              .75rem !default;
$breadcrumb-padding-x:              1rem !default;
$breadcrumb-item-padding:           .5rem !default;

$breadcrumb-margin-bottom:          1rem !default;

$breadcrumb-bg:                     $gray-200 !default;
$breadcrumb-divider-color:          $gray-600 !default;
$breadcrumb-active-color:           $gray-600 !default;
$breadcrumb-divider:                quote("/") !default;

$breadcrumb-border-radius:          $border-radius !default;


// Carousel

$carousel-control-color:             $white !default;
$carousel-control-width:             15% !default;
$carousel-control-opacity:           .5 !default;
$carousel-control-hover-opacity:     .9 !default;
$carousel-control-transition:        opacity .15s ease !default;

$carousel-indicator-width:           30px !default;
$carousel-indicator-height:          3px !default;
$carousel-indicator-hit-area-height: 10px !default;
$carousel-indicator-spacer:          3px !default;
$carousel-indicator-active-bg:       $white !default;
$carousel-indicator-transition:      opacity .6s ease !default;

$carousel-caption-width:             70% !default;
$carousel-caption-color:             $white !default;

$carousel-control-icon-width:        20px !default;

$carousel-control-prev-icon-bg:      str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"), "#", "%23") !default;
$carousel-control-next-icon-bg:      str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"), "#", "%23") !default;

$carousel-transition-duration:       .6s !default;
$carousel-transition:                transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)


// Spinners

$spinner-width:         2rem !default;
$spinner-height:        $spinner-width !default;
$spinner-border-width:  .25em !default;

$spinner-width-sm:        1rem !default;
$spinner-height-sm:       $spinner-width-sm !default;
$spinner-border-width-sm: .2em !default;

*/
.btn {
  border: 1px solid #fff;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 1rem;
  font-weight: 700;
  /*
    text-transform: uppercase;
    letter-spacing: 2px;
    &.btn-lg {
        @include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $btn-line-height-lg, 0);
    } 
    &.btn-sm {
        @include button-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-sm, $btn-line-height-sm, 0);
    }
    */ }
@media (max-width: 575.98px) {
  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.66666rem; } }

.btn-like-a {
  background: none transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #fff;
  cursor: pointer;
  text-decoration: none; }
  .btn-like-a:hover {
    border-bottom-color: #fff; }

.btn-link {
  padding-left: 0;
  padding-right: 0; }

.btn-primary {
  color: color-yiq(#000);
  border-color: #FF145F; }
  .btn-primary:hover {
    border: 1px solid #fa0050;
    background-color: #fa0050; }

.btn-primary-light {
  color: color-yiq(#000);
  background-color: #ff5189;
  border-color: #ff5189; }
  .btn-primary-light:hover {
    color: color-yiq(#000);
    border: 1px solid #ff3877;
    background-color: #ff3877; }

.btn-primary-dark {
  color: color-yiq(#000);
  background-color: #d60044;
  border-color: #d60044; }
  .btn-primary-dark:hover {
    color: color-yiq(#000);
    border: 1px solid #bc003c;
    background-color: #bc003c; }

.btn-secondary {
  color: color-yiq(#000);
  background-color: #f8f9fa;
  border-color: #f8f9fa; }
  .btn-secondary:hover {
    color: #fff;
    border: 1px solid #e9ecef;
    background-color: #e9ecef; }

.btn-secondary-light {
  color: color-yiq(#000);
  background-color: white;
  border-color: white; }
  .btn-secondary-light:hover {
    color: color-yiq(#000);
    border: 1px solid white;
    background-color: white; }

.btn-secondary-dark {
  color: color-yiq(#000);
  background-color: #d4dae1;
  border-color: #d4dae1; }
  .btn-secondary-dark:hover {
    color: color-yiq(#000);
    border: 1px solid #c5ced6;
    background-color: #c5ced6; }

.btn-dark {
  border-color: #000; }
  .btn-dark:hover {
    border: 1px solid #404040;
    background-color: #404040; }

.btn-light {
  background-color: transparent;
  border-color: #dee2e6;
  color: #000; }
  .btn-light:hover {
    color: color-yiq(#fff);
    border: 1px solid #cfd5db;
    background-color: #cfd5db; }

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #000; }
  .btn-white:hover {
    color: #000;
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2; }

.btn-default {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.15); }
  .btn-default:hover {
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0.25); }

.btn-outline-primary {
  border-color: #FF145F;
  color: #000; }
  .btn-outline-primary:hover {
    border-color: #FF145F;
    background-color: #FF145F;
    color: #fff; }

.btn-outline-secondary {
  border-color: #f8f9fa;
  color: #000; }
  .btn-outline-secondary:hover {
    border-color: #f8f9fa;
    background-color: #f8f9fa;
    color: #fff; }

.btn-outline-dark {
  border-color: #000;
  color: #000; }
  .btn-outline-dark:hover {
    border: 1px solid #000;
    background-color: #000; }

.btn-outline-light {
  border-color: #dee2e6;
  padding: 0.8rem 1.5rem; }
  .btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active {
    border: 1px solid #dee2e6;
    background-color: #000;
    color: #fff; }

.btn-outline-white {
  border-color: #fff;
  color: #fff; }
  .btn-outline-white:hover {
    color: #f2f2f2;
    border: 1px solid #f2f2f2; }

.btn-outline {
  border-color: #fff;
  color: #fff; }
  .btn-outline:hover {
    color: #f2f2f2;
    border: 1px solid #f2f2f2; }

.btn-loading {
  border: 0; }
  .btn-loading:hover {
    border: 0; }

.input-group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex; }

.input-group > .form-control, .input-group > .custom-select, .input-group > .custom-file {
  -webkit-box-flex: 1 1 auto;
  /* OLD - iOS 6-, Safari 3.1-6 */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  -webkit-flex: 1 1 auto;
  /* Chrome */
  flex: 1 1 auto;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

@font-face {
  font-family: 'Fira Bold';
  src: url('/Resources/Fonts/Fira/FiraSans-Bold.woff2') format('woff2'), url('/Resources/Fonts/Fira/FiraSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: bold; }
@font-face {
  font-family: 'Fira Medium';
  src: url('../Fonts/Fira/FiraSans-Medium.woff2') format('woff2'), url('../Fonts/Fira/FiraSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Fira Regular';
  src: url('../Fonts/Fira/FiraSans-Regular.woff2') format('woff2'), url('../Fonts/Fira/FiraSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'Merriweather Bold';
  src: url('../Fonts/Merriweather/Merriweather-Bold.woff2') format('woff2'), url('../Fonts/Merriweather/Merriweather-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal; }

.spinner {
  position: relative;
  display: inline-block;
  margin: auto;
  height: 18px;
  width: 18px;
  vertical-align: middle; }

.bowl_ringG {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-radius: 21px;
  -o-border-radius: 21px;
  -ms-border-radius: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px; }

.ball_holderG {
  position: absolute;
  width: 5px;
  height: 14px;
  left: 5px;
  top: 0px;
  animation-name: ball_moveG;
  -o-animation-name: ball_moveG;
  -ms-animation-name: ball_moveG;
  -webkit-animation-name: ball_moveG;
  -moz-animation-name: ball_moveG;
  animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  -ms-animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear; }

.ballG {
  position: absolute;
  left: 0px;
  top: -3px;
  width: 4px;
  height: 4px;
  background: #FF145F;
  border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px; }

@keyframes ball_moveG {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@-o-keyframes ball_moveG {
  0% {
    -o-transform: rotate(0deg); }
  100% {
    -o-transform: rotate(360deg); } }
@-ms-keyframes ball_moveG {
  0% {
    -ms-transform: rotate(0deg); }
  100% {
    -ms-transform: rotate(360deg); } }
@-webkit-keyframes ball_moveG {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@-moz-keyframes ball_moveG {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg); } }

body {
  color: #FFFFFF;
  background: #FF145F url(/Resources/Images/Drop-Zone-Background.jpg) no-repeat center center fixed;
  background-size: cover;
  font-family: "Fira Regular";
  font-size: 1rem;
  padding: 0;
  margin: 0;
  overflow: auto; }
  body > .main {
    max-width: 1440px;
    margin: 0 auto; }
  body a {
    color: #ffffff;
    text-decoration: underline; }
    body a:hover {
      color: #ccc; }
  body .mb-6 {
    margin-bottom: 3rem; }
  @media (max-width: 630px) {
    body .mb-6 {
      margin-bottom: 2rem; } }
@media (min-width: 992px) {
  body .container {
    max-width: 900px; } }
@media (min-width: 1200px) {
  body .container {
    max-width: 1140px; } }
@media (min-width: 1600px) {
  body .container {
    max-width: 1440px; } }

header {
  display: flex;
  justify-content: space-between;
  width: 100%; }
  header .logo img {
    width: 200px; }
  @media (max-width: 630px) {
    header .logo img {
      width: 175px; } }
header .navbar ul {
  list-style: none;
  margin-bottom: 0; }
  header .navbar ul li {
    flex: 0 1 auto;
    font-size: 1.3rem; }
    header .navbar ul li a {
      text-decoration: none; }
      header .navbar ul li a:hover {
        color: #fff;
        text-decoration: underline; }
    header .navbar ul li:last-child {
      margin-left: 2.5rem; }
  @media (max-width: 490px) {
    header .navbar ul li {
      width: 2rem; }
      header .navbar ul li:last-child {
        margin-left: 1.5rem; }
      header .navbar ul li a.info {
        background: url(/Resources/Images/question-square.svg) no-repeat;
        color: transparent;
        display: block; }
      header .navbar ul li a.contact {
        background: url(/Resources/Images/envelope-square.svg) no-repeat;
        color: transparent;
        display: block; } }

.container.bowman .inner {
  display: flex;
  align-items: center;
  border: 1px solid #FFFFFF;
  padding: 2.5rem;
  min-height: 66vh; }
@media (max-width: 630px) {
  .container.bowman .inner {
    min-height: 55vh; } }
.container.bowman .inner .box h2 {
  position: relative;
  font-family: "Merriweather Bold";
  font-size: 4rem;
  z-index: 60; }
  .container.bowman .inner .box h2 img {
    color: white;
    height: 60px;
    width: 88px;
    vertical-align: -5px; }
  @media (max-width: 1500px) {
    .container.bowman .inner .box h2 {
      font-size: 3.4rem; }
      .container.bowman .inner .box h2 img {
        height: 52px;
        width: 76px; } }
@media (max-width: 1200px) {
  .container.bowman .inner .box h2 {
    font-size: 2.6rem; }
    .container.bowman .inner .box h2 img {
      height: 40px;
      width: 52px; } }
@media (max-width: 992px) {
  .container.bowman .inner .box h2 {
    font-size: 2.1rem; }
    .container.bowman .inner .box h2 img {
      height: 40px;
      width: 52px; } }
@media (max-width: 630px) {
  .container.bowman .inner .box h2 {
    font-size: 1.5rem;
    line-height: 1.6; }
    .container.bowman .inner .box h2 img {
      height: 28px;
      width: 34px; } }
.container.bowman .inner .box h3 {
  font-family: "Merriweather Bold";
  font-size: 2rem;
  margin-bottom: 2.5rem; }
  .container.bowman .inner .box h3 span {
    display: inline-block;
    margin-left: 1.5rem;
    opacity: 0.75; }
.container.bowman .inner ul {
  list-style: none;
  margin-top: 2.5rem;
  padding-left: 0; }
  .container.bowman .inner ul li {
    margin-top: 1.4rem; }
    .container.bowman .inner ul li img {
      color: white;
      margin-right: 10px;
      height: 20px;
      width: 20px; }
    .container.bowman .inner ul li .error {
      text-decoration: line-through; }
    .container.bowman .inner ul li .spinner {
      display: none;
      margin-right: 10px; }
      .container.bowman .inner ul li .spinner.show {
        display: inline-block; }
    .container.bowman .inner ul li .size {
      display: inline-block;
      padding-left: 10px;
      opacity: 0.75; }
    .container.bowman .inner ul li .progressbar {
      background-color: rgba(255, 255, 255, 0.5);
      height: 6px;
      margin-top: 8px;
      width: 300px; }
      .container.bowman .inner ul li .progressbar .progressbarvalue {
        background-color: white;
        height: 100%;
        width: 0%; }
      @media (max-width: 630px) {
        .container.bowman .inner ul li .progressbar {
          width: 260px; } }

footer {
  font-family: "Fira Regular";
  padding-bottom: 3rem; }
  footer .btn {
    font-size: 1.2rem; }
  @media (max-width: 630px) {
    footer .btn {
      width: 100%; }
    footer.mt-5 {
      margin-top: 2rem !important; } }

.modal-content {
  border-radius: 0;
  color: #000;
  padding: 1.5rem; }
  .modal-content .modal-header {
    border-bottom: none; }
    .modal-content .modal-header button.close {
      font-size: 2.5rem;
      margin: -2.5rem -2rem -1rem auto; }
    @media (max-width: 992px) {
      .modal-content .modal-header h1 {
        font-size: 1.9rem; } }
  .modal-content a {
    color: #FF145F;
    text-decoration: none; }
    .modal-content a:hover {
      color: #FF145F;
      text-decoration: underline; }

#drop-box-overlay {
  position: fixed;
  background-color: #222222;
  display: none;
  margin: 1px;
  min-height: 100%;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  opacity: 0.25; }

div.done {
  display: none;
  margin-top: 3rem; }
  div.done.show {
    display: block; }
  div.done h4 {
    font-weight: bold; }
  @media (max-width: 630px) {
    div.done h4 {
      font-size: 1.3rem; } }
  div.done p {
    margin-bottom: 0.5rem; }

#ajax-loader {
  display: none; }

#filepicker-input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: -100; }

#browser-warning {
  display: none;
  padding: 1.6rem;
  text-align: center;
  color: #eee;
  background-color: #222;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-bottom: 1em; }

#root-container {
  width: 600px;
  min-height: 95%;
  margin: 0 auto;
  position: relative;
  overflow: hidden; }
  #root-container .box {
    font-size: 1rem;
    text-align: center;
    margin-top: 8rem;
    padding: 25px 0;
    border: 1px solid white; }
    #root-container .box .file {
      font-size: 1.3rem; }

@media (max-width: 992px) {
  .container {
    max-width: 1000px !important;
    padding-right: 2rem;
    padding-left: 2rem; }
    .container.bowman .inner {
      padding: 1.5rem; }
      .container.bowman .inner #dropped-files {
        margin-top: 2rem; }
      .container.bowman .inner div.done {
        margin-top: 2rem; } }
