.navbar {
  padding: 0 !important;
  height: 50px !important;
}
.nav-item {
  padding: 0 0.5rem;
}

.main-header .sidebar-toggle {
  padding: 13px 15px;
}

.sidebar-form input {
  border: none !important;
}

.dropdown-menu {
  padding: 0.5rem 0 !important;
  margin: 0.125rem 0 0 !important;
}

.dropdown-toggle:after {
  display: none;
}

.dropdown-toggle .badge {
  margin-top: -0.1rem;
  vertical-align: middle;
}

table {
  table-layout: fixed;
}

td .btn {
  padding: 0.2rem 0.5rem;
  font-size: 12px;
}

.card,
.pagination,
.timeline > li > .fa {
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
}

.modal-content {
  box-shadow: 12px 12px 16px rgba(0, 0, 0, 0.1);
}

.modal-backdrop.show {
  opacity: 0;
}

a {
  color: inherit;
}

.panel-heading form {
  display: inline-block;
}

.callout .table {
  color: black !important;
}

.callout .table a {
  color: #3c8dbc !important;
}

.callout .table a:hover,
.callout .table a:active,
.callout .table a:focus {
  color: #72afd2 !important;
}

.panel-heading .btn {
  margin-left: 5px;
}
.content-wrapper > .callout {
  border-radius: 0;
}
.content-wrapper > .callout h4 {
  margin-bottom: 0;
}

table td form {
  display: inline-block;
  margin-left: 0.3rem;
  margin-right: 0;
  float: right;
}

.content-header > h1 {
  margin: 0 1rem 1rem;
}

ul.recipe-list {
  padding: 0 0 0 18px;
}

.time-badge span {
  border-radius: 4px;
  padding: 0.3rem 0.5rem;
}

.timeline-header .btn {
  font-size: 12px;
  margin-top: -5px;
}

.timeline > li > .timeline-item {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
}

.recipe-list li {
  vertical-align: middle;
  padding: 5px 55px 5px 0;
  line-height: 16px;
  position: relative;
}

.recipe-list li form {
  position: absolute;
  top: 3px;
  right: 0;
}

.recipe-list li form.edit-title {
  right: 27px;
}

.product-defaults .btn {
  margin-bottom: 10px;
}

.timeline-body dl {
  margin-bottom: 0;
}
.timeline-footer {
  background: #f7f7f7;
  padding: 10px 15px;
  border-radius: 0 0 3px 3px;
  border-top: 1px solid #efefef;
}

.timeline-footer > * {
  margin: 0;
}

.small-message {
  font-size: 18px;
}

/**** Forms and placeholder ****/
.form-group > div {
  position: relative;
}

.floating-placeholder {
  position: absolute;
  top: 10px;
  font-size: 12px;
  pointer-events: none;

  font-family: "roboto", sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input.placeholder {
  border: none !important;
  padding: 10px 0 !important;
  border-bottom: solid 1px #eaeaea !important;
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1) !important;
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);

  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 96%,
    #1abc9c 4%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 96%,
    #1abc9c 4%
  );
  background-position: -1000px 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

input.placeholder.active {
  box-shadow: none;
  outline: none;
  background-position: 0 0;
}

input.placeholder.invalid {
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 96%,
    #923636 4%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 96%,
    #923636 4%
  );
}

input.placeholder.active + .floating-placeholder {
  font-size: 11px;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  visibility: visible !important;
}

input.placeholder.invalid + .floating-placeholder {
  color: #923636;
}

/* idxcheckbox.com */

.check-list,
.check-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-item {
  display: block;
  position: relative;
  overflow: hidden;
}

.check-item:nth-child(even) {
  background: #f8f7f6;
}

.check-item:hover {
  background: #f2f4ef;
}

input[type="checkbox"].checkbox {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type="checkbox"].checkbox + label.label {
  background-image: url(../img/checkbox-empty.svg);
  background-repeat: no-repeat;
  background-position: 40px 50%;
  vertical-align: middle;
}

input[type="checkbox"].checkbox.checked + label.label {
  color: #fff;
  background-color: #7cc576;
  background-image: url(../img/checkbox-checked.svg);
  background-position: 40px 47%;
}

input[type="checkbox"].checkbox.checked + label.label a {
  color: #fff;
}

input[type="checkbox"].checkbox.checked + label.label .btn {
  display: none;
}

.check-item:nth-child(even)
  input[type="checkbox"].checkbox.checked
  + label.label {
  background-color: #6bb265;
}

.check-item .checkbox {
  position: absolute;
  left: 50px;
  top: 50%;
}

.check-item .label {
  white-space: normal;
  cursor: default;
  text-align: left;
  width: 100%;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 30px 80px 30px 105px;
  -moz-max-width: 540px;
  font-size: 21px;
  line-height: 26px;
  color: #3e3e3e;
  font-weight: normal;
  border-radius: 0;
  margin: 0;
}

.check-item .label a {
  color: #3e3e3e;
}

.check-item,
.tags li,
.visible {
  opacity: 1;
  height: auto;
  overflow: hidden;
  transition-timing-function: ease-in;
}

.check-item .more {
  font-size: 14px;
  line-height: 20px;
  display: block;
}

input[type="checkbox"].checkbox.checked + label.label .more {
  display: none;
}

.checklist-steps .panel-body {
  padding: 0;
}

.receipts > .receipt {
  display: inline-block;
  vertical-align: top;
  width: 300px;
  border: 1px solid #eaeaea;
  margin: 20px;
  padding: 15px;
  font-family: Andale Mono, monospace;
}

@media screen and (max-width: 767px) {
  .table-responsive > .table {
    width: auto !important;
  }
}

@media only screen and (max-width: 640px) {
  .checkbox {
    left: 30px;
  }

  input[type="checkbox"].checkbox + label.label {
    background-position: 30px 50%;
  }

  input[type="checkbox"].checkbox.checked + label.label {
    background-position: 30px 47%;
  }
}

@media only screen and (max-width: 480px) {
  .content {
    padding: 0 !important;
  }

  .check-item .more {
    font-size: 12px;
    line-height: 19px;
  }
  .check-item .label {
    font-size: 14px;
    line-height: 20px;
    padding: 25px 55px 25px 60px;
  }

  .check-item .checkbox {
    left: 17px;
  }

  input[type="checkbox"].checkbox + label.label {
    background-position: 17px 50%;
  }

  input[type="checkbox"].checkbox.checked + label.label {
    background-position: 17px 47%;
  }
}

.dropdown-notifications .dropdown-item {
  padding: 10px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
}

.btn {
  padding: 9px 26px;
}

.btn.btn-cta {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-decoration: none;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #0c64f2;
  box-shadow: 0 2px 4px 0 rgba(12, 100, 242, 0.36);
  font-size: 0.8em;
  text-transform: uppercase;
}
.btn.btn-cta span {
  font-size: 11px;
  font-weight: normal;
  text-transform: lowercase;
}

.btn.btn-empty {
  background-color: transparent;
  color: #528bff;
}

.btn.btn-cta:hover {
  color: #fff;
  background-color: #1f69ff;
  border-color: #1f69ff;
}

.br {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
}

.br-0 {
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

table tr.no-border td,
table tr.no-border th {
  border-top: 0;
}

/* Header */

header #navbarNav ul li {
  margin: 0 0.5em;
}
header .navbar-nav .active {
  font-weight: bold;
}

header .navbar-nav a.nav-link {
  color: #3b414b;
  font-size: 0.8em;
}

header .navbar-nav a.nav-link:hover {
  color: #528bff;
}

header .navbar-nav .active a.nav-link {
  color: #444;
}

header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

header + header {
  border-top: solid 1px #eee;
}

/* Banner */
.banner {
  background-color: transparent !important;
}
.serif {
  font-family: Times-Roman, serif;
}
.banner .banner__icon {
  width: 23px;
  height: 19px;
  object-fit: contain;
}

.ap-block.banner h1 {
  margin-top: 0;
}

.banner img {
  object-fit: cover;
  width: 100%;
}
/* / Banner */
/* / Header */

/* Footer */
footer {
  padding: 30px 0 !important;
}

footer.footer-large {
  padding: 100px 0 !important;
}

footer a {
  color: #444;
}
/* / Footer */

/* Block */
.section-header {
  opacity: 0.8;
  font-size: 0.8em;
  letter-spacing: 2.3px;
  height: 1.8rem;
}
.section-header::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 20px;
  background-color: #6d767e;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ap-block {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  padding: 60px 0;
  color: #444;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: #fff;
}

.ap-block .ap-box {
  background: #fff;
  color: #444;
  border-radius: 4px;
  border: solid 1px #1b98e0;
  overflow: hidden;
}

.ap-block .ap-box .row {
  padding: 40px;
}

.ap-block .ap-touch {
  /*border-top: solid 20px #1b98e0;*/
}

.ap-block img.features_image {
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}

.ap-block .text-h1,
.ap-block h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5em;
  margin-top: 0.3em;
  font-weight: 400;
}

.ap-block .text-h2,
.ap-block h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  margin-top: 0.3em;
  font-weight: 400;
}

.ap-block .text-h3,
.ap-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  margin-top: 0.3em;
  font-weight: 400;
}
.ap-block .text-h3.section-sub-title {
  font-size: 1.3em;
}

.ap-block .text-h4,
.ap-block h4 {
  font-size: 1rem;
  margin-bottom: 0.5em;
  margin-top: 0.3em;
  font-weight: 400;
}

.ap-block .text-h5,
.ap-block h5 {
  font-size: 0.9rem;
  margin-bottom: 0.5em;
  margin-top: 0.3em;
  font-weight: 400;
}

.ap-block .text-h6,
.ap-block h6 {
  font-size: 0.75rem;
  margin-bottom: 0.5em;
  margin-top: 0.3em;
  font-weight: 400;
}

.ap-block img {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.ap-block img + h3,
.ap-block img + h4,
.ap-block img + p {
  margin-top: 20px;
}

.ap-block img + h1,
.ap-block img + h2 {
  margin-top: 40px;
}

.ap-block img.ap-icon {
  width: auto;
  width: 60px;
}

.ap-block img.ap-icon-round {
  width: auto;
  width: 60px;
  border-radius: 60px;
  -moz-border-radius: 60px;
  -webkit-border-radius: 60px;
}

.ap-block .row-100 {
  height: 100px;
  width: 100%;
}

.ap-block .row-50 {
  height: 50px;
  width: 100%;
}

.ap-block .row-70 {
  height: 70px;
  width: 100%;
}

/*

.fdb-block.fdb-viewport {
  min-height: calc(100% - 2 * 100px)
}

.fdb-block.fdb-viewport .container {
  min-height: calc(100% - 2 * 100px)
}

.fdb-block.fdb-image-bg {
  color: #f2f2f2
}



.fdb-block .font-weight-light {
  font-weight: 300
}

.fdb-block img {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px
}

.fdb-block img+h3,
.fdb-block img+h4,
.fdb-block img+p {
  margin-top: 20px
}

.fdb-block img+h1,
.fdb-block img+h2 {
  margin-top: 40px
}

.fdb-block .col-fill-left {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1
}

.fdb-block .col-fill-left+div {
  position: relative;
  z-index: 2
}

.fdb-block .col-fill-right {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1
}

.fdb-block .col-fill-right+div {
  position: relative;
  z-index: 2
}


/ Block */

.blue-ribbon {
  background-color: rgba(26, 151, 223, 1);
  height: 16px;
  width: 100%;
  margin: 0;
  left: 0;
}

.prueba-gratis-por30 {
  width: auto;
  height: auto;
  padding-top: 2px;
  pointer-events: auto;
  position: relative;
  font-family: "Arial", Helvetica, Arial, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 10px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  letter-spacing: 2.5px;
  line-height: 11px;
}

.cta-link .svg-inline--fa {
  font-size: 0.7rem;
  padding-bottom: 0.1rem;
}

.media-container-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}
.media-container-row .media-size-item {
  width: 400px;
}

.media-container-column {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.media-container-column > * {
  width: 100%;
}

.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.card {
  border: none;
}
h4.card-title {
  font-size: 1.3rem;
  font-weight: normal;
  font-style: normal;
}
.card-img {
  text-align: inherit;
  width: auto;
  flex-shrink: 0;
  color: #1b98e0;
}
.mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.mbr-figure img,
.card-img img {
  width: 100%;
  display: block;
}
.block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}

/* Owl Nav */
.owl-nav {
  position: absolute;
  bottom: 0;
  display: flex;
  /*
display: flex;
align-items: flex-start;
flex-direction: row;*/
}

.owl-nav button {
  width: 54px;
  height: 60px;
  font-size: 2em !important;
  background-color: #d9e2ea !important;
  margin: 10px;
}
/* / Owl Nav */

/* Small devices (landscape phones, 576px and up */
@media (max-width: 576px) {
  .ap-block h1 {
    font-size: 1.75em;
    text-align: center;
  }
  .ap-block .text-h3 {
    text-align: center;
  }
  .banner .banner__icon {
    width: 100%;
  }
  .ap-block.banner p {
    text-align: center;
  }
  .card {
    text-align: center;
  }
  .mbr-figure {
    width: 100% !important;
    margin-bottom: 3em;
  }
}

/* Medium devices (tablets, 768px and up */
@media (max-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .media-container-row {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 0.25rem 0.5rem !important;
}

.btn > .fa {
  pointer-events: none;
}

.main-header .sidebar-toggle:before {
  content: "" !important;
}

.covid-btn {
  border: 1px solid #23ea23 !important;
  margin: 10px !important;
  border-radius: 5px;
  background: #eaffea;
}

.covid-btn:hover,
.covid-btn:active {
  background: #b9ffbb !important;
}

.pos-btn {
  border: 1px solid #23a1ea !important;
  margin: 10px !important;
  border-radius: 5px;
  background: #eaf6ff;
}

.pos-btn:hover,
.pos-btn:active {
  background: #bde3ff !important;
}


ul.pagination {
  display: flex;
  justify-content: space-around;
  box-shadow: none;
  border: 1px solid #eaeaea;
}

ul.pagination li {
  text-align: center;
  padding: 10px;
  cursor: pointer;
}

ul.pagination li:hover {
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.1);
}

ul.pagination li.active {
  color: #000000;
  background: #eaeaea;
}

.btn > .fal {
  pointer-events: none;
}

