@font-face {
  font-family: Quicksand;
  src: url("/fonts/quicksand/Quicksand-Regular.otf") format("opentype");
}

@font-face {
  font-family: Quicksand;
  src: url("/fonts/quicksand/Quicksand-Bold.otf") format("opentype");
  font-weight: bold;
}

@font-face {
  font-family: Quicksand;
  src: url("/fonts/quicksand/Quicksand-BoldItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: Quicksand;
  src: url("/fonts/quicksand/Quicksand-Italic.otf") format("opentype");
  font-style: italic;
}

body {
  /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
  font-family: 'Raleway', sans-serif;
}

table th {
  vertical-align: middle !important;
}

.header-logo {
  padding-top: 10px;
}

.header-logo img {
  height: 60px;
}

.th-break-word {
  white-space: initial;
  word-spacing: 9999999px;
}

.title-section h1 {
  color: #222222;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin: 0 0 30px;
  text-transform: uppercase;
  margin-bottom: -1px;
}
.block-wrapper {
  float: left;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
  padding: 30px 20px;
  border-radius: 2px;
}

.content-wrapper {
  margin-bottom: 15px;
}

.sub-content-wrapper {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

button.btn-primary {
  background-color: #3FC380;
}

.title-section {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
  position: relative;
}

.title-section-language {
  margin-bottom: 10px;
  margin-top: 30px;
}

.title-section h1,
.title-section h2,
.title-section h3 {
  color: #222222;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 -1px;
}

.title-section h1 span,
.title-section h2 span,
.title-section h3 span {
  display: inline-block;
  padding-bottom: 16px;
  padding-right: 5px;
  border-bottom: 1px solid #f44336;
}

.title-section span.world {
  border-bottom: 1px solid #d35400;
}
.title-section span.fashion {
  border-bottom: 1px solid #aa35d6;
}
.title-section span.travel {
  border-bottom: 1px solid #f58021;
}
.title-section span.sport {
  border-bottom: 1px solid #4c60f6;
}
.title-section span.food {
  border-bottom: 1px solid #32b47b;
}
.title-section .arrow-box {
  float: right;
  text-align: right;
}
.pre-wrap {
  white-space: pre-wrap;
}

/*.tab-content {*/
  /*float: left;*/
  /*width: 100%;*/
  /*padding: 20px;*/
  /*border: 1px solid #ddd;*/
  /*border-top: none;*/
/*}*/

/*.tab-content > .tab-pane {*/
  /*display: block;*/
/*}*/

.panel .table {
  margin-bottom: 0;
}

.alert-danger {
  border: none !important;
  border-radius: 2px !important;
  background-color: #FF7E82;
  color: #fff;
  text-align: left !important;
}

.alert-success {
  border: none !important;
  border-radius: 2px !important;
  background-color: #2ecc71;
  color: #fff;
  text-align: left !important;
}

.alert-info {
  border: none !important;
  border-radius: 2px !important;
  background-color: #3498db;
  color: #fff;
  text-align: left !important;
  padding: 15px 8px 15px 8px;
}

.label-error {
  color: #FF7E82;
  text-transform: none;
  margin-left: 5px;
}

.label-success {
  color: #27ae60;
  text-transform: none;
  margin-left: 5px;
  background-color: inherit;
}

.empty-message {
  padding: 30px 0 30px 0;
  text-align: center;
  font-size: 2em;
  color: #bdc3c7;
}

.block-loader {
  text-align: center;
  padding: 30px 0 30px 0;
}

.block-loader .spinner-btn > div {
  background-color: #bdc3c7;
}

.blue-btn {
  background-color: #3FC380 !important;
  border: none !important;
  border-radius: 2px !important;
  color: #fff !important;
  font-weight: bold;
  transition: all 1s;
}
.blue-btn:hover {
  background-color: #d35400 !important;
}

.green-btn {
  background-color: #27ae60 !important;
  border: none !important;
  border-radius: 2px !important;
  color: #fff !important;
}
.green-btn:hover {
  background-color: rgba(39,174,68,0.80) !important;
  color: #fff !important;
}

.red-btn {
  background-color: #c0392b !important;
  border: none !important;
  border-radius: 2px !important;
  color: #fff !important;
}
.red-btn:hover {
  background-color: #e74c3c !important;
  color: #fff !important;
}


.btn-full-width {
  width: 100%;
}

/* Spinner */
.spinner-btn {
  text-align: center;
}

.spinner-btn > div {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner-btn .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner-btn .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
}
/* Spinner end */

/* Dropzone */
.dropzone img {
  max-width: none !important;
}

.dropzone .btn-avatar {
  padding: 2px 5px !important;
}

.dropzone .btn-avatar > i {
  position: relative !important;
  font-size: 1em !important;
  top: 2px !important;
  right: auto !important;
  left: auto !important;
}
/* Dropzone end */

.user-profile-icon-container {
  position: relative;
  width: 180px;
  height: 180px;
  background-color: #fff;
  opacity: .8;
  padding-top: 100%;
}

.ed_profile_img {
  background-color: #fff;
  box-shadow: 0 0 1px 0 #ddd;
  max-width: 180px;
  /*width: 180px;*/
  /*height: 180px;*/
  float: none;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .ed_profile_img,
  .user-profile-icon-container {
    width: 157px;
    height: 157px;
  }
}

.profile-icon i {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 1.5em;
  cursor: pointer;
  opacity: 1 !important;
}

.fileinput .fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.fileinput .fileinput-button input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px !important;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.fileinput .image-preview {
  margin-top: 20px;
}

.fileinput .image-upload-preview {
  max-width: 50%;
  height: auto;
}

.woo-table {
  float: left;
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
}

#confirm-email h3:after {
  width: 140px;
}

#confirm-email .confirm-email-error,
.error-link {
  font-size: 1.5em;
  color: #6f7c82;
  text-align: center;
  padding: 30px;
}

#confirm-email .confirm-email-error-link {
  cursor: pointer;
  font-size: 1em;
  color: #6f7c82;
  text-align: center;
  margin-top: -15px;
}

.search-sidebar {
  padding: 40px 20px 0 20px;
}

.search-sidebar .widget_categories ul li {
 margin-bottom: 0;
}

.search-sidebar .widget-title {
  margin-bottom: 15px;
  color: #d35400;
}

.search-sidebar .widget-title:after {
  background-color: #d35400;
}

.search-sidebar label {
  white-space: nowrap;
}

.search-sidebar,
.search-sidebar .sidebar_wrapper {
  background-color: #3FC380;
  color: #fff;
}

.empty-courses {
  padding: 50px 0 50px 0;
  text-align: center;
  font-size: 2em;
  color: #bdc3c7;
}

.course-picture-container {
  max-height: 186px;
  margin-bottom: 0;
  height: 186px;
}

.course-picture-container img {
  height: 100%;
  margin: 0 auto;
  /*width: 100%;*/
}

.course-title {
  text-align: center;
  max-height: 3.4em;
  overflow: hidden;
}

.course-title a:hover,
.course-title a:focus,
.course-title a:active,
.course-title a:visited {
  text-decoration: none;
}

.course-detail-container {
  padding: 0 10px 0 10px;
  height: 160px;
  overflow: hidden;
}

.course-detail-container.teacher-detail-container .course-title {
  max-height: 2.3em;
}

.course-detail-container.teacher-detail-container p {
  max-height: 7em;
}

.course-detail-container p {
  max-height: 5.6em;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
}

.course-block {
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 280px;
  width: 280px;
  flex: auto;
  box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
  
  transition-duration: .15s;
}

.course-block:hover {
	transform: translateY(-10px);
}



.course-block .ed_mostrecomeded_course {
  margin-bottom: 0;
  /*margin-left: 5px;*/
  /*margin-right: 5px;*/
}

.course-block .course-begin {
  margin-top: 5px;
  position: relative;
}

.course-block .course-begin .fa-calendar {
  font-size: 30px;
  position: absolute;
  top: 2px;
  left: 6px;
}

.course-block .course-begin .course-begin-info {
  position: absolute;
  left: 42px;
  top: -6px;
  font-size: 12px;
}

.course-block .bottom-block {
  height: 45px;
  padding-top: 5px;
}

.course-block-small {
  overflow: hidden;
  max-width: 280px;
  width: 280px;
  height: 1px;
  flex: auto;
}

.flex-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
}

.schedule-label {
  position: relative;
  padding: 10px 15px;
  margin-bottom: 10px;
  background-color: #ddd;
  border-radius: 4px;
}

.schedule-label .fa-close {
  position: absolute;
  top: 13px;
  right: 8px;
  cursor: pointer;
}

.add-schedule {
  cursor: pointer;
  margin-top: 10px;
}

@media only screen and (max-width: 500px) {
  .header-btn-info {
    padding: 12px 12px !important;
  }
}

.ed_header_top p {
  width: auto;
}

.ed_header_top .list-header-ul > li > a {
  margin-left: 20px;
  cursor: pointer;
}


.popular-courses-arrow {
  display: none;
}

@media only screen and (max-width: 559px) {
  .popular-courses-wrapper {
    position: relative;
    min-height: 426px;
    margin-left: auto;
    width: 280px;
    margin-right: auto;
    overflow: hidden;
  }

  .popular-courses-wrapper .flex-block {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 0;
    margin-right: 0;
    /*transition: 1s all;*/
    flex-flow: initial;
  }

  .popular-courses-arrow {
    display: block;
    font-size: 50px;
    position: absolute;
    top: 140px;
    cursor: pointer;
  }

  .popular-courses-arrow.fa-chevron-left {
    left: 10px;
  }
  .popular-courses-arrow.fa-chevron-right {
    right: 10px;
  }
}

#same-courses {
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(7,96,115,.07);
}

.same-courses-wrapper {
  position: relative;
  min-height: 426px;
  margin-left: auto;
  width: 860px;
  margin-right: auto;
  overflow: hidden;
}

#same-courses .course-block {
  margin-right: 10px;
  box-shadow: inherit !important;
}

.same-courses-wrapper .flex-block {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 0;
  margin-right: 0;
  /*transition: 1s all;*/
  flex-flow: initial;
}

.same-courses-arrow {
  display: block;
  font-size: 50px;
  position: absolute;
  top: 140px;
  cursor: pointer;
}

.same-courses-arrow.fa-chevron-left {
  left: 10px;
}
.same-courses-arrow.fa-chevron-right {
  right: 10px;
}

@media only screen and (max-width: 991px) {
  .same-courses-wrapper {
    width: 570px;
  }
}

@media only screen and (max-width: 700px) {
  .same-courses-wrapper {
    width: 280px;
  }
}

.first-theme-name {
  background-color: #fff;
  color: #6b7c93 !important;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  padding-top: 33%;
  text-transform: uppercase;
}

.first-theme-name a {
  color: #fff !important;
  text-decoration: none !important;
}

.theme-1 {
  background: url('/img/lycee_vert.png') no-repeat center top;
  background-size: 100% auto;
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;  
  transition: all 1s;
  text-align: left !important;
  padding-left: 50px;
}

.theme-1:hover {
  -webkit-filter: grayscale(1); /* Old WebKit */
  filter: grayscale(1);
}

.theme-1 .theme-table {
	padding-left: 15px;
}

.theme-2 {
  background: url('/img/superieur_vert.jpg') no-repeat center top;
  background-size: 100% auto;
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  transition: all 1s;
  text-align: left !important;
  padding-left: 50px;
}

.theme-2:hover {
  -webkit-filter: grayscale(1); /* Old WebKit */
  filter: grayscale(1);
}

.theme-2 .theme-table {
  padding: 15px;
}

.theme-2 .theme-table a {
	text-align: right;
}

.theme-name {
  background-color: #fff;
  border-radius: 4px;
  color: #6b7c93 !important;
  font-size: 20px;
  text-align: center;
  width: 100%;
  padding: 40px 40px 40px 120px;
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 340px;
  box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
  transition-property: color,background-color,box-shadow,transform;
  transition-duration: .15s;
  margin-top: 35px;
}

.theme-name:hover {
	transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
}

.theme-name:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.theme-content {
  position:  absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.theme-content .theme-table {
  display: table;
  width: 100%;
  height: 100%;
}

.theme-content .theme-table a {
  display: table-cell;
  vertical-align: middle;
}

.theme-name .theme-table a {
  color:#3FC380;
  font-size:25px !important;
}

.search-sidebar h4 i,
.search-sidebar .widget-title.more-search {
  display: none;
}

.filters-title {
  color: #fff;
  text-align: center;
  font-weight: bold;
}

/*.filters-title .fa-remove {*/
  /*display: inline !important;*/
  /*cursor: pointer;*/
/*}*/

@media only screen and (max-width: 768px) {
  .theme-name {
    padding: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .filters-title {
    display: none;
  }

  .search-sidebar {
    text-align: center;
  }

  .search-sidebar .sidebar_wrapper,
  .search-sidebar ul {
    display: none;
  }

  .search-sidebar ul.show-ul {
    display: block;
  }

  .search-sidebar .widget-title.more-search {
    display: block;
    color:#fff;
  }

  .search-sidebar .widget-title.more-search:after {
    background-color: #fff;
  }
  .search-sidebar .widget-title {
    cursor: pointer;
  }

  .search-sidebar .widget-title:after {
    left: 50%;
    margin-left: -27px;
  }

  .search-sidebar h4 i {
    display: inline-block;
  }
}

.course-rating a {
  text-decoration: none !important;
}

.therms-block {
  margin-bottom: 40px;
  text-align: justify;
}

.therms-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5em;
}

.therms-title-small {
  text-decoration: underline;
}

.question-block {
  margin-bottom: 30px;
}

.question-block .question {
  border-radius: 2px 2px 0 0;
  padding: 20px;
  background-color: #3FC380;
}

.question-block .question.collapsed {
  border-radius: 2px;
}

.question-block .question h4,
.question-block .question h2 {
  color: #fff !important;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.question-block > .answer {
  border-radius: 0 0 2px 2px;
  padding: 10px;
  background-color: #3FC380;
  color: #fff;
  font-weight: bold;
  line-height: 1.9;
}

.help-link {
  color: #d35400;
  cursor: pointer;
  font-weight: bold;
}

.help-link:hover {
  color: #d35400;
}

.footer-facebook {
  color: #CACACA;
  text-align: center;
  font-size: 30px;
}

.footer-facebook a {
  color: inherit !important;
}

.footer-cards {
  color: #CACACA;
  text-align: center;
  padding: 10px;
  white-space: nowrap;
  margin-bottom: 40px;
}

.footer-cards a {
  color: #CACACA;
}

.footer-cards .cards {
  font-size: 25px;
  margin-top: 20px;
}

.footer-question {
  text-align: center;
}

.footer-question .center-block {
  border: 1px solid #CACACA;
  padding: 10px;
  color: #CACACA;
  text-align: left;
  display: inline-block;
}

.footer-question div span {
  margin-bottom: 8px;
  display: block;
}

.change-language-icon {
  width: 20px;
  float: left;
  margin-right: 10px;
}

.change-language-icon img {
  filter: grayscale(100%);
  cursor: pointer;
}

.change-language-icon img.language-active {
  filter: none;
}

.modal .modal-dialog.teacher-modal {
  max-width: 700px;
}

.teacher-modal .teacher-description {
  margin-top: 20px;
  margin-bottom: 40px;
}

.teacher-list-item {
  display: list-item;
  text-align: left;
}

.teacher-img {
  height: 186px !important;
  width: 186px !important;
}

.teacher-modal-img {
  height: 132px !important;
  width: 132px !important;
}

.woo-cart-table table thead tr th {
  text-transform: none !important;
  background-color: #3FC380;
  color: #d35400;
  font-weight: bold;
}

.woo-cart-table table tbody {
  text-transform: none !important;
}

#header-search input {
  background: none;
}


/* top navbar */
.ed_header_top {
  float: none;
	background-color: #161819;
	color: #8b8c8c;
  font-weight: bold;
  height: 32px;
}
#header-languages {
  margin-top: -5px;
}
#header-languages .change-language-icon img {
  height: 20px;
}
#header-languages .change-language-icon {
  text-decoration: none;
  color: #8b8c8c;
}
.list-header-ul {
  float: right;
  list-style: none;
  margin: -5px;
}
.list-header-ul > li {
  float: left;
}
.list-header-ul > li > a {
  color: #8b8c8c;
  text-decoration: none;
  text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .navbar .container {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
/* top navbar end */

/*
 * Navbar.css
 */

.navbar {
    border-radius: inherit;
    background: white;
    font-weight: bold;
    right: 0;
    left: 0;
    z-index: 1030;
    justify-content: center;
    text-align: center;
    opacity: .9;
    display: flex;
    height: 65px;
    margin-bottom: unset;
}

.header-wrapper {
  height: auto;
}

@keyframes top-transition {
  from {top: -100px;}
  to {top: 0;}
}

.header-wrapper.navbar-fixed .navbar {
  top: 0;
  position: fixed;
  animation-name: top-transition;
  animation-duration: 0.8s;
}

.all-navbar {
  background-color: #565a5c;
}

.developer-navbar {
  background-color: #27ae60;
}

.company-navbar {
  background-color: rgba(0,89,212,0.75);
}

.admin-navbar {
  background-color: #c0392b;
}

.navbar .container {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.navbar-brand {
  padding: 17px 0;
  color: #fff;
  font-size: 1.875em;
  opacity: 0.77;
}

.navbar-brand-b img {
  float: left;
  margin-top: 6px;
  margin-bottom: 15px;
  height: 50px;
}

.navbar .container .navbar-brand:hover {
  color: #fff;
  opacity: 1;
  transition: all 1s;
}

.navbar-toggle {
  background-image: url("../../img/nav-white.png");
  background-repeat: no-repeat;
  margin-top: 18px;
  -ms-filter: "alpha(opacity=68)";
  -webkit-filter: alpha(opacity=68);
  -moz-filter: alpha(opacity=68);
  -ms-filter: alpha(opacity=68);
  -o-filter: alpha(opacity=68);
  filter: alpha(opacity=68);
  padding: 9px 0;
  margin-right: 0;
}

.navbar-toggle:hover {
  opacity: 1;
  transition: opacity 1s;
}

#navabr .nav li {
  text-align: center;
}

#navbar ul li a {
  color: #394b59;
  padding: 28px 15px;
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0.25em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 40px;
  -moz-margin-after: 1em;
  -moz-margin-start: 0px;
  -moz-margin-end: 0px;
  font-size: 0.98em;
  line-height: 0 !important;
  cursor: pointer;
  text-transform: uppercase;
}

#navbar ul li a:hover {
  color: #394b59;
  background-color: inherit;
  -webkit-transition: color .1s ease-in;
  -moz-transition: color .1s ease-in;
  -o-transition: color .1s ease-in;
  transition: color .1s ease-in;
}


#navbar ul li.button a {
  border-color: rgba(255,255,255,0.5);
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 10px 12px;
  -webkit-border-radius: 14px;
  border-radius: 14px;
  border: 1px solid #d8dee3;
}

#navbar ul li.drop-down-li-photo:hover .drop-down-menu-photo {
  display: block;
}

#navbar ul li a .media-photo {
  background-repeat: no-repeat;
  background-image: url(../../img/all/profile-icon.jpg);
  background-size: 28px;
  height: 28px;
  width: 28px;
  float: right;
  margin-top: -14.5px;
  margin-left: 5px;
  border-radius: 13.5px;
  border: #fff 1px solid;
}

.navbar .container .drop-down-menu-photo {
  position: absolute;
  top: 54px;
  right: -3px;
  min-width: 282px;
  max-width: 460px;
  line-height: normal;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
  background-color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  display: none;
  border: 1px solid rgba(0,0,0,0.09);
}

#navbar .nav li .drop-down-menu-photo a {
  -webkit-padding-start: 0 !important;
  -moz-padding-start: 0 !important;
  font-size: inherit !important;
  line-height: none !important;
  border-top: 1px solid #dce0e0 !important;
  cursor: pointer !important;
  display: block !important;
  color: #565a5c !important;
  font-size: 14px !important;
  box-shadow: none !important;
  padding: 0 !important;
  padding-top: 24px !important;
  padding-bottom: 11px !important;
  text-align: left !important;
  transition: all 1s;
}

#navbar .nav li .drop-down-menu-photo a div {
  transition: all 0.2s;
}

#navbar .nav li .drop-down-menu-photo a:hover div {
  margin-left: 10px;
}

#navbar .nav li .drop-down-menu-photo a.first {
  border-top: none !important;
  margin-top: 1px;
}

#navbar .nav li .tooltip-top-right:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -9px;
  right: 15px;
  bottom: auto;
  border: 9px solid transparent;
  border-top: 0;
  border-bottom-color: #fff;
}

.container > .navbar-header {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.navbar-collapse {
  padding: 0;}

@-moz-document url-prefix() {
  .navbar {
    min-height: 54px;
  }

  #navbar ul li a {
    margin-top: 20px;
  }

  .navbar-brand {
    padding: 20px 0px;
  }

  #navbar ul li.drop-down-li-photo {
    min-height: 54px;
  }

  .navbar .container .drop-down-menu-photo {
    top: 53px !important;
  }

  #navbar .nav li .drop-down-menu-photo a {
    margin-bottom: -5px;
  }

  #navbar .nav li .drop-down-menu-photo a.last {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-header {
    float: none;
  }
  .navbar-left,.navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
    display: none!important;
  }
  .navbar-nav {
    float: none!important;
    margin-top: 3px;
    background: #3FC380;
  }
  .navbar-nav>li {
    float: none;
  }
  .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .collapse.in{
    display:block !important;
  }
}

@media only screen and (max-width : 991px) {
  .navbar {
    min-height: 54px;
  }
  #navbar ul li a {
    -moz-padding-start: inherit;
    -webkit-padding-start: inherit;
    padding: 15px 15px;
  }

  .nav li.publish {
    display: inherit !important;
  }

  .navbar .container .drop-down-menu-photo {
    top: 56px;
  }

  #navbar ul li.drop-down-li-photo:hover .drop-down-menu-photo {
    display: none;
  }

  #navbar .nav li .drop-down-menu-photo {
    border-bottom: 1px solid transparent;
  }

  #navbar ul li a .media-photo {
    float: inherit;
    display: inline-block;
    margin-bottom: -6px;
  }

  .subnav {
    padding-top: 7.5px;
  }

  .subnav div a i {
    font-size: 1.7em;
  }

  .subnav div a span {
    display: none;
  }

  .navbar-brand-b img {
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 40px;
  }

  .navbar .container .drop-down-menu-photo {
    top: 56px;
  }

  #navbar ul li.drop-down-li-photo:hover .drop-down-menu-photo {
    display: none;
  }

  #navbar .nav li .drop-down-menu-photo {
    border-bottom: 1px solid transparent;
  }

  #navbar ul li a .media-credit {
    float: inherit;
    display: inline-block;
    margin-bottom: -4px;
  }

  #navbar ul li a .media-photo {
    float: inherit;
    display: inline-block;
    margin-bottom: -6px;
  }

  #navbar .nav li.first {
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  #navbar .nav li.hide {
    display: inherit !important;
  }
}

/* Navbar end */

#reassurance .theme-content {
  padding: 10px;
}

#reassurance .theme-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

#reassurance .theme-content span a {
  display: inline-block;
  text-decoration: none;
}

#reassurance .numscroller-data,
#reassurance .numscroller-desc {
  font-size: 22px;
}

#reassurance .numscroller-data a {
  font-size: 2.3em;
  font-weight: bold;
  color: #d35400;
  text-decoration: none;
}

#reassurance .numscroller-desc a {
  font-size: 1em;
  color: #333 !important;
  padding-left: 30px;
  padding-right: 30px;
}

#course-type .col-lg-6,
#course-type .col-md-6, 
#course-type .col-sm-6,
#course-type .col-xs-12 {
	padding-left: inherit !important;
	padding-right: inherit !important;
}

#course-type .theme-name .theme-table a {
  font-size: 25px;
}

#course-type .see-course-type a {
  display: block;
  position: absolute;
  text-align: right;
  color: #fff !important;
  width: 100%;
  right: 10px;
  bottom: 10px;
  font-size: 14px !important;
  font-weight: inherit;
}

/*#navbar ul li a {*/
  /*background-color: red !important;*/
/*}*/

#navbar ul li a:hover,
#navbar ul li a:focus,
#navbar ul li a:active,
#navbar ul li a:visited,
#navbar ul li a:link {
  background-color: transparent;
}

#about p {
  white-space: pre-line;
}

.about-title {
  font-size: 1.5em;
  color: #d35400;
}

.about-quote {
  font-style: italic;
}

.about-padding {
  padding-left: 20px;
}

.about-padding-project {
  display: block;
  margin-top: -20px;
  padding-left: 20px;
}

#step-by-step-desc a {
  color: #d35400;
}

#step-by-step-desc p {
  white-space: pre-line;
}

#step-by-step-desc .sbs-title {
  font-size: 1.5em;
  color: #d35400;
  margin-top: 30px;
}

#step-by-step-desc {
  padding: 50px 100px;
}

@media only screen and (max-width: 640px) {
	.theme-name .theme-table a {
		font-size: 15px !important;
	}
}

.play-icon .text-video {
  display: none;
  font-weight: bold;
  /*padding-top: 20px;*/
  font-size: 1.6em;
  margin-left: -20px;
}

@media only screen and (max-width: 767px) {
  .play-icon .text-video {
    display: inherit;
  }

  .play-icon .icon-video {
    display: none;
  }
}

.background-green {
  background-color: #3FC380;
}

.other-course {
  padding-left: 0;
  padding-right: 0;
}

.payment-btn-wrapper {
  float: left;
  margin-right: 100px;
  margin-bottom: 30px;
  position: relative;
}

#hide-paypal-slogan {
  width: 100%;
  height: 14px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 6px;
}

#error-400 {
  width: 80%;
  margin-top: 49px;
  background: #fff;
  border-radius: 2px 2px 0 0;
  border: 1px solid rgba(1,1,1,.12);
  padding: 4%;
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  color: #6F7C82;
}

#error-400 .error-message {
  margin-top: 30px;
  text-align: center;
  font-size: 2.5em;
}

.ed_heading_top h1 {
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
  margin: 0px;
  padding-bottom: 15px;
  color: #d35400 !important;
  font-size: 25px;
}
.ed_heading_top h1:after{
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  right: 0%;
  width: 140px;
  height: 1px;
  background-color: #d35400 !important;
  margin-left: -70px;
}

@media only screen and (max-width: 575px) {
  .votre-class {
    font-size: 10px;
  }
}

/* Pre Register Modal */
.pre-register-form {
  /*display: none;*/
  transition: all .4s;
}

.pre-register-validate {
  padding: 30px 80px;
  text-align: center;
  color : #3FC380;
  transition: all .4s;
}

.hidden {
  display: none;
  transition: all .4s;
}

.show {
  display: block;
  transition: all .4s;
}
