/*
 *
 *      GLOBAL
 *
 */

.hide {
    display: none;
}

.esk-seo-plu-link {
    background: inherit !important;
    color: inherit !important;
    padding: 0 !important;
}



/*
 *
 *      TAG
 *
 */

.esk-seo-plu-tag {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 6px 8px 6px 0;
}


.esk-seo-plu-back {
    font-size: 0.8em;
    padding: 0.4em 1.5em;
    color: #999;
    border-radius: 0.5em;
    border: 1px solid #ccc;
}

.esk-seo-plu-back:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.esk-seo-plu-tag img {
    margin: 0 8px 0 0;
    display: none;
}

.esk-seo-plu-tag a,
.esk-seo-plu-tag span {
    position: relative;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    box-shadow: none !important;
    padding: 6px 13px;
    color: #444e4f;
    background: #ecf0f1;
    display: block;
    border-radius: 3px;
    transition: 0.1s linear all;
}

.esk-seo-plu-tag a:hover,
.esk-seo-plu-tag a:active {
    background: #e1e6e8;
}

.esk-seo-plu-tag a:hover {
    box-shadow: none;
}


/*
 *
 *      AFTER POST
 *
 */

.esk-seo-plu-after-post {
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    padding: 20px;
    font-family: 'Open Sans';
}

    .esk-seo-plu-after-post .title {
        font-size: 16px;
    }

    .esk-seo-plu-after-post .title:after {
        content: ':';
        padding: 0 0 0 10px;
    }


.esk-seo-plu-tags {
    margin: 15px 0 0 0;
}

    .esk-seo-plu-tags ul,
    .esk-seo-plu-tags-associate ul {
        display: flex;
        flex-wrap: wrap;
    }

.esk-seo-plu-tags-associate {
    margin: 50px 0 0 0;
}




/*
 *
 *      PAGE TAG
 *
 */

.esk-seo-plu-page-tag {
    width: 100%;
    position: relative;
    text-align: center;
    font-family: 'Open Sans';
    margin: 0 0 1em 0;
    background: white;
}

    .esk-seo-plu-page-tag .site-main {
        padding: 2em;
    }

    .esk-seo-plu-page-tag .page-tag-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 0 30px 0;
        transform: 0.1s linear all;
    }

        @keyframes rotate-before {
            0% {
                transform: rotate(0deg);
                opacity: 0.1;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                transform: rotate(360deg);
                opacity: 0.1;
            }
        }


        @keyframes rotate-after {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(-360deg);
            }
        }

        .esk-seo-plu-page-tag .page-tag-header-picture {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0 40px 0;
            border-radius: 100%;
            transform: 0.1s linear all;
        }

            .esk-seo-plu-page-tag .page-tag-header-picture .circle {
                width: 210px;
                height: 210px;
                text-align: center;
                overflow: hidden;
            }

            .esk-seo-plu-page-tag .page-tag-header-picture img {
                width: 210px;
                height: 210px;
                border-radius: 100%;
                z-index: 1;
            }

            .esk-seo-plu-page-tag .page-tag-header-picture:before {
                position: absolute;
                width: 204px;
                height: 204px;
                left: 3px;
                top: 3px;
                display: block;
                content: '';
                border-radius: 100%;
                opacity: 0.3;
                background: linear-gradient(transparent 50%, white);
                animation: rotate-before 2s linear infinite;
                z-index: 2;
            }

            .esk-seo-plu-page-tag .page-tag-header-picture:after {
                position: absolute;
                width: 220px;
                height: 220px;
                display: block;
                top: -5px;
                left: -5px;
                content: '';
                transform: rotate(-150deg);
                border-radius: 100%;
                border-top: 2px solid black;
                /* animation: rotate-after 2s linear infinite; */
                opacity: 0.1;
                z-index: 0;
            }

        .esk-seo-plu-page-tag .page-tag-header-informations {
            width: 100%;
        }

    .esk-seo-plu-page-tag h1.page-tag-title {
        font-weight: 700;
        color: #333;
        padding: 0 0 20px 0;
        margin-bottom: 25px;
        border-bottom: 1px solid #eee;
    }

    .esk-seo-plu-page-tag h2.page-tag-title {
        font-weight: 600;
        padding: 40px 0 20px 0;
        color: #333;
    }

        .esk-seo-plu-page-tag h2.page-tag-title span {
            display: block;
            font-weight: 500;
            color: #666;
        }

    .esk-seo-plu-page-tag .page-tag-description {
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.2px;
        color: #666;
        line-height: 32px;
        padding: 30px 50px;
        background: rgba(0,0,0,0.010);
    }

        .esk-seo-plu-page-tag .page-tag-description p {
            display: inline;
        }

        .esk-seo-plu-page-tag .page-tag-description a {
            border-bottom: 1px dashed #999;
            color: #999;
            transition: 0.05s linear all;
        }

        .esk-seo-plu-page-tag .page-tag-description a:hover {
            border-color: transparent;
            color: inherit;
        }

        .esk-seo-plu-page-tag .page-tag-description span,
        .esk-seo-plu-page-tag .page-tag-description span.open {
            font-weight: 500;
            font-size: 12px;
            display: block;
            padding: 0;
            cursor: pointer;
            margin: 20px 0 0 0;
            text-align: center;
        }

    .esk-seo-plu-page-tag .headlines-posts {
        background: rgba(0,0,0,0.020);
        height: 340px;
        padding: 20px;
        margin-bottom: 50px;
    }

        .esk-seo-plu-page-tag .headlines-posts .headline-post {
            background: white;
            width: 270px;
            height: 100%;
            margin: 0 10px;
            padding: 10px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-thumbnail {
                height: 180px !important;
                max-width: auto !important;
            }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-thumbnail.no-thumbnail {
                position: relative;
                width: 100%;
                background: rgba(0,0,0,0.020);
            }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-thumbnail.no-thumbnail:before {
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'eskimoz-seo';
                font-size: 30px;
                opacity: 0.2;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                content: '\e90e';
            }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-btn {
                display: inline-block;
                border-bottom: 1px dashed transparent;
            }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-btn:hover {
                border-color: #ccc;
            }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-link {
                display: inline-block;
                padding: 18px 0 2px 0;
            }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-link:hover {
                color: #666;
            }

            .esk-seo-plu-page-tag .headlines-posts article .headline-post-time {
                display: block;
                padding: 8px;
                font-size: 11px;
                color: #999;
            }

        .esk-seo-plu-page-tag .flickity-prev-next-button {
            padding: 0 24px;
        }

        .esk-seo-plu-page-tag .flickity-page-dots {
            left: 0;
        }

        .esk-seo-plu-page-tag .flickity-page-dots {
            bottom: -40px;
        }

        .esk-seo-plu-page-tag .flickity-page-dots .dot {
            width: 10px;
            height: 10px;
            opacity: 1;
            background: transparent;
            border: 2px solid #333;
        }

        .esk-seo-plu-page-tag .flickity-page-dots .dot.is-selected {
            background: #333;
        }

    .esk-seo-plu-page-tag .filters-posts {
        height: 430px;
    }

    .esk-seo-plu-page-tag .filters-posts .filter-post {
        width: 230px;
    }

        .esk-seo-plu-page-tag .filters-posts article .headline-post-header {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 5em;
        }

        .esk-seo-plu-page-tag .filters-posts article .headline-post-link {
            display: inline;
            font-size: 15px;
            line-height: 24px;
            padding: 0;
        }

        .esk-seo-plu-page-tag .page-tag-filters {
            margin: 15px 0 10px 0;
            height: 45px;
        }

        .esk-seo-plu-page-tag .page-tag-filters:after {
            content: 'flickity';
            display: none;
        }

            .esk-seo-plu-page-tag .page-tag-filters li {
                display: block;
                width: 150px;
                height: auto;
                margin: 0 10px;
                opacity: 0.4;
            }

            .esk-seo-plu-page-tag .page-tag-filters li.is-selected {
                opacity: 1;
                font-weight: 600;
            }

        .esk-seo-plu-page-tag .filters-posts article .headline-post-time {
            font-size: 10px;
            padding: 6px 0 8px 0;
        }

        .esk-seo-plu-page-tag .filters-posts article .headline-post-thumbnail {
            height: 120px !important;
            width: 100% !important;
            margin: 7px 0 20px 0;
        }

        .esk-seo-plu-page-tag .filters-posts article .headline-post-thumbnail.no-thumbnail {
            margin-bottom: 26px;
        }

        .esk-seo-plu-page-tag .filters-posts article .headline-post-description {
            font-size: 11px;
            font-weight: 300;
            letter-spacing: -0.1px;
            line-height: 20px;
            padding: 0 10px;
            color: #666;
        }

        .esk-seo-plu-page-tag .filters-posts article .headline-post-btn {
            padding-top: 10px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: -0.1px;
        }

    .esk-seo-plu-page-tag-columns .column-left-header {
        margin-bottom: 3.5em;
    }

    .esk-seo-plu-page-tag-columns h2.page-tag-title {
        font-size: 22px;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .esk-seo-plu-page-tag-columns .page-tag-subtitle {
        font-size: 13px;
        font-weight: 300;
        color: #999;
    }





@media screen and (min-width: 48em)
{

    /*
     *
     *      PAGE TAG
     *
     */

    .esk-seo-plu-page-tag {
        text-align: left;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

        .esk-seo-plu-page-tag .page-tag-header {
            flex-direction: row;
        }

            .esk-seo-plu-page-tag .page-tag-header-picture {
                margin: 0 50px 0 0;
            }

        .esk-seo-plu-page-tag .page-tag-filters {
            height: auto;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: flex-start;
            padding: 0 20px;
        }

        .esk-seo-plu-page-tag .page-tag-filters:after {
            content: '';
        }

            .esk-seo-plu-page-tag .page-tag-filters li {
                 position: relative;
                 font-size: 14px;
                 font-weight: 400;
                 width: auto;
                 padding: 8px 20px;
                 border-radius: 2px;
                 border-bottom-left-radius: 0px;
                 border-bottom-right-radius: 0px;
                 margin: 0;
                 border: 1px solid transparent;
                 border-bottom: none;
                 opacity: 1;
                cursor: pointer;
             }

            .esk-seo-plu-page-tag .page-tag-filters li.active {
                border-color: #eee;
                font-weight: 600;
            }

            .esk-seo-plu-page-tag .page-tag-filters li.active:after {
                width: 100%;
                height: 2px;
                background: white;
                position: absolute;
                bottom: -2px;
                left: 0;
                content: '';
            }

        .esk-seo-plu-page-tag .headlines-posts {
            background: rgba(0,0,0,0.010);
        }

        .esk-seo-plu-page-tag h2.page-tag-title span {
            display: inline;
        }

        .esk-seo-plu-page-tag .page-tag-description span {
            display: inline;
            padding: 0 0 0 8px;
        }

        .esk-seo-plu-page-tag .page-tag-description span.open {
            text-align: right;
        }


    
    
    .esk-seo-plu-page-tag-columns {
        display: flex;
        justify-content: space-between;
    }
    
        .esk-seo-plu-page-tag-columns .column-left {
            width: 70%;
            flex: 2;
        }

            .esk-seo-plu-page-tag-columns .column-left-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 0;
            }

            .esk-seo-plu-page-tag-columns h2.page-tag-title {
                border-bottom: none;
                margin-bottom: 20px;
            }

        .esk-seo-plu-page-tag-columns .column-right {
            text-align: right;
            flex: 1;
        }

            .esk-seo-plu-page-tag-columns .column-right h2.page-tag-title {
                padding-bottom: 14px;
                margin-bottom: 0;
            }

    .esk-seo-plu-page-tag .esk-seo-plu-tags-link {
        padding: 15px 0 0 20px;
    }

        .esk-seo-plu-page-tag .esk-seo-plu-tags-link ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .esk-seo-plu-page-tag .esk-seo-plu-tags-link .esk-seo-plu-tag {
            margin: 6px 0px 6px 8px;
        }



}