html {
  font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.panel.panel-horizontal {
  display: table;
  width: 100%;
}

.panel.panel-horizontal>.panel-heading,
.panel.panel-horizontal>.panel-body,
.panel.panel-horizontal>.panel-footer {
  display: table-cell;
}

.panel.panel-horizontal>.panel-heading,
.panel.panel-horizontal>.panel-footer {
  width: 15%;
  border: 0;
  vertical-align: middle;
}

.panel.panel-horizontal>.panel-heading {
  border-right: 1px solid #ddd;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}

.panel.panel-horizontal>.panel-footer {
  border-left: 1px solid #ddd;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
}

body {}

/* Using panels to display blog date */
.panel.date {
  margin: 0px;
  width: 60px;
  text-align: center;
}

.panel.date .month {
  padding: 2px 0px;
  font-weight: 700;
  text-transform: uppercase;
}

.panel.date .day {
  padding: 3px 0px;
  font-weight: 700;
  font-size: 1.5em;
}

/*    --------------------------------------------------
:: General
-------------------------------------------------- */
body {
  font-family: 'Open Sans', sans-serif;
  color: #353535;
}

.content h1 {
  text-align: center;
}

.content .content-footer p {
  color: #6d6d6d;
  font-size: 12px;
  text-align: center;
}

.content .content-footer p a {
  color: inherit;
  font-weight: bold;
}

/*  --------------------------------------------------
:: Table Filter
-------------------------------------------------- */
.panel {
  border: 1px solid #ddd;
  background-color: #fcfcfc;
}

.panel .btn-group {
  margin: 15px 0 30px;
}

.panel .btn-group .btn {
  transition: background-color .3s ease;
}

.table-filter {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.table-filter tbody tr:hover {
  cursor: pointer;
  background-color: #eee;
}

.table-filter tbody tr td {
  padding: 10px;
  vertical-align: middle;
  border-top-color: #eee;
}

.table-filter tbody tr.selected td {
  background-color: #eee;
}

.table-filter tr td:first-child {
  width: 38px;
}

.table-filter tr td:nth-child(2) {
  width: 35px;
}

.ckbox {
  position: relative;
}

.ckbox input[type="checkbox"] {
  opacity: 0;
}

.ckbox label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ckbox label:before {
  content: '';
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  border-radius: 2px;
  border: 1px solid #bbb;
  background-color: #fff;
}

.ckbox input[type="checkbox"]:checked+label:before {
  border-color: #2BBCDE;
  background-color: #2BBCDE;
}

.ckbox input[type="checkbox"]:checked+label:after {
  top: 3px;
  left: 3.5px;
  content: '\e013';
  color: #fff;
  font-size: 11px;
  font-family: 'Glyphicons Halflings';
  position: absolute;
}

.table-filter .star {
  color: #ccc;
  text-align: center;
  display: block;
}

.table-filter .star.star-checked {
  color: #F0AD4E;
}

.table-filter .star:hover {
  color: #ccc;
}

.table-filter .star.star-checked:hover {
  color: #F0AD4E;
}

.table-filter .media-photo {
  width: 35px;
}

.table-filter .media-body {
  /* Had to use this style to force the div to expand (wasn't necessary with my bootstrap version 3.3.6) */
}

.table-filter .media-meta {
  font-size: 11px;
  color: #999;
}

.table-filter .media .title {
  color: #2BBCDE;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  margin: 0;
}

.table-filter .media .title span {
  font-size: .8em;
  margin-right: 20px;
}

.table-filter .media .title span.pagado {
  color: #5cb85c;
}

.table-filter .media .title span.pendiente {
  color: #f0ad4e;
}

.table-filter .media .title span.cancelado {
  color: #d9534f;
}

.table-filter .media .summary {
  font-size: 14px;
}

.btn.dropdown-toggle~.dropdown-menu,
ul.nav li.dropdown ul.dropdown-menu {
  background-color: rgb(244, 244, 244);
  background-color: rgb(255, 255, 255);
  border: 0 solid rgb(66, 133, 244);
  box-shadow: 0px 0px 3px rgba(25, 25, 25, 0.3);
  top: 0px;
  margin: 0px;
  padding: 0px;
}

ul.nav li.dropdown ul.dropdown-menu {
  position: absolute;
  width: 100%;
}

.dropdown-menu .dropdown-plus-title {
  width: 100%;
  color: rgb(51, 51, 51);
  padding: 6px 12px;
  font-weight: 800;
  border: 0 solid rgb(173, 173, 173);
  border-bottom-width: 2px;
  cursor: pointer;
}

ul.nav li.dropdown ul.dropdown-menu .dropdown-plus-title {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

.btn.dropdown-toggle.btn-primary~.dropdown-menu .dropdown-plus-title {
  border-color: rgb(53, 126, 189);
}

.btn.dropdown-toggle.btn-success~.dropdown-menu .dropdown-plus-title {
  border-color: rgb(76, 174, 76);
}

.btn.dropdown-toggle.btn-info~.dropdown-menu .dropdown-plus-title {
  border-color: rgb(70, 184, 218);
}

.btn.dropdown-toggle.btn-warning~.dropdown-menu .dropdown-plus-title {
  border-color: rgb(238, 162, 54);
}

.btn.dropdown-toggle.btn-danger~.dropdown-menu .dropdown-plus-title {
  border-color: rgb(212, 63, 58);
}

@media (min-width: 768px) {
  ul.nav li.dropdown ul.dropdown-menu .dropdown-plus-title {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) {
  ul.nav li.dropdown ul.dropdown-menu {
    width: auto;
  }
}

/*  bhoechie tab */
div.bhoechie-tab-container {
  z-index: 10;
  background-color: #ffffff;
  padding: 0 !important;
  border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #ddd;
  margin-top: 20px;
  margin-left: 50px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  background-clip: padding-box;
  opacity: 0.97;
  filter: alpha(opacity=97);
}

div.bhoechie-tab-menu {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

div.bhoechie-tab-menu div.list-group {
  margin-bottom: 0;
}

div.bhoechie-tab-menu div.list-group>a {
  margin-bottom: 0;
}

div.bhoechie-tab-menu div.list-group>a .glyphicon,
div.bhoechie-tab-menu div.list-group>a .fa {
  color: #29a329;
}

div.bhoechie-tab-menu div.list-group>a:first-child {
  border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
}

div.bhoechie-tab-menu div.list-group>a:last-child {
  border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
}

div.bhoechie-tab-menu div.list-group>a.active,
div.bhoechie-tab-menu div.list-group>a.active .glyphicon,
div.bhoechie-tab-menu div.list-group>a.active .fa {
  background-color: #29a329;
  background-image: #29a329;
  color: #ffffff;
}

div.bhoechie-tab-menu div.list-group>a.active:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -13px;
  border-left: 0;
  border-bottom: 13px solid transparent;
  border-top: 13px solid transparent;
  border-left: 10px solid #29a329;
}

div.bhoechie-tab-content {
  background-color: #ffffff;
  /* border: 1px solid #eeeeee; */
  padding-left: 20px;
}

div.bhoechie-tab div.bhoechie-tab-content:not(.active) {
  display: none;
}

h5 {
  font-size: 1.28571429em;
  font-weight: 700;
  line-height: 1.2857em;
  margin: 0;
}

.card {
  font-size: 1em;
  overflow: hidden;
  padding: 0;
  border: none;
  border-radius: .28571429rem;
  box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
  margin-top: 10px;
  margin-bottom: 10px
}

.card-block {
  font-size: 1em;
  position: relative;
  margin: 0;
  padding: 1em;
  border: none;
  border-top: 1px solid rgba(34, 36, 38, .1);
  box-shadow: none;
}

.card-img-top {
  display: block;
  width: 100%;
  height: auto;
}

.card-title {
  font-size: 1.28571429em;
  font-weight: 700;
  line-height: 1.2857em;
}

.card-text {
  clear: both;
  margin-top: .5em;
  color: rgba(0, 0, 0, .68);
}

.card-footer {
  font-size: 1em;
  position: static;
  top: 0;
  left: 0;
  max-width: 100%;
  padding: .75em 1em;
  color: rgba(0, 0, 0, .4);
  border-top: 1px solid rgba(0, 0, 0, .05) !important;
  background: #fff;
}

.card-inverse .btn {
  border: 1px solid rgba(0, 0, 0, .05);
}

.profile {
  position: absolute;
  top: -12px;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 50%;
}

.profile-avatar {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.profile-inline {
  position: relative;
  top: 0;
  display: inline-block;
}

.profile-inline~.card-title {
  display: inline-block;
  margin-left: 4px;
  vertical-align: top;
}

.text-bold {
  font-weight: 700;
}

.meta {
  font-size: 1em;
  color: rgba(0, 0, 0, .4);
}

.meta a {
  text-decoration: none;
  color: rgba(0, 0, 0, .4);
}

.meta a:hover {
  color: rgba(0, 0, 0, .87);
}

.container {}

.profile-card {
  background-color: #222222;
  margin-bottom: 20px;

}

.profile-pic {
  border-radius: 50%;
  position: absolute;
  top: -65px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  max-width: 100px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}


.profile-info {
  color: #BDBDBD;
  padding: 25px;
  position: relative;
  margin-top: 15px;
}

.profile-info h2 {
  color: #E8E8E8;
  letter-spacing: 4px;
  padding-bottom: 12px;
}

.profile-info span {
  display: block;
  font-size: 12px;
  color: #4CB493;
  letter-spacing: 2px;
}

.profile-info a {
  color: #4CB493;
}

.profile-info i {
  padding: 15px 35px 0px 35px;
}


.profile-card:hover .profile-pic {

  transform: scale(1.1);
}

.profile-card:hover .profile-info hr {
  opacity: 1;
}

#background {
  height: 100%;
  width: 100%;
}

.container h1 {
  color: white;
}

.videocontainer {
  height: 35vh;
}


/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 52%;
  right: 52%;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 50%;
  height: 3px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.profile-card:hover .hvr-underline-from-center:before,
.profile-card:focus .hvr-underline-from-center:before,
.profile-card:active .hvr-underline-from-center:before {
  left: 0;
  right: 0;
  height: 1px;
  background: #CECECE;
}


.btnx {
  margin: 0px;
  opacity: 0;

}

.divbutton {
  min-height: 70px;
  -webkit-transition: all .8s ease;
  -moz-transition: all .8s ease;
  -ms-transition: all .8s ease;
  -o-transition: all .8s ease;
  transition: all .8s ease;

}

.divbutton:hover>.btnx {
  opacity: 1;


}

.divbutton:hover .divbutton {
  background-color: #FFF;
}

body {
  background-color: #eee;
}

div {
  border-radius: 0px;
  -moz-border-radius: 0px;

  -webkit-border-radius: 0px;
}

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
}

.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}

.form-signin .checkbox {
  font-weight: normal;
}

.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}

.form-signin .form-control:focus {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar {
  background: rgba(0, 0, 0, 0.1);

  border-radius: 0px;
}

body {

  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-attachment: fixed;

  background-position: top;
  background-repeat: no-repeat;
  /* overflow: hidden */
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0px;
  margin-bottom: 0px;
}

.btn {
  box-shadow: none;
}

.cardright {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  min-height: 512px;
}

.nomargin {
  margin: 0px;
}

.nopadding {
  padding: 0px;
}

#mceu_21 {

  background: rgba(255, 255, 255, 0.3);
}

.list-group,
.list-group-item {
  box-shadow: none;
  background: rgba(220, 220, 220, 0.2);
  border: none;
}

.mce-toolbar-grp,
.mce-container,
.mce-panel,
.mce-stack-layout-item {
  background: rgba(255, 255, 255, 0.2);
}

.mce-panel {
  background: rgba(255, 255, 255, 0.2);
  background-color: none;
}


.mce-content-body {

  background: rgba(255, 255, 255, 0.2);
}

iframe {
  background: rgba(255, 255, 255, 0.2);
}

#mceu_30-body {
  background: rgba(255, 255, 255, 0.2);
  background-color: none;
  !important
}