/* bootstrap overide */
body{
    background-color: #f1f4f5;
}
a {
    color: #0a6c85;
    text-decoration: none;
    background-color: transparent;
}

.btn, .nav-tabs .nav-link, .card-header {
    border-radius: 0 !important;
}

.btn-primary,
.btn-primary.disabled, .btn-primary:disabled {
    background-color: #0a6c85;
    border-color: #0a6c85;
    box-shadow: none !important;
}

.btn-primary:hover ,
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: rgba(0, 136, 206, 0.7);
    border-color: rgba(0, 136, 206, 0.7);
}


.btn-link{
    color: #999;
    text-decoration: underline;
}
.card-header{
    background-color: #0a6c85;
    color: #fff;
    font-size: 20px;
    padding: 0.5rem 1rem;
}

/* app CSS */

.tabs {
    margin-top: 1rem;
    /* width: 100%; */
}

.steps {
    margin-top: 1rem;
    margin-bottom: 3rem;
}
.tabs.hidden + .steps{
    margin-top: 3rem;
}
.nav-tabs{
    justify-content: center;
}
.nav-tabs .nav-link.active,.nav-tabs .nav-link:hover, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}


/* nav user */
nav{
    margin-top: 5px;
}
nav ul{
    list-style: none;
    padding: 0;
    text-align: right;
}
nav ul li{
    display: inline-block;
}
nav ul li a{
    opacity: .75;
}


.form-login-wrapper label{
    text-align: left;
}

.footer-buttons {
    margin-bottom: 1rem;
}
.btn-forgotten-password{
    text-align: left;
}

.card {
    margin-bottom: 2rem;
}
.card-body h3{
    font-size: 22px;
}

.panel-login .buttons {
    margin-top: 1rem;
}

#map, #map-summary, .google-map {
    width: 100%;
    height: 500px;
}

.google-buttons {
    margin-left: 5px;
    margin-top: 5px;
}

.google-buttons a {
    margin-right: 5px;
    margin-bottom: 5px;
    box-shadow: none !important; 
}
@media(max-width: 768px){
    .google-buttons a{
        display: block;
    }
    .google-buttons a span,.google-buttons .btn-google-remove-all{
        display: none;        
    }
}
.google-buttons .btn.disabled, 
.google-buttons.btn:disabled{
    opacity: 0.7;
    background-color: #ccc;
    border-color: #ccc;
}
.google-buttons + .google-buttons{
    margin-right: 5px;
}

header {
    background-color: #0a6c85;
    padding: 10px 0;
    text-align: center;
}

header svg {
    width: 15rem;
    padding: 10px 0 20px;
    fill: #fff;
}

header p {
    color: #fff;
    font-size: 16px;
}

.invalid-feedback{
    text-align: left;
}

@media(min-width: 992px){
    .col-form-label{
        text-align: right;
    }
}

.file-wrapper label{
    font-size: 14px;
    margin: 0;
}
.file-wrapper textarea{
    margin-bottom: 5px;
}
.dropzone .dz-preview{
    margin-bottom: 20px;    
}

.table th, 
.table td{
    border-top: 0;
    
}


.table tr + tr td{
    border-top: 1px solid #eee;    
}

/* step-2 */
.step-2 .card,
.step-3 .card,
.step-5 .card,
.step-6 .card,
.step-7 .card{
    max-width: 800px;
    margin: 0 auto;
}

.card + .card{
    margin-top: 2rem;
}


/* loader */
.loader {
  border: 1rem solid #ededed;
  border-top: 1rem solid #0a6c85;
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -6rem;
  margin-top: -6rem;
}
.loader-wrapper{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.loader-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000006b;
  display: block;
  content: '';
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
 .logo img{
     max-width: 22rem;
     width: 100%;
 }