/* Spineer */

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 35px;
}

.lds-ellipsis div {
  position: absolute;
  top: 12px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
      transform: scale(0);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
      transform: scale(1);
  }
  100% {
      transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(24px, 0);
  }
}

/* Mail */

.contMailAnim {
  position: relative;
  height: 54px;
  width: 100px;
  display: flex;
  justify-content: center;
}

.imageneEnvolo {
  height: 54px;
}

.imageneViento {
  height: 54px;
  position: absolute;
  animation: animacionViento 1s linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animacionViento {
  0% {
      left: -40px;
  }
  100% {
      left: -15px;
  }
}
.abcRioButton {
  border-radius: 1px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
  box-sizing: border-box;
  transition: background-color .218s,border-color .218s,box-shadow .218s;
  background-color: #fff;
  background-image: none;
  color: #262626;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  width: auto
}


.abcRioButtonBlue {
  background-color: #db4a39 !important;
  border: none;
  color: #fff;
  width: auto !important;
}

.abcRioButtonBlue:hover {
  background-color: #db4a39
}

.abcRioButtonBlue:active {
  background-color: #db4a39
}

.abcRioButtonLightBlue {
  background-color: #fff;
  color: #757575
}

.abcRioButtonLightBlue:active {
  background-color: #eee;
  color: #6d6d6d
}

.abcRioButtonBlue .abcRioButtonIcon {
  background-color: #fff;
  border-radius: 1px
}

.abcRioButtonContents {
  font-size: 0px !important;
  font-weight: 500;
  letter-spacing: .21px;
  margin-left: 6px;
  margin-right: 28px !important;
  vertical-align: top;
}
span.abcRioButtonContents:before {
  content: "Iniciar sesión con google";
  font-size: 14px !important;
}

.abcRioButtonContentWrapper {
  height: 100%;
  width: 100%
}

.abcRioButtonBlue .abcRioButtonContentWrapper {
  border: 1px solid transparent
}

.abcRioButtonBlue .abcRioButtonIcon {
  background: #db4a39 !important;
}

@keyframes animacionCuerpoModalAbrir {
  from {
    top: -500px;
  }
  to {
    top: 20px;
  }
}

@keyframes animacionCuerpoModalCerrar {
  from {
    top: 20px;
  }
  to {
    top: -500px;
  }
}

@keyframes animacionBlurAbrir {
  from {
    filter: blur(0px);
  }
  to {
    filter: blur(7px);
  }
}

@keyframes animacionBlurCerrar {
  from {
    filter: blur(7px);
  }
  to {
    filter: blur(0px);
  }
}

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

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

/* Responsive */

@media only screen and (max-width: 620px) {
  @keyframes animacionCuerpoModalAbrir {
    from {
      top: -500px;
    }
    to {
      top: 10px;
    }
  }
  @keyframes animacionCuerpoModalCerrar {
    from {
      top: 10px;
    }
    to {
      top: -500px;
    }
  }
}

/* nav icon */
.nav-icon {
  display: block;
  width: 24px;
  cursor: pointer;
}
.nav-icon span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background-color: #e91b1e;
  background-color: var(--color-red);
  transition: margin 100ms ease-in-out, transform 400ms ease-in-out 100ms;
}
.nav-icon span:first-child {
  margin-bottom: 8px;
}
.nav-icon span:last-child {
  margin-top: 8px;
}

.open-compact .nav-btn span {
  display: none;
  visibility: hidden;
  transform-origin: center center;
}
.open-compact .nav-btn span:first-child {
  display: block;
  visibility: visible;
  margin-bottom: 0;
  /* margin-top: 1px; */
  transform: translateY(1px) rotateZ(45deg);
  /* transform: rotateZ(45deg); */
}
.open-compact .nav-btn span:last-child {
  display: block;
  visibility: visible;
  margin-top: 0;
  transform: translateY(-1px) rotateZ(-45deg);
  /* transform: rotateZ(-45deg); */
}

.nav-btn {
  display: none;
  /* display: flex; */
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 20;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #e91b1e;
  border-radius: 50%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0.9;
  transition: opacity 400ms ease-out;
  box-shadow: 0 10px 20px rgba(233, 27, 30, 0.3);
}
.nav-btn:hover {
  opacity: 1;
}
.nav-btn .nav-icon {
  margin-left: auto;
  margin-right: auto;
}
.nav-btn span {
  background-color: white;
}

@media only screen and (max-width: 640px) {
  .nav-btn {
    display: flex;
  }
}

/* header */
.theme-dark .header {
  --color-font-100: black;
  --color-font-200: white;
  --color-font-300: white;
  --color-font-400: white;
  --color-font-500: white;
  --color-font-900: white;

  --bg-color-primary: black;
  --bg-color-secondary: white;
}

.header .mode-transparent {
  --color-font-100: black;
  --color-font-200: white;
  --color-font-300: white;
  --color-font-400: white;
  --color-font-500: white;
  --color-font-900: white;

  --bg-color-primary: black;
  --bg-color-secondary: transparent;
}

.mode-transparent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.mode-transparent .header-top {
  --color-red: white;
}

.mode-transparent::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 146px;
  z-index: -1;
  background: linear-gradient(to top, transparent, rgba(0,0,0,0.4), black);
  background: linear-gradient(to top, transparent, rgba(0,0,0,0.4) 30%, black);
  pointer-events: none;
  user-select: none;
}

.header {
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 640px) {
  .header hr {
    margin-top: -9px;
  }
}

.header-wrapper {
  position: relative;
  background-color: white;
  background-color: var(--bg-color-primary);
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, .14); */
  z-index: 1;
}

.mode-transparent .header-wrapper {
  background-color: transparent;
  background-color: var(--bg-color-secondary);
}

.header-box {
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}

.header-section {
  position: relative;
  max-width: 1280px;
  padding: 0 10px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 1;
}

.header-top {
  position: relative;
  padding-top: 20px;
  margin-bottom: 8px;

  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 960px) {
  .header-top {
    padding-top: 12px;
    align-items: center;
  }
}
.header-info {
  flex: 1;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .header-info .nav-icon {
    display: none;
  }
}
.info-datetime {
  position: relative;
  margin: 0 36px;
  cursor: context-menu;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 640px) {
  .info-datetime {
    margin-left: 0;
    margin-right: 12px;
  }
}
.info-datetime .icon {
  color: #e91b1e;
  color: var(--color-red);
  display: inline-block;
  vertical-align: bottom;
  font-size: 12px;
  line-height: 14px;
  margin-right: 8px;
}
@media only screen and (max-width: 640px) {
  .info-datetime .icon {
    margin-right: 4px;
  }
}
.info-datetime span {
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
  font-family: 'SemanaSans-Regular';
  font-size: 12px;
  line-height: 1.1667;
  color: #707070;
  color: var(--color-font-500);
}
@media only screen and (max-width: 640px) {
  .info-datetime span {
    margin: 0 2px;
  }
}
.header-brand {
  flex: 0 0 auto;
  width: 215px;
}
@media only screen and (max-width: 640px) {
  .header-brand {
    width: 120px;
  }
}
.header-brand svg {
  margin-bottom: 0;
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  fill: #e91b1e;
  fill: var(--color-red);
}

.header-panel {
  display: flex;
  flex: 1;
  text-align: right;
  align-self: center;
  align-items: center;
  justify-content: flex-end;
}
.panel-item {
  position: relative;
  display: block;
  padding: 0 12px;
  line-height: 1;
  font-size: 0;
  box-sizing: border-box;
}

.header-section .open .header-minibox {
  visibility: visible;
  opacity: 1;
}

.header-login {
  display: inline-block;
  vertical-align: middle;
  font-family: 'SemanaSans-Medium';
  font-size: 12px;
  line-height: 1.1667;
  color: #707070;
  color: var(--color-font-500);
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
.header-login:hover {
  color: black;
}
.theme-dark .header-login:hover {
  color: #e91b1e;
}
.header-login .icon{
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  font-weight: normal;
}

.sticky-tool .header-minibox {
  right: 35px;
}
@media only screen and (min-width: 640px){
  .sticky-tool .header-minibox {
    right: 80px;
  }
}

.header-minibox {
  position: absolute;
  visibility: hidden;
  transition: visibility 400ms ease-in-out, opacity 400ms ease-in-out;
  opacity: 0;
  top: 100%;
  margin-top: 16px;
  right: -10px ;
  width: 260px;
  font-size: 12px;
  box-sizing: border-box;
  z-index: 10;
  border: 1px solid #eee;
  box-shadow: 0 3px 6px rgba(160, 160, 160, .2);
}
.theme-dark .header-sticky .header-minibox {
  border-color: black;
}


.header-minibox::before {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: -26px;
  border: 14px solid transparent;
  border-bottom-color: #eee;
  box-sizing: border-box;
  z-index: -1;
}

.header-minibox::after {
  content: "";
  display: block;
  position: absolute;
  right: 22px;
  top: -22px;
  border: 12px solid transparent;
  border-bottom-color:white;
  box-sizing: border-box;
  z-index: 2;
}

.theme-dark .header-sticky .header-minibox::before ,
.theme-dark .header-sticky .header-minibox::after {
  border-bottom-color: black;
}


.minibox {
  position: relative;
  color: #9d9d9d;
  color: var(--color-font-400);
  font-family: 'SemanaSans-Regular';
  font-size: 12px;
  text-align: left;
  padding: 12px;
  background-color: white;
  background-color: var(--bg-color-primary);
  box-sizing: border-box;
  z-index: 1;
}

.minibox-head {
  position: relative;
  border-bottom: 1px solid #707070;
  color: var(--color-font-500);
}
.minibox-user {
  font-family: 'SemanaSans-Medium';
  color: var(--bg-color-secondary);
  font-size: 16px;
  margin-bottom: 4px;
}
.minibox-email {
  margin-bottom: 16px;
}
.minibox-body {}
.minibox-list {
  display: block;
}
.minibox-item {
  display: block;
  text-transform: uppercase;
  color: #9d9d9d;
  color: var(--color-font-400);
  text-decoration: none;
  cursor: pointer;
  text-decoration: none;
  
  font-size: 12px;
  line-height: 1.1;
  padding: 10px 0;
  border-bottom: 1px solid #c4c4c4;
  border-bottom: 1px solid var(--color-font-250);
  box-sizing: border-box;
}

.panel-tool {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'SemanaSans-Medium';
  font-size: 12px;
  color: #707070;
  color: var(--color-font-500);
  padding: 0 24px;
  margin: 0;
  height: 30px;
  border: 1px solid #707070;
  border: 1px solid var(--color-font-500);
  background-color: transparent;
  border-radius: 8px;
  cursor: pointer;
}
.header-btn:hover {
  border-color: black;
  background-color: black;
  color: white;
}
.theme-dark .header-btn:hover {
  border-color: #e91b1e;
  background-color: #e91b1e;
  color: white;
}
.header-btn:active,
.header-btn:focus {
  outline: none;
}

.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  visibility: visible;
  opacity: 1;
  transition: opacity 400ms, visibility 400ms;
}

@media only screen and (max-width: 640px) {
  .header-nav {
    overflow-x: auto;
  }
}
.header-navbar {
  flex-grow: 1;
  display: flex;
}
@media only screen and (max-width: 640px) {
  .header-navbar {
    display: inline-block;
    white-space: nowrap;
    padding-bottom: 8px;
  }
}

.navbar-item {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 20px 0;
  margin: 0 25px;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 400ms ease-out;
}
@media only screen and (max-width: 640px) {
  .navbar-item {
    padding: 8px 0;
    margin: 0 12px;
    display: inline-block;
  }
}
.navbar-item:first-child {
  margin-left: 0;
  padding-left: 0;
}
.navbar-item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.navbar-item:focus,
.navbar-item:active {
  outline: none;
}
.navbar-item:before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 1px;
  background-color: #e91b1e;
  transition: all 300ms ease-out;
}
@media only screen and (max-width: 640px) {
  .navbar-item:before {
    bottom: 0;
  }
}
.navbar-item.active:before,
.navbar-item:hover:before {
  right: 0;
}

.navbar-item span {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  font-family: 'SemanaSans-Medium';
  font-size: 17px;
  line-height: 1.1765;
  color: #707070;
  color: var(--color-font-500);
  transition: all 300ms ease-out;
}
@media only screen and (max-width: 1024px) {
  .navbar-item span {
    font-size: 14px;
  }
}

.navbar-item.active span,
.navbar-item:hover span {
  color: #e91b1e;
}

.navbar-item .icon-icon68 {
  display: inline-block;
  font-size: 8px;
  color: #707070;
  color: var(--color-font-500);
  transform: rotateZ(90deg);
  margin-left: 6px;
}
.navbar-item.active .icon-icon68,
.navbar-item:hover .icon-icon68 {
  color: #e91b1e;
  transform: rotateZ(-90deg);
}

.header-toolbar {
  flex-grow: 1;
  text-align: right;
}
.toolbar-item {
  display: inline-block;
  vertical-align: middle;
  margin-left: 34px;
  cursor: pointer;
  text-decoration: none;
  color: #9d9d9d;
  color: var(--color-font-400);
  white-space: nowrap;
}
.toolbar-item:active {
  outline: none;
}
.toolbar-item:first-child {
  margin-left: 0;
}

.toolbar-item.active,
.toolbar-item:hover {
  color: black;
  color: var(--bg-color-secondary);
}

.theme-dark .toolbar-item.active,
.theme-dark .toolbar-item:hover {
  color: #e91b1e;
}

.toolbar-item span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  font-size: 12px;
  line-height: 1.1667;
  text-decoration: none;
  transition: all 300ms ease-out;
  font-family: 'SemanaSans-Medium';
}

.toolbar-item .icon {
  display: inline-block;
  vertical-align: middle;
  transition: all 300ms ease-out;
}

.header-subnav {
  position: relative;
  padding: 16px 0;
  box-sizing: border-box;
  visibility: visible;
  opacity: 1;
  transition: opacity 400ms, visibility 400ms;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .header-subnav {
    overflow-x: auto;
    touch-action: pan-x;
  }
}
@media only screen and (max-width: 480px) {
  .header-subnav {
    display: none;
  }
}

.header-list {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .header-list {
    white-space: nowrap;
    display: inline-block;
  }
}

.list-item {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  font-family: 'SemanaSans-Regular';
  font-size: 12px;
  line-height: 1.1667;
  white-space: nowrap;
  transition: color 300ms ease-out;
}

@media only screen and (max-width: 768px) {
  .list-item:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 10px;
    padding: 0 10px;
    background-color: white;
    background-color: var(--bg-color-primary);
  }
  .list-item:first-child::before {
    content: '';
    background-color: white;
    background-color: var(--bg-color-primary);
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
    bottom: 0;
    width: 20px;
  }
}

.list-item strong {
  color: black;
  color: var(--color-font-900);
  text-decoration: none;
  font-family: 'SemanaSans-Bold';
}
.list-item span {
  display: block;
  padding: 0 10px;
  color: #9d9d9d;
  color: var(--color-font-400);
  text-decoration: none;
  transition: all 300ms ease-out;
  font-family: 'SemanaSans-Medium';
}

.list-item span.active,
.list-item span:hover {
  color: black;
  color: var(--bg-color-secondary);
}
.theme-dark .list-item span.active,
.theme-dark .list-item span:hover {
  color: #e91b1e;
}

.header-box .header-drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 0;
}

.header-drop {
  position: relative;
  background-color: white;
  background-color: var(--bg-color-primary);
  z-index: 1;
}

.header-drop-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 1;
}
.header-drop-close .icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  color: #e91b1e;
  color: var(--color-red);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.header-drop.drop-plus {
  max-height: 0;
  box-shadow: 0 6px 12px rgba(150, 150, 150, 0.65);
}

.drop-plus {
  overflow: hidden;
  transition: max-height 600ms ease-out;
}

.header-drop.drop-menu {
  max-height: 0;
  box-shadow: 0 6px 12px rgba(150, 150, 150, 0.65);
  z-index: 5;
}

.isSticky .drop-menu {
  position: fixed;
}

.drop-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: all 600ms ease-out;
}

.drop-menu .drop-section {
  padding-top: 48px;
}

.drop-menu .drop-row {
  opacity: 0.4;
  transition: opacity 400ms ease-out 200ms;
}

.drop-section {
  position: relative;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 48px;
  padding: 24px 0;
  box-sizing: border-box;
}
.drop-row {
  margin: 0 -10px;
  display: flex;
}

.drop-col {
  padding: 0 10px;
  width: 160px;
  box-sizing: border-box;
}

.header-link {
  display: block;
  padding: 8px 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.23;
  font-family: 'SemanaSans-Regular';
  transition: all 300ms ease-out;
  color: #707070;
  color: var(--color-font-500);
  white-space: nowrap;
}

.header-link.active,
.header-link:hover {
  color: black;
}
.theme-dark .header-link.active,
.theme-dark .header-link:hover {
  color: #e91b1e;
}

.header-link.link-black {
  font-family: 'SemanaSans-Medium';
  color: black;
  color: var(--color-font-900);
}
.header-link.link-red {
  font-family: 'SemanaSans-Medium';
  color: #e91b1e;
}

.header-filter {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  /* background-color: black; */
  /* background-color: rgba(70, 70, 70, 0.5); */
  /* -webkit-backdrop-filter: blur(7px); */
  /* backdrop-filter: blur(7px); */
  opacity: 0;
  transition: opacity 600ms ease-out, visibility 600ms;
}
@media only screen and (max-width: 640px) {
  .header-filter {
    z-index: 5;
  }
}

.header-social {
  display: flex;
  align-items: center;
  line-height: 22px;
  padding: 8px 0;
  text-decoration: none;
}

.social-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}

.social-icon .icon {
  display: inline-block;
  vertical-align: middle;
  color: #e91b1e;
  color: var(--color-red);
  font-size: 20px;
}

.social-icon img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-bottom: 0;
}

.social-label {
  text-decoration: none;
  font-size: 18px;
  font-family: 'SemanaSans-Light';
  color: #707070;
  color: var(--color-font-500);
  transition: all 400ms ease-in-out;
}
.social-label:hover {
  color: black;
}
.theme-dark .social-label:hover {
  color: #e91b1e;
}

/* header mobile aside search */
.header-aside {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
}

.header-aside.extend {
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease-out, visibility 400ms;
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 400ms;
}

.header-aside.compact {
  visibility: hidden;
  max-width: 330px;
  right: 85px;

  transform: translateX(-100%);
  transition: transform 400ms ease-out, visibility 400ms;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 400ms;
}

.aside-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  display: flex;
  z-index: 1;

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
  background: white;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.theme-dark .aside-box {
  background: rgba(0, 0, 0, 0.9);
}

.aside-wrap {
  margin: 0 auto;
  max-width: 640px;
  padding: 16px 20px;
  flex-grow: 1;
  height: 100%;
  box-sizing: border-box;
}

.aside-brand {
  width: 36px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 16px;
}

.aside-nav {
  position: relative;
  margin-bottom: 16px;
}

.aside-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  border-bottom: 1px solid var(--color-font-200);
  text-decoration: none;
  cursor: pointer;
}

.aside-item:focus {
  outline: none;
}

.aside-item span {
  display: inline-block;
  vertical-align: middle;
  padding: 8px 0;
  text-align: left;
  font-size: 14px;
  line-height: 1;
  font-family: 'SemanaSans-Regular';
  color: #707070;
  color: var(--color-font-500);
  text-decoration: none;
}

.aside-item i.icon {
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  color: var(--color-font-500);
  font-size: 12px;
  line-height: 1;
}

.aside-info {
  position: relative;
  padding-top: 4px;
  min-height: 84px;
  padding-bottom: 16px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
}
.aside-info .info-user {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.info-user .user-icon {
  font-size: 27px;
  line-height: 1;
  color: #9d9d9d;
  color: var(--color-font-400);
}
.info-user .user-icon .icon {
  display: inline-block;
  vertical-align: middle;
}
.info-user .user-info {
  padding-left: 10px;
}
.info-user .user-name {
  font-family: 'SemanaSans-Medium';
  font-size: 14px;
  line-height: 1.2;
}
.info-user .user-email {
  font-size: 12px;
  line-height: 1.14;
  font-family: 'SemanaSans-Regular';
  color: #9d9d9d;
  color: var(--color-font-400);
}
.info-user .user-email span {
  display: inline-block;
  vertical-align: middle;
}
.info-user .user-email .label {
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
}
.aside-info .info-actions {
  margin-top: auto;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.aside-info .info-actions .header-login {
  padding: 0 24px;
}

.aside-social {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
}
.aside-social .social-label {
  font-size: 12px;
  margin-right: 10px;
  line-height: 1;
  font-family: 'SemanaSans-Medium';
}
.aside-social .social-icon {
  margin-right: 16px;
}
.aside-social .social-icon .icon {
  color: #707070;
  color: var(--color-font-500);
  font-size: 24px;
  transition: all ease-in-out 400ms;
}
.aside-social .social-icon:hover .icon {
  color: #e91b1e;
}
.aside-social .social-icon:last-child {
  margin-right: 0;
}

.aside-tool {
  display: flex;
  padding-top: 10px;
  align-items: center;
  margin-bottom: 40px;
}
.aside-control {
  flex-grow: 1;
}
.aside-input {
  position: relative;
}
.aside-input .icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b3b3b2;
}
.aside-input input[type='text'] {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  height: 30px;
  width: 100%;
  margin: 0;
  font-family: 'SemanaSans-Light';
  font-size: 14px;
  line-height: 1;
  padding: 5px 5px 6px 32px;
  box-sizing: border-box;
}
.aside-input input[type='text']:focus {
  outline: none;
  border-color: black;
  border-color: var(--bg-color-secondary);
}
.aside-actions {
  flex: 0 0 auto;
  width: 52px;
  text-align: right;
}
.aside-actions .icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  color: #e91b1e;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.aside-title {
  position: relative;
  margin-bottom: 16px;
  color: #e91b1e;
  color: var(--color-red);
  font-family: 'SemanaSans-Medium';
  font-size: 12px;
  line-height: 1;
  margin-top: 32px;
}

/* sound */
.sound-box {
  color: #e91b1e;
  color: var(--color-red);
  font-size: 28px;
}
@media only screen and (max-width: 640px) {
  .sound-box {
    font-size: 21px;
  }
}
@media only screen and (max-width: 380px) {
  .sound-box {
    font-size: 18px;
  }
}
.sound-box .icon {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

/* search */
.search-box {
  /* margin-left: 26px; */
  color: #e91b1e;
  color: var(--color-red);
  font-size: 28px;
}
@media only screen and (max-width: 960px) {
  .header-sticky .search-box {
    font-size: 21px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 640px) {
  .header-sticky .search-box {
    font-size: 26px;
  }
}
.search-box .icon {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.search-icon {
  position: relative;
  color: #e91b1e;
}
.search-icon.disabled {
  color: #707070;
  color: var(--color-font-500);
  opacity: 0.4;
}
.search-icon .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  cursor: pointer;
}

.search-tool {
  position: relative;
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
}

.search-brand {
  width: 45px;
  flex: 0 0 45px;
}

.search-brand svg {
  display: block;
  margin-bottom: 0;
}

.search-control {
  flex: 1 1 auto;
  align-self: stretch;
  padding: 0 20px;
  box-sizing: border-box;
}

.search-control input[type='text'] {
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  background-color: var(--bg-color-primary);
  border: none;
  border-bottom: 1px solid #707070;
  border-bottom: 1px solid var(--color-font-500);
  box-sizing: border-box;
  font-size: 18px;
  font-family: 'SemanaSans-Regular';
  color: #707070;
  color: var(--color-font-500);
}

.search-control input[type='text']:focus {
  outline: none;
  border-color: black;
  border-color: var(--bg-color-secondary);
}

.search-icon {
  width: 32px;
  flex: 0 0 32px;
}

/* sticky */
.isSticky .header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  visibility: visible;
  opacity: 1;
}

.isSticky .header-nav {
  visibility: hidden;
  opacity: 0;
}
.isSticky .header-subnav {
  visibility: hidden;
  opacity: 0;
}

.isSticky .drop-plus {
  position: fixed;
  top: 46px;
}
.isSticky .drop-menu {
  top: 46px;
}
@media only screen and (min-width: 640px) {}

.header-sticky {
  position: relative;
  visibility: hidden;
  height: 0;
  /* overflow: hidden; */
  opacity: 0;
  transition: opacity 400ms, visibility 400ms;
  background-color: white;
  background-color: var(--bg-color-primary);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
  z-index: 5;
}
.sticky-bar {
  position: relative;
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
  align-items: center;
}
.sticky-bar .nav-icon {
  display: inline-block;
  vertical-align: middle;
}
.sticky-bar .sticky-item:first-child,
.sticky-bar .sticky-item:last-child {
  flex: 1;
}
@media only screen and (max-width: 480px) {
  .sticky-bar .sticky-item:first-child,
  .sticky-bar .sticky-item:last-child {
    flex: 0 0 auto;
  }
}
.sticky-brand {
  display: inline-block;
  width: 30px;
  margin-right: 20px;
  vertical-align: middle;
}
.sticky-brand.expand {
  width: 100px;
}
.sticky-brand svg {
  display: block;
  margin-bottom: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
  fill: #e91b1e;
  fill: var(--color-red);
  
}
.sticky-bar .header-login {
  font-size: 14px;
  color: black;
  color: var(--color-font-900);
  margin: 0 12px;
}
@media only screen and (max-width: 640px) {
  .sticky-bar .header-login {
    font-size: 16px;
    margin: 0 6px;
  }
}
.sticky-bar .header-login:hover {
  color: #e91b1e;
}
.sticky-bar .header-subscribe {
  font-family: 'SemanaSans-Medium';
  font-size: 14px;
  color: #e91b1e;
}
.header-subscribe span {
  display: inline-block;
  vertical-align: middle;
}
.header-subscribe .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  margin-right: 8px;
  line-height: 1;
}
@media only screen and (max-width: 640px) {
  .header-subscribe .icon {
    font-size: 26px;
    margin-right: 12px;
    margin-left: 12px;
  }
}
.sticky-tool {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
}

/* states */
.open .header-filter {
  visibility: visible;
  opacity: 0.5;
}

.open-plus .drop-plus {
  display: block;
  max-height: 420px;
}

.open-plus .header-filter {
  z-index: 0;
}

.open-menu .drop-menu {
  display: block;
  max-height: 420px;
}
.open-menu .drop-menu .drop-row {
  opacity: 1;
}

.open-menu .nav-btn {
  display: none;
}

.open-compact .header-aside.compact {
  visibility: hidden;
}

@media only screen and (max-width: 640px) {
  .open-menu .drop-menu,
  .open-extend .drop-menu {
    display: none;
  }
  .open-compact .header-aside.compact {
    visibility: visible;
    transform: translateX(0);
  }
  .open-menu .header-aside.extend,
  .open-extend .header-aside.extend {
    visibility: visible;
    opacity: 1;
  }
  .open-menu .header-filter {
    display: none;
  }
}


.mg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    z-index: 10;

    background-color: #202020;
    background-color: rgba(32, 32, 32, 0.92);
    background-color: #343434;

    /* visibility: hidden; */
    /* opacity: 0; */
    /* position: absolute; */
}
.mg.open {
    /* visibility: visible; */
    /* opacity: 1; */
    /* transition: all 400ms ease-out; */
}
.mg-page {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
.mg-page .swiper-container {
    height: 100%;
    width: 100%;
}

.mg-page .swiper-slide {
    overflow: hidden;
}

.mg-side {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    overflow: hidden;
    background-color: #1F1F1F;
    z-index: 1;
    display: flex;
    transform: translateX(-100%);
    transition: all 400ms ease-out;
}
.mg-side.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.mg-sidebox {
    position: relative;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.sidebox-head {
    position: relative;
    padding-top: 70px;
    margin-bottom: 100px;

    font-family: 'SemanaSans-Medium';
    font-size: 15px;
    line-height: 1;
    color: white;
    cursor: pointer;
    opacity: .7;
}
.sidebox-head .icon {
    font-size: 8px;
    margin-right: 8px;
    transform-origin: center center;
    transform: rotateZ(180deg);
    display: inline-block;
    vertical-align: middle;
}
.sidebox-head span {
    display: inline-block;
    vertical-align: middle;
}
.sidebox-body {
    position: relative;
    flex-grow: 1;
    box-sizing: border-box;
}
.sidebox-footer {
    margin-top: auto;
    margin-bottom: 70px;
}

.sidebox-number {
    position: relative;
    width: 42px;
    height: 42px;
    line-height: 36px;
    text-align: center;
    border: 1px solid white;
    font-family: 'SemanaSerif-ExtraBold';
    font-size: 20px;
    color: white;
    margin-bottom: 26px;
    box-sizing: border-box;
}
.sidebox-caption {
    font-family: 'SemanaSerif-Regular';
    font-size: 12px;
    color: white;
    line-height: 1.75;
    margin-bottom: 26px;
}
.sidebox-author {
    color: white;
    font-size: 12px;
    font-family: 'SemanaSans-Regular';
    line-height: 1.2;
}
.sidebox-author .icon {
    cursor: pointer;
    text-decoration: none;
    margin-right: 8px;
}
.sidebox-social {
    position: relative;
    display: flex;
}
.sidebox-social-item {
    font-size: 19px;
    margin-right: 16px;
    color: #707070;
    cursor: pointer;
    text-decoration: none;
}
.sidebox-social-item:hover {
    color: #e91b1e;
}

.mg-content {
    position: relative;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}
@media only screen and (max-width: 960px) {
    .mg-content {
        height: 100%;
    }
}
.mg-content.open {
    margin-left: 260px;
}
@media only screen and (max-width: 1280px) {
    .mg-content.open {
        margin-left: 0;
    }
}

.mg-section {
    position: relative;
    max-width: 1280px;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
    .mg-section {
        padding: 0;
        height: 100%;
    }
}

.mg-box {
    position: relative;
    padding-right: 80px;
    padding-left: 160px;
    box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
    .mg-box {
        padding-right: 0;
        padding-left: 0;
        height: 100%;
    }
}

.mg-media {
    position: relative;
    height: 680px;
}
@media only screen and (max-width: 960px) {
    .mg-media {
        height: 100%;
    }
}
.mg-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    margin-bottom: 0;
}
@media only screen and (max-width: 960px) {
    .mg-media img {
        object-fit: contain;
        height: 100%;
    }
}


.mg-actions {
    color: white;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    font-size: 26px;
    line-height: 1;
    text-decoration: none;
    transform: translateY(-13px);
}
@media only screen and (max-width: 960px) {
    .mg-actions {
        display: none;
    }
}
.mg-actions .icon {
    cursor: pointer;
    text-decoration: none;
}
.mg-close {
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-size: 26px;
}
@media only screen and (max-width: 960px) {
    .mg-close {
        display: none;
    }
}
.mg-sidebox-open {
    position: absolute;
    top: 0;
    left: 10px;
    font-family: 'SemanaSans-Medium';
    font-size: 15px;
    line-height: 1;
    color: white;
    opacity: .7;
    cursor: pointer;
}
@media only screen and (max-width: 960px) {
    .mg-sidebox-open {
        display: none;
    }
}

.mg-sidebox-open .icon {
    margin-right: 8px;
    font-size: 8px;
    display: inline-block;
}
.mg-sidebox-open span {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.mg-caption {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
    .mg-caption {
        display: block;
    }
}
.mg-caption:before {
    content: "";
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, black, transparent 100%);
}
@media only screen and (orientation: landscape) and (max-width: 640px) {
    .mg-caption:before {
        display: block;
    }
}
.mg-caption p {
    color: white;
    font-family: 'SemanaSans-Regular';
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.013em;
    text-align-last: left;
    margin: 0;
}

.mg-paginate {
    display: none;
    position: absolute;
    top: 24px;
    left: 24px;
    text-align: left;
    color: white;
    font-family: 'SemanaSans-Regular';
    font-size: 20px;
    line-height: 1.1;
}
@media only screen and (max-width: 960px) {
    .mg-paginate {
        display: block;
    }
}

.mg-tool {
    display: none;
    position: absolute;
    top: 20px;
    right: 16px;
    z-index: 1;
}
@media only screen and (max-width: 960px) {
    .mg-tool {
        display: flex;
    }
}

.mg-tool-item {
    display: block;
    margin-left: 10px;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    line-height: 36px;
    font-size: 20px;

    background-color: rgba(240, 240, 240, .75);
    backdrop-filter: blur(8px);
}

.active3 {
    max-height: 3000px !important;
  }

  .in-active {
    max-height: 0 !important;
  }

  .hide2 {
    display: none;
  }
  .show2 {
    display:block;
  }

  .inter-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    color: black;
    font-family: 'SemanaSerif-Regular';
    font-size: 18px;
    line-height: 1.6667;
    margin-bottom: 16px;
    text-decoration: none;
  }
 .inter-link a {
    color: inherit;
    text-decoration: none;
    transition: all 400ms ease-out;
  }
  .inter-link:hover a {
    color: #e91b1e;
  }
  
  .inter-link .thumb {
    flex: 0 0 60px;
    margin-right: 20px;
    margin-left: 0;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center center;
  }
  .inter-link-conf {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    color: black;
    font-family: 'SemanaSerif-Regular';
    line-height: 1.6667;
    margin-bottom: 16px;
    text-decoration: none;
  }
 .inter-link-conf a {
    color: inherit;
    text-decoration: none;
    transition: all 400ms ease-out;
  }
  .inter-link-conf:hover a {
    color: #e91b1e;
  }
  
  .inter-link-conf .thumb {
    flex: 0 0 60px;
    margin-right: 20px;
    margin-left: 0;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center center;
  }
.raw_html {
  width: 100%;
}

.raw_html img {
  width: 100%;
}

.raw_html iframe {
  width: 100%;
  height: 400px;
}

.article-main {
  position: relative;
  font-family: 'SemanaSerif-Regular';
  color: black;
  padding: 0 80px;
  min-height: 70vh;
  box-sizing: border-box;
}

.article-main.expand {
  padding: 0;
}

@media only screen and (max-width: 960px) {
  .article-main {
    padding: 0 60px;
  }
  .article-main.expand {
    padding: 0;
  }
}
@media only screen and (max-width: 640px) {
  .article-main {
    padding: 0;
  }
}

.theme-dark .article-main {
  color: white;
}
.article-main h1 {
  font-family: 'SemanaSerif-ExtraBold';
  font-size: 38px;
  line-height: 1.2631;
  margin-bottom: 8px;
}
@media only screen and (max-width: 960px) {
  .article-main h1 {
    font-size: 30px;
    line-height: 1.0667;
  }
}
@media only screen and (max-width: 640px) {
  .article-main h1 {
    font-size: 24px;
    line-height: 1.3334;
  }
}
.article-main h2 {
  font-family: 'SemanaSerif-ExtraBold';
  font-size: 38px;
  line-height: 1.2631;
  margin-bottom: 8px;
}
@media only screen and (max-width: 960px) {
  .article-main h2 {
    font-size: 30px;
    line-height: 1.0667;
  }
}
@media only screen and (max-width: 640px) {
  .article-main h2 {
    font-size: 24px;
    line-height: 1.3334;
  }
}

.article-main h3 {
  font-family: "SemanaSerif-BoldItalic";
  font-size: 24px;
  line-height: 1.5;
  color: #e91b1e;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.article-main h3.alter {
  color: #1C56E8;
  text-transform: initial;
}
@media only screen and (max-width: 640px) {
  .article-main h3 {
    font-size: 22px;
  }
}
.article-main h4 {}
.article-main h5 {}
.article-main h6 {}
.article-main p {
  font-family: 'SemanaSerif-Regular';
  font-size: 18px;
  line-height: 1.7778; /* 32px */
  font-weight: normal;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 32px;
}
@media only screen and (max-width: 640px) {
  .article-main p {
    font-size: 16px;
    line-height: 1.75;
  }
}
.article-main p:empty {
  margin-bottom: 0;
}

.article-main small {}
.article-main b,
.article-main strong {
  font-family: 'SemanaSerif-Bold';
  font-weight: normal;
  line-height: inherit;
}
.article-main i {
  font-family: 'SemanaSerif-RegularItalic';
  font-weight: normal;
  line-height: inherit;
}
.article-main b i,
.article-main strong i {
  font-family: 'SemanaSerif-BoldItalic';
  font-weight: normal;
  line-height: inherit;
}
.article-main figcaption {
  font-family: 'SemanaSans-Regular';
  font-size: 12px;
  line-height: 1.6667;
  color: #999999;
  margin-top: 12px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 640px) {
  .article-main figcaption {
    display: none;
  }
}

.article-main header {
  display: contents;
}
@media only screen and (max-width: 640px) {
  .article-main header {
    position: relative;
    display: block;
  }
}
.article-main header p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.article-main header h3 {
  padding-top: 6px;
}
.article-main iframe {
  display: block;
  /* width: 100%; */
  max-width: 100%;
  margin: 0 auto;
}
.article-main a {
  text-decoration: none;
}
.article-main p a {
  color: #164199;
  text-decoration: underline;
  font-family: 'SemanaSerif-Bold';
}
.article-main img {
  display: block;
  max-width: 100%;
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  .article-header-media {
    position: relative;
    margin-left: -10px;
    margin-right: -10px;
  }
}

.article-main header img,
.article-main article img{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
}

.article-main .box-center {
  display: flex;
  place-content: center;
}

.theme-dark .article-main .inter-link {
  color: white;
}
.article-main .inter-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  color: black;
  font-family: 'SemanaSerif-Regular';
  font-size: 18px;
  line-height: 1.6667;
  margin-bottom: 16px;
  text-decoration: none;
}
.article-main .inter-link a {
  color: inherit;
  text-decoration: none;
  transition: all 400ms ease-out;
}
.article-main .inter-link:hover,
.article-main .inter-link:hover a {
  color: #e91b1e;
}

.article-main .inter-link .thumb {
  flex: 0 0 60px;
  margin-right: 20px;
  margin-left: 0;
  margin-bottom: 0;
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center center;
}

.article-main .pullquote,
.article-main .blockquote {
  position: relative;
  margin: 36px auto;
  padding: 16px 0;
  box-sizing: border-box;
}
.article-main .pullquote::before,
.article-main .pullquote::after,
.article-main .blockquote::before,
.article-main .blockquote::after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 140px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #e91b1e;
}
.article-main .pullquote::before,
.article-main .blockquote::before{
  top: 0;
}
.article-main .pullquote::after,
.article-main .blockquote::after{
  bottom: -2px;
}
.article-main .pullquote .text,
.article-main .blockquote .text {
    display: none;
}
.article-main .pullquote cite,
.article-main .blockquote cite {
    font-style: normal;
    font-family: 'SemanaSerif-BoldItalic';
    color: #e91b1e;
    font-size: 22px;
    line-height: 1.4545;
    text-align: center;
    display: block;
}
@media only screen and (max-width: 640px) {
  .article-main .pullquote cite,
  .article-main .blockquote cite {
    font-size: 18px;
  }
}

.article-main .sticky-top.t60 {
  height: 220px;
  float: left;
}

.article-main header .embed-16by9 {
  margin-bottom: 25px;
}

@media only screen and (max-width: 640px) {
  .article-main .article-header-box {
    position: relative;
    padding: 8px 20px 0 20px;
    background: white;
    border-radius: 8px;
    margin-top: -25px;
    z-index: 1;
  }

  .theme-dark .article-main .article-header-box {
    background-color: black;
  }
}

.shareBar {
  position: absolute;
  top: 0;
  left: -62px;
  flex-direction: column;
  justify-content: center;
  color: #E91B1E;
  font-size: 28px;
}
@media only screen and (max-width: 960px) {
  .shareBar {
    left: -50px;
  }
}
@media only screen and (max-width: 640px) {
  .shareBar {
    display: none;
  }
}
.socialNetwork {
  margin-bottom: 28px;
}
.socialNetwork:last-child {
  margin-bottom: 0;
}

.datetime {
  font-family: "SemanaSans-Regular";
  font-size: 12px;
  line-height: 1;
  margin-bottom: 10px;
  color: #7A7A7A;
}

.footer-store {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 960px) {
  .footer-store {
    flex-wrap: wrap;
  }
}

.footer-store-info {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  .footer-store-info {
    flex-grow: 1;
    margin-bottom: 16px;
  }
}
.footer-store-brand {
  width: 36px;
  margin-right: 10px;
}
.footer-store-description {
  font-family: "SemanaSerif-Regular";
  font-size: 14px;
}
.footer-store-apps {
  display: inline-flex;
}
@media only screen and (max-width: 960px) {
  .footer-store-apps {
    flex-grow: 1;
    justify-content: center;
  }
}

.header-collaborative {
  position: relative;
  z-index: 0;
}
.image-alliance {
  width: auto;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
}
.image-alliance img {
  max-width: 100%;
  width: auto !important;
}
@media only screen and (max-width: 960px) {
  .image-alliance {
    position: relative;
    transform: none;
    top: 0;
  }
}

 /* */

.container-picture {
  display: flex;
  flex-direction: column;
}

.oembed_response {
  position: relative;
  max-width: 498px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-tag {
  display: flex;
  align-items: center;
  padding: 30px 0;
  font-family: "SemanaSans-Regular";
  font-size: 12px;
}

.list-item-tag {
  margin-right: 14px;
  background-color: #f2f2f2;
  border-radius: 8px;
}

.list-item-tagIcon {
  margin-right: 14px;
}

.list-item-tag span {
  display: block;
  padding: 8px 14px;
  color: #989898;
  text-decoration: none;
  transition: all 300ms ease-out;
  font-family: "SemanaSans-Medium";
}

.footer-google-news {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 10px;
  margin-bottom: 30px;
  padding-right: 10px;
  box-sizing: border-box;
}

.image-google-news {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 40px;
}
@media only screen and (max-width: 640px) {
  .image-google-news {
    padding-left: 12px;
    padding-right: 20px;
  }
}

.image-store-google {
  padding-left: 12px;
}

.image-store-apple {
  padding: 0 12px;
}

.article-box-opinion {
  display: flex;
  justify-content: start;
  margin-bottom: 16px;
  max-width: 980px;
  gap: 20px;
}

.box-opinion-thumb {
  flex: 0 0 140px;
  width: 140px;
  position: relative;
  margin-bottom: 0;
}

.caption-hide {
  display: none;
}

.opciones {
  display: inline-flex;
  align-items: center;
}

.opciones span {
  font-family: "SemanaSans-Regular";
  font-size: 12px;
  margin: 24px 0;
}

.body-cite {
  display: flex;
  font-family: "SemanaSerif-BoldItalic";
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
  text-align: center;
  color: red;
}

.google_news {
  font-family: "SemanaSans-Medium";
  font-size: 16px;
  color: #9d9d9d;
  text-decoration: none !important;
  line-height: inherit;
}
@media only screen and (max-width: 640px) {
  .google_news {
    font-size: 14px;
  } 
}

/* tags */
.footer-tags {
  position: relative;
  display: flex;
  margin-bottom: 10px;
}

.tags-icon {
  position: relative;
  flex: 0 0 25px;
  width: 25px;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tags-icon img {
  display: block;
  margin-bottom: 0;
}

.tags-list-item {
  cursor: pointer;
  display: inline-flex;
  background-color: #F2F2F2;
  color: #9D9D9D;
  padding: 8px 14px;
  margin-right: 14px;
  margin-bottom: 14px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: all 400ms ease-out;
}
.tags-list-item:hover {
  background: black;
  color: white;
}
.tags-list-item:active {
  outline: none;
}

