@import url('https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css');

body{
  padding: 0;
  margin: 0;
    
}
.main-div{
  background-color: #f3f3f3;
  padding-top: 25px;
  padding-bottom: 25px;
}
.m-heading{
  font-size: 22px;
    margin: 0 0 20px 0;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding-bottom: 8px;
    border-bottom: 2px solid #444444;
    color: #444444;
}
.programs, .filter{
  background: #fff;
    padding: 20px;
    border: 1px solid #cacad3;
    box-shadow: 0 1px 2px 1px hsla(0,0%,42.7%,.14);
    margin-bottom: 20px;
}
.filter{
  padding: 10px;
}
.programs img{
  max-width: 120px;
    display: inline;
}
.programs h4{
  font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}
.programs h4 a{
  color: #000;
  text-decoration: none;
}
.programs .read-more{
  display: block;
    margin: 7px 0;
    font-weight: 600;
    color: #1e3f9a;
    letter-spacing: 0.4px;
}
.programs .tag{
  border: 1px solid #e0e0e1;
    margin-right: 4px;
    font-size: 12px;
    margin: 5px 5px 5px 0;
    user-select: none;
    padding: 7px 14px;
    background: #f5f3f3;
    border-radius: 4px;
    text-transform: uppercase;
    color: #4d4d4d;
    display: inline-block;
}
.programs .tag a, .tag a{
  color: #4d4d4d !important;
}
.programs .action p, .action p{
  font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
}
.programs .action button, .action button{
  border-radius: 0;
    outline: none !important;
    box-shadow: none !important;
    font-size: 16px;
    background: #138006 !important;
    border-color: #138006 !important;
}
.as-first-container .action button{
  font-size: 18px !important;
}
.programs .action span, .action span{
  display: block;
    margin: 5px 0;
    cursor: pointer;
}
.programs .action .share-icons, .action .share-icons{
  padding-left: 0;
    list-style-type: none;
    margin-top: 10px;
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
    -webkit-transition: height 0.5s linear;
     -moz-transition: height 0.5s linear;
      -ms-transition: height 0.5s linear;
       -o-transition: height 0.5s linear;
          transition: height 0.5s linear;
}
.programs .action .share-icons.open, .action .share-icons.open {
     height: 32px;
     -webkit-transition: height 0.5s linear;
        -moz-transition: height 0.5s linear;
         -ms-transition: height 0.5s linear;
          -o-transition: height 0.5s linear;
             transition: height 0.5s linear;
}
.programs .action .share-icons li, .action .share-icons li{
    display: inline-block;
    padding: 0 5px;    
    line-height: 31px;
    height: 32px;
    width: 32px;
}
.programs .action .share-icons li a, .action .share-icons li a{
  font-size: 15px;
  color: #fff;
}
.programs .action .share-icons li.g, .action .share-icons li.g{
  background: rgb(219, 68, 55);
}
.programs .action .share-icons li.l, .action .share-icons li.l{
  background: rgb(0, 119, 181); 
}
.programs .action .share-icons li.t, .action .share-icons li.t{
  background: rgb(29, 161, 242);  
}
.programs .action .share-icons li.f, .action .share-icons li.f{
  background: rgb(59, 89, 152); 
}
.filter h4{
  color: #222222;
    font-size: 20px;
    margin: 0;
    line-height: 28px;
    display: inline-block;
}
.filter .form-group{
  margin: 10px 0;
}
.filter .search-wrapper {
    height: 35px;
    position: relative;
    border: 1px solid #cdcdcd;
    padding: 0 8px 0 0;
}
.filter .search-wrapper i{
  position: absolute;
    font-size: 15px;
    top: 1px;
    left: 8px;
    color: #8c8c8c;
    line-height: 32px !important;
    -webkit-transition: color 200ms ease;
    transition: color 200ms ease;
}
.filter .search-wrapper input{
  display: block;
    padding: 0px 0px 0px 36px;
    width: 100%;
    background: #FFF;
    height: 32px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    border: none;
    font-size: 14px;
    appearance: textfield;
    font-weight: 400;
    outline: none;
    border-radius: 3px;
    margin: 0px;
}

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
    margin: 5px 14px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
    width: 20px;
  background-color: #d6d5d5;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #1e3f9a ;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 6px;
    top: 2px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.filter hr{
  border-color: #888888;
    margin: 15px 0;
}

.stream{
  display: block !important;
    margin: 8px 2px !important;
    font-size: 14px !important;
    padding-left: 28px !important;
}

.stream .checkmark{
  height: 16px !important;
    width: 16px !important;
}
.checkbox-container.stream .checkmark:after{
  left: 5px !important;
    top: 2px !important;
    width: 5px !important;
    height: 10px !important;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
}
.left-side-banner {
    background: #fff;
    padding: 10px;
    border: 1px solid #cacad3;
    box-shadow: 0 1px 2px 1px hsla(0,0%,42.7%,.14);
    margin-bottom: 20px;
}
.content-box {
    text-align: center;
    padding: 12px;
    height: 160px;
    vertical-align: middle;
    display: table-cell;
}
.content-box h5 {
    margin-top: 0;
    line-height: normal;
    font-weight: 600;
    color: #484848;
    margin-bottom: 10px;
    font-size: 15px;
}
.content-box p {
    line-height: normal;
    font-weight: 400;
    color: #484848;
    font-size: 13px;
    margin-bottom: 0;
}

/*Details CSS*/

.top-d-bg{
    min-height: 275px;
    background: url('https://www.edumilestones.com/career-counsellor/Networking.jpg');
    background-size: cover;
    background-position: center;
    padding: 25px 0;
}
.as-details-area {
    background: #f7f8f9;
}
.as-details-area .as-first-container {
    background: #fff;
    border: 2px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    padding: 12px;
    margin-top: -130px;
    margin-bottom: 20px;
}
.as-details-area .as-first-container img{
    border: 2px solid #dddd;
    max-width: 130px;
    max-height: 130px;
    border-radius: 50%;
    min-height: 130px;
    min-width: 130px;
    padding: 10px;
    display: inline;
    margin-top: -65px;
    background: #fff;
}
.as-details-area .as-first-container h1 {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}
.as-details-area .as-first-container .as-main-p {
    color: green;
    font-size: 14px;
    margin: 18px 0;
    letter-spacing: 0.4px;
    text-align: center;
}
.as-details-area .as-first-container .tag{
    border: 1px solid #e0e0e1;
    margin-right: 4px;
    font-size: 12px;
    margin: 5px 5px 5px 0;
    user-select: none;
    padding: 7px 14px;
    background: #f5f3f3;
    border-radius: 4px;
    text-transform: uppercase;
    color: #4d4d4d;
    display: inline-block;
}
.as-details-area .as-first-container .action{
    margin-top: 22px;
}
.as-second-container,.review-box, .reviews {
    background: #fff;
    border: 2px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    padding: 15px;
    margin-bottom: 20px;
}
.as-second-container p, .as-second-container li, .as-second-container span {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}
.as-second-container iframe{
  width: 100%;
  height: 500px;
}
.review-box h4, .reviews h4{
  font-size: 1.4em;
    font-weight: 600;
    color: #3a3a3a;
}
.reviews h4{
    margin-bottom: 18px;
}
.review-box h4 i, .reviews h4 i{
  margin-right: 7px;
}
.review-box input
{
    border-radius: 0;
    outline: none;
    box-shadow: none;
    border-color: #ccc;
}
.review-box textarea
{
    border-radius: 0;
    outline: none;
    box-shadow: none;
    border-color: #ccc;
}
.review-box form
{
    margin-top: 20px;
}
.review-box label
{
    font-size: 12px;
}
.review-box input.r-sBtn{
  width: 250px;
    height: 55px;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.2);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    float: right;
    margin: 12px 0;
    border: none;
    cursor: pointer;
    background: #02329f !important;
    border-color: #02329f !important;
}
.r-content{
    padding-left: 40px;
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
}
.btn-bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    font-size: 20px !important;
    padding: 8px 0 !important;
    z-index: 999;    
}
/* Rating CSS */

/* Base setup */

/* Ratings widget */
.rate {
    display: inline-block;
    border: 0;
}
/* Hide radio */
.rate > input {
    display: none;
}
/* Order correctly by floating highest to the right */
.rate > label {
    float: right;
}
/* The star of the show */
.rate > label:before {
    display: inline-block;
    font-size: 20px;
    padding: .3rem .2rem;
    margin: 0;
    cursor: pointer;
    font-family: FontAwesome;
    content: "\f005 "; /* full star */
}
/* Zero stars rating */
.rate > label:last-child:before {
    content: "\f006 "; /* empty star outline */
}
/* Half star trick */
.rate .half:before {
    content: "\f089 "; /* half star no outline */
    position: absolute;
    padding-right: 0;
}
/* Click + hover color */
input:checked ~ label, /* color current and previous stars on checked */
label:hover, label:hover ~ label { color: #73B100; } /* color previous stars on hover */

/* Hover highlights */
input:checked + label:hover, input:checked ~ label:hover, /* highlight current and previous stars */
input:checked ~ label:hover ~ label, /* highlight previous selected stars for new rating */
label:hover ~ input:checked ~ label /* highlight previous selected stars */ { color: #A6E72D;  } 


/* Rating CSS */


/* New Appointment */

.modal-backdrop {
  opacity: 0.9 !important;
  background-color: #1b1b1b !important;
}
#booster-details{
    padding: 20px;
}
.couns{
  padding: 15px;
  background-color: #f0f0f5;
  margin-top: 10%;
}
.couns h5{
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin-top: 5%;
}
.couns h6{
  font-size: 13px;
}
.appointment-form-box{

}
.appointment-form-box h5{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #414146;
  margin-bottom: 20px;
  margin-top: 20px;
}
.appointment-form-box label{
  font-size: 14px;
  line-height: 1.4;
  color: #414146;
  font-weight: 500;
  margin-bottom: 5px;

}
.appointment-form-box label span{
  color: red;
}
.appointment-form-box input, .appointment-form-box textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #b4b4be !important;
  border-radius: 2px;
  outline: none;
  background-color: #fff;
  color: #414146;
  font-size: 14px;
  box-shadow: none !important;
}
.appointment-form-box button{
  margin: 20px 0;
  width: 100%;
  color: #fff;
  padding: 6px;
  width: 100%;
  background-color: #b4b4be;
  border: 1px solid #b4b4be;
  cursor: default;
  pointer-events: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 15px;
  outline: none !important;
}
.appointment-form-box button.active{
  background-color: #14bef0;
  border: 1px solid #14bef0;
  cursor: pointer;
  pointer-events: visible;
}
#nu-error, #otp-error, #email-error, #all-error{
  margin-top: 3px;
  color: #ff2d00;
  font-size: 12px;
  font-weight: 500;
}
.u-info{
  font-size: 12px;
  margin-top: 12px;
}
.another-method{
  margin-top: 12px;
}
.another-method .get-email{
  font-size: 12px;
  color: #787887;
  float: left;
}
.another-method .resend-otp{
  float: right;
}
.another-method a{
  font-size: 12px;
  color: #14bef0;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.form-group{
  position: relative;
}
.lock-i{
  position: absolute;
  right: 15px;
  top: 33px;
  font-size: 16px;
  color: #959596;
}
.last-go{
  text-align: center;
  padding: 50px 0px;
}
.last-go i{
  font-size: 50px;
  color: #1f409b;
}
.last-go h5{
  width: 80%;
  line-height: 1.3;
  margin: 30px auto;
}
.last-go button{
  color: #fff !important;
  padding: 6px;
  background-color: #1f409b !important;
  border: 1px solid #1f409b !important;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 15px;
  outline: none !important;
}
.time_slot{
  width: 18%;
  padding: 0;
  letter-spacing: normal;
  margin: 5px 4px;
  display: inline-block;
}
.time_slot span{
  width: 100%;
  border-radius: 3px;
  border: 1px solid #b4b4be;
  padding: 5px 0;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.time_slot span:hover{
  background-color: #f0f0f5;
  color: #1f409b;
  border: 1px solid #1f409b;
}
.time_slot span.active{
  background-color: #f0f0f5;
  color: #1f409b;
  border: 1px solid #1f409b;
  font-weight: 600;
}

#category_list{
  max-height: 110px;
  overflow: auto;
}

/* width */
#category_list::-webkit-scrollbar {
  width: 8px;
}

/* Track */
#category_list::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
#category_list::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
#category_list::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.left_m_banner{
  display: none;
}
.filter h4 i{
  display: none;
}
.top-review-s{
  position: absolute;right: 38px;top: 0;font-size: 14px;cursor: pointer;font-weight: 600;letter-spacing: 0.4px;
}


.as-details-area p, .as-details-area h1, .as-details-area h3,
.as-details-area h4, .as-details-area h5, .as-details-area h6, .as-details-area ul,
.as-details-area li{
    color: #000 !important;
}
.flex-s{
    display: flex;
    align-items: center;
}
.as-details-area .container{
    width: 800px;
    margin: 50px;
}
.as-details-area h3{
    color: #1e3f9a !important;
    font-weight: 600;
    font-size: 22px !important;
    margin: 10px 0 15px 0;
    border-bottom: 3px solid #1e3f9a;
    padding-bottom: 7px;
}
.as-details-area h3 span{
    color: #1e3f9a !important;
    font-weight: 600;
    font-size: 22px !important;
    font-family: inherit;
}
.top-new span{
    background: #ecb91d;
    padding: 4px 12px;
    border-radius: 1px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}
.top-new span a{
    color: #14366c;
    text-decoration: none;
}
.top-new h1{
    font-size: 28px;
    margin: 20px 0;
    color: #fff;
}
.top-new p{
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 28px;
}
.top-new button{
    background: #ecb91d !important;
    color: #14366c !important;
    font-size: 20px;
    font-weight: 600;
    outline: none !important;
    box-shadow: none !important;
}

.key-points{
    background: #fff;
    padding: 65px 25px 12px;
    /*width: 80%;*/
    margin: 0 auto;
    border: 2px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    
    position: fixed;
    top: 32%;
    right: 80px;
    width: 400px;
    z-index: 999;
}
.key-points img{
    border: 2px solid #dddd;
    max-width: 120px;
    max-height: 120px;
    border-radius: 50%;
    min-height: 120px;
    min-width: 120px;
    padding: 10px;
    display: inline;
    margin-top: -135px;
    background: #fff;
}
.key-points ul{
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px;
}
.key-points ul li{
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}
.key-points ul li i{
    color: #1e3f9a;
    margin-right: 8px;
    font-size: 22px;
}
.key-points button{
    background: #f14045 !important;
    border-color: #f14045 !important;
    font-size: 20px;
    width: 100%;
    margin: 5px 0 15px 0;
    outline: none !important;
    box-shadow: none !important;
}

.about_program {
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.about_program h2{
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: #1e3f9a;
}
.about_program p{
  margin-bottom: 12px !important;
  letter-spacing: 0.4px !important;
}
.about_program p, .about_program p span{
    margin: 0;
    font-size: 16px !important;
    text-align: left !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
}

@media only screen and (max-width: 1200px) {
  .key-points{
    position: relative;
    top: 0;
    right: 0;
  }
}

@media only screen and (max-width: 600px) {
    .top-review-s{
      position: initial;
      margin-top: 12px;
    }
    .as-second-container iframe{
        width: 100%;
        height: 300px;
    }
    .programs .col-md-6{
        text-align: center;
    }
    .programs h4{
        font-size: 15px;
        margin: 18px 0;
    }
    .programs .read-more{
        margin: 7px 0 12px;
    }
    .programs .action p{
        margin-top: 15px;
    }
    .as-details-area .as-first-container h1{
        font-size: 15px;
    }
    .left_m_banner{
      display: block;
    }
    .left_d_banner{
      display: none;
    }
    .filter h4 i{
      display: inline;
    }
    .filter{
      height: 48px;
      overflow: hidden;
      -webkit-transition: height 0.5s linear;
     -moz-transition: height 0.5s linear;
      -ms-transition: height 0.5s linear;
       -o-transition: height 0.5s linear;
          transition: height 0.5s linear;
    }
    .filter.open{
      height: 354px;
      -webkit-transition: height 0.5s linear;
     -moz-transition: height 0.5s linear;
      -ms-transition: height 0.5s linear;
       -o-transition: height 0.5s linear;
          transition: height 0.5s linear;
    }
    .flex-s{
      display: block;
    }
    .key-points{
      position: initial;
      margin-top: 80px;
      width: 100%;
    }
    .as-details-area .container{
      width: auto;
      margin: 20px auto;
    }
}