/*
Theme Name: Articles
Theme URI: https://articles.uie.com/
Author: UIE
Author URI: https://uie.com/
Description: The articles theme.
Version: 1.0
License: Copyright
Tags: uie, articles
Text Domain: articles

The main UIE articles theme.
*/

html {}

blockquote {
    clear: both;
}

.stage {
    width: 56.25em;
    max-width: 100%;
}

@media screen and (min-width: 1px) {
    .stage {
        width: 100%;
        max-width: 50rem;
    }
}

form .backup-placeholder {
    color: #bbb;
}

header.primary {
    background: #951a1d;
    color: #fff;
    padding: 1em 0 0;
}

header.primary .logo {
    width: 100px;
    height: auto;
    margin-bottom: 0.75em;
}

header.primary .ie-logo {
    width: 170px;
    margin-bottom: 0.75em;
}

pre code {
    background: #eee;
    padding: 1rem 1.5rem;
    display: block;
    font-size: 16px;
}

figure img {
    display: block;
    max-width: 100%;
}

figure figcaption {
    font-style: italic;
    display: block;
    margin-top: 1em;
    font-size: 1rem;
}

figure.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

figure.video iframe {
    border: none;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

nav.primary {
    background: #6f0e13;
    padding: 0;
    font-size: 0.8888889rem;
}

nav.primary ul {
    list-style: none;
    padding: 0;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0;
}

nav.primary ul:hover a.on:before {
    bottom: 0;
}

nav.primary li {
    margin: 0;
    padding: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-right: 1px solid #630c11;
}

nav.primary li:first-child {
    margin-left: 0;
    border-left: 1px solid #630c11;
}

nav.primary a {
    display: block;
    position: relative;
    text-align: center;
    padding: 0.3125em 0.35rem;
    color: #ccc;
    transition: all 160ms ease;
    z-index: 10;
    font-weight: 600;
}

nav.primary a:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 12px solid #ad1d21;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 0 solid transparent;
    bottom: 0;
    left: 50%;
    margin-left: -12px;
    z-index: -1;
    transition: all 160ms ease;
    visibility: hidden;
    opacity: 0;
}

nav.primary a.on {
    background: #951A1D;
}

nav.primary a.on:before {
    bottom: -8px;
    visibility: visible;
    opacity: 1;
    border-top-color: #951A1D;
}

nav.primary a:hover {
    background: #ad1d21;
    color: #fff;
}

nav.primary a:hover:before {
    bottom: -8px;
    visibility: visible;
    opacity: 1;
    border-top-color: #ad1d21;
}

nav.primary ul:hover a.on:hover:before {
    bottom: -12px;
}


/* ie-based fixes */

.ie nav.primary ul {
    display: table;
    width: 100%;
}

.ie nav.primary li {
    display: table-cell;
}

nav.small-screen-nav {
    margin-top: -4em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    padding-top: 2.35em;
    display: none;
}

nav.small-screen-nav .small-screen-nav-wrapper {
    background: #6f0e13;
    padding: 0.35em 0 0;
}

nav.small-screen-nav .stage {
    display: block;
}

nav.small-screen-nav p {
    margin-bottom: 0.6em;
}

nav.small-screen-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.small-screen-nav li {
    margin: 0;
    padding: 0;
}

nav.small-screen-nav p a {
    font-size: 0.875em;
    display: inline-block;
    float: right;
    color: #bbb;
    -webkit-transition: color 160ms ease;
    -moz-transition: color 160ms ease;
    -ms-transition: color 160ms ease;
    -o-transition: color 160ms ease;
    transition: color 160ms ease;
}

nav.small-screen-nav p a:hover {
    color: #fff;
}

nav.small-screen-nav li a {
    background: #8b1116;
    /*background: #ad1d21;*/
    color: #fff;
    display: block;
    border-top: 1px solid #560b0f;
    padding: 0.25em 0 0.2em;
    -webkit-transition: background 160ms ease;
    -moz-transition: background 160ms ease;
    -ms-transition: background 160ms ease;
    -o-transition: background 160ms ease;
    transition: background 160ms ease;
    text-align: center;
    font-weight: 600;
}

nav.small-screen-nav li a:hover {
    background: #ad1d21;
    color: #fff;
}

.menu-button {
    color: #fff;
    border: 1px solid #771519;
    display: inline-block;
    padding: 0.25em 0.6em 0.125em;
    border-radius: 0.25em;
    float: right;
    margin-top: 0.75em;
    background: #6f0e13;
    -webkit-transition: all 160ms ease;
    -moz-transition: all 160ms ease;
    -ms-transition: all 160ms ease;
    -o-transition: all 160ms ease;
    transition: all 160ms ease;
    display: none;
}

.menu-button i {
    display: inline-block;
    margin-right: 0.25em;
}

.menu-button:hover {
    background: #ad1d21;
}

.banner {
    box-sizing: border-box;
    background: #222;
    color: #fff;
    margin: 0;
    padding: 1.75em 0 0.75em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    transition: all 160ms ease;
    position: relative;
    z-index: 100;
}

.banner .stage {
    position: relative;
}

.banner h1 {
    font-size: 1.25em;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    padding: 0;
}

.banner a {
    color: #fff;
}

.banner.stuck {
    z-index: 999999999;
    padding-top: 0.825em;
    padding-bottom: 0.25em;
}

.banner span {
    display: block;
    padding-left: 0;
    transition: all 160ms ease;
}

.banner .logo,
.banner .ie-logo {
    width: 0;
    height: 1.333336rem;
    display: block;
    padding-right: 0;
    margin-bottom: -1px;
    transition: all 160ms ease;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 0.3em;
    top: auto;
}

.banner.stuck .logo,
.banner.stuck .ie-logo {
    visibility: visible;
    opacity: 1.0;
    width: 2em;
}

.banner.stuck span {
    padding-left: 2.825em;
}

.banner .call-to-action {
    display: block;
    float: right;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 160ms ease;
    -moz-transition: all 160ms ease;
    -ms-transition: all 160ms ease;
    -o-transition: all 160ms ease;
    transition: all 160ms ease;
    font-size: 0.88888889em;
    margin-top: -0.325em;
}

.banner .button {
    background: #951A1D;
    line-height: 1.2;
    margin-top: -0.6125em;
}

.banner .button:hover {
    background: #AD1D21;
}

main {
    display: block;
    padding-bottom: 2.25em;
    padding-top: 1em;
    position: relative;
    z-index: 10;
}

main section {
    margin: 2em 0 0;
    overflow: hidden;
}

h2.section {
    font-size: 1.125em;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25em;
    margin-bottom: 1rem;
}

.article-preview {
    box-sizing: border-box;
    display: block;
    width: 49%;
    margin-left: 2%;
    float: left;
    height: 8em;
    background: #f3f3f3;
    position: relative;
    margin-bottom: 1em;
    transition: all 160ms ease;
}

@media screen and (max-width: 780px) {
    .article-preview {
        height: 10em;
    }
}

.article-preview.in-beta {
    background: #ffc
}

.article-preview:hover {
    background: #e7e7e7;
}

.article-preview.in-beta:hover {
    background: #fffbab
}

.article-preview:nth-child(2n) {
    margin-left: 0;
}

.ie-child {
    margin-left: 0 !important;
}

.article-preview h3 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    top: 0.7em;
    left: 1rem;
    width: calc(100% - 2rem);
    position: absolute;
    font-size: 1.3125em;
    font-weight: 600;
}

.ie .article-preview h3 {
    width: 370px;
}

.article-preview .author,
.article-preview .date {
    margin: 0;
    padding: 0;
    bottom: 0.625rem;
    left: 1rem;
    position: absolute;
    font-variant: normal;
    letter-spacing: 0;
    font-size: 0.888888889em;
    color: #333;
}

.article-preview .date {
    text-align: right;
    left: auto;
    right: 1rem;
    color: #777;
}

.subtitle {
    font-size: 1.625em;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
    padding-top: 0.35em;
}

.subtitle+section {
    margin-top: 1em;
}

.stuck {
    position: fixed;
    top: 0;
}

.stuck.banner .call-to-action {
    visibility: visible;
    opacity: 1;
}

.view-more a {
    display: block;
    background: #f3f3f3;
    padding: 0.5em 1em;
    text-align: center;
    clear: both;
    transition: all 160ms ease;
    font-weight: 600;
}

.view-more a:hover {
    background: #e7e7e7;
}

.view-more a span {
    transform: translateX(0);
    display: inline-block;
    transition: all 160ms ease;
}

.view-more a:hover span {
    transform: translateX(0.3125em);
}

article {
    font-size: 1.16666666666667em;
}

article h1 {
    margin: 0.25em auto 0.5em;
    letter-spacing: -1px;
}

article .ten p>img,
article .ten p>a>img,
article .ten figure>img,
.ten article p>img,
.ten article p>a>img,
.ten article figure>img {
    display: block;
    max-width: 100% !important;
    height: auto;
    margin: 0 auto;
}

article .meta {
    display: block;
    text-align: center;
    box-sizing: border-box;
    background: #f3f3f3;
    margin: 0.5em auto 2.5em;
    font-size: 0.71428571428571em;
    white-space: nowrap;
    padding: 1em 0 0.125em;
}

article .meta>div {
    display: inline-block;
    margin-left: -1em;
}

.beta {
    background: #ffc;
    padding: 2.5em 0 0.5em;
    margin-bottom: 1.25em;
    margin-top: -3em;
}

.beta p {
    margin: 0.5em 0 0 4.25em;
    padding: 0;
    line-height: 1.35;
}

.ie .beta p {
    margin-left: 0;
}

.beta .icon {
    float: left;
    width: 64px;
    height: 64px;
    margin-top: -0.5em;
}

.beta .icon .beta-icon {
    height: 100%;
    width: 100%;
    display: block;
    opacity: 0.4;
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

.ie .beta .icon {
    display: none;
}

.source {
    text-align: center;
    line-height: 1.35;
    opacity: 0.65;
    -webkit-transition: opacity 160ms ease;
    -moz-transition: opacity 160ms ease;
    -ms-transition: opacity 160ms ease;
    -o-transition: opacity 160ms ease;
    transition: opacity 160ms ease;
}

.source:hover {
    opacity: 0.95;
}

article .meta .headshot {
    width: 84px;
    float: left;
    margin: -2em 0.825em -1.35em 0;
}

article .meta .details {
    margin-left: 96px;
    text-align: left;
}

article .meta .headshot img {
    display: block;
    width: 100%;
    border-radius: 50%;
}

article .column {
    float: none;
}

article .post-article-date {
    font-size: 0.71428571428571em;
    margin-top: 1.75em;
    text-align: right;
    color: #999;
}

.email-box {
    padding: 1em 2em 1.25em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    background: #951a1d;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.email-box h3 {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1em;
    margin-top: 0;
    padding: 0;
}

.email-box h3 small {
    font-size: 0.72em;
    display: block;
    margin: 0;
    padding: 0;
}

.email-box h3 i {
    font-size: 1.5em;
    margin-right: 0.125em;
    display: inline-block;
    vertical-align: -0.15em;
}

.email-box p.success {
    margin: 1em auto 0;
    text-align: center;
    max-width: 24em;
}

.email-box .row {
    margin-bottom: 1em;
}

.email-box .row.last {
    margin-bottom: 0;
}

.email-box input[type=submit] {
    background: #c2373d;
    color: #fff;
    -webkit-transition: background 160ms ease;
    -moz-transition: background 160ms ease;
    -ms-transition: background 160ms ease;
    -o-transition: background 160ms ease;
    transition: background 160ms ease;
    float: right;
    margin-top: -2em;
}

.email-box input[type=submit]:hover {
    background: #dd3e44;
}

.email-box .promise {
    line-height: 1.2;
    color: #ffc3c0;
    margin-bottom: 0;
}

.location {
    position: absolute;
    left: -1000px;
}

footer.about-the-author .headshot img {
    display: block;
    width: 100%;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    border-radius: 200px;
}

footer.about-the-author .blurb,
footer.about-the-author .blurb p {
    padding-top: 0;
}

@media screen and (max-width: 46.875em) {
    nav.primary {
        display: none;
    }
    nav.small-screen-nav {
        display: block;
    }
    .menu-button {
        display: block;
    }
    .beta .icon {
        float: left;
        width: 48px;
        height: 48px;
        margin-top: -0.25em;
    }
    .beta p {
        margin-left: 3.75em;
    }
}

@media screen and (max-width: 40em) {
    html {
        font-size: 1rem;
    }
    header.primary .logo {
        width: 76px;
        height: auto;
    }
    article h1 {
        font-size: 2.5em;
        text-align: left;
    }
    main section {
        margin-top: 1em;
    }
    article {
        font-size: 1.125em;
    }
    .article-preview {
        width: auto;
        float: none;
        margin-left: 0;
        height: auto;
        position: static;
        padding: 0.5em 0.8125em;
    }
    .article-preview:hover {}
    .article-preview h3,
    .article-preview .author,
    .article-preview .date {
        position: static;
        text-align: left;
    }
    .article-preview .date {
        font-size: 0.833333333em;
    }
    article .column {
        width: auto !important;
        margin-left: 0 !important;
    }
    article .meta {
        float: none;
        width: auto;
        margin: 0 0 1em;
    }
    .email-box .column,
    .related .column {
        float: none;
        margin: 1em 0 0;
        width: auto;
    }
    .email-box .column:first-child,
    .related .column:first-child {
        margin-top: 0;
    }
    .source {
        text-align: left;
    }
    article .meta {
        text-align: left;
        padding-bottom: 0.75em;
        width: calc(100% - 2em);
        margin-left: 2em;
    }
    article .meta .headshot {
        width: 64px;
        margin-left: -1em;
        margin-top: -1.75em;
    }
    article .meta .details {
        margin-left: 64px;
    }
}

@media screen and (max-width: 29.375em) {
    .stuck.banner .button {
        display: none;
    }
}

@media screen and (max-width: 28.125em) {
    .email-box input[type=submit] {
        float: none;
        margin-top: 1em;
    }
}

@media screen and (max-width: 25em) {
    .stage {
        padding-left: 1em;
        padding-right: 1em;
    }
    article h1 {
        font-size: 2.25em;
    }
}

.related {
    border-top: 1px solid #ddd;
    margin: 1rem -1rem 0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.related .column {
    float: left;
}

.related h2 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.75em;
    padding-top: 0.3125rem;
}

.crp_title {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.2;
}

.crp_author {
    font-size: 0.875em;
    display: block;
    margin-bottom: 0.5em;
    margin-top: 0.125em;
}

.crp_excerpt {}


/* UXI18 ad */

.uxi18-home {
    background: #406b88;
    color: #cfdbe5;
    padding: 1em 1.5em 0.5em 1.5em;
    margin-left: -1.5em;
    margin-right: -1.5em;
    margin-top: 1.5em !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.uxi18-home a.article-preview {
    color: #406b88;
    background: #e4edf4;
}

.uxi18-home a.article-preview:hover {
    background: #fff;
}

.uxi18-home>div>p {
    font-size: 1.25em;
}

.uxi18-home .conference-logo {
    display: block;
    width: 100%;
    max-width: 20em;
    margin: 0.25em 0 0;
    float: left;
}

.uxi18-home .conference-logo img {
    display: block;
    width: 100%;
}

.uxi18-home h2.section {
    border-bottom: 0;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0.625em;
}

.uxi18-home h2.section:after {
    display: table;
    content: '';
    clear: both;
}

.uxi18-home h2.section strong {
    display: block;
    text-align: right;
    float: right;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    margin-top: 1em;
}


/* UI22 ads */

.ui22-home {
    background: #f1eada url('https://ui.uie.com/assets/site-bg.png') repeat scroll 50% 0;
    padding: 1.5em 1.5em 0.5em 1.5em;
    margin-left: -1.5em;
    margin-right: -1.5em;
    margin-top: 1.5em !important;
}

.ui22-home a.button {
    background: #d45113;
    color: #fff;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    margin-top: -5.25em;
}

.ui22-home a.button:hover {
    color: #fff;
    background: #f25b20;
}

.ui22-home a {
    color: #d45113;
}

.ui22-home a:hover {
    color: #f25b20;
}

.ui22-home a.article-preview {
    background: #e1dacd;
}

.ui22-home a.article-preview:hover {
    background: #d8d0c1;
    color: #d45113;
}

.ui22-home p {
    margin-bottom: 1.5em;
    font-size: 1.25em;
}

.ui22-home h2.section {
    padding-top: 0;
    border-bottom: none;
}

.ui22-home h2.section:after {
    content: '';
    display: table;
    clear: both;
}

.ui22-home h2.section a.conference-logo {
    width: 8em;
    display: block;
    float: left;
    margin-right: 1em;
}

.ui22-home h2.section small {
    font-size: 0.625em;
}

.ui22-home h2.section span {
    font-size: 1.75em;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.ui22-home h2.section strong {
    font-size: 0.75em;
    letter-spacing: 1px;
    color: #999;
    -webkit-font-smoothing: antialised;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    margin-top: 0.125em;
}

.ui22-home h2.section strong em {
    display: inline-block;
    margin: 0 0.125em;
    text-transform: lowercase;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
}

.ui22-home h2.section a.conference-logo img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 775px) {
    .ui22-home h2 {
        margin-bottom: 0;
    }
    .ui22-home a.button {
        float: none;
        margin-left: 10.2222em;
        margin-top: 0.25em;
        margin-bottom: 1em;
        display: inline-block;
    }
}

@media screen and (max-width: 480px) {
    .ui22-home h2.section a.conference-logo {
        width: 6em;
        margin-top: 0.625em;
    }
    .ui22-home a.button {
        margin-left: 7.875em;
        margin-top: 0.5em;
    }
}

@media screen and (max-width: 440px) {
    .ui22-home {
        padding-top: 1em;
    }
    .ui22-home h2.section a.conference-logo {
        display: none;
    }
    .ui22-home a.button {
        margin-left: 0;
    }
}

.prearticle-roll {
    font-size: 0.88889em;
    padding: 1em 1.5em;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-left: -1.5em;
    margin-right: -1.5em;
}

.postarticle-roll {
    margin-top: 1.5em;
}

.modal {
    position: fixed;
    max-width: 90%;
    max-height: calc(96% - 40px);
    top: calc(50% + 20px);
    left: 50%;
    transition: visibility 200ms ease, opacity 200ms ease, transform 200ms ease, width 200ms ease, height 200ms ease;
    transform: translateX(-50%) translateY(-50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    z-index: 10000;
    box-shadow: 0 0 999em 999em rgba(0, 0, 0, 0.5), 0 0 1em rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    overflow-y: auto;
}

.modal.show {
    transform: translateX(-50%) translateY(-50%) scale(1.0);
    visibility: visible;
    opacity: 1;
}

.modal .close-modal {
    position: absolute;
    top: 0em;
    right: 0em;
    display: block;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5;
    text-align: center;
}

.modal .small-screen {
    display: none;
}

.modal.before-you-go {
    width: 24rem;
    background: #222;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal.before-you-go .close-modal {
    color: #555;
    transition: all ease 240ms;
}

.modal.before-you-go .close-modal:focus,
.modal.before-you-go .close-modal:hover {
    color: #ccc;
}

.modal.before-you-go h2 {
    font-size: 1.5em;
    margin: 0 0 1em;
    padding: 0;
    font-weight: normal;
}

.modal.before-you-go label {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.25em;
}

.modal.before-you-go .field {
    margin-top: 1.125em;
}

.modal.before-you-go .field:first-child {
    margin-top: 0;
}

.modal.before-you-go .button {
    background: #951A1D;
    color: #fff;
}

.modal.before-you-go .button:hover {
    background: #AD1D21;
}

.modal.before-you-go section {
    padding: 1.5em 2em 1.75em;
    box-sizing: border-box;
    width: 100%;
}

.modal .row {
    display: flex;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    flex-flow: row nowrap;
}

.modal .row .half.column {
    flex: 1 1 auto;
    width: 50%;
    float: none;
    padding-left: 1.5em;
    padding-top: 1em;
    padding-bottom: 1em;
    margin: 0;
}

.modal .row .half.column:first-child {
    border-right: 1px solid #ddd;
    padding-right: 1.5em;
    padding-left: 0;
}

.modal .modal-loading {
    margin-top: 1.5em;
    min-width: 17em;
    min-height: 6em;
    padding-bottom: 1em;
    text-align: center;
    line-height: 6;
}

.modal.sign-in-modal-no-context .row {
    margin-bottom: 0.75em;
}

.modal.watch-preview-modal {
    width: 40em;
}

.inspiration-success {
    background: #daf9ea;
    padding: 0.25em 1.6em 0.3125em;
    margin-bottom: 1em;
}

.inspiration-success h2 .fa {
    color: #3d8562;
}

@media screen and (max-width: 30rem) {
    .row {
        flex-flow: column nowrap;
        margin-top: 0.5em !important;
    }
    .row .half.column {
        width: 100% !important;
        border: none !important;
        padding: 0 !important;
        margin: 1.25em 0 0;
    }
    .row .half.column:first-child {
        margin-top: 0;
        padding-bottom: 1em !important;
        border-bottom: 1px solid #ddd !important;
    }
    .small-screen {
        display: inline-block;
    }
    .large-screen {
        display: none;
    }
    .large-screen+.field {
        margin-top: 0.5em;
    }
}

html.modal-on {
    -webkit-overflow-scrolling: touch !important;
    /*overflow: hidden !important;*/
    height: 100% !important;
}

body.modal-on {
    -webkit-overflow-scrolling: touch !important;
    overflow: hidden !important;
    height: 100% !important;
}

body.modal-on:after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 990;
}


/* Search Bar::START */

.search-bar-a #searchform div {
    display: flex;
    margin: 20px auto;
}

.search-bar-a input[type=text],
.search-bar-a input[type=email],
.search-bar-a input[type=password] {
    box-sizing: border-box;
    border: 1px solid #f3f3f3;
    padding: 0.4375rem 0.625rem 0.375rem;
    width: 48%;
    font: inherit;
    font-size: 1rem;
    line-height: normal;
    color: #484848;
    background-color: #f3f3f3;
}

.search-bar-a #searchsubmit {
    margin: 0px 0px 0px 2% !important;
    background-color: #951a1d !important;
    max-width: 100px;
    font-weight: 500;
    color: #e2e2e2 !important;
    letter-spacing: 1px;
    font-size: 90%;
    border-radius: 0;
}

.search-bar-a #searchsubmit:hover {
    background: #d52327 !important;
    color: #fff !important;
}

.search-bar-a .screen-reader-text {
    display: none;
}

.search-bar-a #searchsubmit::-webkit-input-placeholder::before {
    color: black;
    content: "Search articles";
}

@media only screen and (max-width: 640px) {
    .search-bar-a input[type=text],
    input[type=email],
    input[type=password] {
        width: 100%;
    }
}


/* Search Ber::END */