@charset "UTF-8";

/* Theme Name: TheSteam
 * Theme URI: http://www.webdotinc.net/thesteam
 * Author: WDI
 * Author URI: http://webdotinc.com
 * Description: WebDotInc TheSteam Theme
 * Version: 1.0.0
 * License: Standard License
 * License URL: https://themeforest.net/licenses/standard
 * Text Domain: thesteam
 */

/*------------------------------------------------------------------

[Blog Entries List (index) Stylesheet]

Project:        TheSteam
Version:        1.0
Last change:    22/08/16
Primary use:    Restaurant Theme

This style is used for a list of posts, or custom posts defined as dishes.

Bird's eye view of the page structure:
body
    div#bloglist-header-image - displays category user selected image
        .aligner - aligns the logo in the middle of the page
            .logo - styles the logo of the page
    div#navbar - menu filled with categories
        .button - styles the buttons inside the nav-bar
    div.row-post-list - list of posts as in a generic index page
        div.main-post-container - Blog entry
            .post-container - styles the content of the container
                .post-title-line - styles the title of the post
                .sticky .post-title-line - styles the title of the sticky post
                .publish-date - styles the date of the post
                .post-category-line - aligns the category of the post
                .read-more - style for the read more button
                    .read-more-btn - aligns the content of the button
                        .read-more-btn:hover - hover effect fot the read more button
                .post-views - styles the view count
                .post-social-media - styles the social media buttons
    aside#sidebar - sidebar filled with user selected widgets
    footer.footer-bg - main footer
        div.subfooter - please see footer generic style for further details

[Color codes]

Background:	#ffffff (white)
Content:	#444444 (dark gray)
Header h1:	#424242 (dark gray)
Header h2:	#444444 (dark gray)
Header h5:  #5D5959 (light gray)
Footer:		#282828 (dark gray)
SubFooter:  #221e1e (light black)

menu-buttons:   #8bafaf (blue)
a (standard):	#565656 (dark gray)
a (visited):	#008CBA (light blue)
a (active):	    #008CBA (light blue)

[Typography]

Header:     Playfair Display SC', serif
Header h4:  Open Sans, sans-serif
Paragraphs: Open Sans, sans-serif
Widget items: PlayFair Display, serif

-------------------------------------------------------------------*/

/* Header style - large image dimensions and positioning */

.large-image {
    height: 55vh;
    width: 100vw;
    max-width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #575757;
    box-shadow: inset 0 -10px 30px -7px rgba(36, 36, 36, 1);
}

/* Main logo - image and text logo style */

.logo {
    text-align: center;
    margin-bottom: 2px;
    color: #FFFFFF;
    font-family: 'Open Sans', serif;
    font-size: 4em;
    font-weight: 600;
}

.line {
    margin: 0;
    width: 100%;
    border-width: 1px;
}

.second-logo-line {
    margin-top: 4px;
    font-style: italic;
    font-size: 20px;
    font-weight: 200;
}

.aligner {
    position: static;
    width: 50%;
    overflow: hidden;
}

.subaligner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

/* Styling for all the items in the menu */

.button {
    margin-top: 26px;
    padding: 1rem 1rem 1rem 1rem;
    height: 45px;
    background: transparent;
}

.menu-button-decoration:hover {
    color: #8BAFAF;
}

.dish-button-size {
    margin-top: 21px;
}

.social-icon {
    display: inline-block;
    height: 50px;
    width: inherit;
    background: transparent;
    color: whitesmoke;
    -webkit-transition: all 0.2s linear, 0s linear;
    transition: all 0.2s linear, 0s linear;
}

.button-group > li .button {
    border-left: none;
}

.row-first-section {
    max-width: 100vw;
}

.container {
    text-align: center;
}

.menu-items-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    list-style-type: none;
}

.menu-bloglist {
    display: inline;
    padding-right: 1.1em;
    font-size: 14px;
    white-space: nowrap;
}

#navbar {
    height: 100%;
    color: #000000;
    opacity: 1;
}

.menu-background {
    height: 45px;
    background: #000000;
    opacity: 0.5;
    z-index: 10;
}

.menu-button-decoration {
    font-family: 'Open Sans', sans-serif;
}

a.menu-topitem {
    color: #ffffff;
    opacity: 1;
    z-index: 99;
}

p.menu-topitem {
    margin-bottom: 0;
    color: #ffffff;
    opacity: 1;
    z-index: 99;
}

.post-container {
    margin-bottom: 2em;
    height: 100%;
    width: 100%;
    border-left-width: 1px;
    border-left-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.post-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 5px 0 10px;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    list-style-type: none;
}

li.post-selector-item {
    display: list-item;
    margin-right: auto;
    margin-bottom: 13px;
    margin-left: auto;
    height: 10em;
    width: 85%;
}

h3.popular-posts-title {
    text-align: center;
}

.most-read-blog-post {
    margin-bottom: 0;
    height: 10em;
    width: 100%;
    background-color: #33383B;
    opacity: 1;
    z-index: 99;
}

.post-types-selector {
    margin-left: auto;
    margin-right: auto;
    height: 1em;
    width: 50%;
}

.row-top-align {
    padding-top: 0;
}

.post-types-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    height: 1em;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.post-types-align {
    display: -webkit-inline-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    height: 1em;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    list-style-type: none;
}

a.post-topitem {
    color: #6C6969;
    white-space: nowrap;
    opacity: 1;
    z-index: 99;
}

a.post-topitem:active,
a.post-topitem:visited,
a.post-topitem:hover {
    white-space: nowrap;
    opacity: 1;
    z-index: 99;
}

p.post-topitem {
    margin-bottom: 0;
    white-space: nowrap;
    opacity: 1;
    z-index: 99;
}

.post-selector-button {
    display: inline;
    padding-right: 14px;
    padding-left: 14px;
    margin-left: auto;
    margin-right: auto;
}

.year {
    display: none;
}

.month {
    display: block;
}

/*The next two classes are for blog-list pagination*/

ul.pagination {
    margin: 45px auto 45px;
    text-align: center;
    z-index: 100;
}

ul.pagination li {
    display: inline-block;
    float: none;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

img {
    -o-object-fit: cover;
    object-fit: cover;
}

.side-thumbs-info-widget {
    margin-top: -4em;
    margin-bottom: 0;
    width: 100%;
    height: 4.5em;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0.9;
}

.post-selector-item:hover .side-thumbs-info-widget {
    z-index: 1;
    opacity: 0.9;
    -webkit-transition: border-color 0.05s linear, background 0.05s linear;
    transition: border-color 0.05s linear, background 0.05s linear;
}

.post-selector-item:hover .first-line-side,
.post-selector-item:hover a:not(.button),
.post-selector-item:hover .icon-heart-side {
    color: #000000;
}

.post-selector-item:hover .third-line-side {
    color: #000000;
    border-top: 1px solid #000000;
}

.align-items-side {
    height: 4em;
    width: inherit;
    color: #FFFFFF;
    z-index: 999999;
    overflow: visible;
}

.tg-side {
    width: inherit;
    border-collapse: collapse;
    border-spacing: 0;
}

.tg-side td {
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border: 0 none;
    word-break: normal;
    overflow: hidden;
}

.tg-side th {
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    word-break: normal;
    border: 0 none;
    overflow: hidden;
}

.tg-side .tg-t7cm-side {
    font-size: 13px;
    text-align: center;
    z-index: 999;
    opacity: 1;
}

table {
    margin-bottom: 0;
    background: none;
    border: 0 transparent;
    table-layout: auto;
}

.first-line-side {
    text-align: center;
    padding-top: 9px;
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.third-line-side {
    display: block;
    text-align: center;
    padding: 0 0 0 0;
    margin: 0.3rem auto 0.5rem;
    max-width: 80%;
    color: #FFFFFF;
    border-top: 1px solid #FFFFFF;
}

table tr.even,
table tr.alt,
table tr:nth-of-type(even) {
    background: none;
}

.icon-links-side {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    margin-top: -1em;
    margin-bottom: 0.3em;
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    -webkit-text-decoration-color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}

.icon-heart-side {
    margin-left: 0.5em;
    color: #FFFFFF;
}

img {
    -o-object-fit: cover;
    object-fit: cover;
}

.side-nav li a:not(.button) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0.4375rem 0.875rem;
    color: #008CBA;
}

.side-nav li a:not(.button) {
    color: #FFFFFF;
}

.icon-fontsize {
    font-size: 14px;
}

.button-fontsize {
    font-size: 14px;
}

/* For the current active page in the list */

.current {
    padding: 0.0625rem 0.625rem 0.0625rem;
    font-weight: 600;
}

.no-post-found {
    text-align: center;
    margin: 2em auto 5em;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    max-width: 80%;
}

.row-post-list {
    max-width: 75.5rem;
}

.large-4 {
    width: 26.33333%;
}

.publish-date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    float: right;
    padding-bottom: 0;
    color: #666666;
}

.post-date-time {
    display: block;
    margin-left: 1em;
    font-size: 12px;
}

.post-category-line {
    font-size: 12px;
    color: #999999;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.post-category-line a {
    color: #282828;
    text-transform: capitalize;
    text-align: center;
}

.post-category-line a:hover {
    color: #007095;
    text-transform: capitalize;
    text-align: center;
}

.under-title-container {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
}

.under-post {
    color: #444444;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.date-line {
    margin-right: auto;
    margin-left: 0;
    letter-spacing: 0.5px;
}

a.date-line {
    color: #444444;
}

.vertical-line {
    margin-right: 15px;
    margin-left: 15px;
    width: 15px;
}

.vertical-line-side {
    padding-right: 5px;
    padding-left: 5px;
}

.blog-post {
    margin-bottom: 40px;
    height: 450px;
    width: 100%;
}

.before-post-info {
    margin-bottom: 15px;
}

.read-more {
    display: block;
    margin-top: 25px;
    margin-bottom: 25px;
}

.read-more-btn {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 10px;
    width: 13em;
    color: #6C6969;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
}

.read-more-btn:hover {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 10px;
    width: 13em;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: border-color 0.05s linear, background 0.05s linear;
    transition: border-color 0.05s linear, background 0.05s linear;
    border: 1px solid #d4d4d4;
}

.post-bottom {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
}

.fa-stack-list {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    height: 1.8em;
    width: 26px;
    line-height: 1.8em;
}

.fa-stack-1x-blog-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #ffffff;
    font-size: 19px;
    line-height: inherit;
}

.fa-stack-1x-blog-post:hover {
    color: #464646;
    line-height: inherit;
}

.post-social-media {
    margin-right: 15px;
    margin-left: auto;
}

.post-views {
    margin-right: auto;
    margin-left: 25px;
}

.icon-text {
    margin-left: 10px;
    color: #464646;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.icon-text:hover {
    color: #FFF;
}

.eye {
    width: 10em;
}

input[type="text"],
input[type="text"]:focus {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1);
}

.fa-google-plus:before {
    margin-right: auto;
    margin-left: auto;
    content: "\f0d5";
}

.fa-pinterest:before {
    margin-right: auto;
    margin-left: auto;
    content: "\f0d2";
}

.dish-contents {
    text-align: initial;
    margin-right: 2em;
    margin-bottom: 15px;
    margin-left: 4em;
    font-size: 13px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #666666;
}

.pre-dish-contents {
    margin-right: 5px;
    color: #333333;
    font-size: 14px;
}

.sticky .post-title-line a {
    margin: 5px auto;
    padding-right: 9px;
    padding-left: 9px;
    font-family: 'Playfair Display SC', serif;
    font-size: 37px;
    text-decoration: underline;
}

.sticky .post-title-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sticky .post-title-line:first-child a:before {
    float: right;
    margin-right: auto;
    margin-left: 15px;
    font-family: FontAwesome;
    font-size: 25px;
    content: "\f006";
}

.sticky .post-title-line:first-child a:hover:before {
    float: right;
    margin-right: auto;
    margin-left: 15px;
    font-family: FontAwesome;
    content: "\f005";
    font-size: 25px;
}

@media only screen and (min-width: 1px) {

    .post-caption {
        font-size: 14px;
    }

    .sticky .post-title-line:first-child a:before,
    .sticky .post-title-line:first-child a:hover:before{
        font-size: 18px;
    }

    .sticky .under-post-text :last-child{
        margin-bottom: 0;
    }

    .main-post-container {
        margin-bottom: 60px;
    }

    .dish-contents {
        font-size: 11px;
    }

    .fa-stack-list {
        width: 22px;
    }

    .post-views {
        margin-left: 10px;
    }

    .post-social-media {
        margin-right: 10px;
    }

    .fa-stack-1x-blog-post {
        font-size: 17px;
    }

    .icon-text {
        margin-left: 12px;
        font-size: 10px;
    }

    .read-more-btn {
        font-size: 10px;
    }

    .read-more-btn:hover {
        font-size: 10px;
    }

    .sticky .under-post-text p,
    .sticky .under-post-text ul,
    .sticky .under-post-text ol,
    .sticky .under-post-text dl,
    .sticky .under-post-text li,
    .under-post-text,
    .under-post-text p,
    .under-post-text ul,
    .under-post-text li,
    .under-post-text ol,
    .under-post-text dl {
        font-size: 12px;
    }

    .sticky .under-post-text :last-child{
        margin-bottom: 0;
    }

    .sticky .post-title-line a,
    .post-title-line a {
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5px;
        font-family: 'Playfair Display SC', serif;
        font-size: 20px;
        word-break: normal;
    }

    .sticky .post-title-line a:hover,
    .post-title-line a:hover {
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5px;
        font-family: 'Playfair Display SC', serif;
        font-size: 20px;
        word-break: normal;
    }

    .under-post {
        font-size: 11px;
    }

    .row-first-section {
        margin-bottom: 40px;
        max-width: 100vw;
    }

    .blog-post {
        margin-bottom: 30px;
        height: 250px;
        width: 100%;
    }

    .main-post-container {
        margin-right: auto;
        margin-left: auto;
        max-width: 87%;
    }

    .show-for-medium-up-own {
        display: none;
    }

    .blog-navbar {
        visibility: hidden;
    }
}

@media only screen and (max-width: 40.063em) {

    .columns,
    .column {
        padding-right: 0;
        padding-left: 0;
    }

    .row .row {
        margin: 0;
        padding-top: 0;
    }

    .row-top-align {
        padding-top: 0.5em;
    }

    .title {
        margin-top: 35px;
        margin-left: 15px;
        max-width: 75%;
        font-size: 16px;
        font-weight: 600;
        z-index: 110;
    }

    .subaligner {
        margin-top: auto;
        margin-bottom: auto;
    }

    .aligner {
        width: 80%;
    }

    .side-thumbs-info-widget {
        margin-top: -6.5em;
        height: 7em;
        width: 100%;
    }

    .third-line-side {
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
    }

    .logo {
        font-size: 20px;
    }

    .icon-links-side {
        display: block;
        margin: 0 auto 0.3em;
    }

    ul.pagination li:hover a,
    ul.pagination li a:focus,
    ul.pagination li:hover button,
    ul.pagination li button:focus {
        background: #5e5e5e;
    }

    ul.pagination li a,
    ul.pagination li button {
        display: block;
        padding: 0.0625rem 0.625rem 0.0625rem;
        background: none;
        color: #9b9b9b;
        font-size: 1em;
        font-weight: normal;
        line-height: inherit;
        border-radius: 3px;
        -webkit-transition: background-color 300ms ease-out;
        transition: background-color 300ms ease-out;
    }

    ul.pagination li {
        margin-left: 0.3125rem;
        height: 1.5rem;
        color: #222;
        font-size: 1rem;
    }

    .second-logo-line {
        font-size: 14px;
    }
}

@media only screen and (max-width: 40.062em) {

    .column .columns {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
    }

    .row-thumb-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: auto;
        margin-left: auto;
        max-width: none;
    }

    a {
        margin-left: 1.5em;
        color: #008CBA;
        line-height: inherit;
        text-decoration: none;
    }

    .line {
        margin: 0;
        width: 100%;
        max-width: 60%;
    }
}

@media screen and (max-width: 48em) {

    .social {
        padding: 15px 0;
        color: #c1c1c1;
        font-size: 25px;
    }

    .social-icon {
        display: block;
        margin: 5px 0;
        height: 50px;
        width: 100%;
        color: #333333;
        background: #fff;
    }
}

@media only screen and (min-width: 40.063em) and (orientation: portrait) {

    .post-caption {
        font-size: 15px;
    }

    .main-post-container {
        margin-bottom: 75px;
    }

    .fa-stack-list {
        width: 26px;
    }

    .post-social-media {
        margin-right: 15px;
    }

    .post-views {
        margin-left: 25px;
    }

    .fa-stack-1x-blog-post {
        font-size: 18px;
    }

    .icon-text {
        margin-left: 12px;
        font-size: 11px;
    }

    .read-more-btn {
        font-size: 11px;
    }

    .read-more-btn:hover {
        font-size: 11px;
    }

    .sticky .under-post-text p,
    .sticky .under-post-text ul,
    .sticky .under-post-text ol,
    .sticky .under-post-text dl,
    .sticky .under-post-text li,
    .under-post-text,
    .under-post-text p,
    .under-post-text ul,
    .under-post-text li,
    .under-post-text ol,
    .under-post-text dl {
        font-size: 13px;
    }

    .sticky .under-post-text :last-child{
        margin-bottom: 0;
    }

    .sticky .post-title-line a,
    .post-title-line a {
        font-size: 28px;
    }

    .sticky .post-title-line a:hover,
    .post-title-line a:hover {
        font-size: 28px;
    }

    .sticky .post-title-line:first-child a:before,
    .sticky .post-title-line:first-child a:hover:before{
        font-size: 21px;
    }

    .blog-post {
        margin-bottom: 40px;
        height: 330px;
        width: 100%;
    }

    .main-post-container {
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
    }

    .row-thumb-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: auto;
        margin-left: auto;
        max-width: none;
        min-width: 38rem;
    }

    .row .row {
        margin-right: auto;
        margin-left: auto;
        padding-top: 0;
        max-width: 80%;
    }

    .title {
        margin-top: 34px;
        margin-left: 30px;
        max-width: 500px;
        font-size: 17px;
        font-weight: 600;
        z-index: 110;
    }

    .subaligner {
        margin-top: auto;
        margin-bottom: auto;
    }

    .aligner {
        width: 80%;
    }

    .logo {
        font-size: 30px;
    }

    a {
        margin-left: 1em;
        color: #008CBA;
        line-height: inherit;
        text-decoration: none;
    }

    .line {
        width: 50%;
    }

    .second-logo-line {
        font-size: 18px;
    }
}

@media only screen and (min-width: 40.063em) and (orientation: landscape) {

    .post-caption {
        font-size: 15px;
    }

    .main-post-container {
        margin-bottom: 60px;
    }

    .fa-stack-list {
        width: 26px;
    }

    .post-social-media {
        margin-right: 15px;
    }

    .post-views {
        margin-left: 25px;
    }

    .fa-stack-1x-blog-post {
        font-size: 18px;
    }

    .icon-text {
        margin-left: 12px;
        font-size: 11px;
    }

    .read-more-btn {
        font-size: 11px;
    }

    .read-more-btn:hover {
        font-size: 11px;
    }

    .sticky .under-post-text p,
    .sticky .under-post-text ul,
    .sticky .under-post-text ol,
    .sticky .under-post-text li,
    .sticky .under-post-text dl,
    .under-post-text,
    .under-post-text p,
    .under-post-text ul,
    .under-post-text li,
    .under-post-text ol,
    .under-post-text dl {
        font-size: 13px;
    }

    .sticky .under-post-text :last-child{
        margin-bottom: 0;
    }

    .under-post {
        font-size: 12px;
    }

    .post-title-line a,
    .sticky .post-title-line a {
        font-size: 28px;
    }

    .post-title-line a:hover,
    .sticky .post-title-line a:hover {
        font-size: 28px;
    }

    .sticky .post-title-line:first-child a:before,
    .sticky .post-title-line:first-child a:hover:before{
        font-size: 21px;
    }

    .under-post {
        font-size: 12px;
    }

    .blog-post {
        margin-bottom: 40px;
        height: 330px;
        width: 100%;
    }

    .main-post-container {
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
    }

    .row-thumb-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: auto;
        margin-left: auto;
        max-width: none;
        min-width: 38rem;
    }

    .row .row {
        margin-right: auto;
        margin-left: auto;
        padding-top: 0;
        max-width: 80%;
    }

    .title {
        margin-top: 33px;
        margin-left: 50px;
        max-width: 500px;
        font-size: 18px;
        font-family: 'Playfair Display', serif;
        font-weight: 600;
    }

    .subaligner {
        margin-top: auto;
        margin-bottom: auto;
    }

    .aligner {
        width: 80%;
    }

    .logo {
        font-size: 30px;
    }

    a {
        margin-left: 1em;
        color: #008CBA;
        line-height: inherit;
        text-decoration: none;
    }

    .line {
        width: 40%;
    }

    .second-logo-line {
        font-size: 18px;
    }
}

@media only screen and (min-width: 64.0625em) {

    .post-caption {
        font-size: 16px;
    }

    .main-post-container {
        margin-bottom: 100px;
    }

    .icon-text {
        margin-left: 12px;
        font-size: 12px;
    }

    .read-more-btn {
        font-size: 12px;
    }

    .read-more-btn:hover {
        font-size: 12px;
    }

    .blog-post {
        margin-bottom: 25px;
        height: 450px;
        width: 100%;
    }

    .sticky .under-post-text p,
    .sticky .under-post-text ul,
    .sticky .under-post-text li,
    .sticky .under-post-text ol,
    .sticky .under-post-text dl,
    .under-post-text,
    .under-post-text p,
    .under-post-text ul,
    .under-post-text li,
    .under-post-text ol,
    .under-post-text dl {
        font-size: 14px;
    }

    .sticky .under-post-text :last-child{
        margin-bottom: 25px;
    }

    .under-post {
        font-size: 13px;
    }

    .row-first-section {
        margin-bottom: 0;
        max-width: 100vw;
    }

    .post-title-line a,
    .sticky .post-title-line a {
        font-size: 37px;
    }

    .post-title-line a:hover,
    .sticky .post-title-line a:hover {
        font-size: 37px;
    }

    .sticky .post-title-line:first-child a:before,
    .sticky .post-title-line:first-child a:hover:before{
        font-size: 25px;
    }

    .blog-navbar {
        display: block;
        top: 100%;
        height: 45px;
        padding-bottom: 0;
        border-top-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    .dish-contents {
        font-size: 13px;
    }

    .second-logo-line {
        font-size: 20px;
    }
}

@media only screen and (min-width: 64.063em) and (orientation: portrait) {

    .fa-stack-1x-blog-post {
        font-size: 19px;
    }

    .show-for-medium-up-own {
        display: block;
    }

    .row-thumb-section {
        margin-right: auto;
        margin-left: auto;
        max-width: none;
    }

    .icon-links-side {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin: -0.7em auto 0.3em;
    }

    .side-thumbs-info-widget {
        margin-top: -5.3em;
        height: 4.5em;
        width: 100%;
    }

    .third-line-side {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .line {
        width: 40%;
    }

    .title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 600;
    }
}

@media only screen and (min-width: 64.063em) and (orientation: landscape) {

    .blog-post {
        margin-bottom: 40px;
        height: 450px;
        width: 100%;
    }

    .show-for-medium-up-own {
        display: block;
    }

    .row-thumb-section {
        margin-right: auto;
        margin-left: auto;
        max-width: none;
    }

    .row .row {
        margin-right: auto;
        margin-left: auto;
        padding-top: 0;
        max-width: 100%;
    }

    .icon-links-side {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin: -0.7em auto 0.3em;
    }

    .side-thumbs-info-widget {
        margin-top: -4.5em;
        height: 4.5em;
        width: 100%;
    }

    .third-line-side {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .line {
        width: 40%;
    }

    .title {
        margin-top: 34px;
        font-family: 'Playfair Display', serif;
        font-size: 19px;
        font-weight: 600;
    }
}

@media only screen and (min-width: 90.063em) and (orientation: landscape) {

    .row-thumb-section {
        margin-right: auto;
        margin-left: auto;
        max-width: none;
    }

    .row .row {
        margin-right: auto;
        margin-left: auto;
        padding-top: 0;
        max-width: 100%;
    }

    .icon-links-side {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin: -0.7em auto 0.3em;
    }

    .side-thumbs-info-widget {
        margin-top: -4.4em;
        height: 4.4em;
        width: 100%;
    }

    .first-line-side {
        padding-top: 5px;
        font-size: 15px;
    }

    .third-line-side {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .line {
        width: 25%;
    }

    .title {
        margin-top: 24px;
        font-size: 19px;
    }
}

@media only screen and (min-width: 120.063em) {

    .large-screen-width {
        max-width: 80rem;
    }

    .logo {
        font-size: 3.5em;
    }

    .button {
        margin-top: 1.25em;
        padding: 1rem 1rem 1rem 1rem;
        height: 3.2em;
        background: transparent;
        font-size: 1rem;
    }

    .title {
        margin-top: 1em;
        margin-left: 1.7em;
        font-size: 1.5em;
    }
}

.comment-line {
    margin-right: 0;
    margin-left: auto;
}

.top-line {
    border-style: solid;
    border-width: 1px 0 0;
}

.side-nav li a:not(.button):hover,
.side-nav li a:not(.button):focus {
    background: rgba(0, 0, 0, 0);
    color: #464646;
}

.search-icon {
    position: absolute;
    right: 17px;
    color: #a9a9a9;
    line-height: 37px;
}

.search-icon:hover {
    position: absolute;
    right: 17px;
    color: #5b5b5b;
    line-height: 37px;
}

.search-container {
    position: relative;
}

.search-results-line {
    position: relative;
    margin-bottom: 30px;
    margin-left: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #464646;
}

.most-read {
    position: relative;
    text-align: center;
    margin: 0 auto 18px;
    color: #464646;
    font-family: 'Playfair Display', serif;
    font-size: 29px;
    font-weight: 700;
}

.active-categ {
    text-decoration: underline;
}

figure {
    margin: 0;
}

.post-caption {
    text-align: center;
    margin-bottom: 7px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
}

.ts-clearfix:after {
    display: block;
    height: 0;
    content: ".";
    clear: both;
    visibility: hidden;
}

.ts-clearfix {
    display: inline-block;
}

/* Hides from IE-mac */

* html .ts-clearfix {
    height: 1%;
}

.ts-clearfix {
    display: block;
}

/* End hide from IE-mac */

.ts-fixed-image {
    background-attachment: fixed;
}

.first-logo-line {
    text-transform: capitalize;
}

.post-title-line {
    margin-top: -7px;
}

#header-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.14);
    z-index: 0;
}

.menu {
    display: inline;
    padding-right: 1.1em;
    white-space: nowrap;
}

body {
    line-height: 1.9;
    font-size: 14px;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
    background-color: transparent;
}

.button:hover .bloglist-menu-color {
    color: #8BAFAF;
}

.button-group {
    margin-right: 15px;
}

.sticky .post-title-line {
    margin-top: 0;
}

.sticky .main-post-container {
    background-color: #ffffff;
    border-width: 2px;
    border-style: solid;
}

.sticky .post-caption {
    margin-right: auto;
    margin-left: auto;
    max-width: 95%;
}

.sticky .under-post-text p,
.sticky .under-post-text ul,
.sticky .under-post-text li,
.sticky .under-post-text ol,
.sticky .under-post-text dl {
    text-align: justify;
    margin-right: auto;
    margin-left: auto;
    max-width: 95%;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    list-style-position: inside;
}

.under-post-text,
.under-post-text p,
.under-post-text ul,
.under-post-text li,
.under-post-text ol,
.under-post-text dl {
    max-width: 100%;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    list-style-position: inside;
}

.before-post-info,
.main-post-container figure {
    text-align: center;
}

section .row:last-child .columns .main-post-container {
    margin-bottom: 0;
}

.clickable {
    cursor: pointer;
}

.post-title-line a:hover {
    color: #464646;
}

#blog-header-logo {
    margin-top: auto;
    margin-bottom: auto;
    max-height: 58px;
    max-width: 200px;
    float: left;
}

