/** Open Sans **/
/** Light */
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Light.woff2");
  font-style: light;
  font-display: swap;
}

/** Regular */
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Regular.woff2");
  font-style: regular;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-SemiBold.woff2");
  font-style: semibold;
  font-display: swap;
}

/** Bold */
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Bold.woff2");
  font-style: bold;
  font-display: swap;
}

/** Montserrat Alternates **/
/** Light */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 300;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Light.ttf");
  font-style: light;
  font-display: swap;
}

/** Regular */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Regular.ttf");
  font-style: regular;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 600;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-SemiBold.ttf");
  font-display: swap;
}

/** Bold */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 700;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Bold.ttf");
  font-style: bold;
  font-display: swap;
}

* {
  font-family: "Open Sans";
}

.montserrat {
  font-family: 'montserrat Alternates', sans-serif;
}

.openSans {
  font-family: 'Open Sans', sans-serif;
}

.montserratOriginal {
  font-family: 'montserrat', sans-serif;
}

.text {
  font-size: 1rem;
  font-weight: 400;
}

.text.title {
  font-size: 3.2rem;
}

.text.size-xxl {
  font-size: 4.5rem;
}

.text.size-xl2 {
  font-size: 3rem;
}

.text.size-xl {
  font-size: 2.5rem;
}

.text.size-l {
  font-size: 2.2rem;
}

.text.size-md2 {
  font-size: 2rem;
}

.text.size-md {
  font-size: 1.8rem;
}

.text.size-sm2 {
  font-size: 1.5rem;
}

.text.size-sm {
  font-size: 1.2rem;
}

.text.size-s {
  font-size: 1.1rem;
}

.text.size-xs {
  font-size: .8rem;
}

.text.semibold {
  font-weight: 600;
}

.text.bold {
  font-weight: 700;
}

.text.medium {
  font-weight: 500;
}

.text.light {
  font-weight: 400;
}

.text.capital {
  text-transform: capitalize;
}

.text.uppercase {
  text-transform: uppercase;
}

.text.italic {
  font-style: italic;
}

.text.underline {
  text-decoration: underline !important;
}

.text.through {
  text-decoration: line-through;
}

.text.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}

.text.elipsis-two-lines {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  max-height: 4rem;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2rem;
  margin-top: 1px;
}

.text.break-word {
  overflow-wrap: break-word;
}

.text.text-shadow {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.text.text-shadow-white {
  text-shadow: 3px 3px 3px rgba(255, 255, 255, 0.3);
}

.text.text-white {
  color: #fff;
}

.text.text-gray {
  color: #808080;
}

.text.text-darkGray {
  color: #707070;
}

.text.text-black {
  color: #000;
}

.text.text-red, .text.alert-error {
  color: #fa225b;
}

.text.text-blue {
  color: #7a89ab;
}

.text.text-green, .text.alert-success {
  color: #62A215;
}

.text.text-darkGreen {
  color: #053a05;
}

.text.text-classonlive-green {
  color: #62A215;
}

.text.text-classonlive-orange {
  color: #FF751A;
}

.text.text-classonlive-gray {
  color: #424e4f;
}

.text.text-blog-gray {
  color: #cccccc;
}

.text.center {
  text-align: center;
}

.text.left {
  text-align: left;
}

.text.right {
  text-align: right;
}

.modal .modal-dialog {
  max-width: 600px;
  margin: 30px auto;
  height: 100%;
  top: 2rem;
  min-width: 50%;
}

.modal .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-header .modal-title {
  width: 100%;
}

.modal .modal-header.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal .center {
  text-align: center;
}

.modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-footer .footer-input-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .modal .modal-footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
} */

.modal .modal-footer .btn {
  border: 0px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}

.modal .modal-footer .btn-orange {
  background: #FF751A;
}

.modal .modal-footer .btn-orange:hover {
  background: #f46200;
}

.modal .modal-footer .btn-outline-secondary {
  border: 1px solid transparent;
  border-color: #6c757d;
}

/*loader principal*/
#backg {
  background: #b0c4de repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: .5;
  height: 10000px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999990;
  width: 100px;
  height: 100px;
  margin: -75px 0 0 -75px;
  border: 16px solid #fff;
  border-radius: 50%;
  border-top: 16px solid #00de00;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

/*fin loader*/
.loader {
  background: white repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 1;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cssload-loader {
  z-index: 99999;
  display: block;
  height: 6em;
  width: 6em;
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background: -moz-linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background-blend-mode: multiply;
  border-top: 5px solid #B3B3B3;
  border-left: 5px solid #B3B3B3;
  border-bottom: 5px solid #CCCCCC;
  border-right: 5px solid #CCCCCC;
  animation: cssload-roto 1.15s infinite linear;
  -o-animation: cssload-roto 1.15s infinite linear;
  -ms-animation: cssload-roto 1.15s infinite linear;
  -webkit-animation: cssload-roto 1.15s infinite linear;
  -moz-animation: cssload-roto 1.15s infinite linear;
}

.cssload-loader.classonlive {
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background: -moz-linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background-blend-mode: multiply;
  border-top: 5px solid #00C900;
  border-left: 5px solid #00C900;
  border-bottom: 5px solid #01DE01;
  border-right: 5px solid #01DE01;
}

@keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
  }
}

.container-loader-square {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader-square {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 33% 33%;
      grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 80px;
  height: 80px;
  border: 0;
}

.loader-square > div {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #2c3e50;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: loaderSquare 2s infinite linear;
          animation: loaderSquare 2s infinite linear;
}

.loader-square > div:nth-of-type(1), .loader-square > div:nth-of-type(5), .loader-square > div:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loader-square > div:nth-of-type(4), .loader-square > div:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loader-square > div:nth-of-type(2), .loader-square > div:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loader-square > div:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

.calendar-container {
  position: relative;
}

.calendar-container .container-loader-square {
  position: absolute;
  top: 3%;
  left: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 97%;
}

@media (max-width: 767px) {
  .modal-dialog {
    width: calc(100% - 20px);
  }
}

ul, li, a {
  text-decoration: none !important;
  list-style: none;
}

.customText, .note-editor {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  width: 100%;
}

.customText ul, .note-editor ul {
  text-decoration: inherit !important;
  list-style: disc;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText ol, .note-editor ol {
  display: block;
  list-style-type: decimal;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText li, .note-editor li {
  display: list-item;
  text-align: -webkit-match-parent;
  text-decoration: inherit !important;
  list-style: inherit !important;
  padding: inherit !important;
  padding-left: 0 !important;
}

.note-toolbar {
  position: relative;
  z-index: inherit !important;
}

a {
  cursor: pointer;
}

.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}

p {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  font-family: sans-serif;
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
    height: auto;
  }
  html body {
    height: auto;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 10px;
  }
}

body.noscroll {
  overflow: hidden;
}

.btn-classonlive {
  background-color: #00bc00;
  border: 0px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  height: 50px;
}

.btn-classonlive:hover {
  background-color: #00de00;
  color: #fff;
  border: 0px;
}

.btn-orange {
  background: #FF751A;
}

.btn-orange:hover {
  background: #f46200;
}

.btn.btn-green {
  background: #62A215 !important;
  color: #fff;
}

.btn.btn-green:hover {
  opacity: .8;
}

.btn.btn-orange {
  background: #FF751A;
  color: #fff;
}

.btn.btn-orange:hover {
  opacity: .8 !important;
}

.btn.btn-line-green {
  background: #fff;
  color: #62A215;
  border: 2px solid #62A215;
}

.btn.btn-line-green:hover {
  background: #62A215;
  color: #fff;
}

.btn.btn-line-orange {
  background: #fff;
  color: #FF751A;
  border: 2px solid #FF751A;
}

.btn.btn-line-orange:hover {
  background: #FF751A;
  color: #fff;
}

.btn.btn-grey {
  color: #1b1d1e !important;
  background: #758789 !important;
  color: white !important;
}

.btn.btn-white {
  color: #1b1d1e !important;
  background: white !important;
  border: 1px solid #1b1d1e !important;
}

.btn.btn-white:hover {
  background: lightgray !important;
}

.panel-default > .panel-heading, .panel {
  background-color: #e6e6e6;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: initial !important;
  top: 35px !important;
}

.note-popover {
  display: none;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.note-editor.note-frame .note-editing-area .note-editable {
  padding: 10px;
  overflow: auto;
  color: #000;
  word-wrap: break-word;
  background-color: #fff;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

a {
  color: #808080;
}

a.active {
  font-weight: 700;
}

a:hover {
  color: #000;
}

.btn-free,
.btn-register {
  border: 2px solid #FF751A;
  border-radius: 8px;
  height: 35px;
  padding-left: 15px;
  padding-right: 15px;
  /*margin-left: 10px;
    margin-right: 15px;*/
  background-color: #FF751A;
  margin: 0 auto;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  cursor: pointer;
  -webkit-appearance: none;
}

.btn-free:hover,
.btn-register:hover {
  opacity: .8 !important;
  border: 2px solid #FF751A;
  color: white;
}

.btn-free:focus,
.btn-register:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn-register {
  border: 2px solid #62A215;
  background-color: #62A215;
}

.btn-register:hover {
  border: 2px solid #62A215;
}

.menu {
  color: #777;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  padding: 0.2em 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 600;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  /* Posicionamos la cabecera al lado izquierdo */
  top: 0;
  /* Posicionamos la cabecera pegada arriba */
  position: fixed;
  z-index: 20;
  width: 100%;
}

@media (max-width: 1024px) {
  .menu {
    display: none;
  }
}

.menu .link {
  margin: 10px;
  font-size: 1.5rem;
  color: #808080;
}

.menu .link.active {
  font-weight: 700;
}

.menu .logo_header {
  width: auto;
  height: 50px;
}

.menu .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 75%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu .link-container .link {
  color: #777;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin: 13px;
}

.menu .link-container .link:hover {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  text-decoration: none;
}

.menu .link-container .link.active {
  font-weight: 800;
  color: #62A215 !important;
}

.menu .link-container .iniciasesion {
  text-align: right;
}

.menu .link-container .iniciasesion a {
  margin: 1em;
  color: #777;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin: 13px;
}

.menu .link-container .iniciasesion a .icon {
  font-size: 1.5em;
  padding-right: 5px;
}

.menu .link-container .miPanelLink {
  margin: 1em;
}

.menuresponsive {
  display: none;
}

.menuresponsive .logo-menu {
  width: 40%;
}

.menuresponsive .logo-menu img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .menuresponsive {
    color: #777;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    padding: 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    left: 0;
    /* Posicionamos la cabecera al lado izquierdo */
    top: 0;
    /* Posicionamos la cabecera pegada arriba */
    position: fixed;
    z-index: 20;
    width: 100%;
  }
  .menuresponsive .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 1rem;
  }
  .menuresponsive .links .pruebagratis {
    margin-right: 1rem;
  }
}

.listmenu {
  display: none;
}

@media (max-width: 1024px) {
  .listmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1em;
    -webkit-transition: translateY 2s ease;
    transition: translateY 2s ease;
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
    background-color: #fff;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    left: 0px;
    top: 45px;
    position: fixed;
    z-index: 18;
    width: 100%;
  }
  .listmenu a {
    color: #777;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 13px;
  }
  .listmenu a:hover {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    text-decoration: none;
  }
  .listmenu div {
    margin: 10px;
  }
  .listmenu button {
    border: 1px solid #62A215;
    border-radius: 8px;
    font-size: 15px;
    height: 35px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 15px;
    background-color: #62A215;
  }
  .listmenu button a {
    color: #fff;
  }
  .listmenu.close {
    display: none;
    -webkit-transition: translateY 2s ease;
    transition: translateY 2s ease;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    /*transform: translateY(0%);
                transition: transform 340ms ease;*/
  }
}

@media (max-width: 400px) {
  .listmenu {
    top: 35px !important;
    max-height: 450px;
    overflow: scroll;
  }
}

@media (min-width: 401px) and (max-width: 800px) {
  .listmenu {
    top: 39px;
    max-height: 200px;
    overflow: scroll;
  }
}

.iconmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iconmenu .mdi {
  margin-right: 5px;
}

.btn-access {
  height: 35px;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #FF751A;
  border-radius: 8px;
  color: #FF751A;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
}

.btn-access:hover {
  background: #FF751A;
  color: white !important;
}

.miPanelOption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 2rem;
}

@media (max-width: 1024px) {
  .miPanelOption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.check-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}

.check-box .acceptTerminos {
  margin-right: 1rem;
}

.btn-green {
  background-color: #62A215;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  width: auto;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-green:hover {
  opacity: .8;
}

#register-modal .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

#menu-blog {
  width: 100%;
}

#menu-blog .search_main {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #333333;
  top: 0;
  width: 100%;
  z-index: 4;
  height: 50px;
  -webkit-box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.5);
}

#menu-blog .search_main .menu_icon {
  cursor: pointer;
}

/* #menu-blog .search_main.menu-fixed {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  width: 100%;
  height: 55px;
} */

#menu-blog .search_main .icon_bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#menu-blog .search_main .icon_bars a h1 {
  text-shadow: none;
}

#menu-blog .search_main .buscador {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#menu-blog .search_main .buscador input {
  color: #000;
  border-radius: 10px;
  width: 40%;
  background-color: #fff;
  border: none;
  padding: 0.2em 0em 0.2em 1.5em;
  margin: 0em 1em;
  outline: 0;
}

#menu-blog .search_main .buscador .mdi-magnify {
  cursor: pointer;
}

#menu-blog .menu_blog {
  background-color: #333333;
  padding-top: 1em;
  height: 100vh;
  position: fixed;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  width: 100%;
  left: 0;
  max-width: 245px;
}

#menu-blog .menu_blog.closed {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: translate(-100%, 0%);
          transform: translate(-100%, 0%);
}

#menu-blog .menu_blog .buscador {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#menu-blog .menu_blog .buscador input {
  color: #e5b121;
  border-radius: 10px;
  background-color: #fff;
  border: none;
  padding: 0.2em 0em 0.2em 1.5em;
  margin: 0em 1em;
  outline: 0;
}

#menu-blog .menu_blog .buscador input #editing-view-port {
  color: #000;
}

#menu-blog .menu_blog .buscador .searchInput {
  cursor: pointer;
}

#menu-blog .menu_blog .buscador span {
  color: #fff;
}

#menu-blog .menu_blog .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #333333;
  padding: .1vh 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.3vh;
}

#menu-blog .menu_blog .list:hover {
  background-color: #232930;
}

#menu-blog .menu_blog .list .icon_menu {
  width: 15px;
  margin-right: 10%;
  height: 50px;
}

#menu-blog .menu_blog .list .icon_menu.categoria1 {
  background-color: #d9e021;
}

#menu-blog .menu_blog .list .icon_menu.categoria2 {
  background-color: #fbb03b;
}

#menu-blog .menu_blog .list .icon_menu.categoria3 {
  background-color: #00a99d;
}

#menu-blog .menu_blog .list .icon_menu.categoria4 {
  background-color: #ed1e79;
}

#menu-blog .menu_blog .list .icon_menu.categoria5 {
  background-color: #8cc63f;
}

#menu-blog .menu_blog .list .icon_menu.categoriapost {
  background-color: #cccccc;
}

#menu-blog .menu_blog .RRSS {
  color: #fff;
  margin-top: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#menu-blog .menu_blog .RRSS .icon_rrss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 0.5vh;
}

#menu-blog .menu_blog .RRSS .icon_rrss i:hover {
  color: #00bc00;
}

#menu-blog .menu_blog .contacto {
  color: #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 70px;
}

@media screen and (max-width: 480px) {
  #menu-blog .menu_blog {
    max-width: 200px !important;
    z-index: 10;
  }
  #menu-blog .menu_blog .RRSS .icon_rrss {
    font-size: 25px !important;
  }
  #menu-blog .search_main input {
    position: inherit;
  }
}

@media screen and (min-device-width: 40px) and (max-device-width: 800px) {
  #menu-blog .menu_blog {
    max-width: 195px !important;
    z-index: 10;
  }
  #menu-blog .menu_blog .RRSS .icon_rrss {
    font-size: 28px !important;
  }
}

.space_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

p {
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5 {
  margin-top: 20px;
}

.padding_banner {
  padding: 5vw;
}

.title_category {
  font-weight: bold;
  font-size: 18px;
}

.title_category.categoria1 {
  color: #d9e021;
}

.title_category.categoria2 {
  color: #fbb03b;
}

.title_category.categoria3 {
  color: #00a99d;
}

.title_category.categoria4 {
  color: #ed1e79;
}

.title_category.categoria5 {
  color: #8cc63f;
}

.banner.background_post {
  background-image: url(/images/new/arteCultura2.jpg);
}

.banner.background_post .mask_top.dark {
  background-color: #353333b0;
}

.banner.background_post .line_post .data_name.white {
  color: #fff;
}

.banner.background_post .title_main_post {
  font-size: 30px;
  color: #fff;
  width: 70vw;
  margin: 1vh;
  text-align: center;
  line-height: 40px;
}

.banner.background_post .comillas {
  font-size: 110px;
  position: relative;
  top: 52px;
}

.text_content_post {
  margin: 5vw 10vw;
  text-align: justify;
  border-bottom: 1px solid #d8d4d4 !important;
  padding-bottom: 10vh;
  overflow: hidden;
}

.text_content_post P.first:first-letter {
  font-size: 200%;
}

.text_content_post .img_post {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10vh 0;
}

.text_content_post .img_post img {
  width: auto;
}

.promotional-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.promotional-container .promotional-btn {
  width: 100%;
  min-height: 144px;
  padding: 20px;
  background: #62C940;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.promotional-container .promotional-btn.blue {
  background: #137AD4;
}

.footer_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5vh 10vw;
}

.footer_post .post_back {
  width: calc(100vw/4);
  cursor: pointer;
}

.footer_post .post_back .title_main_post {
  font-size: 25px;
  padding: 20px 0;
  color: #4e4a4a;
}

.footer_post .back {
  width: calc(100vw/4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.footer_post .back a {
  font-size: 100px;
  color: #d8d4d4;
}

.footer_post .next {
  width: calc(100vw/4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.footer_post .next a {
  font-size: 100px;
  color: #d8d4d4;
}

.footer_post .post_next {
  width: calc(100vw/4);
  cursor: pointer;
}

.footer_post .post_next .title_main_post {
  font-size: 25px;
  padding: 20px 0;
  color: #4e4a4a;
}

@media (max-width: 1024px) {
  .content_main img {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .content_main img {
    width: 100% !important;
  }
  .text_content_post {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .text {
    font-size: 1.4rem;
  }
  .text.size-xs {
    font-size: 1.2rem;
  }
}

.hidden-xs {
  display: block;
}

.visible-xs {
  display: none;
}

.hidden-sm {
  display: none;
}

.hidden {
  display: none;
}

button {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
  .hidden-sm {
    display: inline !important;
  }
}

.btn:not(.navigation-button),
.btn-dark {
  background-color: #333333;
  border: 0px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  height: 50px;
}

.btn:focus, .btn-dark:focus {
  outline: none;
}

.subsBtn {
  margin: 20px 0;
}

.pointer {
  cursor: pointer;
}

.content_main {
  width: calc(100% - 245px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  -webkit-transition: all 390ms ease-in-out;
  transition: all 390ms ease-in-out;
  top: 3.5rem;
}

.content_main.closed {
  width: calc(100%);
  -webkit-transition: all 229ms ease-in-out;
  transition: all 229ms ease-in-out;
}

.content_main .banner {
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.content_main .banner .mask_top {
  max-height: 100%;
  width: 100%;
  height: 100%;
  background-color: #f5f0f0b0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.content_main .banner .text_banner {
  position: relative;
  z-index: 2;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content_main .banner .text_banner img {
  width: 5vw;
  margin-bottom: 20px;
}

.content_main .banner .text_banner .formulario_registro {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.content_main .banner .text_banner .formulario_registro .form-group input {
  width: 30vw;
  border: 0;
  color: #333333;
  background-color: transparent;
  border-bottom: 1px solid #333333 !important;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.content_main .banner .text_banner .formulario_registro .form-group input:focus {
  outline: 0;
}

.content_main .banner .text_banner .formulario_registro .form-group input::-webkit-input-placeholder {
  color: #333333;
  text-align: center;
}

.content_main .banner .text_banner .formulario_registro .form-group input:active {
  background: transparent;
  text-align: center !important;
}

.content_main .banner .text_banner .formulario_registro .terms, .content_main .banner .text_banner .formulario_registro .publiCheck,
.content_main .banner .text_banner .formulario_registro .poli {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.content_main .banner .text_banner .formulario_registro .terms input, .content_main .banner .text_banner .formulario_registro .publiCheck input,
.content_main .banner .text_banner .formulario_registro .poli input {
  margin-right: 10px;
}

.content_main .banner .text_banner .formulario_registro .terms p, .content_main .banner .text_banner .formulario_registro .publiCheck p,
.content_main .banner .text_banner .formulario_registro .poli p {
  margin: 0;
}

.content_main .line_post {
  border-bottom: 4px  solid !important;
  width: 100%;
}

.content_main .line_post.categoria1 {
  border-color: #d9e021 !important;
}

.content_main .line_post.categoria2 {
  border-color: #fbb03b !important;
}

.content_main .line_post.categoria3 {
  border-color: #00a99d !important;
}

.content_main .line_post.categoria4 {
  border-color: #ed1e79 !important;
}

.content_main .line_post.categoria5 {
  border-color: #8cc63f !important;
}

.content_main .btn_ver {
  border: 1px solid #FF751A !important;
  border-radius: 5px;
  background-color: #fff;
  margin: 6px 0;
}

.content_main .btn_ver a {
  color: #FF751A;
}

.content_main .btn_ver a:hover {
  color: #fff;
}

.content_main .btn_ver:hover {
  color: #fff;
  background-color: #FF751A;
}

.content_main .btnVerMas {
  display: inline-block;
  text-align: center;
  margin: 50px;
}

.content_main .btnVerMas button {
  background-color: #00bc00;
  border: 0px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  height: 50px;
  width: 150px;
}

.content_main .btnVerMas button:focus {
  outline: none;
}

.content_main .last_post {
  padding: 0 45px;
  margin: 5vh 0;
}

.content_main .last_post .content_last_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

.content_main .last_post .content_last_post .text_post {
  width: 40%;
}

.content_main .last_post .content_last_post .img_post {
  width: 60vw;
  height: 20vw;
  margin: 20px 0px 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 5vw;
}

.content_main .post_view_general {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.content_main .post_view_general .post_small {
  width: calc(100vw/3.5);
  height: 455px;
  padding: 1vw;
  margin-top: 20px;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
}

.content_main .post_view_general .post_small .img_post {
  width: 100%;
  height: 165px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 20px;
}

.content_main .post_view_general .post_small .text_post {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer .credits_footer {
  width: 100%;
  display: inline-block;
  text-align: center;
}

#footer .credits_footer a {
  color: #00bc00;
  font-weight: normal;
}

#footer .credits_footer h6 {
  border-top: 1px solid #a7a1a1 !important;
  padding-top: 5px;
  color: #a7a1a1;
  margin: 15px;
}

#footer .credits_footer h5 {
  margin: 20px;
}

.subsBtn {
  background-color: #333333;
}

.terms, .publiCheck, .poli {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}

.terms:first-child, .publiCheck:first-child {
  margin-top: 20px;
}

.terms input,
.poli input,
.publiCheck input {
  margin-right: 10px;
}

.terms span, .publiCheck span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 480px) {
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  ::-webkit-scrollbar-thumb {
    -webkit-box-shadow: none;
  }
  .content_main {
    width: 100%;
  }
  .content_main .banner .text_banner img {
    width: 10vh;
  }
  .content_main .banner .text_banner .formulario_registro {
    width: 100%;
  }
  .content_main .banner .text_banner .formulario_registro .form-group input {
    width: 100%;
  }
  .content_main .banner .text_banner .title_main_post {
    font-size: 20px;
    margin: 20px;
    width: auto;
    line-height: 36px;
  }
  .content_main .inicia_tu_prueba .form_pruebagratis {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content_main .inicia_tu_prueba .form_pruebagratis .input_email input {
    width: 100%;
  }
}

@media screen and (min-device-width: 40px) and (max-device-width: 800px) {
  .content_main {
    width: 100%;
  }
  .content_main.closed {
    width: calc(100%) !important;
    -webkit-transition: all 229ms ease-in-out;
    transition: all 229ms ease-in-out;
  }
  .content_main .banner .text_banner .formulario_registro {
    width: 100%;
  }
  .content_main .banner .text_banner .title_main_post {
    font-size: 25px;
    margin: 20px;
    width: auto;
    line-height: 30px;
  }
  .content_main .footer_post .next {
    width: calc(100vw/2);
  }
  .content_main .footer_post .back {
    width: calc(100vw/2);
  }
  .content_main .last_post {
    padding: 0 15px;
  }
  .content_main .last_post .content_last_post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .content_main .last_post .content_last_post .text_post {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content_main .last_post .content_last_post .img_post {
    width: 100%;
    margin-left: 0;
  }
  .content_main .post_view_general .post_small {
    width: 100%;
    padding: 0 15px;
    height: auto;
  }
  .content_main .post_view_general .post_small .text_post {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .btnVerMas {
    display: inline-block;
    text-align: center;
  }
}

.text_content_post a {
  color: #0000ff;
}

/* NEW */
.menu-blog {
  position: fixed;
  width: 100%;
  z-index: 15;
}

.post_view_general .text_post .description {
  display: none !important;
}

.post_view_general .text_post .title_big  {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
}

#cookies-message {
    display: block;
    background-color: #E6E6E6;
    border-top: 1px solid #ECECEC;
    position: fixed;
    height: auto;
    overflow: hidden;
    z-index: 1002;
    -webkit-transition: left 0.4s cubic-bezier(0.94, 0.06, 0.32, 0.95) 0s;
    transition: left 0.4s cubic-bezier(0.94, 0.06, 0.32, 0.95) 0s;
    bottom: 0;
    width: 100vw;
}

#cookies-message .cookies-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    padding: 1.25rem;
}

#cookies-message .cookies-content p a {
    color: #1b1d1e;
    font-weight: 600;
    text-decoration: underline;
}

#cookies-message .cookies-content p,
#cookies-message .cookies-content button {
    display: inline-block;
}

#cookies-message .cookies-content p {
    margin: 0;
    padding: 0;
    text-align: justify;
}

#cookies-message .cookies-content .btn-cookies-bar {
    height: 35px;
    background-color: #373c4a;
    color: #fff;
}