

.flipper {
	font-family: 'Roboto', Arial, sans-serif, Helvetica !important;
	font-size:15px;
	font-weight:lighter;
	cursor:pointer;
	height: 150px !important;
	// border: 2px solid #0085d5;
    border-radius: 0.25rem;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: all 1.0s linear;
    transform-style: preserve-3d;
    transition: all .2s ease-in-out; 
	-webkit-perspective: 800px;
   -moz-perspective: 800px;
    -o-perspective: 800px;
    perspective: 800px;
	
}

.flipper:hover{
	transform: scale(1.03);
}

.front, .back {
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transition: 0.6s;
	transform-style: preserve-3d;
	position: absolute;
	top: 0;
	left: 0;
}

.front {
	z-index: 2;
	transform: rotateY(0deg);
	background-color: #ffffff;
	color:#00426a;
	font-size:2em;
	line-height: 1.3;
    background-clip: border-box;
    border: 1px solid #b3b3b3;
}

/* back, initially hidden pane */
.back {
	transform: rotateY(-180deg);
    color: #0085d5;
	font-size:1em;
	line-height: 1.3;
    text-align: center;
    background-color: #00426a;
	 border: 1px solid #b3b3b3;
	color:#ffffff;
}


.card-body {
	display: flex;
    justify-content: center;
    align-items: center;
	height: 100%;
    padding: 0; 
}

.cardContent{
	text-align: left;
	float: left;
    width: 70%;
    padding: 1.25rem;
}

.bandDiv{
	float:left;
	width:31%;
	height: 100%;
}

.front .bandDiv{
	background-color:#0085d5;
	color:#ffffff;
}

.iconDiv{
	display: flex;
    align-items: center;
    height: 33px;
	margin-bottom:10px;
    background-repeat: no-repeat;
}

.band{
	width:15%;
	height: 100%;
    float: left;
}

.back .cardContent{
	width:90%;
}

.back .bandDiv{
	width:10%;
	background-color:#ffffff;
	color:#0085d5;
}

.back .cardContent .iconDiv .cardText{
	padding-left: 45px;
	font-size:18px;
}

.back .bandDiv .band{
	width:50%;
}

.back .bandDiv .bandText{
	display:none;
}

.bandDarkGreen{
	background-color:#008522;
}

.bandLightGreen{
	background-color:#84BD00;
}

.bandOrange{
	background-color:#E87722;
}

.bandYellow{
	background-color:#F2A900;
}

.bandMagenta{
	background-color:#CE0F69;
}

.bandPurple{
	background-color:#80276C;
}

.bandDarkblue{
	background-color:#00426a;
}

.bandText{
	display: flex;
    /* justify-content: center; */
    align-items: flex-end;
    /* width: 70%; */
    height: 100%;
    float: right;
    margin-right: 10px;
    font-size: 30px;
}

/* hide back during swap */
.activeCard-front{
    -webkit-transform: rotateY(180deg) !important;
    transform: rotateY(180deg) !important;
}

/* hide Front during swap */
.activeCard-back{
    -webkit-transform: rotateY(0deg) !important;
    transform: rotateY(0deg) !important;
}


.my-3 {
	margin-bottom: 1.10rem !important;
}
	
.my-3 {
	margin-top: 0.9rem !important;
}

@media (min-width: 1200px){
	.container, .container-sm, .container-md, .container-lg, .container-xl {
		max-width: 1125px;
	}
}

@media (max-width: 1024px){
	.front  {
		font-size:1.5em;
	}

	.back  {
	   font-size:0.8em;
	}
}

@media (max-width: 680px)  and (orientation:landscape) {
	.front  {
		font-size:1em;
	}

	.back  {
	   font-size:0.5em;
	}
	
	.mb-3, .my-3 {
		margin-bottom: 0.5rem !important;
	}
	
	.mb-3, .my-3 {
		margin-top: 0.5rem !important;
	}
}

