/******************************************************************************/
/*****************************   COMMON STYLES    *****************************/
/******************************************************************************/
body{
	/*background-color:#f3f3f3;*/
}
h1{font-size:1.75rem!important;}
h2{font-size:1.5rem!important;}
h3{font-size:1.25rem!important;}
h4{font-size:1rem!important;}
a{
	color:unset;
}
a:hover, a:focus {
  color: #069d86;
  text-decoration: none;
}
/*REdifine layout in boostrap*/
@media (min-width: 1400px) {
    .container {
        max-width:1250px
    }
}
/*REdifine layout in boostrap*/
@media (min-width: 1600px) {
    .container {
        max-width:1450px
    }
}
@media (min-width: 1800px) {
    .container {
        max-width:1600px
    }
}

.bg-bla-red,.bg-bla-primary{background-color:#ed1c24;}
.bg-bla-yellow{background-color:#ffc50f!important;}
.bg-bla-black{background-color:#1d0e1f!important;}
.bg-bla-blue{background-color:#961e00!important;}
.bg-bla-secondary{background:#ffc50f;}
.bg-bla-green{background-color:#03ad03 !important;}
.bg-bla{background-color:#e8e8e8!important;}
.text-bla-red{color:#cd1e24!important;}
.text-bla-yellow{color:#ffc50f!important;}
.text-bla-black{color:#1d0e1f!important;}
.text-bla-blue{color:#069d86!important;}


.text-green{color:#03ad03 !important;}
.auto-size {resize: none;}
.flex-row-center{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
	display:flex;
	flex-direction:row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
	align-items:center;
}
.flex-column-center{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
	display:flex;
	flex-direction:column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
	align-items:center;
	justify-content:center;
}
.card{
	border:1px solid #e8e8e8;
	margin-bottom:15px;
	box-shadow: 0 2px 2px rgba(0,0,0,.05);
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.05);
	border-radius:4px;
}
.card-header{
	border-top-left-radius:4px;
	border-top-right-radius:4px;
}
.b-0{
	border:none!important;
}
.bla-outline-0:focus{
	outline:none;
}
.bla-border{
	border:1px solid #e8e8e8;
}
.bla-shadow{
	box-shadow: 1px 1px 15px -5px #848282;
	border-radius:3px;
}
.bla-border-radius-100{
	border-radius:6.25rem;
	padding-left:0.625rem;
	padding-right:0.625rem;
}
.bla-border-bottom{
	border-bottom:1px solid #e8e8e8;
}
.bla-border-top{
	border-top:1px solid #e8e8e8;
}
.bla-group-title{
  font-size: 1rem;
  font-weight: 550;
  margin: 1rem 0 0.5rem;
}
.bla-img-tiny{width:1.125rem;height:1.125rem;}
.bla-img-sm{width:2rem;height:2rem;}
.bla-img-md{width:3rem;height:3rem;}
.bla-img-lg{height: 5rem;width: 5rem;}
.img-circle{border-radius:50%;}
.bla-tag{
  border-radius: 6rem;
	padding: 5px 16px 5px;
	margin: 10px 10px 0 0;
	font-size:0.875rem;
	background-color:#e8e8e8;
}
.bla-dropdown-right{
	position:absolute;
	top:0;
	right:0!important;
	left:unset!important; 
	width:12rem; 
	padding:0.5rem;
}
/*common blacasa's table style*/
.bla-table {
  border-collapse: collapse;
  width: 100%;
}
.bla-table td, .bla-table th {
  border: 1px solid #e8e8e8;
  text-align: left;
  padding: 8px;
}
.bla-table tr:nth-child(even) {
  background-color: #f3f4ee;
}

.bla-checkbox {
  position: absolute;
  opacity: 0;
}
.bla-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.bla-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
	border:1px solid gray;
	border-radius:2px;
}
.bla-checkbox:hover + label:before {
  background: #069d86;
}
.bla-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.bla-checkbox:checked + label:before {
  background: #069d86;
}
.bla-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.bla-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.bla-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bla-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.bla-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.bla-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
	border-radius: 34px;
}
.bla-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
	border-radius: 50%;
}
.bla-switch input:checked + .bla-slider {
  background-color: #28a745;
}
.bla-switch input:focus + .bla-slider {
  box-shadow: 0 0 1px #28a745;
}
.bla-switch input:checked + .bla-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.bla-inline-hidden{
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	text-wrap: nowrap;
}



/*style for class element*/
.feedback-point-circle{
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5rem;
	border: 1px solid #069d86;
	color: #069d86;
	width: 2.5rem;
	height: 2.5rem;
	min-width:2.5rem;
	min-height:2.5rem;
	font-size: 1rem;
	font-weight: 500;
}
/*scroll menu tab horizontal*/
.horizontal-scroll-menu{
	overflow-y:hidden;
	overflow-x:scroll;
	height:2.5rem;
	font-size: 0.875rem;
	width: 100%;
	background-color: #fff;
	z-index: 1001;
	white-space:nowrap;
	overflow: -moz-scrollbars-none;
	-ms-overflow-style: none; 
	 scrollbar-width: none;
}
.horizontal-scroll-menu::-webkit-scrollbar { width: 0 !important;display:none; }
.horizontal-scroll-menu a {
  display: inline-block;
  text-align: center;
  padding: 0.625rem;
	font-size:0.875rem;
	font-weight:500;
  text-decoration: none;
	min-width:5rem;
}
.horizontal-scroll-menu a:hover {background-color: #d2d2d2;}
.horizontal-scroll-menu .list-inline::-webkit-scrollbar { width: 0 !important }
.horizontal-scroll-menu .list-inline li{
	height: 2.5rem;
	vertical-align: middle;
	border-right: 1px solid #e8e8e8;
	font-size:0.875rem;
	padding: 0.625rem;
}
.horizontal-scroll-menu .list-inline li.active{background-color:#ddd;}
/*row inline: lable left, content right & arrow*/
.arrow-after::after{
	content:"\f054";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	margin-left: 0.5rem;
	color:#000!important;
}
.label-space-value{
	display:flex;
	align-items:center;
	justify-content:space-between;
	border-bottom:1px solid #e8e8e8;
	padding:0.5rem 0;
	font-size:0.875rem;
	cursor: pointer;
}
.label-space-value .content{
	flex:1;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.label-space-value .content label{
  color: #888;
  text-align: left;
  margin: 0 1rem 0 0;
	white-space:nowrap;
}
.label-space-value .content span{
	text-align:right;
}
/*row inline: content (may have icon) and arrow*/
.icon-value-space{
	display:flex;
	justify-content:space-between;
	align-items:center;
	border-bottom:1px solid #e8e8e8;
	padding:0.5rem 0;
	font-size:0.875rem;
	cursor: pointer;
}
.icon-value-space .content{
	flex:1;
	display:flex;
	justify-content:start;
	align-items:center;
	text-align:left;
}
.icon-value-space .content .fa{
	margin-right:0.5rem;
	min-width:1rem;
}

/*media: img left, content right*/
.media img{
	margin-right:0.25rem;
}
/*pulse icon*/
.bla-pulse-icon
{
  display: inline-block;
	width:20px;
	height:20px;
	position:relative;
}
/*icon styling here*/
.bla-pulse-icon .icon-wrap{
  width: 10px;
  height: 10px;
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  color: #d0021b;
  background: #d72858;
  position: absolute;
  top:5px;
	left:5px;
}
/*container of all circles and pulses*/
.bla-pulse-icon .elements{
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}
/*series of x pulses of differing sizes*/
.bla-pulse-icon .pulse{
  position: absolute;
  animation: pulse-wave 1s linear infinite both;
  border-radius: 50%;
}
.bla-pulse-icon .pulse-red{
  border: solid 1px #d72858;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
}
/*Animation for the outewards pulsating waves*/
@keyframes pulse-wave{
  0%{
    opacity: 0;
    transform: scale(1.0);
  }
  50%{
    opacity: 1;
    transform: scale(2.0);
  }
  100%{
    opacity: 0;
    transform: scale(4.0);
  }
}
/*Display lớp đang tuyển sinh với lịch mở lớp*/
.bla-calendar-item{
	padding:5px;
	border-bottom:1px solid lightgray;
	width:100%!important;
	margin:5px 0;
}
.bla-calendar-item .calendar-box{
	display:flex;
	flex-flow:column;
	justify-content:center;
	align-items:center;
	margin:5px;
	max-width:75px;
}
.bla-calendar-item .calendar-box .date{
	font-size:150%;
	border-bottom:1px solid lightgray;
	border-top:1px solid lightgray;
	margin:5px 0;
}
.bla-calendar-item .info-box{
	margin-left:8px;
	display:flex;
	flex-flow:column;
}
.bla-calendar-item .info-box .title{
	font-weight:500;
}

/******************************************************************************/
/**********************   TEMPLATE PAGE MOBILE    *****************************/
/******************************************************************************/
/* CSS PRELOAD */
#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  background-color: #fff;
}

#loading-animation {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  margin: -50px 0 0 -50px;
  background: url('../images/preloading.gif') center center no-repeat;
  background-size: 100%;
}

/*Main header*/
#main-header .menu-header-item{
	line-height:72px;
	display:block;
	padding:0px 8px;
}
#main-header .menu-header-item:hover,#main-header .menu-header-item.show{background-color:#e8e8e8;}
#main-header .main-header-search input{
	width: 350px;
	height: 40px;
	padding-right: 45px;
	padding-left: 5px;
	border-radius: 4px;
}
#main-header .main-header-search button{
	width:2rem;
	height:100%;
	margin-left: -45px;
	height: 34px;
	width: 40px;
	border: unset;
	font-size: 18px;
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
	background-color:#fff!important;
}
.dropdown-menu-right{
	font-size:0.875rem;
	width:200px;
}
.dropdown-menu-right:before{
	position: absolute;
	top: -10px;
	display: inline-block;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #ccc;
	border-left: 10px solid transparent;
	border-bottom-color: rgba(0,0,0,.2);
	content: '';
	right: 14px;
}
.dropdown-menu-right:after{
  position: absolute;
  top: -9px;
  display: inline-block;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
  border-left: 9px solid transparent;
  content: '';
  right: 15px;
}
#main-header .dropdown-menu-right .card{
	box-shadow: unset!important;
	border: none;
	padding:0;
	margin:0;
}
#main-header .dropdown-menu-right .card .card-body{
	overflow-y:auto;
	overflow-x:hidden;
	max-height:350px;
	width: auto; 
}
#main-header .dropdown-menu-right .card .card-body::-webkit-scrollbar {
  width:10px; 
	background:transparent;
}
#main-header .dropdown-menu-right .card .card-body::-webkit-scrollbar-thumb {
  background:rgba(0,0,0,0.25) !important; 
	border-radius:10px;
}
#main-header .dropdown-menu-right .card .card-body::-webkit-scrollbar-track {
	background: transparent;
}
#main-header .notification-container{
	width:350px;
}
#main-header .notification-container .notification-item{
	font-size:0.75rem;
	padding:0px;
}
#main-header .notification-container .notification-item:hover{
	background-color:lightgray;
	cursor:pointer;
}
#main-header .notification-container .sent,#main-header .notification-container .seen{
	background-color:#ddd;
}
#main-header .notification-container .notification-item .read{
	background-color:#fff;
}
#main-header .dropdown-menu-user{
	width:200px;
}
#main-header .dropdown-menu-user .dropdown-item{
	padding:0.5rem;
}
.navbar-mobile{
	font-size:1rem;
	width:100%;
	height:3.125rem;
	background-color: #fff;
	border-bottom: 1px solid #e8e8e8;
	z-infox:1001;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
	display:flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
	align-items:center;
}
.navbar-mobile-left{
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
	text-align:left;
}
.navbar-mobile-center{
	text-align:center;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 0 15px;
	overflow: hidden;
	white-space:nowrap;
	font-size: 1rem;
	font-weight: 500;
}
.navbar-mobile-right{
	text-align:right;
	flex-shrink:0;
}
.navbar-mobile-right a.action-text{
	color:#FF961E;
}
.navbar-mobile-bottom,.navbar-mobile-bottom-flex{
	font-size:1rem;
	width:100%;
	height:3.125rem;
	background-color: #fff;
  border-top: 1px solid #e8e8e8;
  z-index: 1030;
  line-height: 3.125rem;
}
.navbar-mobile-bottom-flex{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
	display:flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
	align-items:center;
}
.mobile-page-body{margin-bottom:1rem;}

/******************************************************************************/
/**************   MODAL POPUP: boostrap + new full screen   *******************/
/******************************************************************************/
.modal-full-screen .modal-content, .modal-full-screen .modal-dialog {
    width: 100%;
    height: 100%;
    padding: 0!important;
    border: none;
    border-radius: 0;
		margin:0;
		max-width:unset;
}
.modal-full-screen .modal-body {
    height: calc(100% - 120px);
    overflow-y: scroll;
}
.modal-title{
	font-size: 1rem;
	font-weight: 550;
}
.modal-full-screen .form-horizontal .form-group{
	margin-left:0;
	margin-right:0;
}
.modal-full-screen .modal-footer .fa{
	font-size: 20px;
	color: gray;
	padding-top: 5px;
}

/******************************************************************************/
/****************************   PAGE HOME   ***********************************/
/******************************************************************************/
/*home-header*/
.navbar-fixed-top{
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:1030;
	background-color: #fff;
}
.navbar-fixed-bottom{
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	z-index:1030;
	background-color: #fff;
	border-top:1px solid #e8e8e8;
}
.navbar-home {
  height: 4.5rem;
  font-size: 0.875rem;
}
.navbar-brand img {
  display: block;
  height: 3rem;
}
.navbar-home-right{
	text-align:right;
}

.navbar-home-right li a {
  text-decoration: none;
	padding-left:0.5rem;
}
.navbar-home-right a.btn-navbar-home-login{
	background-color:#069d86;
	font-size:0.875rem;
	color:#fff;
  padding: 5px 20px;
  border-radius: 20px;
  margin-right: 0.75rem;
}
.navbar-home-right .dropdown-toggle::after {
    display:none;
}
#personal-menu .dropdown-menu a{
	line-height:2.0;
}

/*main-content*/
#page-home-body{
	background-color:#F3F3F3;
}
.main-content-left,.main-content-right{
	margin-top:20px;
}
/*section banner*/
.section-banner{
	position: relative; 
	margin: 0px auto; 
	top: 0px; 
	left: 0px; 
	overflow: hidden; 
	visibility: visible;
	background-color:#fff;

}
#banner-slider .carousel-inner>.carousel-item .banner-bg-img{
	width:100%;
}
.section-banner .banner-feature-img{
	position:absolute;
	top:0px;
	text-align:center;
	width:100%;
	height: 250px;
}
.section-banner .banner-text{
	position: absolute; 
	top: 300px; 
	width: 100%; 
	height: 40px; 
	z-index: 1; 
	font-size: 0.875rem; 
	color: rgb(0, 187, 161); 
	line-height: 30px; 
	text-align: center;
}
.section-banner .banner-text-title{
	font-size:18px;
	font-weight:bold;
	margin-bottom:0;
}
.carousel-control-left{
	position:absolute;
	top:50%; 
	margin-top:-10px;
	right:50%;
	margin-left:-8px;
}
.carousel-control-right{
	position:absolute;
	top:50%; 
	margin-top:-10px;
	right:50%;
	margin-right:-8px;
}
.carousel-indicators li {
	border:1px solid #069d86;
}
.carousel-indicators .active{
	background-color:#069d86;
}

/*section install app*/
.section-installapp{
	background:#fff;
	padding:20px;
}
.section-installapp a{
	width: 170px;
	background-color: #00ccb0;
	color: #fff;
	width: 50%;
	margin: 10px auto;
	padding: 9px 20px;
	border-radius: 20px;
	outline: 0;
	font-size: 0.875rem;
	font-weight: 300;
}
/*section newfeed*/
.post .card-header{
	position:relative;
}
.post .card-header a>img{
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	width:100%;
}
.post .card-header ul{
	list-style: none;
	position: absolute;
	left: 0;
	bottom: 0;
	margin-bottom: 10px;
	margin-left: 20px;
}
.post .card-header ul li{
	float: left;
	border-radius: 100px;
	background-color: #FF961E;
	padding: 0px 16px 4px;
	margin: 10px 10px 0 0;
}
.post .card-header ul li a{
	color:#fff;
	font-size:0.875rem;
}
.post .card-body{
	background-color:#fff;
}
.post .card-body a h3{
	font-size:18px;
	padding-bottom: 10px;
  line-height: 1.3;
  font-weight: 450;
  margin: 0;
	color:#069d86;
  
}
.post .card-body .post-comments{
	padding-top:15px;
}
.post .card-body .post-comments a{
	color:#525252;
}
.post .card-body .post-comments i{
	font-size:20px;
}
.post-comments .dropdown-menu{
	right:0;
	left:auto;
}

/*body-content-right column*/
.main-content-right .category-item  .card-header img{
	width:100%;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.main-content-right .category-item  .card-body{
	background-color:lightgray;
}
.category-item .category-item-info{
  position: absolute;
  top: 20px;
  left: 10px;
  background-color: rgba(0,0,0,0.15);
  padding: 10px;
}
.category-item .category-item-info h3{
	font-size: 24px;
	color: #fff;
	font-weight: 300;
}
.category-item-statistic .list-inline li{
	min-width:100px;
	text-align:center;
}
	
/*footer*/
.home-footer{
	background-color:#069d86;
	color:#fff;
	padding:20px 0;
}	

/******************************************************************************/
/****************************   PRINT SETUP   *********************************/
/******************************************************************************/
@media print {
  .pagebreak { page-break-before: always; padding:20px 0;} /* page-break-after works, as well */
	.hide-when-print{display:none!important;}
	.navbar-home-right{display:none!important;}
}

/******************************************************************************/
/**********************   PAGE TERMS OF USE   *********************************/
/******************************************************************************/
.page-terms-of-use{
	background-color:#fff;
	text-align:justify;
	padding:20px 10px;
}
.page-terms-of-use h3{
	font-size:20px;
	font-weight:500;
	padding:20px 0;
}
.page-terms-of-use h4{
	font-size:18px;
	font-weight:500;
	padding:10px 0;
}

/******************************************************************************/
/**********************   PAGE USER PROFILE   *********************************/
/******************************************************************************/
.page-user-profile{
	background-color:#fff;
}
.section-user-info,.section-students,.section-menu-user{
	padding-top: 0.75rem;
}
.section-user-info{font-size: 1.125rem;}
/*section studentren*/
.section-students .student-info{
  margin: 0 15px;
  font-weight: 500;
	flex:1;
	overflow:hidden;
}
.section-students .student-info-menu{
	flex-shrink:0;
	text-align:center;
}
.section-students .add-student{
	text-align:center;
}
.section-students .add-student .btn{
	border-radius:1.25rem;
	color:#fff;
}
.modal-full-screen .form-add-student .btn-save-student{
	border-radius:20px;
}
/*section user menu*/
.section-menu-user .menu-group{
	font-size: 1rem;
	font-weight: 550;
	margin: 1rem 0 0;
}

/******************************************************************************/
/*************************   PAGE EDUCATION BOX -CLASS   **********************/
/******************************************************************************/
.page-class-manager{
	padding-top:20px;
	padding-bottom:0.5rem;
	font-size:0.875rem;
}
.class-item .card-header a>img{
	width:100%;
	object-fit: cover;
	max-height: 200px;
	min-height: 100px;
}
.class-item h3.class-title{
  margin: 5px 0 10px 0;
  font-size: 1rem;
  font-weight: 450;
  color: #069d86;
}
.page-class-manager .class-item ul{
	list-style:none;
	padding-left:0;
}
.page-class-manager .class-item ul li{
	padding:0.25rem 0;
}
.page-class-manager .class-item ul li .fa{
	min-width:1.25rem;
	margin-right:0.25rem;
}
.class-item .class-summary{
  font-size:0.875rem;
	list-style:none;
	padding:0;
	margin:0;
}
.class-item .class-summary .fa{
	min-width:20px;
}

/******************************************************************************/
/*************************   PAGE CLASS DETAIL  *******************************/
/******************************************************************************/
.page-class-detail{
	padding-top:1rem;
	padding-bottom: 3rem;
	font-size:0.75rem;
}
.section-prolong{
	margin:20px;
}
.section-prolong .btn{
	border-radius:20px;
}
.section-cashout .btn{
	background-color:#03ad03;
	border-radius:20px;
}
.class-entry-item .card-header{
	padding:0.3rem;
	font-size:0.875rem;
}
.class-entry-item .card-header .fa{
	font-size:1.25rem;
}

/******************************************************************************/
/*************************   PAGE CLASS ENTRY DETAIL  *************************/
/******************************************************************************/
.page-class-entry-detail{
	padding-top:20px;
	padding-bottom: 4rem;
}
.page-class-entry-detail .section-media img{
	max-height:150px;
}

/******************************************************************************/
/*************************   PAGE CLASS PROLONG  ******************************/
/******************************************************************************/
.page-class-prolong{
	padding-top:1rem;
}
.page-class-prolong .package-price{
	font-size: 2rem;
	text-align:center;
	line-height:1;
}
.page-class-prolong .package-price span{
	text-decoration: line-through;
	color: #999;
	font-size:1.25rem;
}
.page-class-prolong .package-description ul{
	padding-left:1rem;
}
.page-class-prolong .btn-cashout{
	border-radius:1.125rem;
}
.page-class-prolong .class-title{
	font-size:1.25rem;
	font-weight:500;
}

/******************************************************************************/
/******************************   PAGE CASH OUT  ******************************/
/******************************************************************************/
.page-cash-out .section-payer-info .fa{
	min-width:1.5rem;
	text-align:left;
}

/******************************************************************************/
/******************************   PAGE MODERATOR  *****************************/
/******************************************************************************/
.filter-container a:hover{
	color:#fff;
}