@charset "UTF-8";
/* FONT AWESOME 4.7 (versión optimizada 25 íconos) */

@font-face {
  font-family: "FontAwesome";
  src: local("Font Awesome"),
       url(//reportemaya.mx/wp-content/themes/reportemaya/assets/fonts/icons.woff2) format("woff2");
  font-display: swap;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ICONOS DE INTERFAZ Y NAVEGACIÓN */

.fa-home:before { content: "\e910"; }
.fa-bars:before { content: "\e908"; }
.fa-search:before { content: "\e918"; }
.fa-user:before { content: "\e900"; }
.fa-minus:before { content: "\e901"; }
.fa-plus:before { content: "\e902"; }
.fa-clock-o:before { content: "\e906"; }
.fa-calendar:before { content: "\e907"; }
.fa-arrow-up:before { content: "\e90c"; }
.fa-arrow-right:before { content: "\e909"; }
.fa-arrow-down:before { content: "\e90b"; }
.fa-arrow-left:before { content: "\e90a"; }
.fa-shopping-bag:before { content: "\e903"; }
.fa-shopping-basket:before { content: "\e904"; }
.fa-shopping-cart:before { content: "\e905"; }
.fa-envelope:before { content: "\e90d"; }
.fa-mobile:before { content: "\e90e"; }
.fa-phone:before { content: "\e90f"; }

/* REDES SOCIALES */
.fa-linkedin:before { content: "\e911" }
.fa-whatsapp:before { content: "\e912" }
.fa-youtube:before { content: "\e913" }
.fa-instagram:before { content: "\e914" }
.fa-facebook:before { content: "\e915" }
.fa-x:before { content: "\e916" }
.fa-tiktok:before { content: "\e917" }
/*
Theme Name: Reporte Maya
Theme URI: https://reportemaya.mx/
Author: Hago Webs
Author URI: https://hagowebs.com/
Description: Plantilla personalizada para Reporte Maya
Version: 1.0 Octubre 2025
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* === Reset y Base === */
* { box-sizing: border-box; }
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    background: #000;
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    width: 100%;
    padding-top: 135px;
	user-select: none;
}

/* === Tipografía === */
h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 600;
    margin: 1rem 0;
}
h1 { font-size: 4rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }
pre, code, kbd, samp {
    color: #000;
    font-family: Inconsolata, monospace, serif;
}

/* === Enlaces y Botones === */
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #fc0;
    transition: color .3s ease-in-out;
}
button, .btn, input[type="submit"] {
    background: #fc0;
    border: 1px solid #fc0;
    border-radius: 4px;
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding: .5rem 1rem;
    cursor: pointer;
}
button:hover, .btn:hover, input[type="submit"]:hover {
    background: #cd9a00;
    color: #fff;
}

/* === Imágenes === */
figure {
    display: block;
    margin: 0;
    padding: 0;
}
figcaption, .wp-element-caption {
    display: none !important;
}
img {
    border: none;
    display: block;
    height: auto;
    max-width: 100%;
    pointer-events: none;
}

/* === Grid System === */
.container, .container-fluid {
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}
@media (min-width: 1280px) {
    .container { max-width: 120rem; }
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}
.reverse { flex-direction: row-reverse; }
.around { justify-content: space-around; }
.between { justify-content: space-between; }
.center { justify-content: center; }
.align-center { align-items: center; }
[class*="col-"] { padding: 0 1.5rem; }
.col, .col-lg { 
    flex: 1 1 0; 
    max-width: 100%; 
}
.col-25, .col-lg-25, .col-side,
.col-33, .col-lg-33, .col-thum,
.col-50, .col-lg-50, .col-half,
.col-66, .col-lg-66, .col-post,
.col-75, .col-lg-75, .col-main,
.col-100, .col-lg-100, .col-page { 
    width: 100%; 
}
@media (min-width: 768px) {
    .col-lg-25, .col-side { width: 25%; }
    .col-lg-33, .col-thum { width: 33.33%; }
    .col-lg-50, .col-half { width: 50%; }
    .col-lg-66, .col-post { width: 66.66%; }
    .col-lg-75, .col-main { width: 75%; }
    .col-lg-100, .col-page { width: 100%; }
}

/* === Utilidades de Texto === */
.text-capitalize { text-transform: capitalize; }
.text-lowercase { text-transform: lowercase; }
.text-uppercase { text-transform: uppercase; }
.text-normal { font-weight: 400; }
.text-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden, .hidden-xs { display: none; }
.hidden-lg { display: block; }

/* === Contenido Embebido === */
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive iframe,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-16by9 { padding-bottom: 56.25%; }
.embed-responsive-4by3 { padding-bottom: 75%; }
.embed-responsive-1by1 { padding-bottom: 100%; }

/* === Layout Principal === */
main, section {
    margin-bottom: 0;
    padding-bottom: 6rem;
}
main h1, section h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 400;
    margin-top: 0;
    padding: 1rem 0;
}
#marco {
    background: #27292d;
    margin: 2.5rem;
}

/* === Header === */
#header {
    background: #000;
    border-bottom: 3px solid #cd9a00;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* === Footer === */
#footer {
    background: #161619;
    font-size: 1.4rem;
    padding: 1.5rem 0;
}

/* === Posts === */
.page-header {
    text-align: center;
    padding: 1.5rem 0;
}
.post {
    margin-bottom: 3rem;
}
.col-post {
    color: #ccc;
    font-size: 1.4rem;
}
.col-post h2 {
    font-size: 2rem;
}
.post-meta {
    font-size: 1.4rem;
}
.error404 article {
    margin: 6rem 0;
}
.archive .col-thum img, 
.attachment-full {
    width: 100%;
    height: auto;
}
.home .post-title {
    font-size: 1.6rem;
}

/* === Paginación === */
.pager {
    margin-bottom: 1.5rem;
    text-align: center;
}
.pager li {
    display: inline-block;
    margin-right: 1.5rem;
}
.pager li:last-child { 
    margin-right: 0; 
}

/* === Sidebar === */
.widget {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}
.widget ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.widget li { 
    margin-bottom: .5rem; 
}

/* === Comentarios === */
.comments-section {
    margin-top: 3rem;
    padding: 2rem;
}
.comments-section h3, 
.comment-respond h3 {
    margin-bottom: 1.5rem;
    display: inline-block;
    padding-bottom: .5rem;
}
.comment-respond h3 {
    margin-bottom: 1rem;
    border-bottom: 2px solid #cd9a00;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comment-list li {
    margin-bottom: 1.5rem;
    padding: 1rem;
}
.comment-list li .comment-author {
    font-weight: 700;
    color: #0073aa;
}
.comment-list li .comment-meta {
    margin-bottom: .5rem;
}
.comment-list li .comment-content {
    line-height: 1.6;
}
.comment-list li .reply a {
    color: #cd9a00;
    text-decoration: none;
    transition: color .3s ease;
}
.comment-respond {
    margin-top: 2rem;
}
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.comment-form p {
    margin: 0;
}
.comment-form input:not([type="submit"]),
.comment-form textarea {
    width: 100%;
    padding: .8rem;
    background-color: #161619;
    border: 0;
}
.comment-form input:not([type="submit"]):focus,
.comment-form textarea:focus {
    outline: none;
}
.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}
.comment-form .form-submit input[type="submit"] {
    max-width: 200px;
}
.comment-form label {
    font-size: 1.6rem;
}

/* === Formulario de Búsqueda === */
.searchform {
    display: inline-block;
    margin-bottom: -1.5rem;
}
.searchform input:not([type="submit"]) {
    border: 1px solid #fff;
    border-right: 0;
    border-radius: .5rem 0 0 .5rem;
    float: left;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 78% !important;
    padding: 1.2rem;
}
.searchform button, 
.searchform .btn {
    border-radius: 0 .5rem .5rem 0;
    float: left;
    font-size: 1.7rem;
    padding: 1rem 1.5rem;
}

/* === Iconos Sociales === */
.social { 
    margin-bottom: 1.5rem; 
}
.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
    color: #fff;
}
.social a:last-of-type { 
    margin-right: 0; 
}

/* === Navegación Vertical === */
.vertical-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #0e0f11;
    padding: 30px;
    transition: right .3s ease;
    z-index: 999;
}
.vertical-nav.active {
    right: 0;
}
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-menu li {
    margin: 15px 0;
}
.vertical-nav .text-center {
    margin: 20px 0;
}
.vertical-nav .searchform {
    padding-left: 20px;
}
.menu-toggle, 
.menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 24px;
}

/* === Submenús === */
.nav-menu li.menu-item-has-children > a::after {
    content: "\f107";
    font-family: "FontAwesome";
    float: right;
    transition: transform .3s;
}
.nav-menu .sub-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    border-left: 1px solid #222;
}
.nav-menu li.open > .sub-menu {
    display: block;
}
.nav-menu li.open > a::after {
    transform: rotate(180deg);
}
.nav-menu .sub-menu li a {
    font-size: .95em;
    color: #ccc;
}
.nav-menu .sub-menu li a:hover {
    color: #fff;
}

/* === Búsqueda Superior === */
.search-toggle,
.search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 2.4rem;
    cursor: pointer;
    background: none;
    border: none;
}
.search-form {
    position: fixed;
    top: -150px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.5), transparent);
    padding: 55px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: top .3s ease;
    z-index: 1000;
}
.search-form.active {
    top: 0;
}
.search-close {
    color: #fff;
    font-size: 24px;
}

/* === Header Shrink === */
#header.shrink {
    padding-top: .5rem;
    transition: all .6s ease;
}
#header.shrink .custom-logo {
    max-width: 20rem;
    height: auto;
    transition: all .6s ease;
}
#header.shrink .social {
    margin-bottom: 0;
	transition: all .6s ease;
}
#header.shrink .social a {
    font-size: 1.6rem;
	margin: 2px;
	transition: all .6s ease;
}

/* === Botón Ir Arriba === */
#go-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 35px;
	height: 35px;
    background: #fc0;
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    transition: all .3s ease;
}
#go-top.show {
    display: flex;
    opacity: 1;
}
#go-top:hover {
    background: #cd9a00;
    color: #fff;
    transform: translateY(-3px);
}

/* === Secciones de Portada === */
.section-title {
    text-align: center;
}
#reporte-regional {
    background: #474747;
}
#el-reporte, 
#la-revista {
    background: #f0aa00;
}
#el-reporte h1, 
#la-revista h2 {
    color: #000;
}
.post-wrapper {
    position: relative;
    overflow: hidden;
	margin-bottom: 1rem;
}
.post-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.post-wrapper a {
    position: relative;
    z-index: 2;
}
#reporte-destacado .post-image, 
#reporte-quintana-roo .post-image {
    position: relative;
}
#reporte-destacado .post-image img, 
#reporte-quintana-roo .post-image img {
    display: block;
    width: 100%;
    height: auto;
}
.post-overlay {
    position: absolute;
    inset: 0;
    padding: 1rem;
}
#la-revista img {
    margin-bottom: 3rem;
}

/* === Slider === */
.el-reporte-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.el-reporte-slider {
    display: flex;
    transition: transform .5s ease;
}
.slide {
    min-width: 100%;
    position: relative;
    background: #fff;
    overflow: hidden;
}
.slide-image {
    width: 100%;
    height: 630px;
    overflow: hidden;
}
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    background: rgba(0,0,0,.45);
    padding: 15px;
}
.slide-content h2 {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
    color: #fff;
}
.slide-meta {
    margin-bottom: 10px;
    color: rgba(255,255,255,.9);
    font-size: 1.4rem;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 3rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background .3s;
}
.slider-btn:hover { background: rgba(0,0,0,.7); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cd9a00;
    cursor: pointer;
    transition: background .3s;
}
.dot.active {
    background: #fff;
}

/* === Media Queries === */
@media (min-width: 768px) {
    .text-center-lg { text-align: center; }
    .text-justify-lg { text-align: justify; }
    .text-left-lg { text-align: left; }
    .text-right-lg { text-align: right; }
    .hidden-xs { display: block; }
    .hidden-lg { display: none; }
    .social { margin-bottom: 0; }
    .widget { margin-bottom: 3rem; }
}
@media (max-width: 768px) {
    body { font-size: 1.6rem; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.4rem; }
    main h1, section h2 {
        font-size: 2.4rem;
        padding: 2rem 0;
    }
    .slide-content {
        bottom: 15px;
        left: 10px;
        right: 10px;
        padding: 10px;
    }
    .slide-content h2 { 
        font-size: 1.6rem;
        margin: 0 0 5px 0;
    }
    .slide-meta {
        font-size: 1.1rem;
    }
    .slide-content .btn {
        font-size: 0.8rem; 
        padding: 4px 8px;
        display: inline-block;
    }
    .slide-image { height: 250px; }
    .slide-content h3 { font-size: 1.4rem; }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
	.slider-btn {
        top: 25%;
    	transform: translateY(-75%);
    }
	.site-branding a {
		display: flex;
		justify-content: center; 
	}
	.social a {
		width: 38px;
		height: 38px;
		font-size: 2rem;
	}
	.section-title {
		font-size: 80%;
	}
}#heateor_sss_error{color:red;margin:7px 0}#heateor_sss_sharing_more_providers .filter svg{position:absolute;left:16px;top:18px}div.heateor_sss_sharing_ul a:link,div.heateor_sss_sharing_ul a:focus{text-decoration:none;background:transparent!important}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#ffffe0;border:1px solid #e6db55;padding:5px;margin:10px}#heateor_sss_sharing_more_providers{position:fixed;top:50%;left:47%;background:#fafafa;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#heateor_sss_mastodon_popup_bg,#heateor_sss_popup_bg{background:url(//reportemaya.mx/wp-content/plugins/sassy-social-share/images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58b8f8!important;border-bottom:1px solid #d7d7d7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#fafafa;border-radius:4px;color:#555;height:auto;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{display:block;margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{padding:0;margin:0 0 0 5px;background:0 0!important;float:left;width:24.1%;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0}#heateor_sss_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#heateor_sss_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-16px;top:-16px}#heateor_sss_sharing_more_providers .filter input.search{width:96%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 11px;padding:5px 8px 5px 27px!important;border:1px solid #ccc!important;color:#000;background:#fff!important;font-size:16px!important;text-align:left!important;max-width:-webkit-fill-available;line-height:1}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #d7d7d7;padding:6px 0;width:100%;color:#fff}#heateor_sss_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_sharing_more_providers .all-services ul li a span{width:51%}#heateor_sss_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:12px;height:auto;line-height:20px;overflow:hidden;padding:8px 8px 8px 1px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.heateor_sss_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58b8f8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}div.heateor_sss_follow_ul,div.heateor_sss_sharing_ul{padding-left:0!important;margin:1px 0!important}#heateor_sss_mastodon_popup_close img,#heateor_sss_sharing_popup_close img{opacity:1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}div.heateor_sss_follow_ul .heateorSssSharingRound,div.heateor_sss_sharing_ul .heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style:normal;font-size:.6em;visibility:hidden}div.heateor_sss_follow_ul a,div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a{float:left;padding:0!important;list-style:none!important;border:none!important;margin:2px}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}div.heateor_sss_follow_ul a:before,div.heateor_sss_sharing_ul a:before{content:none!important}div.heateor_sss_follow_ul a{width:auto}.heateor_sss_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share,div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share{width:96px}li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span,li.heateor_sss_facebook_share .fb-share-button span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}.heateor_sss_counter_container li{height:21px}.heateorSssTCBackground:hover{border-width:0!important;background-color:transparent}.heateorSssTCBackground{border-width:0!important;background-color:transparent!important;font-style:normal;word-wrap:normal;color:#666;line-height:1;visibility:hidden}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.heateorSssCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0 !important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight:bolder;font-family:sans-serif;padding:0;margin:0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin:0;padding:0;text-align:center}div.heateor_sss_horizontal_sharing li{width:auto}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:91px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share span{vertical-align:text-top!important}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:96px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:108px}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly{width:106px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}.heateor_sss_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}.heateorSssClear{clear:both}div.course_instructor_widget .heateor_sss_vertical_sharing{display:none!important}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}}@media screen and (max-width:752px){#heateor_sss_sharing_more_content .all-services ul li{width:32.1%}}@media screen and (max-width:590px){#heateor_sss_sharing_more_content .all-services ul li{width:48.1%}#heateor_sss_sharing_more_providers .filter input.search{width:93%}}@media screen and (max-width:413px){#heateor_sss_sharing_more_content .all-services ul li{width:100%}}div.heateor_sss_bottom_sharing{margin-bottom:0}div.heateor_sss_sharing_container a:before,div.heateor_sss_follow_icons_container a:before{content:none}.heateor_sss_mastodon_popup_button{background:linear-gradient(#ec1b23,#d43116);padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:4px auto;font-weight:bolder;width:35%;cursor:pointer;border-bottom-style:groove;border-bottom-width:5px;border-bottom-color: rgb(0,0,0,.2)}@media screen and (max-width: 783px)#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92.8%}div.heateor_sss_follow_icons_container svg,div.heateor_sss_sharing_container svg{width:100%;height:100%}