/********************************************************/
/*				Flip Boxes
/*********************************************************/

#current-courses-items{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.current-courses-item{
	width: 300px;
	height: 400px;
	margin: 5px;
}


.flip-box01 {
	margin: 0 auto;
	height: 130px;  
	position: relative;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;

	width: 100%;
  height: 100%;
}

.flip-box01 .front,
.flip-box01 .back {
	text-align: center;
}
	
.flip-box01 .front {
	width: inherit;
	height: inherit;

	/* height: inherit; */
	position: absolute;
	top: 0;
	z-index: 900;
	text-align: center;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	   -moz-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.flip-box01 .back {
	/* width: 100%; */
	/* height: 100%; */
	width: inherit;
	height: inherit;
	position: absolute;
	top: 0;
	z-index: 1000;
	-webkit-transform: rotateY(-180deg);
	   -moz-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
			background-image: url(/../../../../images/logo/library_logo.png);
}


.flip-box01 .back .college{
	background-image: url(/../../../../images/logo/library_logo.png);
	opacity: 0.07;
  	background-size: contain;
  	background-position: center;
  	background-repeat: no-repeat;
  	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

  	height: 80%;
  	width: 80%;
}



.flip-box01.flip .front {
	z-index: 900;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.flip-box01.flip .back {
	z-index: 1000;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
}
.flip-box01 .box-front{
	/* background-color: #14bcc8; */
	width: 100%;
	height: 100%;
	margin: 0 auto;
	/* padding: 20px; */
	border: 1px solid var(--fumlibrary-color-primary);
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;

	overflow: hidden;
}
.flip-box01 .box-back{
	background-color: var(--fumlibrary-color-primary);
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.flip-box01 .front .img{
	width: inherit;
	/* height: 50%; */
}

.flip-box01 .front .img img{
	display: block;
	object-fit: cover;	
	/* height: 100% !important; */
	margin: 0px auto;
	width: 100%;
  height: 400px;	
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;	
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;	

}

.flip-box01 .box-title{
	display: none;
	width: inherit;
	/* height: 50%; */
	position: relative;
	padding:5px 10px;

}

.flip-box01 .box-title h3{
	
	margin:25px auto 10px auto;
	font-size: 1rem;
	line-height: 2rem;
	
}

.flip-box01 .box-back span{
	display: block;
	color: #eee;
	font-size: 0.9rem;
	line-height: 2rem;

}

.flip-box01 .box-back span:hover {
	color: var(--fumlibrary-color-primary);
  }

.flip-box01 .box-back h3{
	display: block;
	color: #eee;
	font-size: 1.1rem;	
	margin-bottom: 20px;;
	line-height: 2rem;
}

.flip-box01 a{
	color: #eee;
}

.flip-box01 a:hover{
	color: #eee;
	font-weight: bold;
}

.flip-box01 .button{
	position: absolute;
	bottom: 20px;
	display: block;
	background-color: var(--fumlibrary-color-primary);
	border: 1px solid #eee;
	border-radius: 5px;
	padding:10px 20px; 
	color:#eee !important;
}

.flip-box01 .button:hover{
	background-color: #eee;
	border: 1px solid var(--fumlibrary-color-primary);
	padding:10px 20px; 
	color:var(--fumlibrary-color-primary) !important;
}


.flip-box01 .read-more{
	/* left: 45%;
	transform: translateX(-50%);  */
	width : 85%;
}

.flip-box01 .register{
	left: 70%;
	transform: translateX(-50%); 
}

/***********************************************/
