/*===== Video Button Start =============*/
  .video-play-button {
    position: absolute;
    z-index: 10;
    top: 25%;
    left: 48%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 31px 11px 18px 28px;
  }
  .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #ba1f24;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
  }
  .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #fa183d;
    border-radius: 50%;
    transition: all 200ms;
  }
  .video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
  }
  .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }  
/*===== Video Button End =============*/

/*===== Popup Window Start ============*/
  #fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
  }
  #light {
    display: none;
    position: absolute;
    top: 6%;
    left: 5%;
    width: 1200px;
    height: 500px;
    margin-left: ;
    margin-top:;
    border: 2px solid #FFF;
    background: #FFF;
    z-index: 99999;
    overflow: visible;
  }
  #boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 3px;
    background: #222222;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: 0.9;
  }
  .boxclose:before {
    content: "×";
  }
  #fade:hover ~ #boxclose {
    display:none;
  }
/*===== Popup Window End ============*/

/*===== Responsive Popup Start ======*/
    @media screen and (max-width: 375px) {
        .video-play-button {
          top: 33%;
          left: 80%;
          padding: 35px 10px 18px 28px;
        }
        .video-play-button:before {
          width: 50px;
          height: 50px;
        }
        .video-play-button:after {
          width: 50px;
          height: 50px;
        }
        .video-play-button span {
          border-left: 19px solid #fff;
          border-top: 14px solid transparent;
          border-bottom: 13px solid transparent;
        }
        #light {
          top: 10%;
          left: 5%;
          width: 90%;
          height: 170px;        
        }
    }
    @media only screen and (min-device-width : 376px) and (max-device-width : 400px) {
        .video-play-button {
          top: 33%;
          left: 80%;
          padding: 35px 10px 18px 28px;
        }
        .video-play-button:before {
          width: 50px;
          height: 50px;
        }
        .video-play-button:after {
          width: 50px;
          height: 50px;
        }
        .video-play-button span {
          border-left: 19px solid #fff;
          border-top: 14px solid transparent;
          border-bottom: 13px solid transparent;
        }
        #light {
          top: 10%;
          left: 5%;
          width: 90%;
          height: 170px;        
        }
    } 
    @media only screen and (min-device-width : 401px) and (max-device-width : 460px) {
        .video-play-button {
          top: 33%;
          left: 80%;
          padding: 35px 10px 18px 28px;
        }
        .video-play-button:before {
          width: 50px;
          height: 50px;
        }
        .video-play-button:after {
          width: 50px;
          height: 50px;
        }
        .video-play-button span {
          border-left: 19px solid #fff;
          border-top: 14px solid transparent;
          border-bottom: 13px solid transparent;
        }
        #light {
          top: 10%;
          left: 5%;
          width: 90%;
          height: 170px;        
        }
    } 
    @media only screen and (min-device-width : 461px) and (max-device-width : 767px) {
        .video-play-button {
          top: 33%;
          left: 80%;
          padding: 35px 10px 18px 28px;
        }
        .video-play-button:before {
          width: 50px;
          height: 50px;
        }
        .video-play-button:after {
          width: 50px;
          height: 50px;
        }
        .video-play-button span {
          border-left: 19px solid #fff;
          border-top: 14px solid transparent;
          border-bottom: 13px solid transparent;
        }
        #light {
          top: 10%;
          left: 5%;
          width: 90%;
          height: 170px;        
        }
    }
    @media only screen and (min-device-width : 768px) and (max-device-width : 990px){
        .video-play-button {
          top: 35%;
          left: 80%;
          padding: 35px 10px 18px 28px;
        }
        .video-play-button:before {
          width: 60px;
          height: 60px;
        }
        .video-play-button:after {
          width: 60px;
          height: 60px;
        }
        .video-play-button span {
          border-left: 20px solid #fff;
          border-top: 14px solid transparent;
          border-bottom: 15px solid transparent;
        }
        #light {
          top: 10%;
          left: 5%;
          width: 90%;
          height: 370px;        
        }
    }
/*===== Responsive Popup End ======*/


.advisory_board .course__item {
    margin-bottom: 15px;
	padding-bottom: 0px;
}
.social-login-more {
	width: 45%;
}
.social-google {
	background-color: #da573b;
	border-color: #be5238;
}
.social-google:hover {
	background-color: #be5238;
	border-color: #9b4631;
}
.social-facebook {
	background-color: #4c699e;
	border-color: #47618d;
}
.social-facebook:hover {
	background-color: #47618d;
	border-color: #3c5173;
}
.social-linkedin {
	background-color: #0083a8;
	border-color: #466b99;
}
.social-linkedin:hover {
	background-color: #466b99;
	border-color: #3b5a7c;
}
.btn-center {
	width: 50%;
	text-align: center;
	margin: inherit;
}
.upperTabTop {
	margin-top: 35px;
}
.social-login-btn {
	margin: 5px;
	width: 9%;
	font-size: 190%;
	padding: 0;
}
.courseInnerLoginSection {
	padding: 6% 8% 1% 8%;
	background-color: #FFF;
	min-height: 100vh;
}
.submitButton{
	width:100%; float:left; text-align:center; padding-top:5px; padding-right:20%; padding-bottom:10px;
}
.innerCredit{
	padding-left:2px;
}
.courseTableData {
	padding-left: 0px;
	 float:left;
}
.bodyRating{
	width:100%; float:left; border-bottom:#ccc 1px solid; margin-top:20px;padding-bottom: 10px;
}
.tab-content .bodyRating:last-child {
    border-bottom: none;
} 
.ratingImage{
	padding-top:0px; 
}
.ratingVideo{
	padding-top:0px; 
}
.reviewMobile{
	text-align:left;
}
.innerDashboard{
	width:100%; float:left; padding-right:4%
}
.school-name-box{
	 background-color: #F5F5F5;
    border: 4px solid #DDD;
    border-radius: 20px;
    box-shadow: 0 0 3px 0 #808080 inset;
    width: 108px;
    height: 108px;
    margin-left: auto;
    margin-right: auto;
}

.school-name-box img {
    border-radius: 20px;
}
.ourCourses{
	font-size:18px;font-family: inherit;
	}
.title h1 {
    font-size: 30px;
    text-transform: uppercase;
}
.border-right {
	border-right: #ccc 1px solid;
}
.icon-image {
    width: 19px;
    height: 19px;
    float: left;
    margin-top: 0px;
}
.navbar-nav {
    margin: 0px -15px 0px -15px;
}
.navbar-inverse .navbar-nav > li > a {
    margin-bottom: 13px;
	margin-top:13px;
}
.course-text {
    padding: 0px 1px 1px 20px;
    margin-top: 0px;
}
.course-details-text
{
	text-align: justify;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}
.table {
    border: 1px solid #ddd;
}
.table table-striped tbody{
	border: 1px solid #ddd;
}
.table table-striped tbody th{
padding:7px 0px 8px 10px
}

.instructor-description {
    float: left;
    padding-top: 20px;
    width: 315px;
    overflow: auto;
    height: 130px;
}
.free-preview-button {
    text-decoration: none;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 5px;
    border: #ccc 1px solid;
    font-size: 13px;
}
.preview-button{
	text-decoration: none;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 5px;
    border: #ccc 1px solid;
    font-size: 13px;
}

.page-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    /* background-color: #F5F5F5; */
}
.page-banner {
    /* background-color: #FFFFFF; */
    /* background: url(../pix/background-image.jpg) no-repeat fixed center top / cover transparent; */
    color: #FFFFFF;
    height: 600px;
    text-align: center;
    width: 100%;
    position: relative;
}
.page-banner .banner-text {
    text-align: center;
    position: absolute;
    top: 20%;
}
.page-banner .banner-text h1 {
	text-align: center;
	text-shadow: 0 1px 2px #000000;
	font: bold 48px Helvetica;
	margin-bottom: 8px;
	color: #ffffff;
}
.page-banner .banner-text h2 {
	text-align: center;
	font: bold 24px Helvetica;
	text-shadow: 0 1px 2px #000000;
	color: #ffffff;
}
/*.banner-search-box {
    text-align: center;
    top: 48%;
}*/
.page-course-categories {
    width: 70%;
    height: 120px;
    text-align: center;
    border-radius: 10px;
    background-color: #F7FBFC;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    border: 1px solid #D3DDE0;
    position: absolute;
    bottom: 10px;
    margin: 0 15%;
    top: 70%;
}
.categories-box {
    height: 95px;
    /* width: 830px; */
   /* position: relative;*/
    margin: 10px 40px 0;
	overflow: hidden;
}
.categories-box ul {
    list-style: none;
    padding: 0;
}
.categories-box .flex-direction-nav li {
    width: 00px;
    height: 0px;
    border: 0;
}
.clearfix {
    width: 100%;
    float: left;
}
.page-course-categories .categories-box .first {
    border: 0;
}

.banner-search-box {
    text-align: center;
    top: 48%;
	z-index: 99;
}
.front-search-form {
    position: relative;
}
.front-search-banner-input-container {
    position: relative;
}
.banner-search-box .search-banner-input {
    border: 0 none;
    border-radius: 30px;
    box-shadow: 0 0 0 1px #555555 inset, 0 0 0 8px rgba(255, 255, 255, 0.5), 0 0 4px 8px rgba(0, 0, 0, 0.25);
    font: 17px Helvetica;
    height: 45px;
    color: #000;
    width: 100%;
    padding: 14px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.categories-box .flex-direction-nav {
    height: 20px;
    position: absolute;
    top: 0;
    width: 100%;
}
.categories-box .flex-direction-nav .flex-prev {
    left: -43px;
    top: 64px;
    background-position: 0 0;
    opacity: 1 !important;
}
.categories-box .flex-direction-nav .flex-next {
    right: 66px;
    top: 64px;
    background-position: 100% 0;
    opacity: 1 !important;
}
.categories-box .flex-direction-nav a {
    /* background: url([[pix:theme|bg_direction_nav]]) no-repeat 0 0; */
    background: url(../pix/bg_direction_nav.png) no-repeat 0 0;
}

a, img {
    text-decoration: none;
    border: 0px;
}
.footer li{
	list-style-type:none;
}
.footer_li {
	padding: 5px;
	color: #fff;
	float: left
}
.footer_li a {
	padding: 0 2px 0 2px;
	color: #ccc;
	float: left;
/*	font-size: 13px
*/}

.profileName{
	font: bold 20px Georgia; 
	padding: 0 0 4px; 
	text-shadow: 1px 1px 1px #CCC; 
	color:#3d84b9;
}
.course__item {
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
    transition: box-shadow .3s;
	min-height: 370px;
	padding-bottom: 10px;
}

.placement__item {
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
    transition: box-shadow .3s;
	min-height: 215px;
	padding-bottom: 10px;
}
.featuredcourse__item {
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
    transition: box-shadow .3s;
}
.course-item__content {
    padding: 10px 15px 10px 15px;
    /*text-align: center;*/
  /*  -webkit-transform: translateY(-20px);
    transform: translateY(-20px);*/
}
.course-item__content h4 a{
	font: 'Trebuchet MS';
	line-height: 1.3;
}
.course-item__content h5 a{
	font: 14px/20px 'Trebuchet MS';
	color:#333;
}
.fr-tab-learners {
    background: url(/theme/image.php/gr8street_muniversity/theme/1505208302/learners_icon) no-repeat 0 6px;
    background-position-x: 0px;
    background-position-y: 6px;
    padding-left: 36px;
	padding-top: 15px;
}
.fr-tab-heducation {
    background: url(/theme/image.php/gr8street_muniversity/theme/1505208302/higher-ed) no-repeat 0 6px;
    padding-left: 48px;
	padding-top: 15px;
}
.fr-tab-enterprise {
    background: url(/theme/image.php/gr8street_muniversity/theme/1505208302/enterprise) no-repeat 0 6px;
    padding-left: 32px;
	padding-top: 15px;
}
.fr-tab-government {
    background: url(/theme/image.php/gr8street_muniversity/theme/1505208302/gov) no-repeat 0 6px;
    padding-left: 37px;
	padding-top: 15px;
}
.fr-tab-agencies {
    background: url(/theme/image.php/gr8street_muniversity/theme/1505208302/agencies) no-repeat 0 6px;
    padding-left: 36px;
	padding-top: 15px;
}

.courseSection
{
	padding:0 12%; background-color: #F5F5F5; 
}

.headerSection{
	padding:0 12%;
}
.courseInnerSection
{
	padding:6% 2% 1% 2%;
	background-color: #FFF;
	min-height:100vh;
}
.school-logo {
	background-color: #F5F5F5;
	border: 4px solid #DDD;
    border-radius: 100px;
    box-shadow: 0 0 3px 0 #808080 inset;
	width: 50px;
	height: 50px;
}
.school-name {
    float: left;
    font: bold 21px Helvetica;
    padding: 15px 0;
    width: 100%;
    text-align: center;
}
.middleBorder
{
	border-left:1px solid #ccc;
}
.topBorder
{
 border-top:1px solid #ccc;	
}

.programTitle{
	font: bold 25px Georgia;
	color: #27608D;
	text-align:center;
}
.instituteName{
	text-decoration:none;
	font: bold 18px Georgia;
	padding-top:10px;
}
/*.img-responsive{
	width:100px;
	height:100px;
}*/

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: #fff;
    cursor: default;
    background-color: #0367B0;
}

.categoryText{
	padding: 4px 0;
}
.categoryText a
{
	cursor: pointer;
	font: 13px Helvetica;
	
}
.categoryText a:hover
{
	cursor: pointer;
	font: 13px Helvetica;
	/*font-weight:bold;*/
	color: #333;
}
.m-pagination .page-num {
    cursor: pointer;
}
.m-pagination .not-num {
    border: none;
    background-color: #fff;
}
.m-pagination div {
    font: 14px Arial;
    display: block;
    border: 1px solid #ddd;
    background-color: #fafafa;
    padding: 3px 8px;
    color: #777;
    float: left;
    margin-left: 5px;
    padding: 3px 8px;
}
.m-pagination .current {
    font: bold 14px Arial;
    display: block;
    border: 1px solid #ddd;
    background-color: #ddd;
    padding: 3px 8px;
    color: #333;
    float: left;
}
.course-img-box img {
   /* box-shadow: 0 0 2px 0 rgba(0,0,0,0.45);*/
    border-radius: 3px;
}
.course-content-coursename a {
    color: #555;
    font: bold 17px/22px Helvetica;
    text-shadow: 0 0 1px #AFAFAF;
}
.course-content-school a {
    color: #0367B0;
    font: bold 14px/18px Helvetica;
    text-shadow: 0 0 2px #DDD;
}
.course-content-description {
    color: #000;
    font: 13px/16px Arial;
    padding: 15px 0 0;
}
.course-startdate{
    color: #333;
    font: 14px Arial;
    padding: 3px;
}
.course-fee {
    color: #0367B0;
    font: bold 14px Arial;
    padding: 10px 3px;
}
.roundedHeader {
    border-radius: 25px;
    background: #D45930;
    width: 100%;
    height: 40px;
	text-transform:uppercase;
	text-align:center;
	color:#fff;
	font-weight:bold;
}
.roundedHeaderNew {
    border-radius: 25px;
    background: #D45930;
    width: 100%;
    height: 40px;
	text-transform:uppercase;
	text-align:center;
	color:#fff;
	font-weight:bold;
}

.roundedAboutLeft
{
	border-radius: 25px;
    background: #D45930;
    width: 100%;
    height: 100px;
	text-align:center;
	color:#fff;
	font-weight:bold;
}
.roundedAboutRight
{
	border-radius: 25px;
    background: #D45930;
    width: 100%;
	text-align:left;
	color:#000;
	font-size:14px;
	padding:10px 25px;
}
.HeaderText1
{
	font-size:32px; margin-top: 3px; 
}
.modal-dialog {
    /*width: 500px;
    margin: 5% auto;*/
}

.school-courses-box {
    background-color: #FFF;
    border: 1px solid #DADADA;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    color: #333;
    padding: 0;
    width: 100%;
	float:left;
    margin: -45px auto 0;
    position: relative;
    
}
.schoolLogo {
    background-color: #F5F5F5;
    border: 4px solid #DDD;
    border-radius: 40px 40px 40px 40px;
    box-shadow: 0 0 3px 0 #808080 inset;
    height: 126px;
    padding: 4px 2px;
    margin-left: auto;
	margin-right: auto;
	width:122px;
}
.schoolLogo img {
    border-radius: 30px;
}

.schoolName {
    /*padding: 10px 5px 10px 5px;*/
	padding: 5px 13px 0px;
    z-index: 1;
   /* background-color: #FAFAFA;*/
    font: bold 16px 'Trebuchet MS';
    text-shadow: 1px 1px 1px #CCC;
}
.leftSide{
	float: left;
	margin-right: 30px;

	background-color: #F5F5F5;
	border: 4px solid #DDD;
	border-radius: 100px;
	box-shadow: 0 0 3px 0 #808080 inset;

	width:112px;
}
.rightSide{
	padding:0; overflow:auto; height:130px; width:62%; float:left;
}
.leftSide img {
    border-radius: 100px;
}
.name {
    font: bold 20px Georgia;
    padding: 0 0 15px;
    text-shadow: 1px 1px 1px #CCC;
}
.placementBox
{
	width: 20%;
	float:left;
	padding:5px;
}
.five_column_box{
	width: 20%;
	float: left;
	padding: 5px;
}
.dashboardBox
{
	width: 33.33333333%;
	float:left;
	padding:5px;
}
.placementBox
{
	width: 20%;
	float:left;
	padding:5px;
}
.dashboardBox1
{
	background-color:#E36781;
	color:#fff;
	height: 100px;
}
.dashboardBox2
{
	background-color:#75c055;
	color:#fff;
	height: 100px;
}
.dashboardBox3
{
	background-color:#65bbdf;
	color:#fff;
	height: 100px;
}
.dashboardBox4
{
	background-color:#e0b448;
	color:#fff;
	height: 100px;
}
.dashboardBoxTop
{
	font: bold 20px/60px 'Trebuchet MS';
	text-align:right;
	width:70%; float:left;
}
.dashboardBoxBottom
{
	font: bold 14px Tahoma; text-align:left; width:100%; float:left;
}
.dashboardBox1 a
{
	color:#FFF;
}
.dashboardBox1 a:hover
{
	color:#000;
}

.dashboardRightHeader
{
	color: #0367B0;
	font: bold 14px Trebuchet MS;
	text-shadow: 0 0 2px #DDD;
}
.dashboard-menu {
    font: 13px Helvetica;
    padding: 15px 0 10px 3px;
}

.roundedImage
{
	border-radius:20px;border: 4px solid #DDD;
	
}
.userImage {
    background-color: #F5F5F5;
    border: 4px solid #DDD;
    border-radius: 20px;
    box-shadow: 0 0 3px 0 #808080 inset;
    width: 108px;
    height: 108px;
	margin-left: auto;
    margin-right: auto;
}
.userImage img {
	border-radius:20px;
}
.schoolImage {
    background-color: #F5F5F5;
    border: 4px solid #DDD;
    border-radius: 100px;
   /* box-shadow: 0 0 3px 0 #808080 inset;*/
    width: 70px;
    height: 70px;
	margin-left: auto;
    margin-right: auto;
}
.schoolImage img {
	border-radius:50px;
}
/*////////////////////CALENDER CONTROL START////////////////////////////////////*/
.dashboard-user-info table {
    width: 100%;
}
.dashboard-calendar caption {
    margin-bottom: 2px;
	text-align: center;
}
.dashboard-calendar .calendar-controls {
    background-color: #FAFAFA;
    border: 1px solid #CCC;
    padding: 1px;
}
.dashboard-calendar .calendar-controls .previous {
    color: #333;
    margin-right: 30px;
}

.accesshide {
    position: absolute;
    left: -10000px;
    font-weight: normal;
    font-size: 1em;
}
.dashboard-calendar .calendar-controls .current a {
    color: #333;
    font: bold 14px Trebuchet MS;
}
.dashboard-calendar .calendar-controls .next {
    color: #333;
    margin-left: 30px;
}
.clearer {
    background: transparent;
    border-width: 0;
    clear: both;
    display: block;
    height: 1px;
    margin: 0;
    padding: 0;
}
.dashboard-calendar .weekdays {
    background-color: #DDD;
    border-bottom: 1px solid #DDD;
}
.dashboard-calendar tr th {
    border: 0;
        border-bottom-width: 0px;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    border-bottom: 1px solid #DDD;
    padding: 2px;
}
.minicalendar td, .minicalendar th {
    font-size: 0.85em;
    padding: 0 2px;
    border-width: 2px 0;
    border-color: #fff;
	width: 14%;
vertical-align: top;
text-align: center;
}
.dashboard-calendar tr {
    border-bottom: 1px solid #DDD;
}
/*////////////////////CALENDER CONTROL END////////////////////////////////////*/
.dashRight
{
	float:right;
	margin-top:6%;
}
.dashLeft
{
	float:left;
}
.modalPopupProgram
{
	width:550px;
}
.addProgramBtn
{
	padding-bottom:10px; width:80%; float:left; text-align:center;
}

.td2 {
    width: 86%;
    padding: 0px;
	word-wrap:break-word;
	word-break:break-all;
}
.td3 {
    width: 15%;
    text-align: center;
    padding: 0px;
}
.label_light_color {
    padding: 5px 8px 5px 8px;
    margin-left: 8px;
    border: 1px solid #d6d5d5;
    background-color: #337ab7;
    color: #fff;
	font-weight:bold;
}
.label_dark_blue {
    padding: 5px 8px 5px 8px;
    margin-left: 8px;
    border: 1px solid #d6d5d5;
    background-color: #f9f9f9;
    color: #337ab7;
	font-weight:bold;
}

.search-form-inside .search-advice-wrapper {
    border-radius: 5px;
    box-shadow: 0 0 2px #CCC;
    border: 1px solid #CCC;
    width:100;
}
.search-advice-wrapper {
    display: none;
    border: 0 none;
    border-radius: 1px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #333;
    z-index: 5;
    position: absolute;
    top: 50px;
    left: 0px;
}
.search-form-inside .search-advice-wrapper .search-arrow {
    background: url(/muniversity/theme/image.php/gr8street_muniversity/theme/1505208302/search_arrow_grey) 0 0 transparent;
}
.search-advice-wrapper .search-arrow {
    position: absolute;
    background: url(/muniversity/theme/image.php/gr8street_muniversity/theme/1505208302/search_arrow_black) no-repeat 0 0;
    width: 20px;
    height: 10px;
    top: -10px;
    left: 13px;
}
.search-form-inside .front-search-btn {
    width: 17px;
    height: 17px;
    background: url(/theme/image.php/gr8street_muniversity/theme/1506435737/search_icon_small) 0 0 transparent;
    position: absolute;
    cursor: pointer;
    right: -28px;
    top: 11px;
    opacity: 0.5;
}

.search-form-inside .search-advice-wrapper .advice_variant {
    font: 14px Helvetica;
    padding: 8px 12px;
}
.search-advice-wrapper .advice_variant {
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    font: 17px Helvetica;
    text-align: left;
    color: #333;
    position: relative;
}
.login_box
{
	width:100%; 
	float:left; 
	border: 1px solid #ccc;
	box-shadow: 2px 1px 7px 0px #666;
	border-radius:14px;
}
.required
{
	color:#f00;
	font-weight:bold;
}
#showHideCategoryDiv{
	display:none;
}
h3{
	line-height: 32px;
}
.search-item{
	padding:15px 0px 5px 0px; 
	border-bottom:1px solid #ccc; 
	border-left:1px solid #ccc; 
}

.search-form-box{
	margin: 10px 0;
}
.show_preloader{
	text-align:center; padding-top:20%;;
}

.popup-associate {
    background: url(/theme/image.php/gr8street_muniversity/theme/1506435737/agencies) no-repeat 7px 6px;
    padding-left: 45px;
	height: 28px;
	font-weight: bold;
padding-top: 5px;
}
.popup-government {
    background: url(/theme/image.php/gr8street_muniversity/theme/1506435737/gov) no-repeat 5px 6px;
    padding-left: 45px;
	height: 28px;
	font-weight: bold;
padding-top: 5px;
}
.popup-enterprise {
    background: url(/theme/image.php/gr8street_muniversity/theme/1506435737/enterprise) no-repeat 7px 6px;
    padding-left: 45px;
	height: 28px;
	font-weight: bold;
padding-top: 5px;
}
.popup-educator {
    background: url(/theme/image.php/gr8street_muniversity/theme/1506435737/higher-ed) no-repeat 0 6px;
    padding-left: 45px;
	height: 28px;
	font-weight: bold;
padding-top: 5px;
}
.popup-learner {
    background: url(/theme/image.php/gr8street_muniversity/theme/1506435737/learners_icon) no-repeat 10px 6px;
    padding-left: 45px;
	height: 30px;
	font-weight: bold;
padding-top: 5px;
}

#courseLeft
{
		display:none;
}
.allCourtse
{
	text-align:center; padding:8px 2px; width:8%; float:left;
}

.userFile
{
	font-size: 14px;
	float: left;
	padding: 0px 11px 6px 0px;
	text-align: center;
	width: 67%;
}

.userLoad
{
	width: 25%;
	float:left;
}
.border-left
{	
border-right: 1px solid #ccc;
}
.courseGallery
{	
 width:100%; 
 height:auto; 
 float:left; 
 padding:5px; 
 margin:10px 0px 10px 0px; 
 background-color:#ededed;
}
.airtcle
{
/*	list-style:none; 
*/	margin-bottom:10px; font-weight:bold;
}
.airtcleLink
{
/*	list-style:none;margin-bottom:10px; 
*/	padding:5px; background-color:#ededed;
}
@media only screen and (min-width:320px) and (max-width:768px) {

#course-info1{
	display:block;	
}
.applicationFee{
	display:none;
}

.dashboard-menu{
	display:none;	
}
.dashboard-calendar{
	display:none;	
}

.dashboardRightHeader{
	text-align:center;	
}

.upperTabTop {
	margin-top: 65px;
}	
.social-login-btn {
	margin: 5px;
	width: 21%;
	font-size: 198%;
	padding: 0;
}	
.courseInnerLoginSection {
	padding: 6% 2%;
	background-color: #FFF;
	width: 100%;
	float: left;
}
	.submitButton{
	 text-align:left;
}
	.courseTableData1{
	padding-left: 6px;
}
	.courseTableData {
	padding-left: 6px;
}
	.reviewMobile{
	text-align:center;
}
	.ratingImage{
	padding-top:40px; 
}
.ratingVideo{
	padding-top:20px; 
}
 /*  button[type="button"]{
	margin-top: 10px;
	text-align:center;
}*/
   .innerDashboard{
	width:100%; float:left; padding-left:5%
}
	.school-courses-box {
    background-color: #FFF;
    border: 1px solid #DADADA;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    color: #333;
    padding: 0;
    width: 100%;
	float:left;
    margin: 6px auto 0;
    position: relative;
    
}
.fc-header-title h2{
	font-size:14px;
}
.allCourtse
{
	text-align:center; padding:18px 2px 3px; width:100%; float:left;
}
.td2 {
    width: 60%;
    padding: 0px;
}
.td3 {
    width: 40%;
    text-align: right;
    padding: 0px;
}
.addProgramBtn
{
	padding-bottom:10px; width:80%; float:left; text-align:left;
}
.modalPopupProgram
{
	width:90%;
}

.courseSection
{
	padding:3% 2%; background-color: #F5F5F5; 
}
.courseInnerSection
{
	padding:6% 2%; background-color: #FFF; width:100%; float:left;
}
.middleBorder
{
	border-left:none
}


.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-right: 5px;
    padding-left: 5px;
}

.leftSide{
	float: left;
	margin-right: 30px;
	height: 135px;
	background-color: #F5F5F5;
	border: 4px solid #DDD;
	border-radius: 100px;
	box-shadow: 0 0 3px 0 #808080 inset;
	padding: 5px;
	width:130px;s
}
.rightSide{
	padding:0; overflow:auto; height:127px; width:100%; float:left;
}
.leftSide img {
    border-radius: 100px;
}
.placementBox
{
	width: 98%;
	float:left;
	padding:4px;
}
.dashboardBox
{
	width: 100%;
	float:left;
	padding:4px;
}
.dashboardBoxTop
{
	font: bold 26px/63px 'Trebuchet MS';
	text-align:right;
	width:70%; float:left;
}
.dashRight
{
	float:left;
	margin-top:21%;
	width:100%;
}
.dashLeft
{
	float:right;
}
.dashLeftMobile
{
	padding-left:10px;
}
.modal-dialog {
    width: 95%;
    margin: 5% auto;
}
.courseSection {
    padding: 0 0%;
}
.innerImage{
	padding-top:20px;
}

.label_light_color {
    padding: 1px 4px 1px 4px;
    margin-left: 4px;
	font-size:13px;
}
.label_dark_blue {
    padding: 1px 4px 1px 4px;
    margin-left: 4px;
	font-size:13px;
}
.five_column_box{
	width: 98%;
}
.featuredcourse__item {
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
    transition: box-shadow .3s;
}
.outerTab{
	padding-top:10px;
}
.displayNone{
	display:none;	
}
.courseLeft
{
		display:none;
}
#courseLeft
 { 
	display:block;
 }
 .border-left
{	
border-right: none;
}
.title h1 {
    font-size: 23px;
    text-transform: uppercase;
}
.ourCourses{
	font-size:14px;
}
	.star-rating-count {
	color: #171414;
}
}

@media only screen and (min-width:769px) and (max-width:980px) {
.social-login-btn {
	width: 14%;
	font-size: 198%;
}
.headerSection{
	padding:0 3%;
}	
/*button[type="button"]{
	margin-top: 10px;
	text-align:center;
}	*/
.courseSection
{
	padding:2% 2%; background-color: #F5F5F5; 
}
.courseInnerSection
{
	padding:6% 2%; background-color: #FFF;
}
.middleBorder
{
	border-left:1px solid #ccc;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {

    padding-right: 5px;
    padding-left: 5px;
}
.placementBox {
    width: 33.3%;
    float: left;
    padding: 5px;
}	

}
@media only screen and (min-width:360px) and (max-width:480px) {
.social-login-btn {
	width: 16%;
}	
.courseSection
{
	padding:5% 2%; background-color: #F5F5F5; 
}
.five_column_box
{
	width: 98%;
	float:left;
	padding:4px;
}
.dashboardBox
{
	width: 48%;
	float:left;
	padding:4px;
}
.placementBox
{
	width: 98%;
	float:left;
	padding:4px;
}
.dashboardBoxTop
{
	font: bold 26px/63px 'Trebuchet MS';
	text-align:right;
	width:70%; float:left;
}

.ytVideo1{
	height:230px;
}
}
@media only screen and (min-width:481px) and (max-width:660px) {
.social-login-btn {
	width: 13%;
}
	
.courseInnerLoginSection {
	padding: 6% 9%;
	background-color: #FFF;
	width: 100%;
	float: left;
}
.courseTableData {
	padding-left: 14px;
}
.innerDashboard{
	width:100%; float:left; padding-left:7%
}
.dashboardInner
{
	padding-left:15px;
}
.courseSection
{
	padding:0% 2%; background-color: #F5F5F5; 
}
.dashboardBox
{
	width: 48%;
	float:left;
	padding:4px;
}
.five_column_box
{
	width: 48%;
	float:left;
	padding:4px;
}
.placementBox
{
	width: 48%;
	float:left;
	padding:4px;
}

.dashboardBoxTop
{
	font: bold 26px/63px 'Trebuchet MS';
	text-align:right;
	width:70%; float:left;
}

.ytVideo1{
	height:260px;
}

}
@media only screen and (min-width:661px) and (max-width:768px) {
.social-login-btn {
	width: 11%;
}	
.courseInnerLoginSection {
	padding: 6% 9%;
	background-color: #FFF;
	width: 100%;
	float: left;
}
.courseSection
{
	padding:5% 2%; background-color: #F5F5F5; 
}
.dashboardBox
{
	width: 33.33%;
	float:left;
	padding:4px;
}
.five_column_box
{
	width: 33.33%;
	float:left;
	padding:4px;
}
.placementBox
{
	width: 33.33%;
	float:left;
	padding:4px;
}

.dashboardBoxTop
{
	font: bold 26px/63px 'Trebuchet MS';
	text-align:right;
	width:70%; float:left;
}
.ytVideo1{
	height:350px;
}
}
#registerButton{
	text-align:center; padding-top:5px; display:none;
}
@media screen and (max-width:768px){
.programTitle{
	font: bold 16px Georgia;
	color: #27608D;
	text-align:center;
}

.instituteName{
	text-decoration:none;
	font: bold 13px Georgia;
	padding-top:10px;
}
	
#registerButton{
	text-align:center; padding-top:5px; display:block;
}
.innerCredit{
	padding-left:34px;
}
.userLoad a
{
	float: right;
padding: 11px 5px 6px 0px;
}

/*.clearfix{
	display:none;
}*/
.page-banner .banner-text {
    top: 15%;
}
.banner-search-box {
    text-align: center;
    top: 55%;
}
.banner-search-box .search-banner-input {
	width:100%;
}
.page-course-categories {
    width: 100%;
	margin: 0%;
}
.courseSection {
    padding: 0 0%;
}

.headerSection{
	padding:0 2%;
}
.footerSection{
	padding:0 2%;
}
.course-details-area {
    padding: 0px;
}
.course-tab {
	padding-left: 0px;
}
h1{
	font-size: 26px;
}
.padding-tp-70-bt-50 {
    padding-top: 45px;
}
.login_box
{
	margin-top:40px;
	margin-bottom:20px;
}
.left-menu
{
	display:none;
}
#showHideCategoryDiv{
	display:block;
}
.page-banner .banner-text {
    width: 100%;
}
.page-banner .banner-text h1 {
	font: bold 36px Helvetica;
}
.page-banner .banner-text h2 {
    font: bold 22px Helvetica;
}

h3{
font-size: 16px;
line-height: 26px;
}
h4{
font-size: 15px;
line-height: 19px;
}
.search-item{
	border-left:1px solid #fff; 
}

.show_preloader{
	text-align:center; padding-top:20%; padding-bottom:20%;
}
.navbar-nav > li > a {
    padding-top: 0px;
    padding-bottom: 0px;
}
.ivideo
{
	 height: 351px;
}
.border-right {
	border-right: none;
}

}
@media (min-width: 981px) and (max-width:1224px){
.container {
    width: 100%;
}
.courseInnerSection {
    padding: 6% 2%;
    background-color: #FFF;
}
.placementBox {
    width: 33.3%;
    float: left;
    padding: 5px;
}
.five_column_box {
    width: 33.3%;
    float: left;
    padding: 5px;
}
}


iframe {
    width: 100%;
	    
}

@media (min-width: 768px)
{
	#courseDetails{
		margin-top:20px;	
	}
	#course-info1{
	display:none;	
}
#headerVideo {
    padding: 0 30px 0 10px;
}
#headerInnerVideo {
    padding: 0 10px 0 10px;
}
.ytVideo {
	height: 340px;
}
.ytVideo1 {
	height: 480px;
}

}
.registration-form {
    margin: 0 auto;
    border: 1px solid #D65C33;
    padding: 15px 0;
    box-shadow: 0 0 1px #ddd;
    border-radius: 7px;
    background-color: #D65C33;
}

.clearfix_li{
	float:left;		
	list-style-type:none;
	padding:5px;	
}
.clearfix_li a{
	color:#fff;	
		
}
@media only screen and (min-width:320px) and (max-width:768px) {
	
p .iaVideo {
    height: 138px;
}

.profileImage{
	margin-top: -39px;
}
.userImage{
	margin-top: -39px;
}
.roundedImageInner{
	padding-top:41px;
}

.data-table img{
	width:auto;
	height:100%;
}
input[type="button"], .button {
	display: inline-block;
	
	color: #333;
	text-align: center;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
vertical-align: middle;
background-color: #f5f5f5;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);

padding: 5px 9px;
font: 11px/16px Helvetica;
border: 1px solid #ccc;
border-bottom-color: #b3b3b3;
border-radius: 4px;
margin-top: 10px; 

}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
	padding-left: 6px;
}

}
.admin-btn-box {
    text-align: center;
    padding: 15px 0 26px;
}
.admin-btn-box1 {
    text-align: center;
    padding: 0px 0 26px;
}
.dashboard-btn-box1 {
    text-align: center;
    padding: 9px 0 17px;
}
.dashboard-btn-box {
    text-align: center;
    padding: 9px 0 17px;
}

input[type="button"]
{
	cursor: pointer;
}
input[type="button"], .button {
	display: inline-block;
	
	color: #333;
	text-align: center;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	vertical-align: middle;
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	padding: 5px 9px;
	font: 11px/16px Helvetica;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
}

#accordion img {
   height: 100%;
    width: auto;
}

.innerbutton{
	padding-bottom:10px;
}
/*input[type="submit"]{
	display: inline-block;
	
	color: #333;
	text-align: center;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	vertical-align: middle;
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	padding: 5px 9px;
	font: 11px/16px Helvetica;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
 cursor: pointer;
}*/
.text_small_top{
	padding-top:5px;
}
.text_medium_top{
	padding-top:15px;
}
.modal-header {
    padding: 4px 8px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #f6f6f6;
    width: 100%;
    float: left;
}
.modal-body {
    position: relative;
    padding: 15px;
    width: 100%;
    float: left;
    font-size: 11.5px;
	background-color:#FFF;
}
.modal-footer {
    padding: 4px 8px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #FFF;
    width: 100%;
    float: left;
}

.course-tab {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.course-tab li {
    background: #2c93d5;
    display: inline-block;
    position: relative;
    margin-top: 15px;
    border-radius: 10px;
}
a {
    transition: all 0.5s ease-out;
   
}
/*ul {
    list-style: outside none none;
}*/

.course-tab li a {
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    text-decoration: none;
}

.selected a
{
	color:#F00;
}

.course-tab li.active::after {
    border-color: #2c93d5 transparent transparent;
    border-style: solid;
    position: absolute;
    content: "";
    border-width: 9px 6px 0;
    left: 50%;
    margin-left: -6px;
    bottom: -9px;
    text-decoration: none;
}
h2.main {
    padding: 0 0 17px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
	font-size:24px;
}

.data-table tr th {
    /*background-color: #F5F5F5;
    border-bottom: 1px solid #CCC;
    font: bold 13px Helvetica;
    padding: 10px;*/
}
.data-table tr:hover {
	/*background-color:#fcfcea;*/
}


@media (max-width: 768px) {  
	#courseLeftSection{
	display:none;	
}
  .categories-box .flex-direction-nav .flex-prev {
    left: -30px;
    top: 64px;
    background-position: 0 0;
    opacity: 1 !important;
}
.categories-box .flex-direction-nav .flex-next {
    right: 64px;
    top: 64px;
    background-position: 100% 0;
    opacity: 1 !important;
}
  
} 
/*@import url('//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css');*/
        
.custom-bullet li {
    font-size:15px;
	margin-bottom:18px;
	
}

.custom-bullet li:before
{
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 20px;
    float: left;
    margin-top: 1px;
    margin-left: -35px;
    color: #3C0;
	font-weight:bold;
}

.fr-tab-enterprise, .fr-tab-government, .fr-tab-heducation {
   padding-top: 0px;
}


.front-search-btn {
    width: 24px;
    height: 24px;
    background: url(/theme/image.php/gr8street_muniversity/theme/1506435737/search_icon) 0 0 transparent;
    position: absolute;
    cursor: pointer;
    right: 20px;
	top: 5px;
}
.btnDelete{
	font-size:14px;
	color:#F00;
	text-decoration:none;
}
.btnCorrect{
	font-size:18px;
	color:#984807;
	text-decoration:none;
}
.btnEdit{
	font-size:14px;
	color:#337ab7;
	text-decoration:none;
	margin:2px 4px 0px 0px;
}
.btnApproved{
	font-size:14px;
	color:#2D8C53;
	text-decoration:none;
	margin:2px 4px 0px 0px;
}
.border-shape {
	background: #2c93d5 none repeat scroll 0 0;
	display: block;
	height: 1px;
	left: 0;
	margin: 20px auto 40px auto;
	position: relative;
	right: 0;
	text-align: center;
	width: 30px
}
.border-shape::before {
	background: #2c93d5 none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 1px;
	left: -10px;
	margin: 5px 0;
	position: absolute;
	right: 0;
	width: 50px
}
.border-shape::after {
	background: #2c93d5 none repeat scroll 0 0;
	content: "";
	height: 1px;
	left: -10px;
	margin: 5px 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 50px
}
.iaVideo {
    height: 308px;
}
#courseLeft{
	float:left; width:100%;
	text-align:justify;
	
}

	
.lead {
    font-size: 13px;
    font-weight: bold;
}
.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    outline: 0;
}
.modal-header {
    min-height: 16.428571429px;
    padding: 4px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #E7E7E7;
	border-radius: 5px;
}

.add-on {
    display: inline-block;
    width: auto;
    height: 28px;
    min-width: 16px;
    padding: 4px 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    background-color: #eee;
    border: 1px solid #ccc;
}
.input-append{
    display: inline-block;
    margin-bottom: 10px;
    white-space: nowrap;
    vertical-align: middle;
    width: 100%;
}
h3.main {
    padding: 0 0 26px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.userpicture {
	border: #ccc 4px solid;
	border-radius: 14px;
}


/*  Feedback Form CSS  */


#feedback {
  position: fixed;
  left: 0;
  bottom: 0;
  top:15%;
  height: 210px;
  margin-left: -3px;
  margin-bottom: -3px;
  z-index: 99999;
}

#feedback-form {
  float: left;
  width: 260px;
  height: 100%;
  z-index: 1000;
  padding-left: 5px;
  padding-right: 10px;
  background-clip: 'padding-box';
  border: 1px solid rgba(0,0,0,.2);
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

#feedback-tab {
  float: right;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  text-align: center;
  width: 170px;
  height: 35px;
  background-color: #5cb85c;
  margin-top: 68px;
  margin-left: -68px;
  padding-top: 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 0px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}



#feedback-form textarea { resize: none; }

@media (min-width: 1215px) and (max-width: 1310px) {
	.placementBox {
    width: 22%;
}
.courseTableData {
	
	width:115%; 
}
}
@media (min-width: 924px) and (max-width: 1328px) {
	/*button[type="button"]{
	margin-top: 10px;
	text-align:center;
}	*/
}


.sticky_form{position: fixed; top: 12%; right: 0; z-index: 81; background-color:#000;  max-width: 210px; z-index: 9999999;}
.sticky_form h4{margin: 0; margin-bottom: 10px; color: #fff; }
.sticky_form a{color: #2c93d5; text-decoration:none;}
.slide-toggle{background: black;
    color: white;position: absolute; top: 53.5px;left: -85px;  color: #2c93d5; background:transparent; font-weight:bold;  z-index: 1000; transform: rotate(-90deg); text-align: center; padding: 4px 10px; border: none; width:140px;}
.slide-toggle1{background: black;
    color: white;position: absolute; top: 10px; left: -44px; color: #2c93d5; background:transparent; font-weight:bold; z-index: 1000; transform: rotate(-90deg); color: #fff; text-align: center; padding: 4px 10px; border: none; width:60px;}
.box{display: none; padding: 15px;}

.btncall{position: fixed;  top: 300px; right: 0;  color: #000; background:transparent;   z-index: 99999;  text-align: center;   padding: 7px; }
.btncall span { position: relative;  }
.btncall a{color: #2c93d5; font-size: 18px; }
.sticky_form .error_msg { color: #fff;}
.btn_style1{ background-color: #0f2634; color: #fff;}

.btncall1{top: 348px;}
.btncall label{color: #fff; font-weight: 400; min-width: 40px; text-align: left;}
.btncall .visible-sm , .btncall .visible-xs{display: inline-block;} 

.btnwhatsapp{position: fixed;  background:transparent;  top: 230px; left: 0;  z-index: 99999;   text-align: center;   padding: 5px;  }
.btnwhatsapp .rotate { position: absolute; transform: rotate(-90deg); }
.btnwhatsapp .rotate a{position: absolute; transform: rotate(-90deg);}
.btnwhatsapp a{color: #fff;}
.btnwhatsapp span{font-size: 10px;}
.btnwhatsapp i{font-size: 20px; color: #2c93d5;}