/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/**
 * ome variables
 *
 * @since 1.0.0
 */
:root {
    --ome-color-background: #131212; /* 2d2728 */

    --ome-color: #ffffff;

    --ome-color-grey: #f9f9f9;

    --ome-color-dark-grey: #b5b5b5;

    --ome-color-black: #2d2728;

    --ome-font-color: #ffffff;

    --ome-padding: 20px;

    --ome-padding-mobile: 20px;

    --ome-margin: 20px;

    --ome-margin-negative: -20px;

    --ome-margin-mobile: 20px;

    --ome-font-family: "Roboto", sans-serif;

    --ome-font-family-heading: "Roboto Slab", serif;
}

/**
 * ome
 *
 * @since 1.0.0
 */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer,
header, main, nav, section, svg {
    display: block;
}

html, body {
    width: 100%;
    min-width: 320px;
    font-size: 16px;
    line-height: normal;
    font-family: var(--ome-font-family);
    font-style: normal;
    font-weight: normal;
    color: var(--ome-font-color);
    background-color: var(--ome-color-background);
    font-display: swap;
}

ul {
    padding: 0;
    margin: 0;
}

strong, b {
    font-weight: 600;
}

em {
    font-style: italic;
}

a {
    text-decoration: none;
    color: var(--ome-color);
    transition: .4s;
}

a:hover {
    opacity: 0.7;
}

.ome-content a {
    text-decoration: underline;
    font-weight: 400;
}

.ome-content a:hover {
    text-decoration: none;
}

/**
 * Header
 *
 */
header {
    background-color: #2c292a;
    padding: var(--ome-padding) 0;
    background-image: url('../images/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}


header .ome-grid-row-logo, footer .ome-grid-row-logo {
    align-items: center;
}

footer .ome-grid-row-logo { 
    margin-bottom: var(--ome-margin) !important;
}

header .ome-grid-row-logo {
    justify-content: space-between;
    width: 100%;
}

@media only screen and (max-width: 560px) {
    header .ome-grid-row-logo {
        flex-direction: column;
        justify-content: start;
    }

    header .ome-grid-row-logo > .ome-grid-col:first-child {
        margin-bottom: var(--ome-margin);
    }
}

/**
 * Nav
 *
 */
.ome-grid-row-naw {
    margin-top: var(--ome-margin) !important;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
}

/*
header nav {
    margin-top: var(--ome-margin);
}*/

@media only screen and (max-width: 560px) {
    header nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    nav ul {
        font-size: 14px;
    }
}

nav ul > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1;
    
}

nav ul > li:not(:last-child) {
    margin-right: var(--ome-margin);
}

.ome-page-title {
    margin-bottom: calc( var(--ome-margin) * 2 );
    font-size: 32px;
    font-family: var(--ome-font-family-heading);
    text-align: center;
}

/**
 * Button
 *
 */
.ome-button {
    display: block;
    padding: 10px 15px;
    /*line-height: 1px;*/
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px;
    border: 1px solid #ffffff;
}

/**
 * Card
 *
 */
.ome-grid-row-card {
    flex-wrap: wrap;
    margin-left: var(--ome-margin-negative);
    margin-right: var(--ome-margin-negative);
}

.ome-card {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
    margin-bottom: calc( var(--ome-margin) * 2 );
    padding-left: var(--ome-padding);
    padding-right: var(--ome-padding);
}

.ome-card-items {
    display: flex;
    background-color: #000000;
}

.ome-card-row .ome-card-items {
    flex-direction: row;
}

.ome-card-row-reverse .ome-card-items {
    flex-direction: row-reverse;
}

.ome-card-column .ome-card-items {
    flex-direction: column;
    min-height: 400px;
}

@media only screen and (max-width: 768px) {

    .ome-grid-row-card {
        justify-content: center;
    }

    .ome-card-row .ome-card-items, .ome-card-row-reverse .ome-card-items {
        flex-direction: column;
    } 

}

.ome-card-image {
    margin-bottom: 0;
    flex: 0 0 40%;
    max-width: 40%;
    background-image: url('../images/background.jpg');
}

.ome-card-column .ome-card-image {
    flex: 0 0 100%;
    max-width: 100%;
}

@media only screen and (max-width: 768px) {

    .ome-grid-row-card {
        justify-content: center;
    }

    .ome-card-row .ome-card-items, .ome-card-row-reverse .ome-card-items {
        flex-direction: column;
    }

    .ome-card-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ome-card.ome-grid-col-12, .ome-card.ome-grid-col-4 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ome-card-column .ome-card-items {
        min-height: auto;
    }

}

@media only screen and (max-width: 680px) {
    .ome-card.ome-grid-col-12, .ome-card.ome-grid-col-4 {
        flex: 0 0 85%;
        max-width: 85%;
    }
}

@media only screen and (max-width: 560px) {
    .ome-card.ome-grid-col-12, .ome-card.ome-grid-col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.ome-card-image a {
    display: block;
    position: relative;
    /* aspect-ratio: 16 / 9; */
    /**/
    aspect-ratio: 4/3;

    /*padding-bottom: 56.25%;*/

    width: 100%;
    min-width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    /*background-size: cover;*/
    background-size: auto 100%;
}

.ome-card-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--ome-padding) calc(var(--ome-padding)*2);
    overflow: hidden;
    width: 100%;
}

.ome-card-column .ome-card-text {
    padding: var(--ome-padding);
}

.ome-card-title {
    font-weight: 500;
    line-height: 1.35;
}

h3.ome-card-title {
    font-size: 28px;
}

.ome-card-column h3.ome-card-title {
    font-size: 20px;
}

@media only screen and (max-width: 768px) {
    .ome-card-text {
        padding: var(--ome-padding);
    }

    h3.ome-card-title {
        font-size: 20px;
    }
}

.ome-card-info, .ome-article-info {
    display: flex;
    flex-direction: row;
    font-size: 12px;
    font-weight: 400;
    color: var(--ome-color-dark-grey);
    margin-top: 10px;
}

.ome-card-info a, .ome-article-info a {
    color: var(--ome-color-dark-grey);
    text-decoration: none;
}

.ome-card-info > div:not(:last-child):not(:empty):after, 
.ome-article-info > div:not(:last-child):not(:empty):after,
.ome-card-title > .ome-card-info span:not(:last-child):not(:empty):after,
.ome-article-year span:not(:last-child):not(:empty):after {
    display: inline-block;
    content: '-';
    margin: 0 5px;
}

.ome-card-title > .ome-card-info {
    color: #c20e0e;
}

/**
 * Content
 *
 */
article.ome-content {
    max-width: 600px;
    margin: 0 auto;
}

.ome-article-header {
    margin-bottom: var(--ome-margin);
}

.ome-article-title {
    font-size: 34px;
    line-height: 1.3;
    font-family: var(--ome-font-family-heading);
    margin-bottom: 15px;
}

@media only screen and (max-width: 560px) { 
    .ome-article-title {
        font-size: 30px;
    }
}

.ome-article-year {
    color: #c20e0e;
    font-size: 15px;
    margin-bottom:15px;
}

.ome-article-info {
    margin-bottom: var(--ome-margin);
}

.ome-article-category a:not(:last-child):after {
    content: ', ';
}

.ome-article-description {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;
}

.ome-article-image {
    margin-bottom: var(--ome-margin);
    background-image: url('../images/background.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*height: 400px;*/
}

.ome-article-image img {
    display: block;
    max-height: 450px;
    width: auto;
    margin: 0 auto;
}

@media only screen and (max-width: 600px) {
    /*.ome-article-image {
        height: auto;
        max-height: 300px;
    }*/

    .ome-article-image img {
        max-height: 350px;
    }
}

.ome-place-farewell {
    width: 100%;
    padding: var(--ome-padding);
    font-size: 18px;
    border: 2px solid #ffffff;
    border-radius: 4px;
}

/** 
 * Theme post content
 * 
 */
.ome-article-content {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .ome-article-content {
        font-size: 16px;
    }
}

.ome-article-content:after,
.ome-article-content ol:before,
.ome-article-content ol:after,
.ome-article-content ul:before,
.ome-article-content ul:after,
.ome-article-content blockquote:after {
    content: '';
    clear: both;
    display: block;
}

.ome-article-content p:not(:last-child),
.ome-article-content ul:not(:last-child),
.ome-article-content ol:not(:last-child),
.ome-article-content>div:not(:last-child),
.ome-article-content blockquote:not(:last-child) {
    margin-bottom: var(--ome-margin);
}

.ome-article-content h2:not(:first-child),
.ome-article-content h3:not(:first-child),
.ome-article-content h4:not(:first-child),
.ome-article-content h5:not(:first-child),
.ome-article-content h6:not(:first-child) {
    margin-top: var(--ome-margin);
}

.ome-article-content h2:not(:last-child),
.ome-article-content h3:not(:last-child),
.ome-article-content h4:not(:last-child),
.ome-article-content h5:not(:last-child),
.ome-article-content h6:not(:last-child) {
    margin-bottom: var(--ome-margin);
}

/**
 * H2 - H6
 *
 */
.ome-article-content h2,
.ome-article-content h3,
.ome-article-content h4,
.ome-article-content h5,
.ome-article-content h6 {
    font-weight: 500;
    line-height: 1.2;
    font-family: var(--ome-font-family-heading);
}

.ome-article-content h2 {
    font-size: 34px;
}

.ome-article-content h3 {
    font-size: 32px;
}

.ome-article-content h4 {
    font-size: 26px;
}

.ome-article-content h5 {
    font-size: 22px;
}

.ome-article-content h6 {
    font-size: 20px;
}

@media only screen and (max-width: 768px) {
    .ome-article-content h2 {
        font-size: 28px;
    }

    .ome-article-content h3 {
        font-size: 26px;
    }

    .ome-article-content h4 {
        font-size: 24px;
    }

    .ome-article-content h5 {
        font-size: 22px;
    }

    .ome-article-content h6 {
        font-size: 20px;
    }
}

.ome-article-erid-token {
    font-size: 12px;
    font-style: italic;
    text-align: right;
}

/**
 * Blockquote
 *
 * @since 1.0.0
 */
.ome-article-content blockquote, .ome-article-content .wpdmi-blockquote-one {
    font-size: 22px;
    padding: 30px 40px;
    position: relative;
    line-height: 1.3;
    font-weight: 500;
}

.ome-article-content blockquote:before, .ome-article-content .wpdmi-blockquote-one:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-image: url('../images/icons/icon-quote-left.svg');*/
}

.ome-article-content blockquote:after, .ome-article-content .wpdmi-blockquote-one:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-image: url('../images/icons/icon-quote-right.svg');*/
}

@media only screen and (max-width: 1100px) {
    .ome-article-content blockquote, .ome-article-content .wpdmi-blockquote-one {
        font-size: 22px;
        padding: 30px var(--ome-padding);
    }

    .ome-article-content blockquote:before,
    .ome-article-content blockquote:after, .ome-article-content .wpdmi-blockquote-one:before, .ome-article-content .wpdmi-blockquote-one:after {
        width: 20px;
        height: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .ome-article-content blockquote, .ome-article-content .wpdmi-blockquote-one {
        font-size: 18px;
        padding: 30px 0;
    }
}

/**
 * UL, OL
 *
 * @since 1.0.0
 */
.ome-article-content ul {
    padding: 0 var(--ome-padding);
}

.ome-article-content ul li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    min-height: 32px;
}

.ome-article-content ul li ul {
    margin-top: 10px;
}

.ome-article-content ul li:before {
    content: '';
    background-color: var(--ome-color);
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 2px;
}

.ome-article-content ul[style*="list-style-type: disc;"] li:before,
.ome-article-content ul[style*="list-style-type: disc"] li:before {
    border-radius: 50%;
}

.ome-article-content ul[style*="list-style-type: circle;"] li:before,
.ome-article-content ul[style*="list-style-type: circle"] li:before {
    border-radius: 50%;
    border: 1px solid var(--ome-color);
    background-color: transparent;
}

.ome-article-content ul li[style*="list-style-type: none;"]:before,
.ome-article-content ul li[style*="list-style-type: none"]:before {
    display: none;
}

.ome-article-content ol, .ome-widget-custom .textwidget ol {
    counter-reset: themeCounter;
    padding: 0 var(--ome-padding);
}

@media only screen and (max-width: 768px) {

    .ome-article-content ul,
    .ome-article-content ol,
    .ome-widget-custom .textwidget ul,
    .ome-widget-custom .textwidget ol {
        padding: 0;
    }
}

.ome-article-content ol li, .ome-widget-custom .textwidget ol li {
    list-style: none;
    padding-left: 40px;
    padding-top: 0;
    position: relative;
    margin-bottom: 10px;
    min-height: 32px;
}

.ome-article-content ol li:before {
    counter-increment: themeCounter;
    content: counter(themeCounter);
    color: var(--ome-color-black);
    background-color: var(--ome-color);
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 26px;
    width: 26px;
    height: 26px;
    border-radius: 3px;
    font-size: 12px;
}

.ome-article-content ol[style="list-style-type: lower-alpha;"] li:before {
    content: counter(themeCounter, lower-alpha);
}

.ome-article-content ol[style="list-style-type: lower-greek;"] li:before {
    content: counter(themeCounter, lower-greek);
}

.ome-article-content ol[style="list-style-type: lower-roman;"] li:before {
    content: counter(themeCounter, lower-roman);
}

.ome-article-content ol[style="list-style-type: upper-roman;"] li:before {
    content: counter(themeCounter, upper-roman);
}

.ome-article-content ol[style="list-style-type: upper-alpha;"] li:before {
    content: counter(themeCounter, upper-alpha);
}

/**
 * Images
 *
 * @since 1.0.0
 */
.ome-article-content img {
    max-width: 100%;
    height: auto;
}

.ome-article-content .wp-caption-text {
    font-size: 12px;
    padding: 0 10px;
    margin: 0 auto;
    margin-top: 0;
    font-style: italic;
}

.ome-article-content .wp-caption-text span {
    display: block;
}

/*.thumbnail-description .thumbnail-excerpt, .single-content .wp-caption .wp-caption-text .wp-caption-excerpt {
    color: #969696;
}

.single-content .wp-caption.alignnone, .single-content .wp-caption.aligncenter {
    max-width: 100%;
    width: auto !important;
}*/

.ome-article-content figure {
    max-width: 100% !important;
    margin: 0;
}

.ome-article-content .alignnone,
.ome-article-content .alignright,
.ome-article-content .alignleft,
.ome-article-content .aligncenter {
    margin-bottom: var(--ome-padding);
}

.ome-article-content .aligncenter {
    margin: 0 auto var(--ome-padding);
    display: block;
}

.ome-article-content .alignright {
    float: right;
    margin: 0 0 var(--ome-padding) var(--ome-padding);
}

.ome-article-content .alignleft {
    float: left;
    margin: 0 var(--ome-padding) var(--ome-padding) 0;
}

@media only screen and (max-width: 768px) {

    .ome-article-content .alignnone,
    .ome-article-content .alignright,
    .ome-article-content .alignleft,
    .ome-article-content .aligncenter {
        margin: 0 auto;
        float: none;
        margin-bottom: 20px;
    }
}

/**
 * Full width and response iframe
 *
 * @since 1.0.0
 */
.ome-iframe-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.ome-iframe-content {
    overflow-x: auto;
    margin-bottom: var(--ome-padding);
}

.ome-iframe-content iframe {
    max-width: 100%;
}

.ome-iframe-video iframe,
.ome-iframe-video object,
.ome-iframe-video embed,
.ome-iframe-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ome-article-content iframe {
    display: block;
    margin: 0 auto;
}

.ome-article-content .fb-post.fb_iframe_widget {
    display: block;
    margin: 0 auto;
    max-width: 500px;
}

.ome-article-content .twitter-tweet.twitter-tweet-rendered,
.ome-article-content .instagram-media.instagram-media-rendered {
    margin: 0 auto !important;
}

/**
 * Table 
 *
 * @since 1.0.0
 */
.ome-table-container {
    overflow-x: auto;
    margin-bottom: 20px
}

.ome-article-content table {
    width: 100% !important;
    border: 1px solid #222222;
    border-collapse: collapse;
    min-width: 500px;
}

.ome-article-content table td {
    border: 1px solid #222222;
    font-size: 16px;
    padding: 5px 10px;
}

/**
 * Pagination
 *
 */
.ome-paginate {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin: var(--ome-margin) auto var(--ome-margin);
}

.ome-paginate ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
}

.ome-paginate ul li {
    margin: 0 10px 10px 10px;
    font-weight: 500;
}

.ome-paginate ul li a.page-numbers {
    color: #000000;
    background-color: #ffffff;
}

.ome-paginate ul li .current {
    background-color: var(--ome-color-dark-grey);
}

.ome-paginate ul li a.page-numbers, .ome-paginate ul li .current, .ome-paginate ul li .dots {
    display: block;
    padding: 8px 13px;
    border-radius: 2px;
}

/**
 * Share
 *
 */
.ome-article-share {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: var(--ome-margin);
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: calc(var(--ome-margin) / 2);
}

.ome-article-share .ome-label {
    font-size: 14px;
    font-weight: 700;
    /*margin-bottom: calc(var( --ome-margin ) / 2);*/
    margin-right: calc(var(--ome-margin) / 2);
}

.ome-share-button {
    float: left;
    line-height: 16px;
    padding: 0 2px;
}

.ome-share-button:not(:last-child) {
    margin-right: 5px;
}

.ome-share-button > svg {
    width: auto;
    height: 24px;
}

.ome-share-button > svg path {
    fill: var(--ome-color-dark-grey);
}

/**
 * Footer
 *
 */
footer {
    background-color: #2c292a;
    padding: var(--ome-padding) 0;
    background-image: url('../images/background.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer > .ome-grid > .ome-grid-row:not(:last-child) {
    margin-bottom: var(--ome-margin);
}

footer .ome-grid-row {
    justify-content: center;
}

.ome-sidebar-footer, footer .ome-grid-row-copyright {
    font-size: 12px;
}

.ome-sidebar-footer p:not(:last-child), .ome-widget:not(:last-child) { /* */
    margin-bottom: var(--ome-margin);
}

/**
 * Icon
 *
 */
.ome-icon-logo path {
    fill: #ffffff;
}

header .ome-logo-ysia {
    width: auto;
    height: 40px;
}

header .ome-logo-yakutiya-daily {
    width: auto;
    height: 44px;
    display: block;
}

header .ome-logo-sakha-sire {
    width: auto;
    height: 38px;
    display: block;
}

@media only screen and ( max-width: 560px ) {
    header .ome-logo-ysia, header .ome-logo-yakutiya-daily {
        width: auto;
        height: 40px;
    }
}

footer .ome-logo-ysia {
    width: auto;
    height: 30px;
}

footer .ome-logo-yakutiya-daily {
    display: block;
    width: auto;
    height: 30px;
}

footer .ome-logo-sakha-sire {
    display: block;
    width: auto;
    height: 30px;    
}

.ome-scroll-to-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--ome-color-dark-grey);
    border-radius: 2px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    z-index: 999999;
}

@media only screen and (max-width: 560px) {
    .ome-scroll-to-top {
        right: 20px;
        bottom: 20px;
    }
}

/** 
 * CSS Style: ome grid 
 * 
 * @since 1.0
 */

/**
 * ome footer down 
 * 
 * @since 1.0
 */
.ome-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background-color: var( --ome-color-background );
}

.home .ome-wrap {
    overflow-x: hidden;
}

main {
    flex: 1;
    padding-top: calc( var(--ome-padding) * 2 );
    padding-bottom: calc( var(--ome-padding) * 2 );
    background-color: var(--ome-color-background) !important;
}

/**
 * ome wrap 
 * 
 * @since 1.0
 */
/*@media only screen and (max-width: 1100px) {
    .ome-wrap {
        max-width: 924px;
    }
}

@media only screen and (max-width: 1024px) {
    .ome-wrap {
        max-width: 768px;
    }
}

@media only screen and (max-width: 768px) {
    .ome-wrap {
        max-width: 560px;
    }
}*/

/**
 * ome grid 
 * 
 * @since 1.0
 */
.ome-grid {
    margin: 0 auto;
}

.ome-grid > .ome-grid-row {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--ome-padding);
}

/** 
 * ome row
 * 
 * @since 1.0
 */
.ome-grid-row {
    display: flex;
    flex-wrap: wrap;
}

.ome-grid-row-reverse {
    flex-direction: row-reverse;
}

/** 
 * ome col
 * 
 * @since 1.0
 */
.ome-grid-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
}

.ome-grid-col-reverse {
    flex-direction: column-reverse;
}

.ome-grid-col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.ome-grid-col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.ome-grid-col-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.ome-grid-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.ome-grid-col-sidebar {
    flex: 0 0 25%;
    max-width: 25%;
}

.ome-grid-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.ome-grid-col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.ome-grid-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.ome-grid-col-7 {
    flex: 0 0 58.333334%;
    max-width: 58.333334%;
}

.ome-grid-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.ome-grid-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.ome-grid-col-10 {
    flex: 0 0 83.333334%;
    max-width: 83.333334%;
}

.ome-grid-col-11 {
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
}

.ome-grid-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/**
 * justify-content 
 * 
 * @since 1.0
 */
.ome-justify-content-start {
    justify-content: flex-start;
}

.ome-justify-content-end {
    justify-content: flex-end;
}

.ome-justify-content-center {
    justify-content: center;
}

.ome-justify-content-between {
    justify-content: space-between;
}

.ome-justify-content-around {
    justify-content: space-around;
}

/**
 * align-items 
 * 
 * @since 1.0
 */
.ome-align-items-start {
    align-items: flex-start;
}

.ome-align-items-end {
    align-items: flex-end;
}

.ome-align-items-center {
    align-items: center;
}

.ome-align-items-baseline {
    align-items: baseline;
}

.ome-align-items-stretch {
    align-items: stretch;
}

/**
 * align-self 
 * 
 * @since 1.0
 */
.ome-align-self-start {
    align-self: flex-start;
}

.ome-align-self-end {
    align-self: flex-end;
}

.ome-align-self-center {
    align-self: center;
}

.ome-align-self-baseline {
    align-self: baseline;
}

.ome-align-self-stretch {
    align-self: stretch;
}

/**
 * align-content 
 * 
 * @since 1.0
 */
.ome-align-content-start {
    align-content: flex-start;
}

.ome-align-content-end {
    align-content: flex-end;
}

.ome-align-content-center {
    align-content: center;
}

.ome-align-content-between {
    align-content: space-between;
}

.ome-align-content-around {
    align-content: space-around;
}

.ome-align-content-stretch {
    align-content: stretch;
}

/**
 * overflow 
 * 
 * @since 1.0
 */
.ome-overflow-hidden {
    overflow: hidden;
}