/*
 * Base structure
 */

/* Move down content because we have a fixed navbar that is 50px tall */
/* body {
  padding-top: 50px;
}
 */

/*
 * Global add-ons
 */

/* .sub-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
} */

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
/* .navbar-fixed-top {border: 0;} */

/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
  display: none;
}

@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    top: 80px;
    bottom: 0;
    display: block;
  }
}

/* Sidebar navigation */
.nav-sidebar {
  margin: 0;
  padding: 30px 0;
  background-color: #545454;
  height: 100%;
  margin-right: -2px;
  min-height: 500px;
  position: fixed;
  width: 282px;
}
.nav-sidebar .btn {
  background-color: #545454;
  color: #fff;
  border:none;
  width: 100%;
  font-size: 14px;
  text-align: left;
  padding: 15px 40px 15px 40px;
  box-shadow: none !important;
}
.nav-sidebar .btn .arrow {
  font-size: 20px;
  transform: rotate(90deg);
}
.nav-sidebar.open .btn {
  background-color: #e6d6b0;
  color: #70796b;
}
.nav-sidebar .dropdown-menu {
  width: 100%;
  position: relative;
  background-color: #545454;
  border: none;
  padding: 0 0 20px 0;
  box-shadow: none;
  margin: 0;
  margin-top: -1px;
}

@media (max-width: 992px) {
  .nav-sidebar {
    height: auto;
    margin: 0 -10px;
    padding: 20px 0;
    min-height: auto;
  }
}

.nav-sidebar > li,
.nav-sidebar .dropdown-menu > li  {
  padding: 0 30px;
  border-left: 3px solid #545454;
}

.nav-sidebar > li > a,
.nav-sidebar .dropdown-menu > li > a {
  padding: 15px 10px 15px 60px;
  color: #fff;
  border-bottom: 1px solid #f3ebd7;
}
.nav-sidebar .dropdown-menu > li > a {
  position: relative;
  background: transparent;
}

.nav-sidebar > li > a > .icon,
.nav-sidebar .dropdown-menu > li > a > .icon {
  
  font-size: 30px;
  position: absolute;
  left: 5px;
  top: 10px;
}

.nav-sidebar > li > a > .arrow,
.nav-sidebar .dropdown-menu > li > a > .arrow {
  display: none;
}
.nav-sidebar .dropdown-menu > li > a > .arrow {
  transform: rotate(90deg);
  display: none;
}
.nav-sidebar > li.active,
.nav-sidebar .dropdown-menu > li.active {
  background-color: #e6d6b0;
  border-left: 3px solid #caaf5e;
}
.nav-sidebar .dropdown-menu > li.active {
  border-left: 3px solid #e6d6b0;
}

.nav-sidebar > li:hover
.nav-sidebar .dropdown-menu > li:hover {
  background-color: #e6d6b0;
  border-left: 3px solid #e6d6b0;
}

.nav-sidebar > li:hover > a:hover,
.nav-sidebar .dropdown-menu > li:hover > a:hover {
  background: transparent;
  color: #70796b;
  border-bottom: 1px solid #e6d6b0;
}

.nav-sidebar > li > a:focus,
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus,
.nav-sidebar .dropdown-menu > li > a:focus,
.nav-sidebar .dropdown-menu > li.active > a,
.nav-sidebar .dropdown-menu > li.active > a:hover,
.nav-sidebar .dropdown-menu > li.active > a:focus {
  background: transparent;
  color: #70796b;
  border-bottom: 1px solid #e6d6b0;
}
.nav-sidebar .dropdown-menu > li.active > a {
  color: #70796b;
}

.nav-sidebar > .active > a > .arrow,
.nav-sidebar > .active > a:hover > .arrow,
.nav-sidebar > .active > a:focus > .arrow,
.nav-sidebar .dropdown-menu > li.active > a > .arrow,
.nav-sidebar .dropdown-menu > li.active > a:hover > .arrow,
.nav-sidebar .dropdown-menu > li.active > a:focus > .arrow {
  display: block;
  font-size: 18px;
}

/*
 * Main content
 */
.out-tabs {
  /* padding: 0 50px; */
  border: 0;
}

.out-tabs li {
  margin-right: 0;
  border: 0;
  margin-bottom: 0;
}

.out-tabs li a {
  display: inline-block;
  padding: 0;
  border: 0 !important;
  cursor: pointer;
}
.out-tabs li:last-of-type a {
  margin-right: 0;
}
.out-tabs li a .bb {
  height: 5px;
  width: 100%;
  background: transparent;
  display: block;
  cursor: pointer;
}

.out-tabs li a .bba {
  display: block;
  color: #333;
  background: #ece3cc;
  padding: 8px 8.7px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

/* PRIMARY */
.out-tabs li a.primary .bb {
  background: transparent;
}

.out-tabs li a.primary .bba {
  color: #7c2a23;
}

.out-tabs li a:hover.primary .bb {
  background: rgba(125, 41, 33, 0.6);
}

.out-tabs li.active a.primary .bb {
  background: rgba(125, 41, 33, 0.6);
}

.out-tabs li.active a.primary .bba {
  color: #fff;
  background: #7c2a23;
}

.out-tabs li.active a:hover.primary .bb {
  background: rgba(125, 41, 33, 0.8);
}

/* WARNING */
.out-tabs li a.warning .bb {
  background: transparent;
}

.out-tabs li a.warning .bba {
  color: #c19939;
}

.out-tabs li a:hover.warning .bb {
  background: rgba(193, 153, 57, 0.6);
}

.out-tabs li.active a.warning .bb {
  background: rgba(193, 153, 57, 0.6);
}

.out-tabs li.active a.warning .bba {
  color: #fff;
  background: #c19939;
}

.out-tabs li.active a:hover.warning .bb {
  background: rgba(193, 153, 57, 0.8);
}

/* SUCCESS */
.out-tabs li a.success .bb {
  background: transparent;
}

.out-tabs li a.success .bba {
  color: #575d3e;
}

.out-tabs li a:hover.success .bb {
  background: rgba(85, 91, 61, 0.6);
}

.out-tabs li.active a.success .bb {
  background: rgba(85, 91, 61, 0.6);
}

.out-tabs li.active a.success .bba {
  color: #fff;
  background: #575d3e;
}

.out-tabs li.active a:hover.success .bb {
  background: rgba(85, 91, 61, 0.8);
}

.out-tabs-content {
  margin: 0 -10px 0 -18px;
}
@media (max-width: 992px) {
  .out-tabs-content {
    margin: 0 -10px 0 -10px;
  }
}

.out-pane {
  padding: 20px;
}

.out-pane.primary {
  padding: 20px;
  background: linear-gradient(rgba(125, 41, 33, 0.8), rgba(125, 41, 33, 0.8)),
    url("../new_img/bg_home.png");
}

.out-pane.success {
  padding: 20px;
  background: linear-gradient(rgba(85, 91, 61, 0.8), rgba(85, 91, 61, 0.8)),
    url("../new_img/bg_home.png");
}

/* .b-tabs {
  padding-top: 10px;
}

.b-tabs li {
  float: left;
  margin-left: 20px;
}

@media (max-width: 992px) {
  .b-tabs {
    margin: 0 !important;
  }

  .b-tabs li {
    margin-left: 0;
    width: 100%;
  }

  .b-tabs li a {
    font-size: 12px;
    padding: 5px !important;
  }
}

.b-tabs li a {
  padding: 3px 30px;
  font-weight: 600;
  color: #fff;
  border-top: 5px solid transparent;
  background: rgba(125, 41, 33, 0.86);
}

.b-tabs li a:hover,
.b-tabs li a:focus {
  color: #fff;
  border-top: 5px solid #7C2A23;
  background: rgba(125, 41, 33, 0.7);
}

.b-tabs li.active a {
  color: #fff;
  border-top: 5px solid #7C2A23;
  background: rgba(125, 41, 33, 0.86);
}

.b-tabs li.active a:hover,
.b-tabs li.active a:focus {
  color: #fff;
  border-top: 5px solid #7C2A23;
  background: rgba(125, 41, 33, 0.7);
} */

/* MAIN PROFILE NAV BAR */
/* .p-tabs {
  padding-top: 10px;
}

.p-tabs > li {
  float: left;
  margin-left: 20px;
}

@media (max-width: 992px) {
  .p-tabs > li {
    margin-left: 0;
    width: 50%;
  }
}

.p-tabs > li > a {
  padding: 2px 30px 3px 30px;
  font-weight: 600;
  color: #fff;
  border-top: 5px solid transparent;
}

.p-tabs > li:first-of-type > a {
  background: rgba(125, 41, 33, 0.7);
}

.p-tabs > li:first-of-type > a:hover,
.p-tabs > li:first-of-type > a:focus {
  border-top-color: #7C2A23;
  background: rgba(125, 41, 33, 0.86);
}

.p-tabs > li.active:first-of-type > a,
.p-tabs > li.active:first-of-type > a:hover,
.p-tabs > li.active:first-of-type > a:focus {
  border-top-color: #7C2A23;
  background: rgba(125, 41, 33, 0.7);
}

.p-tabs > li:last-of-type > a {
  background: rgba(193, 153, 57, 0.7);
}

.p-tabs > li:last-of-type > a:hover,
.p-tabs > li:last-of-type > a:focus {
  border-top-color: #C19939;
  background: rgba(193, 153, 57, 0.86);
}

.p-tabs > li.active:last-of-type > a,
.p-tabs > li.active:last-of-type > a:hover,
.p-tabs > li.active:last-of-type > a:focus {
  border-top-color: #C19939;
  background: rgba(193, 153, 57, 0.7);
}

.p-tabs > li > a:hover,
.p-tabs > li > a:focus,
.p-tabs > .active > a,
.p-tabs > .active > a:hover,
.p-tabs > .active > a:focus {
  border-top: 5px solid;
} */

/* MAIN PROFILE BODY */
.p-tab-body {
  padding: 30px 0 0 0;
  /* margin-bottom: 10px; */

  /* background:
    linear-gradient(
      rgba(247,245,233, 0.4),
      rgba(247,245,233, 0.4)
    ),
    url('../new_img/bg_home.png'); */
}
@media (max-width: 992px) {
  .p-tab-body {
    padding: 0;
    margin-bottom: 0;
  }
}

/* url('../new_img/fondo_profile.png') */
.p-tab-body .tabs-content.primary {
  background: rgba(125, 41, 33, 0.7);
  padding: 15px;
}

.p-tab-body .tabs-content.warning {
  background: rgba(193, 153, 57, 0.7);
  padding: 15px;
}

@media (max-width: 992px) {
  .p-tab-body .tabs-content {
    margin: 0 -15px;
  }
  .p-panel.sumary {
    margin: 0 -30px;
  }
  .p-panel.sumary.two {
    margin: 0 -10px;
  }
  .p-panel.sumary.three {
    margin: 0 -20px;
  }
  /* .tabs-content.fix {
    margin: 0 -10px;
  } */
}

.tab-content iframe {
  width: 100%;
}

/* P PANEL */
@media (max-width: 992px) {
  .p-panel {
    margin: 0 -10px;
  }
}

.p-panel .head {
  padding: 5px 15px;
}

.p-panel .head h5 {
  margin: 0;
  color: white;
}

.p-panel .head a:hover {
  text-decoration: none;
}

.p-panel .body {
  padding: 15px;
  background: rgba(247, 245, 233, 0.5);
}

@media (max-width: 992px) {
  .p-panel .body {
    padding: 15px 30px;
  }
}

.p-panel .body.hitos {
  background: #f1ead9;
}

.p-panel .body.even {
  background: #f1ead9;
}

.p-panel .body.odd {
  background: #f7f5e9;
}
@media (max-width: 992px) {
  .p-panel .body.odd.edit-p .square {
    width: 50%;
    margin: 0 auto 30px;
  }
}

.p-panel .body.odd .form-control {
  background: #fff;
}

.p-panel .body.hitos hr {
  border-color: #7c2a23;
  border-width: 2px;
  margin-top: 0;
  margin-bottom: 10px;
}

.p-panel .body.hitos .card {
  padding: 10px;
  border-radius: 4px;
  background: #fff;
}

.p-panel .body.hitos .card .radial-inner-bg {
  background: #fff;
}

.p-panel .body.hitos .card .radial-inner-bg .content p {
  font-size: 17px;
  font-weight: 700;
  line-height: 13px;
}

.p-panel .body.hitos .card h5 {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 10px;
}

.p-panel .body.hitos .card p {
  font-size: 11px;
  margin-bottom: 0;
}

.p-panel .body.hitos .card.ye .radial-inner-bg,
.p-panel .body.hitos .card.ye {
  background: #dac48e;
}
.p-panel .body.hitos .card.ge .radial-inner-bg,
.p-panel .body.hitos .card.ge {
  background: #abae9e;
}

.p-panel .body.mapa {
  padding: 0;
  background: rgb(247, 244, 234, 0.7);
}
@media (max-width: 992px) {
  .p-panel .body.mapa .col-md-6 fieldset {
    margin-bottom: 15px;
  }
}

.p-panel .body.photos {
  padding: 15px 50px;
}
@media (max-width: 992px) {
  .p-panel .body.photos {
    padding: 15px 20px;
  }
}
.p-panel .body .bg {
  width: 100%;
  padding: 10px;
  background: rgba(247, 245, 233, 1);
}

.p-panel .body .square {
  position: relative;
  width: 100%;
  background: tan;
}

.p-panel .body .square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.p-panel .body .s-content {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-panel .body .s-content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-panel .body.profile {
  padding: 0;
}
@media (max-width: 992px) {
  .p-panel .body.profile {
    padding: 15px 10px;
  }
}

.p-panel .body.profile .p-30 {
  padding: 20px 30px;
}
@media (max-width: 992px) {
  .p-panel .body.profile .p-30 {
    padding: 0 10px;
  }
}
.p-panel .body.profile .p-name {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
}

.p-panel .body.profile .p-rut {
  margin-top: 0;
  margin-bottom: 5px;
  color: grey;
  font-style: italic;
}

.p-panel .body.profile h6.m-t-10 {
  margin-top: 10px;
}

.p-panel .body.profile h6 {
  margin-top: 0;
  font-size: 12px;
  font-weight: 400;
}

.p-panel .body.profile hr {
  margin-top: 5px;
  margin-bottom: 5px;
  border-color: #b6b4ae;
}

.p-panel .body pre.m-t-10 {
  margin-top: 10px;
}

.p-panel .body pre {
  background: transparent;
  border: none;
  font-family: "Open Sans", sans-serif;
  white-space: pre-wrap;
  padding: 0;
  font-size: 12px;
}

.p-panel .body .profile hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 2px solid #b9b7ad;
}

.p-panel .body .hitos h1 {
  font-size: 18px;
  border-bottom: 2px solid #7c2a23;
}

.p-panel .body .hitos .card {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding-top: 10px;
}

.p-panel .body .hitos .card-y {
  position: relative;
  background: #d9c48e;
  border-radius: 4px;
  padding-top: 10px;
}

.graph {
  width: 100%;
  position: relative;
}

.graph .content {
  width: 100%;
  height: 100%;
  position: absolute;
  background: tan;
}

.graph:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.line {
  height: 20px;
  width: 3px;
  position: absolute;
  top: 0;
  left: 50%;
}

.line.red {
  background: #7c2a23;
}

.line.yellow {
  background: #a87922;
}

/* CAROUSEL */
/*.carousel-photo {
}*/
@media (max-width: 992px) {
  .carousel-photo {
    padding: 0 20px;
  }
}

@media (min-width: 650px){
  .carousel-inner.home-carousel {
    margin-left: 30px;
  }
}

.carousel-photo .carousel-inner {
  width: 100%;
}

.carousel-photo .item {
  padding: 2px;
}

.carousel-photo .carousel-control {
  width: 3%;
  color: #a0a18e;
  text-shadow: none;
}

.carousel-photo .carousel-control.left {
  left: -44px;
}

@media (max-width: 992px) {
  .carousel-photo .carousel-control.left {
    left: 0px;
  }
}

.carousel-photo .carousel-control.right {
  right: -44px;
}

@media (max-width: 992px) {
  .carousel-photo .carousel-control.right {
    right: 0px;
  }
}

.carousel-photo .carousel-control.left,
.carousel-photo .carousel-control.right {
  background: transparent;
}

.carousel-photo .carousel-control .glyphicon-chevron-left,
.carousel-photo .carousel-control .glyphicon-chevron-right,
.carousel-photo .carousel-control .icon-prev,
.carousel-photo .carousel-control .icon-next {
  font-size: 18px;
  line-height: 28px;
  background: #e4e2d6;
}

.carousel-photo .carousel-control .glyphicon-chevron-left.white,
.carousel-photo .carousel-control .glyphicon-chevron-right.white,
.carousel-photo .carousel-control .icon-prev.white,
.carousel-photo .carousel-control .icon-next.white {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 992px) {
  .small-iframe {
    width: 100% !important;
  }
}

.col-item {
  box-shadow: 0 0 7px rgba(128, 128, 128, 0.28);
  overflow: hidden;
  min-height: 340px;
}
@media (max-width: 992px) {
  .col-item {
    min-height: 200px;
  }
}
.col-item.photo-box {
  min-height: auto;
}

.col-item:hover .photo .content,
.col-item:hover .info {
  background: #f9f9f9;
  cursor: pointer;
}

.col-item .photo {
  position: relative;
  width: 100%;
  display: block;
}

.col-item .photo:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.col-item .photo .content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  padding: 10px;
}

.col-item .photo .content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.col-item .photo .photo-info {
  display: none;
  padding: 20px 10px 10px 10px;
}

.col-item .photo .photo-info .date,
.col-item .photo .photo-info .info-attr,
.col-item .photo .photo-info .type {
  color: #fff;
}

.col-item .photo:hover .photo-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 992px) {
  .col-item .photo:hover .photo-info {
    display: none;
  }
}

.col-item .photo:hover .photo-info .bottom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  left: 10px;
}

.col-item.primary .photo:hover .photo-info {
  background: rgba(124, 42, 35, 0.9);
}

.col-item.warning .photo:hover .photo-info {
  background: rgba(193, 153, 57, 0.9);
}

.col-item.success .photo:hover .photo-info {
  background: rgba(85, 91, 61, 0.9);
}

.col-item.photo-box .info {
  min-height: 50px;
}

.col-item .info {
  background: #fff;
  padding: 5px 10px 10px 10px;
  min-height: 150px;
  position: relative;
}

.col-item .info .kind {
  position: absolute;
  bottom: 10px;
}

.col-item.col-item-destination {
  min-height: 280px;
}

.m-t-15 {
  margin-top: 15px !important;
}

.kind {
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 600;
}
a.info-attr {
  display: block;
}
a.info-attr:hover {
  opacity: 0.7;
}
.info-attr {
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  color: #909090;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-attr span {
  text-decoration: underline;
}
.info-attr .bold-o {
  font-weight: 600;
}
.info-attr .bold-n {
  font-weight: 600;
  text-decoration: none;
}

.info-attr .bold {
  font-weight: 600;
  color: #333;
}

.info-attr .bold-w {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.info-attr.search-results {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  white-space: unset;
}
.info-attr.summit-book-attr {
  white-space: unset;
}
.summary-table .info-attr span {
  text-decoration: none;
}
.price {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.route {
  color: #333;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 400;
}

.date {
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 300;
  color: #909090;
}

.date i {
  font-size: 13px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.type {
  font-size: 13px;
  line-height: 15px;
  margin: 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.name {
  color: #333;
  margin: 0;
  height: 32px;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 13px;
  line-height: 15px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .col-item .info h5 a {
  color: #545454;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase; 
}
.col-item .info h5 a:hover {
  opacity: .7;
} */
/* .col-item .info p {
  margin-bottom: 0;
  font-size: 13px;
}
.col-item .info p.author {
  margin-bottom: 0;
  font-size: 11px;
  
} */
/* .col-item.search .info p.date {
  margin: 0;
  height: 38px;
  display: block; 
  display: -webkit-box;
  line-height: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient:vertical;
  -ms-box-orient:vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.col-item .info p.route {
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 5px;
  height: 32px;
  display: block; 
  display: -webkit-box;
  line-height: 16px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient:vertical;
  -ms-box-orient:vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.col-item .info p.route a {
  color: #C19939;
}
.col-item .info p.route a:hover {
  opacity: .7;
} */
.p-panel .body.bg-2 {
  padding: 15px;
  background: #f1e9d9;
  border-top: 1px solid #7c2a23;
}
@media (max-width: 992px) {
  .bg-2 .col-md-33:last-of-type .publish-card {
    margin-bottom: 0;
  }
}
.p-panel .body .bg-3 {
  padding: 15px;
  background: #d5bb8e;
  margin: -15px 0 -15px 0;
}
@media (max-width: 992px) {
  .p-panel .body .bg-3 {
    margin: 0 -15px 15px -15px;
  }
  .p-panel .body .col-md-33:last-of-type .bg-3 {
    margin-bottom: 0;
  }
}

.p-panel .body .publish-input {
  border-top: 2px solid #a37878;
}

.p-panel .body .publish-input h1 {
  font-size: 18px;
  border-bottom: 2px solid #7c2a23;
}

/* RUTAS PUBLICADAS */
.publish-card {
  display: block;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 7px #ccc;
  margin-bottom: 15px;
  color: #545455;
}

.publish-card:hover {
  background: #fefefe;
  color: #7c2a23;
}

.publish-card .square {
  position: relative;
  width: 100%;
  background: tan;
}

.publish-card .square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.publish-card .s-content {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: tan;
}

.publish-card .s-content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.publish-card .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.publish-card h5 {
  margin: 0;
  line-height: 15px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 15px;
}

.home-route-contributions .publish-card h5 {
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: unset;
  height: unset;
}

@media (max-width: 992px) {
  .publish-card h5 {
    margin-top: 0;
  }
}

.publish-card .route {
  font-size: 11px;
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}

.publish-card .name {
  font-size: 12px;
  line-height: 1.1;
  margin-bottom: 5px;
}

/* .publish-card .date {
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 300;
}
.publish-card .date i {
  font-size: 14px;
  margin-right: 5px;
  position: relative;
  top: 2px;
} */
.down {
  font-weight: 600;
  color: #a0a18e;
  opacity: 0.7;
}

.down span {
  font-size: 18px;
  line-height: 28px;
  background: #e4e2d6;
  color: #a0a18e;
  padding-right: 4px;
  padding-left: 6px;
  text-align: center;
}

.down:hover,
.down:active,
.down:focus {
  opacity: 1;
  color: #a0a18e;
  text-decoration: none;
}

.down2 {
  font-weight: 600;
  color: #7c2a23;
  opacity: 0.7;
}

.down2 span {
  font-size: 18px;
  line-height: 28px;
  background: #c29d78;
  color: #7c2a23;
  padding-right: 4px;
  padding-left: 6px;
  text-align: center;
}

.down2:hover,
.down2:active,
.down2:focus {
  opacity: 1;
  color: #7c2a23;
  text-decoration: none;
}

.summit-box {
  padding: 10px;
  background: #eeebe0;
}

.summit-box .square {
  width: 100% !important;
}

.summit-box p {
  font-size: 11px;
  margin-bottom: 0;
}

.summit-box p a {
  color: #545454;
  text-decoration: underline;
}
.summit-box .redes a {
  color: #545454;
  padding: 5px;
}
.summit-box .redes a:hover {
  color: #7c2a23;
  text-decoration: none;
}
.summit-box pre {
  background: transparent;
  border: none;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #545454;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: justify;
  text-align-last: left;
}
.signature-row a {
  color: #545454;
}
.signature-row td {
  word-break: break-all;
} 
.comments-redes .redes a {
  color: #545454;
  padding: 5px;
}
.comments-redes .redes a:hover {
  color: #575d3e;
  text-decoration: none;
}
.view-more-c {
  position: relative;
  padding-right: 40px;
  font-weight: 700;
  color: #979883;
  font-size: 12px;
}

.view-more-c span {
  font-size: 18px;
  background: #dfdac8;
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 6px 7px;
  text-align: center;
  color: #979883;
  position: absolute;
  right: 0;
  top: -5px;
}

.view-more-ac {
  position: relative;
  padding-right: 40px;
  font-weight: 700;
  color: #7c2a23;
  font-size: 12px;
}

.view-more-ac span {
  font-size: 18px;
  background: #c29d78;
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 6px 7px;
  text-align: center;
  color: #7c2a23;
  position: absolute;
  right: 0;
  top: -5px;
}
.view-more-ac-success {
  position: relative;
  padding-right: 40px;
  font-weight: 700;
  color: #575d3e;
  font-size: 12px;
}
.view-more-ac-success span {
  font-size: 18px;
  background: #abae9e;
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 6px 7px;
  text-align: center;
  color: #575d3e;
  position: absolute;
  right: 0;
  top: -5px;
}

.editor-box {
  border-top: 1px solid #909090;
  padding: 0 10px;
}
@media (max-width: 992px) {
  .editor-box {
    margin: 0 -15px;
  }
}

.bb-editor {
  border-bottom: 1px solid #909090;
  padding: 10px 0;
}
@media (max-width: 992px) {
  .bb-editor {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .bb-editor [class*="col-"] {
    flex: 1;
  }
}


.edit-m {
  color: #909090;
  font-size: 12px;
  text-transform: capitalize;
}

.edit-m:hover {
  color: #7c2a23;
  text-decoration: none;
}

/*Form Wizard*/
.bs-wizard {
  padding: 0 10px 0 15px;
}

.bs-wizardp {
  text-decoration: none !important;
}

.bs-wizard > .bs-wizard-step {
  padding: 0;
  position: relative;
}

.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
  color: #595959;
  font-size: 16px;
  margin-bottom: 5px;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  display: block;
  background: #ece3cc;
  border: 1px solid #7c2a23;
  top: 0;
  left: 50%;
  margin-top: 0;
  margin-left: -7px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
  color: #7c2a23;
}

.bs-wizard > .bs-wizard-step:first-child > .bs-wizard-dot {
  left: 0;
  margin-left: 0;
}

.bs-wizard > .bs-wizard-step:last-child > .bs-wizard-dot {
  right: 0;
  margin-right: 0;
  left: auto;
}

.bs-wizard > .bs-wizard-step.active > .bs-wizard-dot {
  background: #7c2a23;
  border: 1px solid #7c2a23;
  color: #fff;
}

.bs-wizard > .bs-wizard-step.complete > .bs-wizard-dot {
  background: #7c2a23;
  border: 1px solid #7c2a23;
  color: #fff;
}

.bs-wizard > .bs-wizard-step > .progress-n {
  position: relative;
  border-radius: 0px;
  height: 5px;
  box-shadow: none;
  margin: 5px 0;
  background: #ece3cc;
}

.bs-wizard > .bs-wizard-step > .progress-n > .progress-bar-n {
  height: 5px;
  width: 0px;
  box-shadow: none;
  background: #7c2a23;
}

.bs-wizard > .bs-wizard-step.active > .progress-n > .progress-bar-n {
  width: 50%;
}

.bs-wizard > .bs-wizard-step.complete > .progress-n > .progress-bar-n {
  width: 100%;
}

.bs-wizard
  > .bs-wizard-step:first-child.complete
  > .progress-n
  > .progress-bar-n {
  width: 100%;
}

.bs-wizard
  > .bs-wizard-step:first-child.active
  > .progress-n
  > .progress-bar-n {
  width: 80%;
}

.bs-wizard > .bs-wizard-step:last-child.active > .progress-n > .progress-bar-n {
  width: 100%;
}

.bs-wizard > .bs-wizard-step:first-child > .progress {
  left: 50%;
  width: 50%;
}

.bs-wizard > .bs-wizard-step:last-child > .progress {
  width: 50%;
}

.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
  pointer-events: none;
}

/* progres bar */
.progress {
  box-shadow: none;
  border-radius: 10px;
  overflow: initial;
}

.progress-bar {
  border-radius: 10px;
  position: relative;
}

.progress-bar:after {
  content: "";
  display: inline-block;
  border-radius: 10px;
  width: 8px;
  height: 8px;
  background: #7c2a23;
  position: absolute;
  top: -2px;
  right: -5px;
}
.progress-bar.progress-bar-success:after {
  background: #575d3e;
}
.progress-bar.progress-bar-primary:after {
  background: #7c2a23;
}

.progress {
  margin: 10px 0;
  height: 5px;
}

.progress.primary {
  background-color: #af7b7b;
}

.progress.success {
  background-color: #abae9e;
}

.progress.warning {
  background-color: transparent;
}

.item-progress {
  position: relative;
  width: 100%;
  border-radius: 50%;
  border: none;
  margin-top: 0;
  margin-bottom: 10px;
}

.item-progress:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}

.radial-inner-bg {
  border-radius: 50%;
  width: 60%;
  top: 20%;
  left: 20%;
  background: white;
  position: absolute;
}

.radial-inner-bg .content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.radial-inner-bg .content p {
  margin-bottom: 0;
}

.radial-inner-bg:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}

.mh-500 {
  max-height: 500px;
  overflow-y: scroll;
}
.mh-300 {
  max-height: 300px;
  overflow-y: scroll;
}
@media (max-width: 992px) {
  .mh-300 {
    max-height: 600px;
  }
}
.card-count-i-did-it {
  position: absolute;
  bottom: -5px;
  right: 15px;
  color: #7c2a23;
  font-weight: 300;
  font-size: 2em;  
}
.m-t-fix {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .m-t-fix {
    margin-top: 0;
  }
}

.subscription-card .qr-code {
  position: absolute;
  left: 48px;
  top: 38px;
  height: 80px;
  border-radius: 5px;
}

.subscription-card .personal-info {
  position: absolute;
  bottom: 29px;
  left: 75px;
  width: 310px;
}

.subscription-card .personal-info-0 {
  position: absolute;
  bottom: 42px;
  left: 75px;
}

.subscription-card .personal-info-0 .p-name {
  color:white;
}

.subscription-card .personal-info .p-subscription-type {
  color: rgb(156,88,89);
  font-weight: bold;
  float: right;
  margin-right: 10px;
  margin-top: 3px;  
}

.subscription-card .card-warning {
  position: absolute;
  max-width: 300px;
  top: 40%;
  left: 10%;
  color: white;
}

.subscription-card .card-warning b {
  color: white;
}

@media (max-width: 992px) {
  .subscription-card .qr-code {
    left: 18px;
    top: 8px;
  }
  .subscription-card .personal-info{
    bottom: 7px;
    left: 55px;
  }
  .subscription-card .personal-info-0{
    bottom: 20px;
    left: 55px;
  }
}