:root {
  --primary: #2458e2;
  --secondary: ##2862fb;
  --tertiary: #bccefe;
  --cuaternary: #204ec92;
  --quinary: #183b97;
  --senary: #0e2258;
  --septenary: #333333;
  --octanary: #666666;
  --nonary: #262626;
  --denary: lightgray;
  --elevenary: #EEF3FF;
  --twelvenary: #F9FBFF;
}

::selection {
  background: var(--tertiary);
  color: var(--nonary);
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
  box-shadow: 0 0 0 0rem rgb(0 0 0 / 0%) !important;
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus {
  outline-offset: 0px;
}

btn:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

/* FOCUS FLICKITY */

:focus {
  outline: none;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
}

.smmoth {
  scroll-behavior: smooth;
  overflow: hidden;
  display: flex;
  height: 200px;
  flex-direction: column;
  border: 1px solid #ffffff;
  border-radius: 0.25em;
}

body {
  font-family: 'Roboto';
  font-size: 1rem;
}

.form-control:focus {
  background: none;
  border: none;
}

/* - */

/* Select */

.select2-container--default .select2-selection--single {
  border: none;
  background: VAR(--elevenary);
}

.select2-dropdown {
  border: none;
  background: var(--elevenary);
  overflow: hidden;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: solid 2px var(--tertiary);
  border-radius: 10px;
  padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--primary);
  font-weight: bold;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--tertiary);
  color: var(--primary);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: white;
  color: var(--primary);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--primary) transparent transparent transparent !important;
  border-width: 7px 6px 0 6px;
  left: 25%;
  top: 75%;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--primary) transparent !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--secondary);
}

.select2-container--default {
  width: 100% !important;
}

.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
}

/* - */

button {
  padding: 0;
  border: none;
  background: transparent;
}

.btn {
  border: none;
}

:not(.btn-check) + .btn:active {
  border: none !important;
}

.shadow {
  box-shadow: 0px 4px 10px rgba(40, 98, 251, 0.15) !important;
  /*position: relative;*/
}

.shadow-xl {
  box-shadow: 0px 0px 20px rgba(40, 98, 251, 0.15) !important;
}

/* -Flickity */

.flickity-prev-next-button.previous {
  left: 30px;
}

.flickity-prev-next-button.next {
  right: 30px;
}

.flickity-button {
  background: var(--primary);
}

.flickity-button:hover {
  background: var(--quinary);
}

.flickity-prev-next-button .flickity-button-icon {
  color: var(--elevenary);
}

.flickity-page-dots {
  bottom: 10px;
}

.flickity-page-dots .dot {
  border-radius: 0;
  background: var(--tertiary);
  margin: 0;
  height: 5px;
  width: 25px;
  opacity: .8;
}

.flickity-page-dots .dot.is-selected {
  background: var(--primary);
}

/* Animatión */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes blur {
  to {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}

.blur {
  -moz-transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-animation: blur 0.3s linear forwards;
  -moz-animation: blur 0.3s linear forwards;
  -ms-animation: blur 0.3s linear forwards;
  animation: blur 0.3s linear forwards;
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  animation-delay: .2s;
  filter: blur(5px);
}

@keyframes line-animated {
  0% {
    top: -70%;
  }
  100% {
    top: 100%;
  }
}

/* Fancybox */

.fancybox-is-open .fancybox-bg {
  background: rgba(0,0,0,1);
}

.fancybox-progress {
  background: var(--primary) !important;
}

.fancybox-infobar {
  color: rgba(255,255,255,.8) !important;
}

.fancybox-button {
  background-color: var(--primary) !important;
  color: white !important;
  transition: .3s ease;
}

.fancybox-button:hover {
  background-color: var(--cuaternary) !important;
}

.fancybox-thumbs {
  background: black;
}

.fancybox-thumbs__list a::before {
  border: 6px solid var(--primary) !important;
}

.fancybox-infobar {
  color: white !important;
  mix-blend-mode: inherit;
}

.fancybox-caption {
  background: transparent;
}

.fancybox-navigation .fancybox-button {
  width: 40px;
  height: 40px;
  margin: 10px;
}

.fancybox-button--arrow_left, .fancybox-button--arrow_right {
  padding: inherit !important;
  border-radius: 50%;
}

/* Framework */

.sticky {
  z-index: 2;
  top: 60px;
}

.hidden {
  overflow: hidden;
}

.fnt-montserrat {
  font-family: 'Montserrat';
  font-style: normal;
  line-height: normal;
}

.fnt-roboto {
  font-family: 'Roboto';
  font-style: normal;
  line-height: normal;
}

.fnt-white {
  color: white;
}

.fnt-blue {
  color: var(--primary);
}

.fnt-gray {
  color: var(--octanary);
}

.ls-1 {
  letter-spacing: 1px;
}

.fnt-1 {
  font-size: 1rem;
}

.fnt-1-02 {
  font-size: 1.2rem;
}

.fnt-1-04 {
  font-size: 1.4rem;
}

.fnt-1-06 {
  font-size: 1.6rem;
}

.fnt-1-08 {
  font-size: 1.8rem;
}

.fnt-06 {
  font-size: .6rem;
}

.fnt-08 {
  font-size: .8rem;
}

.fnt-2 {
  font-size: 2rem;
}

.fnt-2-06 {
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .fnt-2-06 {
    font-size: 2.6rem;
  }
}

.fnt-uppercase {
  text-transform: uppercase;
}

.btn-blue a {
  display: block;
  background: var(--primary);
  color: white;
  font-weight: 500;
  padding: 5px 30px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  transition: .3s;
  white-space: nowrap;
}

.btn-blue a:hover {
  background: var(--quinary);
}

.btn-gray a {
  display: block;
  background: var(--elevenary);
  color: var(--primary);
  font-weight: 600;
  padding: 5px 30px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  white-space: nowrap;
}

.btn-gray a:hover {
  background: var(--tertiary);
}

.bg-blue {
  background: var(--tertiary);
}

.bg-light {
  background: var(--twelvenary) !important;
}

.bg-lightblue {
  background: var(--elevenary);
}

.bg-lightgray {
  background: #f6f6f6;
}

.link-white {
  color: white;
  text-decoration: none;
  transition: .3s;
}

.link-white:hover {
  color: var(--tertiary);
}

.link-black {
  color: var(--septenary);
  text-decoration: none;
  transition: .3s;
}

.link-black:hover {
  color: var(--quinary);
}

.link-darkblue {
  text-decoration: none;
  color: var(--quinary);
  transition: .3s;
}

.link-darkblue:hover {
  color: var(--senary);
}

hr {
  border-color: var(--tertiary);
}

.rounded-15 {
  border-radius: 15px;
}

.rounded-top-15 {
  border-radius: 15px 15px 0 0;
}

.rounded-bottom-15 {
  border-radius: 0 0 15px 15px;
}

.title-primary {
  font-size: calc(1.4rem + .1vw);
  line-height: normal;
}

@media (min-width: 768px) {
  .title-primary {
    font-size: calc(1.8rem + .1vw);
  }
}

.title-secondary {
  font-size: calc(1.2rem + .1vw);
  line-height: normal;
}

@media (min-width: 768px) {
  .title-secondary {
    font-size: calc(1.2rem + .1vw);
    line-height: normal;
  }
}

.title-tertiary {
  font-size: calc(1.1rem + .1vw);
}

.title-cuaternary {
  font-size: calc(.9rem + .2vw);
}

@media (min-width: 768px) {
  .title-cuaternary {
    font-size: calc(1rem + .1vw);
  }
}

.subtitle-primary {
  font-size: calc(1.2rem + .1vw);
  line-height: normal;
}

@media (min-width: 768px) {
  .subtitle-primary {
    font-size: calc(1.6rem + .1vw);
  }
}

.subtitle-secondary {
  font-size: calc(.9rem + .1vw);
  line-height: normal;
}

@media (min-width: 768px) {
  .subtitle-secondary {
    font-size: calc(1rem + .1vw);
  }
}

.fnt-bold {
  font-weight: 600;
}

.fnt-bolder {
  font-weight: 800;
}

.txt-limit-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.txt-limit-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.txt-limit-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.txt-limit-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.txt-limit-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

/* Styeless */

.menu-desktop ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 9;
}

.menu-desktop ul li ul {
  display: none;
}

.menu-desktop ul li a {
  display: flex;
  position: relative;
  margin: 0 10px;
  padding: 3px 0;
  text-decoration: none;
  transition: .3s;
  color: var(--septenary);
  font-weight: 800;
}

.menu-desktop ul li a:hover {
  color: var(--primary);
  text-decoration: none;
}

.menu-desktop ul li a:hover + ul {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.menu-desktop ul li a:hover + ul, .menu-desktop ul li ul:hover {
  display: flex;
  position: absolute;
  padding: 10px;
  background: white;
  flex-direction: column;
  top: 30px;
}

.menu-desktop .menu-item {
  position: relative;
  background-color: transparent;
  white-space: nowrap;
}

.menu-desktop .menu-item .sub-menu {
  padding: 10px 20px;
  background: rgba(255 255 255 / 97%);
  border-bottom: 1px solid white;
  box-shadow: 0px 2px 10px 0px rgba(40, 98, 251, 0.15);
  border-radius: 5px;
}

.menu-desktop .menu-item-has-children {
  margin-right: 15px;
}

.menu-desktop .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 3px;
  color: var(--primary);
  right: -3px;
  cursor: pointer;
  width: 10px;
  height: 10px;
}

.menu-desktop .menu-item .sub-menu a {
  font-weight: normal;
}

.menu-desktop .menu-item.active a {
  color: var(--primary);
}

/* - */

/* menu mobile */

.menu-mobile ul {
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-mobile ul li {
  margin: 5px 0;
  position: relative;
}

.menu-mobile ul li ul {
  display: none;
  text-align: center;
}

.menu-mobile a {
  font-size: 18px;
  color: var(--nonary);
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}

.menu-mobile a:hover {
  color: var(--primary);
  text-decoration: none;
}

.menu-mobile ul li a:hover + ul, .menu-mobile ul li ul:hover {
  display: none;
  position: relative;
}

.menu-mobile .sub-menu .menu-item {
  margin: 5px 0;
}

.menu-mobile .sub-menu a {
  font-size: 1em;
  color: var(--nonary);
  padding: 5px 0;
  font-weight: normal;
}

.menu-mobile .sub-menu .menu-item a:hover {
  background-size: 0% 2px;
  color: var(--primary);
}

.menu-mobile .sub-menu .menu-item:first-child {
  padding: 5px 0 0 0;
}

.menu-mobile .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 2px;
  left: -14px;
  font-weight: normal;
  width: 10px;
  height: 10px;
  color: var(--primary);
}

/* menu submenu */

.submenu ul {
  list-style: none;
  padding: 0;
}

.submenu ul li {
  margin: 5px 10px;
}

.submenu a {
  font-size: .9rem;
  font-weight: bold;
  color: var(--septenary);
  text-decoration: none;
  transition: .3s ease;
  text-transform: uppercase;
}

.submenu a:hover {
  color: var(--primary);
}

/* search */

#search > * {
  margin: auto;
}

#search {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9997;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

#search.open {
  opacity: 1;
  visibility: visible;
}

#search .efect-navigation {
  height: 100%;
  padding: 0;
  overflow: auto;
}

@media (min-width: 768px) {
  #search .efect-navigation {
    height: 100%;
    padding: 30px 60px 30px 60px;
  }
}

#search .efect-navigation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all -0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 30px 0;
}

#search.open .efect-navigation {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#close-search {
  background: var(--primary);
  border-radius: 50%;
}

/* - */

.social-media a {
  display: block;
  width: 35px;
  height: 35px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: .3s;
}

.social-media a:hover {
  background: var(--quinary);
}

#date-mobile, #date {
  font-size: .9rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: bold;
}

#hour-mobile, #hour {
  font-size: .9rem;
  color: var(--septenary);
  text-transform: uppercase;
  font-weight: bold;
}

.hrs {
  font-size: .9rem;
  color: var(--septenary);
  text-transform: uppercase;
  font-weight: bold;
}

#btn-notification {
  position: relative;
}

.dot-notification {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  top: 5px;
  right: 8px;
}

header {
  background: rgba(255 255 255 / 100%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: .6s ease;
  position: relative;
  z-index: 99;
}

#header {
  background: rgba(255 255 255 / 100%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid white;
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  transition: .6s ease;
  z-index: 99;
}

header.active, #header.active {
  background: rgba(255 255 255 / 80%);
}

#header.nav-down {
  top: 0;
}

#header.nav-up {
  top: -55px;
}

@media (min-width: 992px) {
  #header.nav-up {
    top: 0;
  }
}

#notification {
  position: relative;
}

#box-notification {
  position: absolute;
  left: 0;
  top: 65px;
  height: auto;
  padding: 15px;
  border-radius: 15px;
  display: none;
  min-width: 100%;
  width: 320px;
  background: rgba(255 255 255 / 98%);
  border-bottom: 1px solid white;
  box-shadow: 0px 0px 10px rgba(40, 98, 251, 0.25);
}

#box-notification.open {
  display: block;
}

#close-notification {
  width: 25px;
  height: 25px;
  background: var(--primary);
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 50%;
  cursor: pointer;
}

.tooltips {
  position: relative;
}

.tooltips .tooltiptext {
  visibility: hidden;
  width: 130px;
  color: white;
  text-align: center;
  border-radius: 20px;
  padding: 5px 0;
  position: absolute;
  z-index: 99;
  top: 125%;
  bottom: inherit;
  left: calc(50% - 65px);
  opacity: 0;
  transition: opacity 0.3s;
  background: var(--nonary);
  font-size: .9rem;
}

.tooltips .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--nonary) transparent;
}

.tooltips:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.btn-nav {
  cursor: pointer;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  overflow: hidden auto;
  width: 95%;
  z-index: 999;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

@media (min-width: 768px) {
  #navigation {
    width: 650px;
  }
}

#navigation.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition-timing-function: ease, ease;
}

#navigation .efect-navigation {
  height: 100%;
  padding: 30px;
  overflow: auto;
}

@media (min-width: 768px) {
  #navigation .efect-navigation {
    padding: 30px 60px;
  }
}

#navigation.open .efect-navigation {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

#bloker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(188 206 254 / .5);
  z-index: 998;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
}

#bloker.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}

#navigation .efect-navigation {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  position: relative;
  height: 100%;
  padding: 30px;
  overflow: auto;
}

.close {
  width: 35px;
  height: 35px;
  background: var(--primary);
  display: flex;
  border-radius: 50%;
  transition: .3s;
}

.close:hover {
  background: var(--quinary);
}

.forms, .form-fields {
  background: white;
  border-radius: 10px;
  border: solid 2px var(--tertiary);
  position: relative;
}

.forms input, .form-fields input {
  border: none;
  background: transparent;
}

#up {
  position: fixed;
  right: 12px;
  bottom: -60px;
  transition: .3s ease;
  z-index: 99;
}

@media (min-width: 768px) {
  #up {
    right: 30px;
  }
}

#up.active {
  bottom: 15px;
}

@media (min-width: 768px) {
  #up.active {
    bottom: 55px;
  }
}

#up a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0px 3px 10px rgba(40, 98, 251, 0.35);
  color: white;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

@media (min-width: 768px) {
  #up a {
    width: 50px;
    height: 50px;
  }
}

#up a:hover {
  background: var(--quinary);
}

#magazine {
  position: fixed;
  bottom: -170px;
  left: 30px;
  background: rgba(255 255 255 / 70%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid white;
  box-shadow: 0px 0px 10px rgba(40, 98, 251, 0.35);
  border-radius: 10px 10px 0 0;
  height: 170px;
  transition: .3s ease;
  z-index: 9;
}

@media (min-width: 768px) {
  #magazine {
    left: 100px;
  }
}

#magazine img {
  box-shadow: 0px 0px 10px rgba(40, 98, 251, 0.15);
}

#magazine.open {
  bottom: 0px;
}

#disguise-magazine {
  position: absolute;
  top: -20px;
  right: 15px;
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#disguise-magazine img {
  transform: rotate(180deg);
  transition: .3s;
}

#disguise-magazine.open img {
  transform: rotate(0deg);
}

.superbanner {
  min-width: 320px;
  min-height: 50px;
  width: 970px;
  height: 50px;
}

@media (min-width: 768px) {
  .superbanner {
    height: 90px;
  }
}

.boxbanner {
  min-width: 300px;
  min-height: 250px;
  width: 300px;
  height: 250px;
}

.headline h2 {
  font-weight: 800;
}

.halfbanner {
  min-width: 300px;
  min-height: 250px;
  width: 300px;
  height: 600px;
}

.aspect {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
}

.aspect img {
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.aspect-4-4 {
  padding-top: 100%;
}

.aspect-4-3 {
  padding-top: 75%;
}

.aspect-2-3 {
  padding-top: 66.67%;
}

.aspect-16-9 {
  padding-top: 56.25%;
}

.aspect-vertical {
  padding-top: 175%;
}

.aspect-gallery {
  padding-top: 150%;
}

@media (min-width: 768px) {
  .aspect-gallery {
    padding-top: 75%;
  }
}

@media (min-width: 992px) {
  .aspect-gallery {
    padding-top: 56.2%;
  }
}

.category a {
  background: var(--primary);
  color: white;
  text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  padding: 3px 15px 1px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 600;
  transition: .3s;
  display: block;
  box-shadow: 0px 2px 4px 0px rgba(40, 98, 251, 0.15);
}

.category a:hover {
  background: var(--quinary);
}

.author a {
  color: var(--primary);
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  display: block;
}

.author a:hover {
  color: var(--septenary);
}

.author-white a {
  color: var(--tertiary);
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  display: block;
}

.author-white a:hover {
  color: var(--primary);
}

.date {
  color: var(--octanary);
  font-size: 12px;
  font-weight: 600;
}

.date-white {
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.paragraph {
  color: var(--octanary);
  font-size: .9rem;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 1200px) {
  .scrolling-wrapper {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.recomended {
  border: solid 2px var(--primary);
  border-radius: 15px;
  color: var(--primary);
  padding: 0 10px;
  width: max-content;
  font-size: 12px;
  font-weight: 600;
}

.animation-line {
  width: 5px;
  height: 30px;
  position: relative;
  overflow: hidden;
  background-color: var(--tertiary);
}

.animation-line::before {
  content: "";
  position: absolute;
  left: 0;
  height: 70%;
  width: 5px;
  background-color: var(--primary);
  -webkit-animation: line-animated 1s ease infinite;
  -moz-animation: line-animated 1s ease infinite;
  animation: line-animated 1s ease infinite;
}

.btn-plus {
  width: 35px;
  height: 35px;
  background: var(--primary);
  border-radius: 30px;
  transition: .3s;
}

.btn-plus:hover {
  background: var(--quinary);
}

.post picture:hover img {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: .4s ease;
}

.post picture:hover img {
  -moz-transform: scale(1.04, 1.04);
  -ms-transform: scale(1.04, 1.04);
  transform: scale(1.04, 1.04);
}

.gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(180deg,rgba(9 25 48 / 0%) 10%,rgba(9 25 48 / 90%) 100%);
  z-index: 1;
  transition: .3s;
  mix-blend-mode: multiply;
  opacity: 1;
}

.video:hover > .aspect .gradient:after {
  opacity: .6;
}

.gallery:hover > .aspect .gradient:after {
  opacity: .6;
}

.gallery {
  position: relative;
}

.content-gallery {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.content-gallery h2 {
  width: 100%;
}

@media (min-width: 992px) {
  .content-gallery h2 {
    width: 70%;
  }
}

.slider-gallery {
  border-radius: 10px !important;
  overflow: hidden;
  flex-wrap: nowrap;
}

.number {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Montserrat';
  color: #F9FBFF;
  text-shadow: 0 4px 6px rgba(40 98 251 / 20%);
}

.head-author {
  border-bottom: solid 2px var(--elevenary);
  border-radius: 15px 15px 0 0;
}

.feet-author {
  border-radius: 0 0 15px 15px;
}

.card-author {
  border-radius: 15px;
  border: solid 1px var(--elevenary);
  width: 100%;
}

.photo-author {
  width: 100px;
  margin-bottom: -35px;
  position: relative;
  z-index: 9;
}

.photo-author img {
  border-radius: 50%;
  border: solid 2px var(--elevenary);
}

.donation {
  padding: 10px;
  border: solid 3px var(--tertiary);
  border-radius: 10px;
  transition: .3s;
  cursor: pointer;
}

.donation:hover {
  border: solid 3px var(--primary);
  box-shadow: 0px 0px 5px 0px rgba(40, 98, 251, 0.25);
}

.donation.active {
  border: solid 3px var(--primary);
  box-shadow: 0px 0px 5px 0px rgba(40, 98, 251, 0.25);
}

.video {
  position: relative;
}

.content-video {
  position: absolute;
  bottom: 0;
  left: 0;
}

.scrolling-area {
  position: relative;
}

.gradient-right {
  width: 15%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  right: -14px;
  top: 0;
  z-index: 3;
}

.category-head {
  max-width: 700px;
}

.background-attachment {
  width: 100%;
  height: 120px;
  background-color: var(--twelvenary);
  position: absolute;
  padding: 15px 0px;
  z-index: 0;
}

.info-author {
  position: relative;
  z-index: 2;
}

.background-attachment-author {
  width: 100%;
  height: 150px;
  background-color: var(--twelvenary);
  position: absolute;
  padding: 15px 0px;
  z-index: 1;
}

.btn-post {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  white-space: nowrap;
  padding: 0 5px;
}

.btn-post:hover {
  color: var(--primary);
}

#btn-favorite button.select {
  color: var(--primary);
}

#btn-favorite button.select img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(71%) saturate(5712%) hue-rotate(219deg) brightness(90%) contrast(96%);
}

/* Single */

.single-content {
  font-family: 'Roboto';
  font-size: 1.1rem;
}

.single-content .wp-block-media-text__content p:first-of-type:first-letter {
  float: initial;
  font-size: initial;
  margin: initial;
  color: inherit;
}

.single-content p {
  padding: 0 30px;
  font-size: 1em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  color: var(--cuaternary);
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
  }
}

.single-content > :is(h1, h2, h3) {
  font-family: 'Jost';
  font-size: 1.6em;
  padding: 0 30px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.8em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 2em;
  }
}

.single-content > :is(h4, h5, h6) {
  font-size: 1.3em;
  font-family: 'Jost';
  padding: 0 30px;
  font-weight: 500;
  color: var(--primary);
}

@media (min-width: 768px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.4em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.5em;
  }
}

.single-content figure {
  padding: 0 10px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content figure {
    padding: 0;
  }
}

.single-content figure img {
  width: 100% !important;
  height: auto !important;
  margin: 0;
  -webkit-transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-animation: blur 0.3s linear forwards;
  -moz-animation: blur 0.3s linear forwards;
  -ms-animation: blur 0.3s linear forwards;
  animation: blur 0.3s linear forwards;
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .3s;
  animation-delay: .3s;
  filter: blur(5px);
  border-radius: 10px;
  margin-bottom: 5px;
}

.single-content ul {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ul {
    padding: 0 30px 0 65px;
  }
}

.single-content ul li {
  position: relative;
  display: block;
  padding: 2px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-weight: 400;
  line-height: 28px;
  border-radius: 20px;
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 100%;
}

.single-content ol {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ol {
    padding: 0 30px 0 65px;
  }
}

.single-content ol li:hover {
  background: white;
}

.single-content ol li {
  position: relative;
  display: block;
  padding: 2px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-weight: 400;
  line-height: 28px;
  counter-increment: my-awesome-counter;
  border-radius: 20px;
}

.single-content ol li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 15px;
}

.single-content .table-hover tbody tr {
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 2px var(--primary);
}

.single-content .table-hover tbody tr:hover {
  color: #212529;
  background-color: #fcf0fc;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: var(--primary);
}

.single-content .table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 2px var(--primary);
}

.single-content .table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: #fcf0fc;
  transition: .3s;
}

.single-content table {
  color: var(--primary);
  margin-bottom: 30px;
}

.single-content table thead {
  border-bottom: solid 4px var(--primary);
  color: var(--primary);
}

.single-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .single-content .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.table > :not(caption) > * > * {
  box-shadow: none;
}

.single-content .blockquote p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: normal;
}

.single-content blockquote {
  display: block;
  font-size: 30px;
  padding: 50px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  margin: 0;
  border-left: solid 5px var(--primary);
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    /*margin: 40px 0 10px 0;*/
    position: relative;
    line-height: 1.2;
    top: 0px;
  }
}

.single-content blockquote::after {
  content: "";
}

.single-content blockquote::before {
  content: "\201C";
  font-size: 4em;
  color: var(--primary);
  position: absolute;
  left: 15px;
  top: -5px;
  font-family: 'arial';
  z-index: 1;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 4em;
    color: var(--primary);
    position: absolute;
    left: 20px;
    top: -10px;
  }
}

.single-content .blockquote footer {
  background: transparent;
  font-size: 1em;
  margin: 15px 30px;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  text-align: end;
}

@media (min-width: 992px) {
  .single-content .blockquote footer {
    background: transparent;
    font-size: initial;
    margin: 15px 0;
    color: var(--primary);
  }
}

.single-content .blockquote p {
  padding: 0 0 0 30px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .single-content .blockquote p {
    padding: 0 0 0 30px;
  }
}

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: var(--primary);
}

@media (min-width: 992px) {
  .blockquote-footer {
    padding-right: 50px;
  }
}

.single-content a {
  color: var(--primary);
  text-decoration: none;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(0deg, var(--primary) 0%, var(--primary) 100%);
  background-size: 100% 1px;
  transition: background-size .5s;
}

.single-content a:hover {
  background-size: 0% 1px;
  color: var(--secondary);
}

.single-content iframe {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    width: 95%;
    background-color: #f9f9f9;
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}

.single-content figure {
  display: block;
  /*overflow: hidden;*/
}

.single-content video, .single-content iframe {
  width: 100%;
  /* height: auto; */
  margin-bottom: 25px;
  border-radius: 15px;
}

.single-content p + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--quinary);
  font-size: .9em;
  background: var(--elevenary);
  padding: 15px 15px 5px 15px;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
}

.single-content div + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1em;
  background: #f1e5f8;
  padding: 15px 15px 0px 15px;
}

.single-content h6 + p {
  background: var(--elevenary);
  padding: 0 15px 15px 15px;
  border-radius: 0 0 10px 10px;
}

.single-content h6 + p a {
  color: var(--primary);
  background-image: linear-gradient(0deg, var(--primary) 0%, var(--primary) 100%);
}

.single-content h6 + p a:hover {
  color: var(--primary);
  background-size: 0% 1px;
}

.single-content .mark, .single-content mark {
  background: #f3dfff;
}

/* wordpress */

.single-content .figure .wp-block-image {
  padding-bottom: 0;
  font-weight: normal !important;
  margin: 0;
}

/* single */

/* Recomended */

.wp-block-media-text__media {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 10px 0 !important;
}

@media (min-width: 576px) {
  .wp-block-media-text__media {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__media {
    width: 20%;
  }
}

.wp-block-media-text__content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 576px) {
  .wp-block-media-text__content {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__content {
    width: 80%;
  }
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  grid-column: 2;
  grid-row: 1;
  word-break: break-word;
  padding-left: 15px;
}

.wp-block-media-text {
  padding-left: 0;
}

@media (min-width: 300px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
    padding-left: 5%;
  }
}

.wp-block-media-text.is-stacked-on-mobile {
  grid-template-columns: 100%!important;
}

.wp-block-media-text h5 {
  font-size: 1.3em;
}

.wp-block-media-text h4 {
  font-size: 1.3em;
  padding: 0;
  margin: 0;
  font-size: .8em;
  font-weight: 800;
  color: var(--quinary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wp-block-media-text p, .wp-block-media-text h5 {
  padding: 0;
  margin-bottom: 5px;
}

.wp-block-media-text p {
  font-size: 1em;
  line-height: normal;
}

.wp-block-media-text figure {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .wp-block-media-text figure {
    margin-bottom: 0;
  }
}

.wp-block-media-text figure img {
  object-fit: cover;
}

.wp-block-media-text a {
  background-size: 0% 3px;
  font-weight: 700;
}

.btn-correction a {
  display: flex;
  background: var(--elevenary);
  padding: 15px;
  border-radius: 15px;
  font-size: 1.2rem;
  /*text-decoration: none;*/
  color: var(--primary);
  font-weight: 500;
}

.btn-correction a:hover {
  text-decoration: none;
}

.tags {
  display: flex;
  flex-flow: wrap;
}

.tags a {
  padding: 4px 15px;
  border-radius: 30px;
  border: solid 2px var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  transition: .3s ease;
  margin: 0 15px 10px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.tags a:hover {
  color: var(--quinary);
  border: solid 2px var(--quinary);
}

.head-most-viewed {
  padding: 15px;
  border-bottom: solid 2px var(--elevenary);
  border-radius: 15px 15px 0 0;
}

.content-most-viewed {
  padding: 15px 15px 0 15px;
  border-radius: 0 0 15px 15px;
}

#most-viewed {
  border: solid 1px var(--elevenary);
  border-radius: 15px;
  max-width: 300px;
  width: 300px !important;
}

.abstract {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--octanary);
}

.photo-author-head {
  width: 30px;
  height: 30px;
  border: solid 2px var(--tertiary);
  border-radius: 50%;
}

.photo-author-head img {
  border-radius: 50%;
  left: 0;
  top: 0;
}

.share ul li {
  margin: 0;
  padding: 0;
}

.share ul li a {
  margin: 5px;
}

#share ul {
  transition: .3s;
}

.wp-block-gallery .wp-block-image {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
  padding-top: 75%;
  margin-bottom: 10px;
}

.wp-block-gallery .wp-block-image img {
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 0px;
}

.wp-block-gallery {
  border-radius: 15px !important;
  overflow: hidden;
  padding: 0 !important;
}

.wp-block-gallery figure {
  padding: 0;
}

.wp-block-gallery ol li:before {
  display: none;
}

.wp-block-gallery .figure-caption {
  position: absolute;
  z-index: 9999;
  bottom: 20px;
  left: 10px;
  background: white;
  background: rgba(255 255 255 / 70%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.line {
  width: 100%;
  height: 10px;
}

#btn-user {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.card-user {
  position: absolute;
  top: 50px;
  right: 0;
  width: 200px;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255 255 255 / 97%);
  border-bottom: 1px solid white;
  box-shadow: 0px 2px 10px 0px rgba(40, 98, 251, 0.15);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.card-user.open {
  visibility: visible;
  opacity: 1;
}

.btn-favorite {
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.btn-favorite button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-favorite img {
  width: 30px;
  height: 30px;
  transition: .1s;
}

.btn-favorite.select img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(71%) saturate(5712%) hue-rotate(219deg) brightness(90%) contrast(96%);
}

.button {
  display: block;
  background: var(--primary);
  color: white;
  font-weight: 500;
  padding: 5px 30px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  transition: .3s;
  white-space: nowrap;
  height: 40px;
}

.button:hover {
  background: var(--quinary);
  color: white;
}

:not(.btn-check) + .button:active {
  background: var(--quinary);
  color: white;
}

.btn-facebook {
  background: #3c5997;
  color: white;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  white-space: nowrap;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: .3s;
}

.btn-facebook:hover {
  background: #29437b;
  color: white;
}

:not(.btn-check) + .btn-facebook:active {
  background: #29437b;
  color: white;
}

.btn-google {
  background: #ea4336;
  color: white;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  white-space: nowrap;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: .3s;
}

.btn-google:hover {
  background: #d03226;
  color: white;
}

:not(.btn-check) + .btn-google:active {
  background: #d03226;
  color: white;
}

.form-check-input[type=checkbox] {
  border-radius: .25em;
  border: solid 2px var(--tertiary);
}

.btn-show {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.btn-show img {
  width: 20px;
}

.btn-show-pass .icon {
  cursor: pointer;
}

.btn-show-pass .no-show {
  display: none;
}

.locked {
  height: 100%;
  width: 100%;
  position: fixed;
  min-width: 100%;
  max-width: 100%;
}

#suscription {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  box-shadow: 0px 0px 15px rgba(40, 98, 251, 0.25) !important;
}

.card-suscription {
  border: solid 3px var(--tertiary);
  transition: .3s;
}

.card-suscription:hover {
  border: solid 3px var(--primary);
  background: var(--elevenary);
}

#suscribe > * {
  margin: auto;
}

/* Multimedia */

.wp-block-embed-youtube {
  position: relative;
  height: 0;
  margin: 0;
  padding-bottom: 56.25%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.single-content .wp-block-embed-youtube {
  padding-bottom: 56.25%;
  margin-bottom: 0;
}

/* PUBLICIDAD */

#adnota-0, #adnota-1, #adnota-2{
  margin-bottom: 30px;
}

.wp-block-embed__wrapper{
  display: flex;
  justify-content: center;
}

.wp-block-embed__wrapper blockquote {
  display: inherit;
  font-size: inherit;
  padding: inherit;
  position: inherit;
  line-height: inherit;
  font-style: inherit;
  top: inherit;
  margin-top: inherit;
  margin-bottom: inherit;
  margin: inherit;
}

.wp-block-embed__wrapper blockquote::after {
  content: inherit;
}

.wp-block-embed__wrapper blockquote::before {
  content: inherit;
  font-size:inherit;
  color: inherit;
  position: inherit;
  left: inherit;
  top: inherit;
  font-family: inherit;
  z-index:inherit;
  line-height: inherit;
}

.single-content img{
  width: 100%;
}

.fr-fic.fr-dib{
  display: none !important;
}

#adnota-2 > div{
  width: 100%;
  display: flex;
  justify-content: center;
}

#adnota-2 iframe{
  width: revert-layer;
}

#adnota-1 > div{
  width: 100%;
  display: flex;
  justify-content: center;
}

#adnota-1 iframe{
  width: revert-layer;
}

#adnota-0 > div{
  width: 100%;
  display: flex;
  justify-content: center;
}

#adnota-0 iframe{
  width: revert-layer;
}

 /* newsletter */
 .content-newsletter{
  border: solid 1px #2862fb;
  padding: .5rem; 
}
.content-newsletter h3{
  font-size: 3rem;
  text-align: center;
}
.content-newsletter h6{
  font-size: 2rem;
  color:#2862fb;
  font-weight: bold;
  text-align: center;
}
.content-newsletter p{
margin-bottom: 10px;
text-align: center;
}
.newsletter-f{
background-image: url('https://m-x.com.mx/wp-content/themes/emequis/assets/img/EME-X.png');
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.newsletter{
display: flex;
flex-direction: row;
justify-content: start;
}
.newsletter input {
border-radius: 35px;
margin-bottom: 10px;
}
.tnp-subscription input.tnp-submit{
background: #2862fb;
width: 90%;
margin: auto;
}

@media (min-width: 300px) {
.tnp-subscription{
  padding: 2rem 3rem 8rem;
  max-width: 300px !important;
}
}
@media (min-width: 992px) {
.tnp-subscription{
  padding: 2.5rem 3rem 10rem;
  max-width: 390px !important;
}
.tnp-subscription input.tnp-submit{
  font-size: 1.5rem;
}
}
.newsletter label{
font-size: 1.3rem;
}
.terms-newsletter {
margin-top: 10px;
font-size: 1.3rem;
}

.copyright .rombhus {
  font-style: italic;
  color: black;
  font-family: cursive;
  font-family: "Times New Roman", Times, serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

/* Pagination */

.pagination {
  font-size: 1.1em;
  font-style: normal;
  font-weight: 600;
}

.page-link {
  border: none;
  color: var(--primary);
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 5px;
}

.page-link:hover {
  color: white;
  background-color: var(--tertiary);
}

.page-link:focus {
  color: white;
  background-color: var(--primary);
  border: none;
  box-shadow: none;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
  border-radius: 50%;
}

.page-link.current {
  background: var(--primary);
  color: white;
}

.pagination-bg {
  font-size: 1.1em;
  font-style: normal;
  font-weight: 600;
}

.pagination-bg .page-link {
  border: none;
  color: white;
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 5px;
}

.pagination-bg .page-link:hover {
  color: white;
  background-color: var(--primary);
}

.pagination-bg .page-link:focus {
  color: white;
  background-color: var(--primary);
  border: none;
  box-shadow: none;
}

.pagination-bg .page-item:first-child .page-link, .pagination-bg .page-item:last-child .page-link {
  border-radius: 50%;
}

.pagination-bg .page-link.current {
  background: var(--septenary);
  color: var(--primary);
}

.active > .page-link, .page-link.active {
  background: var(--primary);
}

.date-sticky{
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  justify-content: center;
  align-items: anchor-center;
  background: rgba(255 255 255 / 80%);
  backdrop-filter: saturate(180%) blur(5px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid white;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 0 10px;
  font-size: small;
}