/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
  height: 100vh;
  margin: 0;
  padding: 0;
  background-image: url('bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #3C8DBC;
  font-family: 'Source Sans Pro','Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  display: -ms-flexbox;
  display: flex;
  color: #333;
}

.cover-container {
  max-width: 56em;
}

.cover-container-60 {
  max-width: 56em;
}

/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


.step-title {
  font-size: 2em;
  margin: 30px 0;
}


/*
 * Footer
 */
.mastfoot {
  color: #333;
}

.control-label {
  text-align: right;
  font-weight: bold;
}
/* NAV TABS */
.nav-tabs {
    border-bottom: 0;
}
.nav-tabs-custom {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.nav-tabs-custom > .nav-tabs {
  margin: 0;
  border-bottom-color: #f4f4f4;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.nav-tabs-custom > .nav-tabs > li {
  margin-bottom: -2px;
  margin-right: 5px;
  padding: 10px;
}
.nav-tabs-custom > .nav-tabs > li > a {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 3px solid #333;
  color: #444;
  border-radius: 0;
  padding: 10px;
  cursor: pointer;
  
}
.nav-tabs-custom > .nav-tabs > li > a.active {
  border-top: 3px solid #3c8dbc;
  color: #444;
  border-radius: 0;
  
}
.tab-content {
  padding: 10px;
}
.row-form {
  margin-top: 5px;
}
.row-form control-label {
  margin-top: 5px;
}

.dropdown-menu .active {
  background-color: #89bdff;
}

.modal-header {
  display: block;
}

.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.spinner .spinner-text {
  padding: 0;
  margin: 0;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.loading-bar-container {
  width: 40%;
  height: 20px;
  border-radius: 8px;
  margin: 20px auto;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  background-color: #3C8DBC;
  border: 2px solid #fff;

  align-items: center;
  margin-bottom: 20px;
}

.loading-bar {
  height: 100%;
  width: 33.33%;
  background-color: #00B8D6;
  animation: slide .8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.loading-bar.box2 {
  background-color: #C22023;
  animation-delay: .2s;
}

.loading-bar.box3 {
  background-color: #FFFFFF;
  animation-delay: .4s;
}

@keyframes slide {
  0% {
      transform: translateX(-100%);
  }
  50% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(200%);
  }
}