html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner > main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::after{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.navbar .navbar-left {
    flex-basis: 38%;
}

.auth-card .image-side {
    width: 40%;
    background: none;
    /*background-color: ;*/
    padding: 80px 40px;
}

/*.logo {*/
/*  width: 170px;*/
/*  height: 65px;*/
/*  background: url(/static/CRF.png) no-repeat;*/
/*}*/

.navbar {
    padding: 0;
}

.logo{
    width: 15%;
    height: 120px;
    background: white;
    padding: 10px;
    box-shadow: 0 1px 15px rgba(0,0,0,.04), 0 1px 6px rgba(0,0,0,.04);
    text-align: center;
}

.logo img{
    vertical-align: middle;
    position: relative;
    top: 5%;
    max-height: 90px
}

.width200{
  width: 200px;
}

.width100{
  width: 100px;
}

.width150{
  width: 150px;
}

.width170{
  width: 170px;
}

.table > tbody > tr > td {
     vertical-align: middle;
}

.fixed-background {
    background: url(/static/main.png) no-repeat 50% fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 300px;
  height: 300px;
  vertical-align: middle
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  background-color: #922c88;
  animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: 2s;
}
@keyframes lds-ripple {
  0% {
    top: 90px;
    left: 90px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 172px;
    height: 172px;
    opacity: 0;
  }
}

.reload{
  cursor: pointer;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}

.btn-circle {
    width: 40px;
    height: 40px;
    padding: 6px 0px;
    border-radius: 20px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

.full-width{
    width: 100%;
}

.btn-outline-primary-main {
    /*color: white;*/
    /*border-color: #bf34b5;*/
    border: none;
}

.card-title-hr{
    margin-bottom: 0;
}

.help-block {
    padding: 5px;
    background-color: #922c88;
    color: white;
}

.patient:hover{
box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.75);
}

.info-btn {
    padding: .375rem .75rem;
}

/*.menu .main-menu ul li.main-experiment:after {*/
/*    content: " ";*/
/*    background-color: #922c88;*/
/*    color: #fff;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 110px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    left: 0;*/
/*}*/

.main-experiment {
    background-color: #922c88;
}
.main-experiment span{
    color: white;
    font-weight: bold;
}

.exp-menu{
    margin-top: 10px; margin-bottom: 10px;
}

.active-exp a span, .active-exp a i{
    color: white;
    font-weight: bold;
    font-size: larger;
}

.mbutton{
    margin-bottom: 5px;
    margin-top: 5px;
    min-width: 100px;
}

.menu .sub-menu ul li.active-exp{
    background-color: #922c88;
    margin-left: 0px;
    padding-left: 30px;
}

.menu .sub-menu ul li.active-exp i{
    color: white;
}

.menu .sub-menu ul li a{
    margin-bottom: 0;
    padding-bottom: 10px;
}

.menu .sub-menu {
    width: 200px;
}

main {
    margin: 145px 60px 40px 350px;
}

.progress-banner{
    height: 220px;
}

.btn-wrap-text {
  white-space: break-spaces;
  display: inline-block;
}

.truncate {
  width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


    /* Style the list */
    ul.breadcrumb {
        padding: 8px 8px;
        list-style: none;
        background-color: #eee;
    }

    /* Display list items side by side */
    ul.breadcrumb li {
        display: inline;
        font-size: 15px;
    }

    /* Add a slash symbol (/) before/behind each list item */
    ul.breadcrumb li + li:before {
        padding: 8px;
        color: black;
        content: "/\00a0";
    }

    /* Add a color to all links inside the list */
    ul.breadcrumb li a {
        color: #0275d8;
        text-decoration: none;
    }

    /* Add a color on mouse-over */
    ul.breadcrumb li a:hover {
        color: #01447e;
        text-decoration: underline;
    }