.gb-wrap {
    position: relative;
    overflow: clip;
    padding: var(--mobile-padding);
    border-width: var(--border-width, 0px);
    border-style: var(--border-style, none);
    border-color: var(--border-color, transparent);
    border-radius: var(--border-radius, var(--round-5));
    background-color: var(--bg);
    --heading-color: inherit;
    --header-bg: transparent;
    --heading-border-color: transparent;
    --dark-heading-color: inherit;
    --dark-header-bg: transparent;
    --dark-heading-border-color: transparent;
    --content-bg: transparent;
    --border-style: solid;
    --border-width: 0px;
    --border-color: transparent;
    --dark-border-color: transparent;
    --bg: transparent;
    --dark-bg: transparent;
}

[data-theme='dark'] .gb-wrap {
    border-color: var(--dark-border-color, transparent);
    background-color: var(--dark-bg);
}

.yes-shadow {
    box-shadow: 0 5px 30px var(--shadow-7);
}

.gb-wrap.none-padding {
    padding: 0;
}

.gb-header {
    padding: var(--mobile-header-padding);
    background-color: var(--header-bg, transparent);
}

[data-theme='dark'] .gb-header {
    background-color: var(--dark-header-bg, var(--header-bg, transparent));
}

.no-h-spacing .note-header {
    padding-bottom: 0;
}

.gb-overlay-link {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
}

.gb-heading {
    margin: 0;
    color: var(--heading-color, inherit);
    --cp-spacing: 0;
}

h2.gb-heading {
    font-size: var(--mobile-heading-size, var(--h2-fsize));
}

h3.gb-heading {
    font-size: var(--mobile-heading-size, var(--h3-fsize));
}

h4.gb-heading {
    font-size: var(--mobile-heading-size, var(--h4-fsize));
}

h5.gb-heading {
    font-size: var(--mobile-heading-size, var(--h5-fsize));
}

h6.gb-heading {
    font-size: var(--mobile-heading-size, var(--h6-fsize));
}

span.gb-small-heading {
    font-size: var(--mobile-sub-heading-size, var(--h4-fsize));
}

.gb-description {
    font-size: var(--mobile-description-size, .9rem);
    display: block;
    margin-top: 7px;
    color: var(--description-color, var(--meta-fcolor));
}

[data-theme='dark'] .gb-heading {
    color: var(--dark-heading-color);
}

[data-theme='dark'] .gb-description {
    color: var(--dark-description-color);
}

.note-content {
    display: block;
    overflow: hidden;
    border-top: 1px solid var(--heading-border-color);
}

.gb-content {
    padding: var(--mobile-padding, 20px);
    background-color: var(--content-bg);
}

[data-theme='dark'] .gb-content {
    background-color: var(--dark-content-bg);
}

.note-content > *:not(:last-child) {
    margin-block-start: 0;
    margin-block-end: var(--cp-spacing, 1.5rem);
}

.note-header {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.heading-icon {
    margin-right: 7px;
}

.heading-icon img {
    width: 1.2em;
    min-width: 1.2em;
    height: 1.2em;
    min-height: 1.2em;
    object-fit: contain;
}

.gb-heading .note-title {
    font-size: 1em;
    margin: 0;
    color: inherit;
}

.note-heading {
    display: flex;
    align-items: center;
}

.yes-toggle .note-header {
    cursor: pointer;
}

.yes-toggle .note-content {
    display: none;
}

.note-wrap.is-inline:not(.explain) {
    display: inline-block;
}

.note-wrap.explain .note-toggle {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.note-toggle {
    display: inline-flex;
    -webkit-transition: var(--effect);
    transition: var(--effect);
}

.is-inline .note-toggle {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

div.list-style-element ul,
div.list-style-element ol {
    padding-left: 0;
    list-style: none;
}

div.list-style-element li {
    margin-bottom: var(--item-spacing, .5rem);
}

.list-style-element li:before {
    font-size: var(--mobile-icon-size);
    display: inline;
    padding-right: 7px;
    content: var(--icon-code);
    vertical-align: middle;
    color: var(--icon-color, inherit);
}

.list-style-element.is-icon li:before {
    font-family: 'ruby-icon';
}

[data-theme='dark'] .list-style-element li:before {
    color: var(--dark-icon-color, inherit);
}

.af-inner {
    display: flex;
    align-items: flex-start;
    flex-flow: row wrap;
    flex-grow: 1;
    gap: 20px;
}

.af-product .af-image {
    display: flex;
    flex-shrink: 0;
    width: var(--mobile-image-size, 100%);
    max-width: 100%;
    border-radius: var(--round-7);
    object-fit: cover;
}

.gb-download .gb-image {
    display: block;
    float: left;
    width: var(--mobile-image-size, 100px);
    max-width: 100%;
    margin-right: 20px;
    border-radius: var(--round-7);
    object-fit: cover;
}

.notice-text:not(:empty) {
    display: block;
    padding-top: 15px;
}

.af-cta-wrap {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    flex-grow: 1;
    justify-content: space-between;
    gap: 20px;
}

.af-content {
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    gap: 10px;
}

.is-btn.af-button {
    font-size: var(--mobile-button-size, var(--btn-fsize));
    line-height: 1;
    position: relative;
    z-index: 10;
    display: inline-flex;
    padding: .8em 1.6em;
    text-decoration: none;
    color: var(--button-color, var(--btn-accent, var(--awhite)));
    border-radius: var(--round-7);
    background-color: var(--button-bg, var(--btn-primary, var(--g-color)));
}

.af-product .is-btn.af-button {
    padding: 1em 2em;
}

.af-rating {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    padding-top: 5px;
    gap: 10px;
    --review-color: var(--rating-color, var(--g-color));
}

.af-rating-meta {
    color: var(--heading-color, inherit);
}

[data-theme='dark'] .af-rating {
    --review-color: var(--dark-rating-color, var(--g-color));
}

[data-theme='dark'] .af-rating-meta {
    --review-color: var(--dark-heading-color, var(--g-color));
}

.is-button-border .is-btn.af-button {
    color: var(--button-color, var(--body-fcolor));
}

[data-theme='dark'] .is-btn.af-button {
    color: var(--dark-button-color, #fff);
}

.af-link {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

span.af-price {
    font-size: var(--mobile-price-size);
    color: var(--price-color, inherit);
}

.h3.af-price {
    font-size: var(--mobile-price-size, var(--h3-fsize));
}

.h4.af-price {
    font-size: var(--mobile-price-size, var(--h4-fsize));
}

.af-price del {
    font-size: var(--em-small);
    margin-right: min(0.5em, 7px);
    opacity: .7;
    color: var(--body-fcolor);
}

[data-theme='dark'] .af-heading {
    color: var(--dark-heading-color);
}

[data-theme='dark'] .af-description {
    color: var(--dark-description-color);
}

[data-theme='dark'] span.af-price {
    color: var(--dark-price-color);
}

.is-button-border .is-btn.af-button {
    border: 1px solid var(--button-bg, var(--btn-primary, currentColor));
    background-color: transparent;
}

.is-btn.af-button:hover {
    color: var(--button-hover-color, var(--awhite));
    border-color: var(--button-hover-bg, var(--dark-accent));
    background: var(--button-hover-bg, var(--dark-accent));
    --g-color-90: var(--button-hover-bg, var(--dark-accent-90));
}

[data-theme='dark'] .is-button-border .is-btn.af-button {
    border-color: var(--dark-button-bg);
}

[data-theme='dark'] .is-btn.af-button:hover {
    color: var(--dark-button-hover-color);
    border-color: var(--dark-button-hover-bg);
    background: var(--dark-button-hover-bg);
    --g-color-90: var(--dark-button-hover-bg);
}

/** product list */
.af-list-inner {
    display: flex;
    flex-flow: row wrap;
    padding-bottom: 10px;
    gap: 20px;
}

.af-list-header {
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    gap: 10px;
}

.af-list-best-price {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
    max-width: 180px;
    padding-top: 20px;
    border-top: 2px dashed var(--flex-gray-15);
}

.af-list-best-price * {
    line-height: 1;
}

.af-list-item-inner {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 20px;
}

.af-list-item .af-button {
    border-radius: var(--button-border-radius, var(--round-3));
}

.af-list-item .af-list-logo {
    max-width: var(--logo-size, 50px);
    height: auto;
}

.af-list-item-left,
.af-list-item-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.af-list-item {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--flex-gray-15);
}

.af-item-list-btn {
    font-size: 12px;
}

.af-list .af-best-price {
    font-size: var(--mobile-best-price-size);
    text-decoration: none;
    color: var(--best-price-color, var(--g-color));
}

[data-theme='dark'] .af-list .af-best-price {
    color: var(--dark-best-price-color);
}

.gb-download-header {
    display: block;
    overflow: hidden;
    margin-bottom: 25px;
}

.submitting:before {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: .9;
    background: var(--solid-light);
}

.submitting {
    cursor: wait;
}

.gb-download:not(.submitting) .rb-loader {
    display: none;
}

.download-checkbox {
    font-size: var(--rem-mini);
    color: var(--meta-fcolor);
}

.fallback-info {
    font-size: var(--rem-mini);
    font-style: italic;
    margin-bottom: 15px;
    color: var(--meta-fcolor);
}

.fallback-download-btn {
    display: block;
    text-align: center;
}

.accordion-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
    -webkit-transition: all .25s;
    transition: all .25s;
    opacity: .5;
    border-bottom: 1px solid var(--flex-gray-15);
    gap: 5px;
}

.accordion-item-header:hover,
.active .accordion-item-header,
.yes-amp .accordion-item-header {
    opacity: 1;
}

.accordion-item-header .rbi {
    -webkit-transition: all .25s;
    transition: all .25s;
}

.active .accordion-item-header .rbi {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.accordion-item-content {
    display: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--flex-gray-15);
}

.gb-accordion-item:last-child .accordion-item-content {
    border-bottom: none;
}

.gb-accordion-item:last-child .accordion-item-header {
    border-bottom: none;
}

.yes-open .gb-accordion-item:first-child .accordion-item-content,
.yes-amp .accordion-item-content {
    display: block;
}

.gb-highlight {
    font-weight: 700;
}

.gb-highlight * {
    font-weight: inherit !important;
    letter-spacing: inherit;
}

.gb-highlight mark {
    color: var(--highlight-color, var(--awhite));
    background: var(--highlight-bg, var(--g-color));
}

[data-theme='dark'] .gb-highlight mark {
    color: var(--dark-highlight-color, var(--awhite));
    background: var(--dark-highlight-bg, var(--g-color));
}

/** review box */
.gb-review-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gb-review-header-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 40px;
}

.gb-review-featured {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius, var(--round-5));
}

.gb-review-featured img {
    width: 100%;
    object-fit: cover;
}

.gb-absolute-meta {
    position: absolute;
    top: 20px;
    right: 20px;
}

.gb-review-content {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
}

.top-divider {
    position: relative;
    padding-top: 23px;
}

.gb-review-header {
    display: flex;
    flex-flow: column nowrap;
    gap: 15px;
}

.review-total-stars {
    font-size: var(--rem-mini);
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    --rating-size: 16px;
    gap: 10px;
}

.gb-review-cards {
    display: flex;
    flex-flow: row wrap;
    margin: -20px;
}

.gb-review-cards > * {
    width: 100%;
    padding: 20px;
}

.review-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    gap: 15px;
}

.review-buttons a {
    line-height: 1;
    flex-grow: 1;
    justify-content: center;
    min-width: calc(50% - 10px);
    padding: .8em 1.2em;
}

.is-btn.gb-btn {
    font-size: var(--mobile-button-size, var(--btn-fsize));
    color: var(--button-color, var(--btn-accent, var(--awhite)));
    background-color: var(--button-bg, var(--btn-primary, var(--g-color)));
}

[data-theme='dark'] .is-btn.gb-btn {
    color: var(--dark-button-color, var(--btn-accent, var(--awhite)));
    background-color: var(--dark-button-bg, var(--btn-primary, var(--g-color)));
}

.is-btn.gb-btn.is-border-style {
    border: 1px solid currentColor;
}

.is-btn.gb-btn.is-border-style:hover {
    border-color: var(--btn-primary-h, var(--g-color));
}

.is-btn.gb-btn.is-border-style:not(:hover) {
    color: var(--is-border-button-color, inherit);
    border-color: var(--is-border-button-border, currentColor);
    background-color: transparent;
}

[data-theme='dark'] .is-btn.gb-btn.is-border-style {
    color: var(--dark-is-border-button-color, inherit);
}

[data-theme='dark'] .is-btn.gb-btn.is-border-style:not(:hover) {
    color: var(--dark-is-border-button-border, currentColor);
}

.live-fdate {
    display: inline-flex;
    margin-right: 0;
    margin-left: auto;
}

.live-datetime {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 15px;
    gap: 7px;
}

.live-datetime:after {
    position: absolute;
    top: calc(0.8em + 8px);
    bottom: 0;
    left: calc(.4em + 3px);
    content: '';
    border-left: 2px solid var(--flex-gray-15);
}

.live-hdate {
    position: relative;
    display: flex;
    margin-left: 0.3em;
}

.live-datetime-dot {
    position: relative;
    width: .8em;
    height: .8em;
    margin-left: 4px;
    border-radius: 50%;
    background: var(--live-color);
}

.live-datetime-dot:after {
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    content: '';
    opacity: .5;
    border: 2px solid var(--live-color);
    border-radius: 50%;
}

.live-blog-interval {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    padding: 7px 20px;
    border-left: 5px solid;
    border-radius: var(--round-7);
    box-shadow: 0 4px 20px var(--shadow-7);
}

.live-blog-total {
    display: inline-flex;
    align-items: center;
    gap: .15em;
}

.live-blog-total i {
    font-size: 1.4em;
    margin-right: 5px;
}

.live-interval {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.rb-switch {
    position: relative;
    display: inline-flex;
    width: 48px;
    height: 26px;
}

input[type='checkbox'].rb-switch-input {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.rb-switch-slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
    transition: .4s;
    border-radius: 34px;
    background-color: var(--flex-gray-40);
}

.rb-switch-slider:before {
    position: absolute;
    bottom: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    content: '';
    transition: .4s;
    border-radius: 50%;
    background-color: #fff;
}

.rb-switch-input:checked + .rb-switch-slider {
    background-color: var(--live-color, var(--g-color));
}

.rb-switch-input:checked + .rb-switch-slider:before {
    transform: translateX(22px);
}

@media (min-width: 768px) {
    .af-inner, .af-list-inner {
        flex-flow: row nowrap;
    }

    .gb-wrap, .gb-content {
        padding: var(--tablet-padding);
    }

    .gb-header {
        padding: var(--tablet-header-padding);
    }

    .gb-heading {
        font-size: var(--tablet-heading-size);
    }

    h2.gb-heading {
        font-size: var(--tablet-heading-size, var(--h2-fsize));
    }

    h3.gb-heading {
        font-size: var(--tablet-heading-size, var(--h3-fsize));
    }

    h4.gb-heading {
        font-size: var(--tablet-heading-size, var(--h4-fsize));
    }

    h5.gb-heading {
        font-size: var(--tablet-heading-size, var(--h5-fsize));
    }

    h6.gb-heading {
        font-size: var(--tablet-heading-size, var(--h6-fsize));
    }

    span.gb-small-heading {
        font-size: var(--tablet-sub-heading-size, var(--h4-fsize));
    }

    .gb-description {
        font-size: var(--tablet-description-size, .9rem);
    }

    .is-btn.gb-btn {
        font-size: var(--tablet-button-size, var(--btn-fsize));
    }

    .list-style-element li:before {
        font-size: var(--tablet-icon-size);
    }

    span.af-price {
        font-size: var(--tablet-price-size);
    }

    .h3.af-price {
        font-size: var(--tablet-price-size, var(--h3-fsize));
    }

    .h4.af-price {
        font-size: var(--tablet-price-size, var(--h4-fsize));
    }

    .gb-download .gb-image,
    .af-product .af-image {
        width: var(--tablet-image-size, 120px);
    }

    .af-list .af-best-price {
        font-size: var(--tablet-best-price-size);
    }

    .af-cta-wrap {
        flex-flow: column nowrap;
        flex-shrink: 0;
        max-width: 200px;
    }

    .is-btn.af-button {
        font-size: var(--tablet-button-size, var(--btn-fsize));
    }

    .af-list-inner {
        gap: 30px;
    }

    .af-list-best-price {
        align-items: flex-end;
        flex-flow: column nowrap;
        justify-content: flex-start;
        width: auto;
        padding-top: 0;
        padding-left: 30px;
        border-top: none;
        border-left: 2px dashed var(--flex-gray-15);
        gap: 10px;
    }
}

@media (min-width: 1025px) {
    .gb-wrap, .gb-content {
        padding: var(--desktop-padding);
    }

    .gb-header {
        padding: var(--desktop-header-padding);
    }

    .af-product {
        flex-flow: row nowrap;
    }

    .gb-heading {
        font-size: var(--desktop-heading-size);
    }

    h2.gb-heading {
        font-size: var(--desktop-heading-size, var(--h2-fsize));
    }

    h3.gb-heading {
        font-size: var(--desktop-heading-size, var(--h3-fsize));
    }

    h4.gb-heading {
        font-size: var(--desktop-heading-size, var(--h4-fsize));
    }

    h5.gb-heading {
        font-size: var(--desktop-heading-size, var(--h5-fsize));
    }

    h6.gb-heading {
        font-size: var(--desktop-heading-size, var(--h6-fsize));
    }

    span.gb-small-heading {
        font-size: var(--desktop-sub-heading-size, var(--h4-fsize));
    }

    .gb-description {
        font-size: var(--desktop-description-size, .9rem);
    }

    .af-list .af-best-price {
        font-size: var(--desktop-best-price-size);
    }

    .list-style-element li:before {
        font-size: var(--desktop-icon-size);
    }

    span.af-price {
        font-size: var(--desktop-price-size);
    }

    .h3.af-price {
        font-size: var(--desktop-price-size, var(--h3-fsize));
    }

    .h4.af-price {
        font-size: var(--desktop-price-size, var(--h4-fsize));
    }

    .gb-download .gb-image,
    .af-product .af-image {
        width: var(--desktop-image-size, 150px);
    }

    .is-btn.af-button,
    .is-btn.gb-btn {
        font-size: var(--desktop-button-size, var(--btn-fsize));
    }

    .gb-review-content {
        gap: 25px;
    }

    .top-divider {
        padding-top: 28px;
    }

    .review-total-stars {
        --rating-size: 18px;
    }

    .gb-review-cards > * {
        width: 50%;
    }

    .review-buttons a {
        min-width: calc(33% - 10px);
    }
}

@media (max-width: 767px) {
    .gb-download .mc4wp-form-fields > div {
        flex-flow: column nowrap;
    }

    .af-list-best-price {
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }

    .af-list-item-inner > * {
        flex-flow: column nowrap;
        gap: 10px;
    }

    .af-list-item-left {
        align-items: flex-start;
    }
}#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(//sondeolatino.net/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%}