* {margin: 0; padding: 0;}
body {
	background: #f7f7f7;
	font-family: 'Nunito', sans-serif;
}
strong {font-weight: 700;}
a {
	color: #152940;
	text-decoration: none;
}
h1 {
  color: #152940;
  padding-bottom: 20px;
}
#meter {
  height: 5px;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
}
.progress {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #4a90e2;
    animation: progressBar 1.5s ease-in-out;
    animation-fill-mode:both; 
}
@keyframes progressBar {
  0% { width: 0; }
  100% { width: 100%; }
}
.notification-bar-inner {display: none;}
#wrapper {
	width: 100%;
	height: 100vh;
    background-image: url(https://mivodo.com/wp-content/uploads/2020/05/home-bubble-left.svg), url(https://mivodo.com/wp-content/uploads/2020/05/home-bubble-right.svg);
    background-size: 15%, 50%;
    background-repeat: no-repeat, no-repeat;
    background-position: 0 70%, 113% 0;
    overflow: hidden;
    display: table;
}
#content_wrapper {
	display: table-cell;
    vertical-align: middle;
}
#content_inner {
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
	background: #FFF;
	border-radius: 3px;
	padding: 60px 40px;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
}
.logo {
	text-align: center;
}
.logo img {width: 160px;}
p {
	font-size: 18px;
	color: #152940;
	text-align: center;
}
p.small {
	font-size: 14px;
}
.anbieter-logo {
	text-align: center;
	margin: 40px 0 30px 0;
}
.anbieter-logo img {
	max-width: 200px;
	max-height: 50px;
}

/** Loading Animation **/
.lds-ellipsis {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #4a90e2;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/** Admin Dashboard **/

body.dashboard {
  background: #f7f7f7;
}
#wrapper {
  width: 100%;
}
.main_content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}
.col_wrapper {
  display: block;
  width: 100%;
  font-size: 0;
}
.col {
  display: inline-block;
  font-size: 16px;
}
.col-50 {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.col_wrapper .col-50:nth-child(2n) {
  margin-right: 0;
}
.provider-box {
  background: #FFF;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 12px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
}
.provider-box img {
  height: 20px;
}
.provider-box-head {
  display: table;
  border-bottom: 1px solid #EEE;
  padding-bottom: 12px;
  margin-bottom: 10px;
  width: 100%;
  color: #152940;
  font-weight: bold;
}
.provider_icon {
  width: 40px;
  height: 40px;
  background: #EEE;
  display: table-cell;
  border-radius: 20px;
  border: 1px solid #EEE;
  background-size: cover !important;
}
.provider_name {
  display: table-cell;
  padding-left: 10px;
  vertical-align: middle;
}
.count-today {
  color: #4a90e2;
  font-size: 28px;
}
.count-yesterday {
  color: #4a90e2;
  font-size: 28px;
}
.count_sub {
  font-size: 12px;
  display: block;
  color: #152940;
}
.count-total {
  background: #EEE;
  border-radius: 3px;
  font-size: 15px;
  padding: 6px;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  #wrapper {background-image:none;background-color:#FFF;}
  #content_inner {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin-top: -60px;
  }
}
