a.gflag {
    font-size: 24px;
    padding: 1px 0;
    background-repeat: no-repeat;
    background-image: url(/dist/images/24.png);
}

a.gflag img {
    border: 0;
    height: 24px;
    display: inline;
}

a.gflag:hover {
    background-image: url(/dist/images/24a.png);
}

img.gstats {
    display: none;
}

a.alt_flag {
    background-image: url(/dist/images/alt_flags.png);
}

a.alt_flag:hover {
    background-image: url(/dist/images/alt_flagsa.png);
}

a.us_flag {
    background-position: -0px -100px;
}

a.br_flag {
    background-position: -100px -100px;
}

a.mx_flag {
    background-position: -200px -100px;
}

a.glink {
    text-decoration: none;
}

a.glink span {
    margin-right: 5px;
    font-size: 15px;
    vertical-align: middle;
}

a.glink img {
    vertical-align: middle;
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 0.8;
}

a.glink:hover img {
    opacity: 1;
}

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    color: #dc3232; /* Red */
    font-size: 1em;
    font-weight: normal;
    display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: relative;
    top: -2ex;
    left: 1em;
    z-index: 100;
    border: 1px solid #dc3232;
    background: #fff;
    padding: .2em .8em;
    width: 24em;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
    content: " ";
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d; /* Dark Gray 800 */
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}

form.submitting .wpcf7-spinner {
    visibility: visible;
}

.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc; /* Light Gray 100 */
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
    .wpcf7-spinner::before {
        animation-name: blink;
        animation-duration: 2000ms;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.wpcf7 input[type="file"] {
    cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
    cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    direction: ltr;
}

.wpcf7-reflection > output {
    display: list-item;
    list-style: none;
}

@charset "UTF-8";

/*
Theme Name: Twenty Twenty
Adding print support. The print styles are based on the the great work of
Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272/.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Margins
# Paddings
# Width
# Typography
# Page breaks
# Links
# Visibility
--------------------------------------------------------------*/
@media print {

    /* Margins */
    @page {
        margin: 2cm;
    }

    .entry-header,
    .site-footer {
        margin: 0;
    }

    /* Paddings */
    .posts {
        padding: 0;
    }

    /* Width */
    .entry-content,
    .entry-content p,
    .section-inner,
    .section-inner.max-percentage,
    .section-inner.medium,
    .section-inner.small,
    .section-inner.thin {
        max-width: 100%;
        width: 100%;
    }

    /* Fonts */
    body {
        background: #fff !important;
        color: #000;
        font: 13pt Georgia, "Times New Roman", Times, serif;
        line-height: 1.3;
    }

    h1 {
        font-size: 20pt;
    }

    h2,
    h2.entry-title,
    h3,
    h4,
    .has-normal-font-size,
    .has-regular-font-size,
    .has-large-font-size,
    .comments-header {
        font-size: 14pt;
        margin-top: 1cm;
    }

    /* Page breaks */
    a {
        page-break-inside: avoid;
    }

    blockquote {
        page-break-inside: avoid;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    img {
        page-break-inside: avoid;
        page-break-after: avoid;
    }

    table,
    pre {
        page-break-inside: avoid;
    }

    ul,
    ol,
    dl {
        page-break-before: avoid;
    }

    /* Links */
    a:link,
    a:visited,
    a {
        background: transparent;
        font-weight: bold;
        text-decoration: underline;
    }

    a {
        page-break-inside: avoid;
    }

    a[href^="http"]:after {
        content: " < " attr(href) "> ";
    }

    a:after > img {
        content: "";
    }

    article a[href^="#"]:after {
        content: "";
    }

    a:not(:local-link):after {
        content: " < " attr(href) "> ";
    }

    /* Visibility */
    #site-header,
    .comment-form,
    .comments-wrapper,
    .comment .comment-metadata,
    .footer-social-wrapper,
    .footer-widgets-outer-wrapper,
    .header-navigation-wrapper,
    .entry-categories,
    .post-comment-link.meta-wrapper,
    .pagination-wrapper,
    .pagination-single,
    .post-meta-wrapper.post-meta-edit-link-wrapper,
    .post-meta-wrapper.post-meta-single-bottom,
    .post-separator,
    .site-logo img {
        display: none;
    }

    .entry-content .wp-block-button .wp-block-button__link,
    .entry-content .wp-block-button .wp-block-file__button,
    .entry-content .button {
        background: none;
        color: #000;
    }
}



.top-bar .mail a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    float: left;
    margin: 0;
}

.logo {
    padding: 14px 0;
}

.logo img {
    max-height: 46px;
}

.nav-pills {
    justify-content: center;
}

.nav-pills li {
    margin: 0 10px;
}

.article-item {
    box-shadow: 0 0 10px 1px #dfdfdf;
    border: 1px solid #dfdfdf;
    padding: .75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-item img {
    width: 100%;
    height: 168px;
    object-fit: cover;
}

.article-item .content {
    margin-top: 1rem;
}

.article-item h4 {
    margin: 1rem 0;
}

.article-item h4 a{
    font-size: 1.25rem;
    color: #0C1021;
    font-weight: 600;
}

.article-item .summary {
    font-size: .875rem;
    color: #666666;
    flex: 1;
    line-height: 1.42;
}

.article-item time {
    font-style: italic;
}

.app_footer-text-icon {
    border-bottom: 1px solid #444;
}

.footer .ft-botlinks a {
    font-size: 14px;
    font-weight: 600;
}

.ft-botlinks {
    justify-content: flex-start;
}

header.fixed ul.navbar-nav {
    width: 100%;
}

.page .pagination {
    justify-content: center;
}

.page .pagination .page-item {
    margin: 5px;
}

.page .pagination .page-item span, .page .pagination .page-item a {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 1rem;
}

.page .pagination .page-item.active span {
    background-color: #f22d2d;
    border-color: #f22d2d;
}

.article__content, .article .article__content p {
    font-size: .875rem;
    color: #444444;
}

.article .article__content img {
    max-width: 100%;
}

.post-ad {
    margin-bottom: 1.5rem;
    box-shadow: 4px 6px 6px 0px #a1a1a1;
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
}

.related h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #272E36;
}

.related ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.related ul li {
    border-bottom: 1px solid #dddddd;
    line-height: 146%;
    padding: .75rem;
    font-size: .875rem;
}

.related ul li:last-child {
    border-bottom: none;
}

.related ul li a {
    color: #333333;
}