/* CARDS NAVBAR AND BODY */
body{
    background-color: #1b75bc2b;
    /* background-image: url('/images/shape.png'); */
    background-size: cover;
	background-position: center;
	-webkit-animation: 10s linear 0s normal none infinite animate;
	-moz-animation: 10s linear 0s normal none infinite animate;
	-ms-animation: 10s linear 0s normal none infinite animate;
	-o-animation: 10s linear 0s normal none infinite animate;
	animation: 10s linear 0s normal none infinite animate;
}
@-webkit-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-moz-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-ms-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-o-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}

.clickable{
    cursor: pointer;
}
.navbar-background{
	background: #1B75BC;
	border-bottom: 3px solid black;
}
.nav-link{
    color:white;
}
.nav-link:hover{
    color: #263857;
    transition: .3s;
}
.navbar-account-image{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.mt-7{
    margin-top: 7rem!important;
}
.card{
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.card:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
/* CHECKBOX STYLE */
.toggle {
	position: relative;
	width: 100px;
	height: 36px;
}
.toggle input[type=checkbox] { display: none; }
.toggle label {
	width: 100%;
	height: 100%;
	border-radius: 25px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.45);
	cursor: pointer;
}
.toggle label::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toggle input[type=checkbox]:checked + label::after {
	left: initial;
	left: 67px;
}
.toggle.night input[type=checkbox]:checked + label { background-color: rgba(0, 100, 220, 0.55); }
.toggle.night label { background-color: rgba(0, 0, 0, 0.5); }
.toggle.night label::after { background-color: rgba(255, 255, 255, 0.55); }
.toggle.night input[type=checkbox]:checked + label::after { background-color: rgba(0, 0, 0, 0.55); }
/* Pen Styling */
.primary-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.toggle.night::before {
	content: '';
	position: absolute;
	left: -85px;
	top: 50%;
	transform: translateY(-50%);
}
.flex-col{
	display: flex;
    justify-content: space-around;
    align-items: center;
}
/* LOADING ANIMATION */
.lds-ripple {
	display: inline-block;
	position: relative;
	height: 24px;
  }
  .lds-ripple div {
	position: absolute;
	border: 4px solid #1b75bc;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	margin-top: -12px;
	margin-left: 20px;
  }
  .lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
	0% {
	  top: 28px;
	  left: 28px;
	  width: 0;
	  height: 0;
	  opacity: 1;
	}
	100% {
	  top: -1px;
	  left: -1px;
	  width: 58px;
	  height: 58px;
	  opacity: 0;
	}
  }
  .table-striped tbody tr:nth-of-type(odd) {
	  background-color: rgba(0, 0, 0, 0.15);
  }
  