/*! project-name v0.0.1 | (c) 2020 YOUR NAME | MIT License | http://link-to-your-git-repo.com */
/* line 1, src/sass/components/reset.scss */
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 22, src/sass/components/reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* line 26, src/sass/components/reset.scss */
body {
    line-height: 1;
}

/* line 29, src/sass/components/reset.scss */
ol, ul {
    list-style: none;
}

/* line 32, src/sass/components/reset.scss */
blockquote, q {
    quotes: none;
}

/* line 35, src/sass/components/reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* line 40, src/sass/components/reset.scss */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* line 1, src/sass/components/base.scss */
html, body {
    margin: 0;
    padding: 0;
}

/* line 6, src/sass/components/base.scss */
body {
    font-family: var(--primary-font);
}

/* line 11, src/sass/components/base.scss */
img {
    max-width: 100%;
}

/* line 15, src/sass/components/base.scss */
.container {

}

.box-container {
	width: 1060px;
    margin: auto;
			padding:  0 10px;
			-webkit-box-shadow: 0 0 16px #d4d4d4;
		box-shadow: 0 0 16px #d4d4d4;
}

header {
    position: relative;
    z-index: 999;
}

@media (max-width: 1200px) {
	.box-container {
			width: 94vw;
	}
	
    /* line 15, src/sass/components/base.scss */
    .container {
        width: 100%
    }

    .container--mobile-full {
        width: 100vw;
    }

}

/* line 24, src/sass/components/base.scss */
strong {
    font-weight: bold;
}

@media (max-width: 1200px) {
    /* line 28, src/sass/components/base.scss */
    .mobile-hidden {
        display: none;
    }
}

/* line 34, src/sass/components/base.scss */
.no-uppercase {
    text-transform: initial !important;
}

/* line 1, src/sass/components/button.scss */
.button,
.wysiwyg-content .button {
    border-radius: 3px;
    background-color: var(--button-color);
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 34px;
    padding: 0 24px;
    padding-right: 15px;
    display: inline-block;
    text-decoration: none;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* line 17, src/sass/components/button.scss */
.button img,
.button svg,
.wysiwyg-content .button img,
.wysiwyg-content .button svg {
    margin: 0;
    margin-left: 20px;
    margin-bottom: -2px;
}

/* line 22, src/sass/components/button.scss */
.button img.down,
.button svg.down,
.wysiwyg-content .button img.down,
.wysiwyg-content .button svg.down {
    margin-bottom: 1px;
}

/* line 1, src/sass/components/header.scss */
header {
    -webkit-box-shadow: 0 0 16px #d4d4d4;
    box-shadow: 0 0 16px #d4d4d4;
    background-color: var(--secondary-color);
    margin-bottom: 27px;
    padding: 30px 0 20px;
}

@media (max-width: 1200px) {
    /* line 1, src/sass/components/header.scss */
    header {
        padding: 8px 0;
    }
}

/* line 12, src/sass/components/header.scss */
.search-form {
    position: relative;
}

@media (max-width: 1200px) {
    /* line 12, src/sass/components/header.scss */
    .search-form {
        width: 100%;
    }
}

/* line 19, src/sass/components/header.scss */
.search-form__magnify {
    position: absolute;
    left: 10px;
    top: 7px;
}

.hp-search-banner-input {
    position: relative;;
}

.hp-search-banner-input__magnify {
    position: absolute;
    left: 13px;
    top: 10px;
}

/* line 26, src/sass/components/header.scss */
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    /* line 26, src/sass/components/header.scss */
    .header {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 1200px) {
    /* line 36, src/sass/components/header.scss */
    .header__logo img {
        height: 34px;
        z-index: 105;
        position: relative;
    }
}

/* line 45, src/sass/components/header.scss */
.header__navigation-toggler {
    display: none;
}

@media (max-width: 1200px) {
    /* line 45, src/sass/components/header.scss */
    .header__navigation-toggler {
        display: block;
        z-index: 105;
        position: relative;
    }
}

/* line 54, src/sass/components/header.scss */
.header__navigation-toggler img {
    height: 15px;
}

/* line 59, src/sass/components/header.scss */
.header__menu-toggler {
    height: 15px;
    width: 23px;
    display: none;
    z-index: 105;
}

@media (max-width: 1200px) {
    /* line 59, src/sass/components/header.scss */
    .header__menu-toggler {
        display: block;
    }
}

/* line 69, src/sass/components/header.scss */
.header__menu-toggler a {
    display: block;
    position: relative;
}

/* line 74, src/sass/components/header.scss */
.header__menu-toggler span {
    width: 23px;
    height: 3px;
    border-radius: 1px;
    background-color: var(--primary-color);
    position: absolute;
    display: block;
}

/* line 86, src/sass/components/header.scss */
.header__menu-toggler span:nth-child(2) {
    top: 6px;
}

/* line 90, src/sass/components/header.scss */
.header__menu-toggler span:nth-of-type(3) {
    top: 12px;
}

@media (max-width: 1200px) {
    /* line 98, src/sass/components/header.scss */
    .header__navigation--mobile-hidden {
        display: none;
    }
}

@media (max-width: 1200px) {
    /* line 96, src/sass/components/header.scss */
    .header__navigation {
        position: absolute;
        top: -8px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 70px 20px 30px 20px;
        z-index: 100;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-shadow: 3px 10px 25px rgba(0, 0, 0, 0.12);
        box-shadow: 3px 10px 25px rgba(0, 0, 0, 0.12);
    }
}

/* line 117, src/sass/components/header.scss */
.header__navigation__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1200px) {
    /* line 117, src/sass/components/header.scss */
    .header__navigation__search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        z-index: 999999999;
        position: relative;
    }
}

/* line 130, src/sass/components/header.scss */
.header__navigation__search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-shadow: 3px 10px 25px rgba(0, 0, 0, 0.12);
    box-shadow: 3px 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
}

/* line 143, src/sass/components/header.scss */
.header__navigation__search form input[type=text] {
    border: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    color: var(--primary-color);
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 400;
    padding: 6px 40px;
    width: 200px;
}

@media (max-width: 1200px) {
    /* line 143, src/sass/components/header.scss */
    .header__navigation__search form input[type=text] {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

/* line 161, src/sass/components/header.scss */
.header__navigation__search form input[type=submit] {
    border: none;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: #000c49;
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 700;
    padding: 0 28px;
    cursor: pointer;
}

.header__navigation__search form input[type=submit]:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    /* line 161, src/sass/components/header.scss */
    .header__navigation__search form input[type=submit] {
        display: none;
    }
}

/* line 180, src/sass/components/header.scss */
.header__navigation__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 1200px) {
    /* line 180, src/sass/components/header.scss */
    .header__navigation__links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* line 192, src/sass/components/header.scss */
.header__navigation__links li {
    margin-left: 20px;
}

@media (max-width: 1200px) {
    /* line 192, src/sass/components/header.scss */
    .header__navigation__links li {
        margin-left: 0;
    }
}

/* line 199, src/sass/components/header.scss */
.header__navigation__links li:nth-of-type(1) {
    margin-left: 0;
}

/* line 204, src/sass/components/header.scss */
.header__navigation__links a {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 1200px) {
    /* line 204, src/sass/components/header.scss */
    .header__navigation__links a {
        line-height: 3;
    }
}

/* line 219, src/sass/components/header.scss */
.header__navigation__categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 1200px) {
    /* line 219, src/sass/components/header.scss */
    .header__navigation__categories {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/* line 227, src/sass/components/header.scss */
.header__navigation__categories li {
    margin-left: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1200px) {
    /* line 227, src/sass/components/header.scss */
    .header__navigation__categories li {
        margin-left: 0;
    }
}

/* line 237, src/sass/components/header.scss */
.header__navigation__categories li img {
    margin-right: 10px;
}

/* line 241, src/sass/components/header.scss */
.header__navigation__categories li:nth-of-type(1) {
    margin-left: 0;
}

/* line 246, src/sass/components/header.scss */
.header__navigation__categories a {
    color: #000c49;
    font-family: "Playfair Display - Bold";

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
}

.header__navigation__categories a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    /* line 246, src/sass/components/header.scss */
    .header__navigation__categories a {
        line-height: 4;
    }
}

/* line 1, src/sass/components/article.scss */
.primary-article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    /* line 1, src/sass/components/article.scss */
    .primary-article-list {
        margin-bottom: 50px;
    }
}

/* line 12, src/sass/components/article.scss */
.primary-article-detail {
    width: 49%;
}

@media (max-width: 1200px) {
    /* line 12, src/sass/components/article.scss */
    .primary-article-detail {
        display: none;
    }
}

/* line 19, src/sass/components/article.scss */
.primary-article-detail__thumbnail {
    margin-bottom: 10px;
    border-radius: 5px;
}

/* line 24, src/sass/components/article.scss */
.primary-article-detail__title {
    color: #312727;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 8px;
}

/* line 33, src/sass/components/article.scss */
.primary-article-detail__meta {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 400;
}

/* line 41, src/sass/components/article.scss */
.primary-article-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 49%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    /* line 41, src/sass/components/article.scss */
    .primary-article-grid {
        width: 100%;
    }
}

/* line 51, src/sass/components/article.scss */
.primary-article-grid__square {
    width: 48%;
    background-size: cover;
    background-position: center;
    margin-bottom: 4%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    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: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-radius: 5px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* line 65, src/sass/components/article.scss */
.primary-article-grid__square:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-color: var(--primary-color);
}

@media (max-width: 1200px) {
    /* line 51, src/sass/components/article.scss */
    .primary-article-grid__square {
        width: 100%;
        padding: 18px 12px;
        margin-bottom: 12px;
    }

    .primary-article-grid__square:after {
        opacity: 0.7;
    }
}

/* line 81, src/sass/components/article.scss */
.primary-article-grid__square:nth-of-type(3), .primary-article-grid__square:nth-of-type(4) {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    /* line 81, src/sass/components/article.scss */
    .primary-article-grid__square:nth-of-type(3), .primary-article-grid__square:nth-of-type(4) {
        margin-bottom: 12px;
    }
}

@media (max-width: 1200px) {
    /* line 90, src/sass/components/article.scss */
    .primary-article-grid__square:nth-of-type(4) {
        margin-bottom: 0;
    }
}

/* line 96, src/sass/components/article.scss */
.primary-article-grid__square__title {
    position: relative;
    z-index: 10;
}

/* line 103, src/sass/components/article.scss */
.secondary-article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    /* line 103, src/sass/components/article.scss */
    .secondary-article-list {
        width: 100%;
        overflow-x: scroll;
        margin-bottom: 20px;
    }
}

/* line 116, src/sass/components/article.scss */
.secondary-article-detail {
    width: 24%;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    /* line 116, src/sass/components/article.scss */
    .secondary-article-detail {
        width: 80%;
        margin-left: 12px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        display: inline-block
    }

    /* line 127, src/sass/components/article.scss */
    .secondary-article-detail:nth-of-type(1) {
        margin-left: 12px;
    }

    /* line 127, src/sass/components/article.scss */
    .secondary-article-detail:nth-of-type(4) {
        margin-right: 12px;
    }
}

/* line 133, src/sass/components/article.scss */
.secondary-article-detail__icon {
    position: absolute;
    top: -20px;
    background-color: var(--secondary-color);
    padding: 6px;
    border-radius: 50%;
}

.secondary-article-detail:hover .secondary-article-detail__thumbnail img {
    transform: scale(1.05);
}

.secondary-article-detail__thumbnail {
    overflow: hidden;;
}

/* line 141, src/sass/components/article.scss */
.secondary-article-detail__thumbnail img {
    width: 100%;
    transition: all 0.2s;
}

/* line 144, src/sass/components/article.scss */
.secondary-article-detail__content {
    padding: 30px 20px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* line 149, src/sass/components/article.scss */
.secondary-article-detail__category {
    color: var(--darker-primary-color);
    font-family: var(--primary-font);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* line 158, src/sass/components/article.scss */
.secondary-article-detail__title {
    color: #312727;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    flex: 1;
}

/* line 166, src/sass/components/article.scss */
.secondary-article-detail__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 20px;
}

/* line 171, src/sass/components/article.scss */
.secondary-article-detail__meta__thumbnail img {
    border-radius: 50%;
    margin-right: 12px;
}

/* line 176, src/sass/components/article.scss */
.secondary-article-detail__meta__information {
    color: var(--darker-primary-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
}

/* line 186, src/sass/components/article.scss */
.load-more-articles {
    margin-bottom: 20px;
}

/* line 190, src/sass/components/article.scss */
.currently-reading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000c49;
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* line 200, src/sass/components/article.scss */
.currently-reading svg {
    margin-right: 10px;
}

/* line 205, src/sass/components/article.scss */
.native-share-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .native-share-buttons {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .social-counter {
        padding: 0px 5px;
    }

    .native-share-buttons > div {
        padding: 10px 0;
    }
}

/* line 210, src/sass/components/article.scss */
.native-share-buttons > div {
    margin-right: 10px;
}

/* line 215, src/sass/components/article.scss */
.modal-gallery-next,
.modal-gallery-prev,
.article-gallery-next,
.article-gallery-prev {
    width: 34px;
    height: 34px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    transition: all 0.2s;
}

@media (max-width: 1200px) {
    /* line 215, src/sass/components/article.scss */
    .modal-gallery-next,
    .modal-gallery-prev,
    .article-gallery-next,
    .article-gallery-prev {
        width: 31px;
        height: 31px;
    }
}

/* line 233, src/sass/components/article.scss */
.modal-gallery-next a,
.modal-gallery-prev a,
.article-gallery-next a,
.article-gallery-prev a {
    display: block;
    width: 100%;
    height: 100%;
}

/* line 238, src/sass/components/article.scss */
.modal-gallery-next a:after,
.modal-gallery-prev a:after,
.article-gallery-next a:after,
.article-gallery-prev a:after {
    content: ' ';
    background-size: 10px 17px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
}

/* line 253, src/sass/components/article.scss */
.modal-gallery-next,
.article-gallery-next {
    right: 16px;
}

@media (max-width: 1200px) {
    /* line 253, src/sass/components/article.scss */
    .modal-gallery-next,
    .article-gallery-next {
        right: 13px;
    }
}

/* line 263, src/sass/components/article.scss */
.modal-gallery-next a:after,
.article-gallery-next a:after {
    background-image: url("../svg/prava.svg");
}

/* line 269, src/sass/components/article.scss */
.modal-gallery-prev,
.article-gallery-prev {
    left: 16px;
}

@media (max-width: 1200px) {
    /* line 269, src/sass/components/article.scss */
    .modal-gallery-prev,
    .article-gallery-prev {
        left: 13px;
    }
}

/* line 279, src/sass/components/article.scss */
.modal-gallery-prev a:after,
.article-gallery-prev a:after {
    background-image: url("../svg/leva.svg");
}

/* line 286, src/sass/components/article.scss */
.article-gallery-prev {
    left: 10px;
}

/* line 290, src/sass/components/article.scss */
.article-gallery-next {
    right: 10px;
}

/* line 294, src/sass/components/article.scss */
.article-bookmark {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
}


/* line 305, src/sass/components/article.scss */
.wysiwyg-content h1.main-title {
    margin-bottom: 12px;
}

/* line 1, src/sass/components/single-article.scss */
.single-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

/* line 5, src/sass/components/single-article.scss */
.single-article .bx-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: #fff;
    margin-bottom: 10px;
}

/* line 14, src/sass/components/single-article.scss */
.single-article__thumbnail-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .single-article__thumbnail-wrapper {
        margin-left: -3vw;
        width: 100vw;
        margin-right: -3vw;
    }
}

/* line 22, src/sass/components/single-article.scss */
.single-article__thumbnail,
.single-article__thumbnail--no-slider {
    margin-bottom: 8px;
}

/* line 25, src/sass/components/single-article.scss */
.single-article__thumbnail img,
.single-article__thumbnail--no-slider img {
    border-radius: 5px;
}

/* line 30, src/sass/components/single-article.scss */
.single-article__meta-before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* line 36, src/sass/components/single-article.scss */
.single-article__meta-before__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* line 42, src/sass/components/single-article.scss */
.single-article__meta-before__detail {
    margin-left: 30px;
    color: #0b2441;
    font-family: var(--primary-font);
    font-size: 11px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1200px) {
    /* line 42, src/sass/components/single-article.scss */
    .single-article__meta-before__detail {
        margin-left: 10px;
    }
}

/* line 57, src/sass/components/single-article.scss */
.single-article__meta-before__detail:nth-of-type(1) {
    margin-left: 0;
}

/* line 61, src/sass/components/single-article.scss */
.single-article__meta-before__detail svg {
    margin-right: 10px;
}

/* line 66, src/sass/components/single-article.scss */
.single-article__meta-before__bookmark {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: var(--darker-primary-color);
    font-family: var(--primary-font);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-article__meta-before__bookmark a {
    padding-bottom: 5px;
    transition: all 0.2s;
}

.single-article__meta-before__bookmark a:hover {
    color: rgb(216, 0, 0);
}

.single-article__meta-before__bookmark:hover a {
    text-decoration: underline;
}

/* line 76, src/sass/components/single-article.scss */
.single-article__meta-before__bookmark img {
    margin-left: 10px;
    margin-bottom: -4px;
}

@media (max-width: 1200px) {
    /* line 76, src/sass/components/single-article.scss */
    .single-article__meta-before__bookmark img {
        margin-left: 4px;
    }
}

/* line 86, src/sass/components/single-article.scss */
.single-article__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 7px;
}

/* line 92, src/sass/components/single-article.scss */
.single-article__gallery a {
    display: block;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-size: 0;
    display: block;
}

.single-article__gallery a img {
    transition: all 0.2s;
}

.single-article__gallery a:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    /* line 92, src/sass/components/single-article.scss */
    .single-article__gallery a {
        width: 32%;
    }
}

@media (max-width: 1200px) {
    /* line 103, src/sass/components/single-article.scss */
    .single-article__gallery a:nth-of-type(4) {
        display: none;
    }
}

/* line 108, src/sass/components/single-article.scss */
.single-article__gallery a div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgba(0, 12, 73, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 100;
}

.single-article__gallery a:hover div {
    background-color: rgba(0, 12, 73, 0.9);
}

/* line 121, src/sass/components/single-article.scss */
.single-article__gallery a div img {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    width: 35px;
    height: 28px;
    margin-right: 8px;
}

/* line 128, src/sass/components/single-article.scss */
.single-article__gallery a div span {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    color: #ffffff;
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

/* line 139, src/sass/components/single-article.scss */
.single-article__gallery img {
    border-radius: 2px;
}

/* line 144, src/sass/components/single-article.scss */
.single-article__meta-after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    /* line 144, src/sass/components/single-article.scss */
    .single-article__meta-after {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

/* line 154, src/sass/components/single-article.scss */
.single-article__meta-after__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* line 159, src/sass/components/single-article.scss */
.single-article__meta-after__author span {
    color: #000000;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 8px;
}

/* line 168, src/sass/components/single-article.scss */
.single-article__meta-after__author img {
    border-radius: 50%;
}

/* line 173, src/sass/components/single-article.scss */
.single-article__meta-after__date {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 400;
    margin-left: 8px;
    padding-bottom: 4px;
}

/* line 181, src/sass/components/single-article.scss */
.single-article__meta-after__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 1200px) {
    /* line 181, src/sass/components/single-article.scss */
    .single-article__meta-after__tags {
        padding-bottom: 6px;
    }
}

/* line 191, src/sass/components/single-article.scss */
.single-article__meta-after__tags img {
    height: 19px;
}

/* line 196, src/sass/components/single-article.scss */
.single-article__meta-after__tag {
    color: #ffffff;
    line-height: 10px;
    font-family: var(--primary-font);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 8px;
    border-radius: 1px;
    background-color: var(--primary-color);
    margin-left: 4px;
    height: 17px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

/* line 210, src/sass/components/single-article.scss */
.single-article__meta-after__tag:hover {
    background-color: var(--darker-primary-color);
}

/* line 216, src/sass/components/single-article.scss */
.single-article__sidebar {
    width: 300px;
    margin-left: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* line 221, src/sass/components/single-article.scss */
.single-article__sidebar img {
    max-width: initial;
}

@media (max-width: 1200px) {
    /* line 216, src/sass/components/single-article.scss */
    .single-article__sidebar {
        display: none;
    }
}

/* line 229, src/sass/components/single-article.scss */
.single-article__sidebar__wrapper {
    background-color: rgba(0, 0, 0, 0.2);
}

/* line 235, src/sass/components/single-article.scss */
.similar-articles {
    margin-bottom: 16px;
}

/* line 238, src/sass/components/single-article.scss */
.similar-articles__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 16px;
}

/* line 244, src/sass/components/single-article.scss */
.similar-articles__single__thumbnail img {
    border-radius: 5px;
    max-width: 130px;
    margin-right: 8px;
}

/* line 250, src/sass/components/single-article.scss */
.similar-articles__single__content {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4px 0;
    line-height: 1.3;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* line 260, src/sass/components/single-article.scss */
.similar-articles__single__category {
    font-weight: 700;
    margin-bottom: 4px;
    color: #ee8262;
    font-size: 11px;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    text-transform: uppercase;
}

/* line 269, src/sass/components/single-article.scss */
.similar-articles__single__title {
    margin-bottom: 6px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    color: #0b2441;
    font-family: "Playfair Display";
    font-size: 14px;
    text-align: left;
}

/* line 277, src/sass/components/single-article.scss */
.similar-articles__single__meta {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 10px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    color: #000c49;
    align-items: center;
}

.similar-articles__single__meta > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 8px;
}

.similar-articles__single__meta img {
    height: 16px;
    margin-right: 4px;

}

/* line 286, src/sass/components/single-article.scss */
.article-perex {
    color: #000000;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 23px;
    margin-bottom: 14px;
}

/* line 1, src/sass/components/share-buttons.scss */
.share-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .share-buttons {
        margin-bottom: 30px;
    }
}

/* line 8, src/sass/components/share-buttons.scss */
.share-button-wrapper {
    width: 32%;
}

/* line 12, src/sass/components/share-buttons.scss */
.share-button {
    border-radius: 5px;
    color: #312727;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
    padding: 16px 68px 16px 12px;
    position: relative;
    display: inline-block;
    font-weight: bold;
}

@media (max-width: 1200px) {
    /* line 12, src/sass/components/share-buttons.scss */
    .share-button {
        padding: 6px 12px 14px;
        font-size: 9px;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
    }
}

/* line 31, src/sass/components/share-buttons.scss */
.share-button--seznam {
    background-color: rgba(214, 2, 15, 0.1);
}

/* line 35, src/sass/components/share-buttons.scss */
.share-button--facebook {
    background-color: rgba(0, 127, 255, 0.1);
}

/* line 39, src/sass/components/share-buttons.scss */
.share-button--google {
    background-color: rgba(125, 125, 125, 0.1);
}

/* line 43, src/sass/components/share-buttons.scss */
.share-button__cta {
    position: absolute;
    top: 8px;
    right: -69px;
}

.share-button__cta--messenger {
    position: absolute;
    top: 8px;
    right: -58px;
}

@media (max-width: 1200px) {
    /* line 43, src/sass/components/share-buttons.scss */
    .share-button__cta {
        right: initial;
        bottom: -24px;
        left: 50%;
        top: initial;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 90%;
    }
}

/* line 57, src/sass/components/share-buttons.scss */
.share-button__cta img {
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    transition: all 0.2s;
}

.share-button__cta img:hover {
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* line 1, src/sass/components/article-feedback.scss */
.article-feedback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 24px;
    font-family: "Playfair Display";
}

@media (max-width: 1200px) {
    /* line 1, src/sass/components/article-feedback.scss */
    .article-feedback {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/* line 13, src/sass/components/article-feedback.scss */
.article-feedback__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1200px) {
    /* line 13, src/sass/components/article-feedback.scss */
    .article-feedback__rating {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/* line 24, src/sass/components/article-feedback.scss */
.article-feedback__rating__cta {
    color: #000c49;
    font-family: "Playfair Display";
    font-size: 15px;
    font-weight: 700;
    margin-right: 12px;
}

@media (max-width: 1200px) {
    /* line 24, src/sass/components/article-feedback.scss */
    .article-feedback__rating__cta {
        width: 100%;
        padding-bottom: 8px;
    }
}

/* line 41, src/sass/components/article-feedback.scss */
.article-feedback__rating__result {
    margin-left: 12px;
    color: var(--darker-primary-color);
    font-family: "Playfair Display";
    font-size: 14px;
    font-weight: 400;
}

/* line 50, src/sass/components/article-feedback.scss */
.article-feedback__report {
    border-radius: 4px;
    background-color: var(--secondary-color);
    color: #ee8262;
    font-family: "Playfair Display";
    font-size: 14px;
    font-weight: 400;
    padding: 5px 22px;
}

.article-feedback__report span {
    color: #000c49;
}

@media (max-width: 1200px) {
    /* line 50, src/sass/components/article-feedback.scss */
    .article-feedback__report {
        margin-top: 8px;
    }
}

/* line 63, src/sass/components/article-feedback.scss */
.article-feedback__report a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* line 70, src/sass/components/article-feedback.scss */
.article-feedback__report a svg {
    margin-right: 10px;
}

/* line 1, src/sass/components/homepage.scss */
.homepage-category-preview {
    background-color: #eee;
    padding: 50px 20px;
    position: relative;
    margin-bottom: 70px;
    background-size: cover;
    background-position: center;
}

.homepage-category-preview__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: center center;
    height: 100%;
    opacity: 0.5;
    filter: grayscale(100%);
    z-index: 2;
}

@media (max-width: 1200px) {
    /* line 1, src/sass/components/homepage.scss */
    .homepage-category-preview {
        width: 106%;
        margin-left: -3%;
        margin-right: -3%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 50px 10px;
    }
}

/* line 17, src/sass/components/homepage.scss */
.homepage-category-preview .button {
    position: absolute;
    bottom: -16px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}

/* line 22, src/sass/components/homepage.scss */
.homepage-category-preview__title {
    color: var(--button-color);
    font-size: 36px;
    font-weight: 700;
    position: absolute;
    top: -28px;
    letter-spacing: 1.3px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    color: #010a4c;
    font-family: "Playfair Display";
    font-size: 36px;
    font-weight: 900;
    line-height: 46px;
    text-align: center;
}

/* line 30, src/sass/components/homepage.scss */
.homepage-category-preview__article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 10;
    position: relative;
}

@media (max-width: 1200px) {
    /* line 30, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/* line 39, src/sass/components/homepage.scss */
.homepage-category-preview__article-list__category {
    color: var(--darker-primary-color);
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    /* line 39, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list__category {
        display: none;
    }
}

/* line 51, src/sass/components/homepage.scss */
.homepage-category-preview__article-list__article {
    background-color: var(--secondary-color);
    width: 49%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 5px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    /* line 51, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list__article {
        width: 100%;
        margin-bottom: 20px;
    }

    /* line 63, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list__article:nth-of-type(2) {
        margin-bottom: 0;
    }
}

.homepage-category-preview__article-list__article:hover .homepage-category-preview__article-list__thumbnail img {
    transform: scale(1.05);
}

.homepage-category-preview__article-list__thumbnail {
    overflow: hidden;
}

.homepage-category-preview__article-list__thumbnail img {
    transition: all 0.2s;
}

@media (max-width: 1200px) {
    /* line 69, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list__thumbnail {
        width: 136px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
}

/* line 76, src/sass/components/homepage.scss */
.homepage-category-preview__article-list__content {
    padding: 26px;
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    /* line 76, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list__content {
        padding: 8px 14px;
    }
}

/* line 84, src/sass/components/homepage.scss */
.homepage-category-preview__article-list__content h3 {
    color: #312727;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 12px;
    flex: 1;
}

@media (max-width: 1200px) {
    /* line 84, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list__content h3 {
        font-size: 14px;
    }
}

/* line 97, src/sass/components/homepage.scss */
.homepage-category-preview__article-list__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 1200px) {
    /* line 97, src/sass/components/homepage.scss */
    .homepage-category-preview__article-list__meta {
        display: none;
    }
}

/* line 106, src/sass/components/homepage.scss */
.homepage-category-preview__article-list__avatar img {
    border-radius: 50%;
    margin-right: 12px;
}

/* line 111, src/sass/components/homepage.scss */
.homepage-category-preview__article-list__meta-information {
    color: var(--darker-primary-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

/* line 122, src/sass/components/homepage.scss */
.homepage-top-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    /* line 127, src/sass/components/homepage.scss */
    .homepage-top-part .primary-article-list {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media (max-width: 1200px) {
    /* line 133, src/sass/components/homepage.scss */
    .homepage-top-part .secondary-article-list {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

/* line 1, src/sass/components/divider.scss */
.divider {
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    margin-bottom: 26px;
}

/* line 1, src/sass/components/breadcrumbs.scss */
.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 10px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* line 10, src/sass/components/breadcrumbs.scss */
.breadcrumbs li {
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

/* line 15, src/sass/components/breadcrumbs.scss */
.breadcrumbs li:after {
    content: '›';
    position: absolute;
    right: -5px;
    color: #ee8262;
    top: 1px;
}

/* line 24, src/sass/components/breadcrumbs.scss */
.breadcrumbs li:last-of-type:after {
    content: none;
}

/* line 29, src/sass/components/breadcrumbs.scss */
.breadcrumbs li a, .breadcrumbs li span {
    color: #ee8262;
    font-family: "Playfair Display - Regular";
    font-size: 11px;

    font-weight: 400;
    text-decoration: none;
}

/* line 2, src/sass/components/wysiwyg.scss */
.wysiwyg-content h1 {
    color: #0b2441;
    font-family: "Playfair Display - Regular";
    font-size: 36px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 28px;
}

@media (Max-width: 1200px) {
    /* line 2, src/sass/components/wysiwyg.scss */
    .wysiwyg-content h1 {
        font-size: 26px;
    }
}

/* line 15, src/sass/components/wysiwyg.scss */
.wysiwyg-content .article-list__single {
    -webkit-box-shadow: 0 6px 20px -9px rgba(0, 0, 0, 0.26);
    box-shadow: 0 6px 20px -9px rgba(0, 0, 0, 0.26);
}

/* line 17, src/sass/components/wysiwyg.scss */
.wysiwyg-content .article-list__single img {
    border-radius: 0;
}

/* line 22, src/sass/components/wysiwyg.scss */
.wysiwyg-content h2 {
    color: #ee8262;
    font-family: "Playfair Display - Bold";

    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 28px;
}

/* line 31, src/sass/components/wysiwyg.scss */
.wysiwyg-content p {
    color: #000000;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* line 40, src/sass/components/wysiwyg.scss */
.wysiwyg-content img {
    border-radius: 5px;
}

/* line 44, src/sass/components/wysiwyg.scss */
.wysiwyg-content .image-wrapper {
    position: relative;
    margin: 20px 0;
}

/* line 48, src/sass/components/wysiwyg.scss */
.wysiwyg-content .image-wrapper:before {
    content: 'i';
    position: absolute;
    right: 16px;
    bottom: 36px;
    border-radius: 50%;
    background-color: #000000;
    opacity: 0.49;
    color: #ffffff;
    font-family: var(--secondary-font);
    font-size: 10px;
    font-weight: 700;
    display: block;
    line-height: 20px;
    text-align: center;
    min-width: 20px;
}

/* line 66, src/sass/components/wysiwyg.scss */
.wysiwyg-content .image-wrapper p {
    color: #000000;
    font-family: var(--secondary-font);
    font-size: 11px;
    font-weight: 400;
    margin-top: 12px;
}

/* line 1, src/sass/components/redaction.scss */
.redaction-list {
    margin-bottom: 28px;
}

/* line 4, src/sass/components/redaction.scss */
.redaction-list__member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 28px;
}

/* line 10, src/sass/components/redaction.scss */
.redaction-list__thumbnail {
    margin-right: 35px;
}

/* line 13, src/sass/components/redaction.scss */
.redaction-list__thumbnail img {
    border-radius: 5px;
}

/* line 18, src/sass/components/redaction.scss */
.redaction-list__description {
    max-width: 500px;
}

/* line 21, src/sass/components/redaction.scss */
.redaction-list__description h2 {
    color: #000000;
    font-family: "Playfair Display - Regular";
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* line 30, src/sass/components/redaction.scss */
.redaction-list__description h3 {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
}

/* line 38, src/sass/components/redaction.scss */
.redaction-list__description__email {
    color: #000000;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 23px;
    margin-bottom: 8px;
}

/* line 47, src/sass/components/redaction.scss */
.redaction-list__description__cv {
    color: #000000;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* line 57, src/sass/components/redaction.scss */
.redaction-button {
    margin-bottom: 20px;
}

/* line 1, src/sass/components/category.scss */
.article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
}

/* line 8, src/sass/components/category.scss */
.article-list__single {
    border-radius: 5px;
    background-color: var(--secondary-color);
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.article-list__single__thumbnail img {
    transition: all 0.2s;
}

.article-list__single:hover .article-list__single__thumbnail img {
    transform: scale(1.05);
}

/* line 17, src/sass/components/category.scss */
.article-list__single__category {
    color: var(--darker-primary-color);
    font-family: var(--primary-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    /* line 17, src/sass/components/category.scss */
    .article-list__single__category {
        font-size: 11px;
        margin-bottom: 10px;
    }
}

/* line 31, src/sass/components/category.scss */
.article-list__single__title {
    color: #312727;
    font-family: var(--primary-font);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (max-width: 1200px) {
    /* line 31, src/sass/components/category.scss */
    .article-list__single__title {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* line 45, src/sass/components/category.scss */
.article-list__single__meta {
    color: var(--darker-primary-color);
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 400;
}

@media (max-width: 1200px) {
    /* line 45, src/sass/components/category.scss */
    .article-list__single__meta {
        font-size: 11px;
    }
}

/* line 56, src/sass/components/category.scss */
.article-list__single__content {
    position: relative;
    padding: 20px 26px;
}

@media (max-width: 1200px) {
    /* line 56, src/sass/components/category.scss */
    .article-list__single__content {
        padding: 8px;
    }
}

.article-list__single__thumbnail {
    overflow: hidden;
}

@media (max-width: 1200px) {
    /* line 65, src/sass/components/category.scss */
    .article-list__single__thumbnail {
        width: 147px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-left: 6px;
    }
}

/* line 74, src/sass/components/category.scss */
.article-list__sidebar {
    width: 300px;
    margin-left: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    /* line 74, src/sass/components/category.scss */
    .article-list__sidebar {
        display: none;
    }
}

/* line 3, src/sass/components/contact.scss */
.contact .button {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* line 1, src/sass/components/quiz.scss */
.quiz {
    padding: 16px 24px;
    -webkit-box-shadow: 0 6px 20px -9px rgba(0, 0, 0, 0.26);
    box-shadow: 0 6px 20px -9px rgba(0, 0, 0, 0.26);
    border-radius: 5px;
    background-color: var(--secondary-color);
    margin: 20px 0;
}

@media (max-width: 1200px) {
    /* line 1, src/sass/components/quiz.scss */
    .quiz {
        padding: 10px;
    }
}

/* line 13, src/sass/components/quiz.scss */
.quiz__title {
    color: var(--darker-primary-color);
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 14px;
}

/* line 23, src/sass/components/quiz.scss */
.quiz__title img,
.quiz__title svg {
    margin: 0;
    margin-right: 6px;
}

/* line 29, src/sass/components/quiz.scss */
.quiz__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* line 39, src/sass/components/quiz.scss */
.quiz__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}

/* line 45, src/sass/components/quiz.scss */
.quiz__option label {
    color: #000000;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
}

/* line 52, src/sass/components/quiz.scss */
.quiz__option input {
    margin-right: 6px;
}

/* line 58, src/sass/components/quiz.scss */
.quiz__option.active label {
    font-weight: bold;
    color: var(--darker-primary-color);
}

/* line 68, src/sass/components/quiz.scss */
.quiz__result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}

/* line 74, src/sass/components/quiz.scss */
.quiz__result__label {
    margin-right: 8px;
    text-align: right;
    color: var(--darker-primary-color);
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
}

/* line 83, src/sass/components/quiz.scss */
.quiz__result__progress-bar {
    width: 250px;
    border-radius: 10px;
    background-color: var(--primary-color);
    height: 10px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    /* line 83, src/sass/components/quiz.scss */
    .quiz__result__progress-bar {
        width: 78px;
    }
}

/* line 96, src/sass/components/quiz.scss */
.quiz__result__progress-bar-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    border-radius: 10px;
    background-color: var(--darker-primary-color);
}

/* line 108, src/sass/components/quiz.scss */
.quiz__result.active .quiz__result__label {
    font-weight: bold;
}

/* line 115, src/sass/components/quiz.scss */
.test {
    padding: 16px 24px;
    -webkit-box-shadow: 0 6px 20px -9px rgba(0, 0, 0, 0.26);
    box-shadow: 0 6px 20px -9px rgba(0, 0, 0, 0.26);
    border-radius: 5px;
    background-color: var(--secondary-color);
    margin: 20px 0;
}

@media (max-width: 1200px) {
    /* line 115, src/sass/components/quiz.scss */
    .test {
        padding: 10px;
    }
}

/* line 128, src/sass/components/quiz.scss */
.test__title {
    color: var(--darker-primary-color);
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 14px;
}

/* line 138, src/sass/components/quiz.scss */
.test__title img,
.test__title svg {
    margin: 0;
    margin-right: 6px;
}

/* line 145, src/sass/components/quiz.scss */
.test__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* line 155, src/sass/components/quiz.scss */
.test__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}

/* line 161, src/sass/components/quiz.scss */
.test__option label {
    color: #000000;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
}

/* line 168, src/sass/components/quiz.scss */
.test__option input {
    margin-right: 6px;
}

/* line 174, src/sass/components/quiz.scss */
.test__option.correct label {
    color: #00b611;
    font-weight: 700;
}

/* line 181, src/sass/components/quiz.scss */
.test__option.error label {
    color: #e80003;
    font-weight: 700;
    text-decoration: line-through;
}

/* line 188, src/sass/components/quiz.scss */
.test .note {
    font-weight: normal !important;
    text-decoration: none !important;
}

/* line 196, src/sass/components/quiz.scss */
.quiz input[type=radio],
.test input[type=radio] {
    display: none;
}

/* line 201, src/sass/components/quiz.scss */
.quiz label,
.test label {
    position: relative;
}

/* line 204, src/sass/components/quiz.scss */
.quiz label:before,
.test label:before {
    content: ' ';
    width: 11px;
    height: 11px;
    border-radius: 11px;
    border: 1px solid var(--primary-color);
    display: inline-block;
    margin-right: 12px;
}

/* line 217, src/sass/components/quiz.scss */
.quiz input[type=radio]:checked + label:before,
.test input[type=radio]:checked + label:before {
    border: 1px solid var(--darker-primary-color);
}

.quiz input[type=radio]:checked + label {
    font-weight: bold;
    color: var(--darker-primary-color);
}

/* line 220, src/sass/components/quiz.scss */
.quiz input[type=radio]:checked + label:after,
.test input[type=radio]:checked + label:after {
    content: '';
    display: block;
    width: 11px;
    height: 8px;
    background-image: url("../svg/quiz-check.svg");
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 4px;
    top: 1px;
    background-size: contain;
}

/* line 237, src/sass/components/quiz.scss */
.quiz .error input[type=radio] + label:before,
.test .error input[type=radio] + label:before {
    border: 1px solid #e80003;
}

/* line 244, src/sass/components/quiz.scss */
.quiz .error input[type=radio]:checked + label:after,
.test .error input[type=radio]:checked + label:after {
    background-image: url("../svg/quiz-check-error.svg");
}

/* line 251, src/sass/components/quiz.scss */
.quiz .correct input[type=radio] + label:before,
.test .correct input[type=radio] + label:before {
    border: 1px solid #00b611;
}

/* line 258, src/sass/components/quiz.scss */
.quiz .correct input[type=radio]:checked + label:after,
.test .correct input[type=radio]:checked + label:after {
    background-image: url("../svg/quiz-check-success.svg");
}

/* line 1, src/sass/components/gallery.scss */
.gallery-modal {
    background-color: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2000;
}

/* line 13, src/sass/components/gallery.scss */
.gallery-modal.hidden {
    display: none;
}

@media (max-width: 1200px) {
    /* line 1, src/sass/components/gallery.scss */
    .gallery-modal {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 16px;
    }
}

/* line 22, src/sass/components/gallery.scss */
.gallery-modal .bx-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: #fff;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    /* line 22, src/sass/components/gallery.scss */
    .gallery-modal .bx-wrapper {
        margin-bottom: 0px;
    }
}

/* line 35, src/sass/components/gallery.scss */
.gallery-modal__wrapper {
    -webkit-box-shadow: 0 16px 16px rgba(0, 0, 0, 0.19);
    box-shadow: 0 16px 16px rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    background-color: #353535;
    width: 1160px;
}

@media (max-width: 1200px) {
    /* line 35, src/sass/components/gallery.scss */
    .gallery-modal__wrapper {
        width: 100%;
    }
}

/* line 46, src/sass/components/gallery.scss */
.gallery-modal__header {
    -webkit-box-shadow: 4px 3px 11px rgba(0, 0, 0, 0.5);
    box-shadow: 4px 3px 11px rgba(0, 0, 0, 0.5);
    border-radius: 5px 5px 0 0;
    background-color: #464646;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 50px;
}

@media (max-width: 1200px) {
    /* line 46, src/sass/components/gallery.scss */
    .gallery-modal__header {
        padding: 10px;
    }
}

/* line 60, src/sass/components/gallery.scss */
.gallery-modal__page-info {
    color: #ffffff;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

/* line 67, src/sass/components/gallery.scss */
.gallery-modal__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 1200px) {
    /* line 67, src/sass/components/gallery.scss */
    .gallery-modal__title {
        font-size: 11px;
    }
}

/* line 81, src/sass/components/gallery.scss */
.gallery-modal__title svg {
    margin-right: 10px;
}

@media (max-width: 1200px) {
    /* line 81, src/sass/components/gallery.scss */
    .gallery-modal__title svg {
    }
}

@media (max-width: 1200px) {
    /* line 91, src/sass/components/gallery.scss */
    .gallery-modal__close img {
        height: 12px;
    }
}

/* line 98, src/sass/components/gallery.scss */
.gallery-modal__ad {
    margin-bottom: 20px;
}

/* line 102, src/sass/components/gallery.scss */
.gallery-modal__slider {
    margin-bottom: 20px;
}

/* line 106, src/sass/components/gallery.scss */
.gallery-modal__slider-wrapper {
    position: relative;
}

/* line 110, src/sass/components/gallery.scss */
.gallery-modal__body {
    padding: 30px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    /* line 110, src/sass/components/gallery.scss */
    .gallery-modal__body {
        padding: 0;
    }
}

/* line 121, src/sass/components/gallery.scss */
.gallery-modal__body__sidebar {
    width: 300px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 40px;
}

@media (max-width: 1200px) {
    /* line 121, src/sass/components/gallery.scss */
    .gallery-modal__body__sidebar {
        display: none;
    }
}

/* line 132, src/sass/components/gallery.scss */
.gallery-modal__description {
    color: #ffffff;
    font-family: var(--secondary-font);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    /* line 132, src/sass/components/gallery.scss */
    .gallery-modal__description {
        font-size: 14px;
        padding: 12px;
    }
}

/* line 1, src/sass/components/footer.scss */
.external-article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    /* line 1, src/sass/components/footer.scss */
    .external-article-list {
        width: 100%;
        overflow-x: scroll;
    }
}

/* line 13, src/sass/components/footer.scss */
.external-article-detail {
    width: 24%;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

@media (max-width: 1200px) {
    /* line 13, src/sass/components/footer.scss */
    .external-article-detail {
        width: 80%;
        margin-left: 12px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    /* line 24, src/sass/components/footer.scss */
    .external-article-detail:nth-of-type(1) {
        margin-left: 12px;
    }
}

.external-article-detail:hover .external-article-detail__thumbnail img {
    transform: scale(1.05);
}

.external-article-detail__thumbnail {
    overflow: hidden;
}

/* line 29, src/sass/components/footer.scss */
.external-article-detail__thumbnail img {
    width: 100%;
    transition: all 0.2s;
}

/* line 33, src/sass/components/footer.scss */
.external-article-detail__content {
    padding: 30px 20px 20px;
    position: relative;
}

/* line 38, src/sass/components/footer.scss */
.external-article-detail__category {
    color: var(--darker-primary-color);
    font-family: var(--primary-font);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* line 47, src/sass/components/footer.scss */
.external-article-detail__title {
    color: #312727;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
}

/* line 56, src/sass/components/footer.scss */
.external-category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    /* line 56, src/sass/components/footer.scss */
    .external-category-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/* line 66, src/sass/components/footer.scss */
.external-category-list__category {
    width: 13%;
}

@media (max-width: 1200px) {
    /* line 66, src/sass/components/footer.scss */
    .external-category-list__category {
        width: 42%;
        margin-bottom: 40px;
    }
}

/* line 74, src/sass/components/footer.scss */
.external-category-list__category h2 {
    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 20px;
    font-weight: 700;
    line-height: 46px;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* line 88, src/sass/components/footer.scss */
.external-category-list__category a {
    color: #000c49;
    font-family: "Playfair Display - Regular";
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.external-category-list__category a:hover {
    text-decoration: underline;
}

/* line 99, src/sass/components/footer.scss */
footer {
    background-color: var(--secondary-color);
    padding: 20px 0 30px;
}

/* line 104, src/sass/components/footer.scss */
.footer {
    position: relative;
}

/* line 107, src/sass/components/footer.scss */
.footer img {
    max-width: initial;
}

/* line 111, src/sass/components/footer.scss */
.footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    list-style: none;
    margin-bottom: 36px;
}

@media (max-width: 1200px) {
    /* line 111, src/sass/components/footer.scss */
    .footer__links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
}

/* line 122, src/sass/components/footer.scss */
.footer__links li {
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid var(--darker-primary-color);
    padding-top: 5px;
    padding-bottom: 5px;
}

@media (max-width: 1200px) {
    /* line 122, src/sass/components/footer.scss */
    .footer__links li {
        border-left: none;
        text-align: center;
        padding-left: 0;
        margin-left: 0;
    }
}

/* line 134, src/sass/components/footer.scss */
.footer__links li:nth-of-type(1) {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
}

/* line 141, src/sass/components/footer.scss */
.footer__links a {
    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 8px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer__links a:hover {
    color: #1A2833;
}

/* line 153, src/sass/components/footer.scss */
.footer__mobile-logo {
    display: none;
}

@media (max-width: 1200px) {
    /* line 153, src/sass/components/footer.scss */
    .footer__mobile-logo {
        text-align: center;
        display: block;
        padding-top: 16px;
        padding-bottom: 24px;
    }
}

@media (max-width: 1200px) {
    /* line 163, src/sass/components/footer.scss */
    .footer__mobile-logo img {
        width: 140px;
        margin: auto;
    }
}

/* line 171, src/sass/components/footer.scss */
.footer__about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

/* line 175, src/sass/components/footer.scss */
.footer__about__logo img {
    margin-right: 30px;
    max-width: 160px;
}

@media (max-width: 1200px) {
    /* line 175, src/sass/components/footer.scss */
    .footer__about__logo img {
        display: none;
    }
}

/* line 183, src/sass/components/footer.scss */
.footer__about__main-description {
    color: var(--darker-primary-color);
    font-family: "Playfair Display - Bold";
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    /* line 183, src/sass/components/footer.scss */
    .footer__about__main-description {
        font-size: 11px;
        text-align: center;
    }
}

/* line 196, src/sass/components/footer.scss */
.footer__about__description {
    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 1200px) {
    /* line 196, src/sass/components/footer.scss */
    .footer__about__description {
        font-size: 11px;
        text-align: center;
    }
}

/* line 210, src/sass/components/footer.scss */
.footer__about__social-links {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-left: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 1200px) {
    /* line 210, src/sass/components/footer.scss */
    .footer__about__social-links {
        position: absolute;
        left: 0;
        top: -36px;
        margin-left: 0;
    }
}

/* line 223, src/sass/components/footer.scss */
.footer__about__social-links img,
.footer__about__social-links svg {
    margin-left: 8px;
}

/* line 229, src/sass/components/footer.scss */
.footer__about__social-links a:nth-of-type(1) img,
.footer__about__social-links a:nth-of-type(1) svg {
    margin-left: 0;
}

/* line 237, src/sass/components/footer.scss */
.footer__scroll-to-top {
    width: 34px;
    height: 34px;
    border-radius: 3px;
    background-color: var(--button-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 30px;
    top: -36px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* line 250, src/sass/components/footer.scss */
.footer__scroll-to-top a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 17px;
    padding-left: 2px;
}

.single-article__sidebar__wraper {
    position: sticky;
    top: 10px;
}

.next-article {
    position: fixed;
    right: -400px;
    bottom: 200px;
    width: 400px;
    box-sizing: border-box;
    text-decoration: none;
    overflow: hidden;
    padding: 30px;
    color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-size: cover;
    background-position: center center;
    font-family: var(--primary-font);
    transition: all 0.2s;
}

@media (max-width: 1200px) {
    .next-article {
        display: none;
    }
}

.next-article--show {
    right: 0;
}

.next-article:hover {
    text-decoration: underline;
}

.next-article__category {
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

.next-article__title {
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.next-article__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-font-rgba);
    z-index: 2;
}

.gallery-modal__grid__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gallery-modal__grid {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #353535;
    z-index: 1000;
}

.gallery-modal__grid-item {
    width: 23%;
    margin-bottom: 2%;
}

.gallery-modal__grid-item:nth-of-type(4) {
    margin-right: 0;
}

.gallery-modal__grid-item img {
    width: 100%;
}

.gallery-modal__body__content {
    position: relative;
}

.single-article__gallery a div.only-mobile {
    display: none;
}

@media (max-width: 1200px) {
    .single-article__gallery a div.only-mobile {
        display: flex;
    }
}

@media (max-width: 1200px) {
    .article-image-wrapper {
        width: 100vw;
        margin-left: -3vw;
        margin-right: -3vw;
    }

    .article-image-wrapper img {
        border-radius: 0;
    }

    .article-image-wrapper figcaption {
        padding: 12px;
    }
}


.hp-search-banner {
    background-image: url('../img/hp-banner.jpg');
    background-size: cover;
    padding: 80px 0;
    background-position: center;
    margin-top: 20px;
    border-radius: 5px;
}

.hp-search-banner h1 {
    font-size: 36px;
    text-align: center;
    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-weight: 700;
}

@media (max-width: 1200px) {
    .hp-search-banner {
        margin-top: 6px;
        margin-left: -2vw;
        margin-right: -2vw;
        width: 98vw;
        box-sizing: border-box;
    }
}

.add-recipe-button {
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    box-shadow: 3px 5px 19px rgba(0, 0, 0, 0.5);
    background-color: #000c49;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 15px;

}

@media(max-width: 1200px) {
    .add-recipe-button{
        margin-top: 16px;
    }
}

.add-recipe-button span {
    color: #ffbaa8;
}

.article-perex h2 {
    color: #ee8262;
    font-family: "Playfair Display - Bold";
    font-size: 26px;
    font-weight: 700;
    margin-top: 26px;
    margin-bottom: 12px;
    font-style: normal;
}

.recipe-banner {
    box-shadow: 0 0 16px #d4d4d4;
    border-radius: 3px;
    background-color: #fffcfb;
    padding: 16px 40px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #000c49;
}

.recipe-banner__item {
    display: flex;
    flex-direction: row;
    font-size: 13px;
    white-space: nowrap;
    align-items: center;

}

.recipe-banner__item img {
    margin-right: 14px;
}

.recipe-banner__item strong {
    margin-bottom: 6px;
    display: inline-block;
}

@media (max-width: 1200px) {
    .recipe-banner__item {
        flex-direction: column;
        font-size: 10px;
        text-align: center;
    }


    .recipe-banner__item strong {
        margin-bottom: 2px;
        display: inline-block;
    }

    .recipe-banner__item img {
        margin-right: 0;
        margin-bottom: 5px;
        height: 30px;
    }
}

.recipe-content {
    display: flex;
    flex-direction: row;
}

.recipe-content__sidebar {
    flex-basis: 320px;
    margin-right: 24px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .recipe-content {
        flex-direction: column;
    }

    .recipe-content__sidebar {
        flex-basis: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }
}

.recipe-portion-calculator {
    width: 100%;
    box-shadow: 2px 10px 20px -9px rgba(0, 0, 0, 0.26);
    border-radius: 6px;
    background-color: #0b2441;
    padding: 14px 0;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.recipe-portion-calculator__description {
    font-family: "Playfair Display - Bold";
    font-size: 20px;
    font-weight: 700;
    margin-right: 6px;
}

.recipe-portion-calculator__output {
    color: #000c49;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;

    padding: 14px 20px;
    background-color: #fff;
    margin-right: 4px;
}

.recipe-portion-calculator__switch {
    display: flex;
    flex-direction: column;
}

.recipe-portion-calculator__switch a {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    line-height: 20px;
    background-color: #ee8262;
    display: block;
    margin: 2px;
}

.recipe-ingredients {
    box-shadow: 2px 10px 20px -9px rgba(0, 0, 0, 0.26);
    border-radius: 2px;
    background-color: #f0f4ff;
    padding: 14px 20px;
    margin-bottom: 20px;
}

.recipe-ingredients h3 {
    color: #000c49;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    margin-bottom: 8px;
}

.recipe-ingredients h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.recipe-ingredients h3 span {
    background-color: #f0f4ff;
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.recipe-ingredients ul {
    margin-bottom: 30px;
}

.recipe-ingredients li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-right: 10px;
}

.recipe-ingredients li {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 0;
    cursor: pointer;
}

.recipe-ingredients li a{
    color: #000;
    text-decoration: none;
}

.recipe-ingredients li span {
    text-decoration: underline;
}

.recipe-ingredients li.active a {
    text-decoration: line-through;
}
.recipe-ingredients li.active span {
    text-decoration: none !important;
}

.recipe-ingredients li.active span {
    text-decoration: none;
}

.recipe-ingredients li.active::before {
    border: 1px solid #ee8262;
    background-color: #ee8262;
    background-image: url('../img/white-check.svg');
    background-size: 15px 12px;
    background-position: center center;
    background-repeat: no-repeat;
}

.recipe-author {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    margin-top: 10px;
}

.recipe-author img {
    margin-right: 10px;
}

.recipe-author__info {
    display: flex;
    flex-direction: column;
}


.recipe-author__title {
    font-size: 12px;
}

.recipe-author__name {
    font-family: "Playfair Display - Regular";
    color: #000c49;
    font-weight: 400;
    padding-top: 3px;
}

.space-fill {
    width: 100%;
    background-color: #f0f4ff;
    flex: 1;
}

.recipe-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;;
    width: 100%;
    margin-bottom: 8px;
    margin-top: 20px;
}

.recipe-step:nth-of-type(1) {
    margin-top: 0;
}


.recipe-step span:nth-of-type(1) {
    color: #0b2441;
    font-family: "Playfair Display - Bold";
    font-size: 16px;
    font-weight: 700;
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background-color: #f0f4ff;
    display: block;
    text-align: center;
    line-height: 34px;
    margin-right: 10px;
}

.recipe-step span:nth-of-type(2) {
    color: #0b2441;
    font-family: "Playfair Display - Regular";
    font-size: 16px;
    font-weight: 400;
}

.recipe-step span:nth-of-type(3) {
    height: 1px;
    background-color: #f0f4ff;
    width: 100%;
    display: block;
    flex: 1;
    margin-left: 10px;
}

.recipe-content__main {
    flex: 1;
}

.recipe-main-content p {
    font-size: 16px;
    line-height: 1.3;
    text-align: justify;
}

.recipe-main-content img {
    margin-top: 16px;
}


.recipe-share-buttons {
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.recipe-share-buttons__facebook {
    padding-top: 7px;
}

@media (max-width: 1200px) {
    .recipe-share-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .recipe-share-buttons__custom {
        padding-top: 10px;
    }
}

.recipe-share-buttons__custom {
    display: flex;
    flex-display: row;
}

.recipe-share-buttons__custom a {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 3px;
    background-color: #ee8262;
    padding: 3px 15px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 10px;
}

@media (max-width: 1200px) {
    .recipe-share-buttons__custom a {
        margin-left: 0;
        margin-right: 10px;
    }
}

.recipe-share-buttons__custom img {
    margin-right: 6px;
}

.recipes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid #ffbaa8;
    padding-top: 16px;
}

.recipe-card {
    width: 23%;
    border-radius: 5px;
    overflow: hidden;
	transition: all 0.2s ease-in-out;
	box-shadow: 0px 0px 0px rgb(0 0 0 / 0%);
}

.recipe-card:hover .recipe-card__title {
    text-decoration: underline;
}

.recipe-card:hover {
    box-shadow: 8px 10px 24px rgb(0 0 0 / 14%);
}

@media (max-width: 1200px) {
    .recipe-card {
        width: 100%;
    }

    .recipes {
        overflow: scroll;
    }

    .recipes .recipe-card {
        width: 90%;
        flex-shrink: 0;
        margin-right: 5%;
    }
}

.recipe-card--third {
    width: 32.5%;
}

@media (max-width: 1200px) {
    .recipe-card--third {
        width: 100%;
    }
}

.recipe-card__thumb {
    height: 170px;
}

.recipe-card--third .recipe-card__thumb {
    height: 120px;
}

.recipe-card__body {
    border-radius: 5px 5px 0 0;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    background-color: #f0f4ff;
    padding-top: 30px;
	display: flex;
	flex-direction: column;
}

.recipe-card__category {
    color: #ee8262;
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.recipe-card__title {
    color: #000c49;
    font-size: 16px;
    font-family: "Playfair Display - Bold";

    font-weight: 700;
    line-height: 21px;
	flex: 1;
}

.recipe-card__rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.recipe-card__votes {
    color: #000c49;
    font-family: "Playfair Display - Regular";
    font-size: 14px;
    font-weight: 400;
}

.recipe-card__stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    justify-content: flex-start;
}

.recipe-card__stats div {
    display: flex;
    flex-direction: row;
    font-family: "Montserrat";
    align-items: center;
    color: #000c49;
    font-size: 10px;
    margin-right: 20px;
}

.recipe-card__stats img {
    height: 18px;
    margin-right: 6px;
}

.recipe-card__icon {
    position: absolute;
    top: -17px;
    left: 20px;
    background-color: #f0f4ff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-header {
    box-shadow: -3px 4px 17px rgba(0, 0, 0, 0.16);
    background-color: #fffcfb;
    padding: 30px 0;
    margin-bottom: 20px;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .sub-header {
        overflow: scroll;
    }
}

.category-strip {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.category-strip a {
    text-decoration: none;
    text-align: center;
    display: block;
    color: #000c49;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    margin: 0 8px;
}

.category-strip a img {
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .sub-header {
        padding: 14px 0;
    }

    .category-strip a img {
        height: 30px;
    }
}

.registration-widget {
    border-radius: 5px;
    background-color: #f0f4ff;
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.registration-widget h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.22px;
    line-height: normal;
    text-align: left;
    text-transform: uppercase;
}

.registration-widget h3 img {
    height: 30px;
    margin-right: 10px;
}

.registration-widget__login-form {
    padding-top: 20px;
    text-align: center;
}

.registration-widget__login-form label {
    display: block;
    color: #000c49;
    font-family: "Playfair Display";
    font-weight: 700;
    text-align: center;
}

.registration-widget__login-form input[type=text],
.registration-widget__login-form input[type=password] {
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    width: 100%;
    margin: 6px 0 12px 0;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 26px;
}

.registration-widget__login-form .login-remember {
    display: none;
}

.registration-widget__login-form input[type=submit],
.register-btn {
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    background-color: #000c49;
    margin: auto;
    line-height: 34px;
    font-size: 13px;
    border: none;
    background-image: url('../img/cook-hat.svg');
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: 30px center;
    padding: 0px 30px 0px 60px;
    margin-top: 10px;
    text-decoration: none;
}

.register-btn {
    background-image: url('../img/clipboard.svg');
    padding: 0px 18px 0px 38px;
    background-color: #ee8262;
    background-position: 14px center;
    margin-bottom: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.register-btn:hover {
    box-shadow: 0 0px 0px rgb(0 0 0 / 0%), 0 0px 0px rgb(0 0 0 / 0%);
    transform: translate(0, 5px);
}

.recipe-category-tags {
    padding: 10px 0 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.recipe-category-tags a {
    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 600;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: #f0f4ff;
    padding: 10px 20px;
    text-decoration: none;
    flex-basis: 15%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.recipe-category-tags a:hover {
    text-decoration: underline;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1200px) {
    .recipe-category-tags a {
        flex-basis: 48%;
    }
}

.cta-banner {
    background-image: url('../img/cta-banner-background.jpg');
    background-size: cover;
    background-position: right center;
    padding: 80px 50px;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.14);
    border-radius: 5px;
    margin-bottom: 20px;
}

.cta-banner__subtitle {
    margin-bottom: 30px;
    color: #000c49;
    font-family: "Playfair Display";
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cta-banner__subtitle img {
    height: 30px;
    margin-right: 8px;
}

.cta-banner h2 {
    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 28px;
    text-align: left;
    margin-bottom: 30px;
}

@media(max-width: 1200px) {
    .cta-banner h2 {
        line-height: 34px;
    }
}

.cta-banner h2 span {
    color: #ee8262;
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 36px;
    margin-right: 0;
}

.cta-banner ul {
    color: #000c49;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: 29px;
    text-align: left;
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

@media(max-width: 1200px) {
    .cta-banner li {
        font-size: 13px;
    }
}

.cta-banner a {
    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #9dbf09;
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 700;
    text-align: justify;
    text-transform: uppercase;
    padding: 4px 20px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    transition: all 0.2s;
}

.cta-banner a:hover {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.cta-banner span {
    color: #000c49;
    font-size: 24px;
    display: inline-block;;
    margin-right: 8px;
}

@media (max-width: 1200px) {
    .cta-banner {
        background-image: url('../img/cta-banner-background-mobile.jpg');
        background-size: cover;
        background-position: center bottom;
        padding: 20px 20px 280px;
        border-radius: 5px;
        box-sizing: border-box;
        text-align: center;
        width: 100vw;
        margin-left: -3vw;
        margin-right: -3vw;
    }

    .cta-banner__subtitle {
        justify-content: center;
    }

    .cta-banner h2 {
        text-align: center;
    }

}

.main-search-form {
    border-radius: 10px;
    background-color: #f0f4ff;
    padding: 14px 20px;
    margin-bottom: 20px;
}

.main-search-form__row-1,
.main-search-form__row-2,
.main-search-form__row-3,
.main-search-form__row-4 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main-search-form__row-1 > div,
.main-search-form__row-2 > div,
.main-search-form__row-3 > div,
.main-search-form__row-4 > div {
    margin-bottom: 20px;
}

.main-search-form__row-1 .main-search-form__category-field {
    width: 28%;
}

.main-search-form__row-1 .main-search-form__ingredient-field {
    width: 40%;
}

.main-search-form__row-1 .main-search-form__condition-field {
    width: 28%;
}

.main-search-form__row-2 .main-search-form__submit-field {
    width: 20%;
    text-align: right;
    white-space: nowrap;
    margin-bottom: 10px;
}

.main-search-form__row-2 .main-search-form__text-field {
    flex: 75%;
    margin-bottom: 10px;
}

.main-search-form__excluded-ingredient-field {
    width: 49%;
}

.main-search-form__alergen-field {
    width: 49%;
}

.main-search-form__difficulty-field,
.main-search-form__portion-field,
.main-search-form__time-field {
    width: 32%;
}

@media (max-width: 1200px) {
    .main-search-form {
        margin-bottom: 40px;
    }

    .main-search-form__row-1,
    .main-search-form__row-2,
    .main-search-form__row-3,
    .main-search-form__row-4 {
        flex-wrap: wrap;
    }

    .main-search-form__row-1 .main-search-form__category-field {
        width: 100%;
    }

    .main-search-form__row-1 .main-search-form__ingredient-field {
        width: 100%;
    }

    .main-search-form__row-1 .main-search-form__condition-field {
        width: 100%;
    }

    .main-search-form__row-2 .main-search-form__submit-field {
        width: 100%;
        text-align: center;
        margin-bottom: -30px;
    }

    .main-search-form__row-2 .main-search-form__text-field {
        flex: 100%;
    }

    .main-search-form__excluded-ingredient-field {
        width: 100%;
    }

    .main-search-form__alergen-field {
        width: 100%;
    }

    .main-search-form__difficulty-field,
    .main-search-form__portion-field,
    .main-search-form__time-field {
        width: 100%;
    }
}

.main-search-form label {
    display: block;
    color: #000c49;
    font-family: "Playfair Display";
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    padding-left: 20px;
    padding-bottom: 5px;
}

.select2-search__field {
    margin: 0 !important;
    margin-top: -5px !important;
}

.main-search-form input,
.main-search-form select {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    margin: 6px 0 12px 0;
    padding: 5px 20px;
    box-sizing: border-box;
    line-height: 26px;
    margin: 0;
    font-family: "Montserrat";
}

.main-search-form select {
    background-image: url('../img/select-chevron.png');
    background-position: center right 12px;
    background-repeat: no-repeat;
}

.main-search-form button {
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    background-color: #000c49;
    margin: auto;
    line-height: 30px;
    font-size: 13px;
    border: none;
    padding: 4px 30px 4px 40px;
    text-decoration: none;
    -webkit-appearance: none;
	font-family: "Montserrat";
}

.main-search-form__submit-field button{
    position: relative;
}

.main-search-form__magnify {
    position: absolute;
    left: 20px;
    top: 12px;
}

.main-search-form__custom-search-link {
    color: #a6aac3;
    font-family: "Montserrat";
    font-size: 10px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    padding-left: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .main-search-form__custom-search-link {
        display: none;
    }

    .main-search-form label {
        text-align: center;
    }
}

.select2-container--default .select2-selection--multiple {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    margin: 6px 0 12px 0;
    padding: 5px 20px 5px 5px;
    box-sizing: border-box;
    line-height: 26px;
    margin: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border-radius: 11px;
    line-height: 1.9;
    padding-left: 5px;
    border-color: #ffbaa8;
    padding-right: 20px;
    margin-left: 0;
    margin-top: 0;
	margin-bottom: 5px;
    margin-right: 5px;
    background-color: #ffbaa8;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0;
    color: #ee8262;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    box-shadow: none;
    padding: 0 4px;
    line-height: 1.5;
    position: absolute;
    right: 0;
    top: 3px;
    left: initial;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 22px;
}

.hp-category-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

.hp-category-list div {
    width: 15%;
    text-align: center;
    margin-bottom: 2%;
    position: relative;
}

.hp-category-list h2 {
    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 600;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
}

.hp-category-list h2::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ffbaa8;
    margin: 14px 0;
    display: block;
}

.hp-category-list a {
    color: #000c49;
    font-family: "Playfair Display";
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    line-height: 1.5;
}

.hp-category-list img {
    margin-bottom: 10px;
    height: 40px;
}

@media (max-width: 1200px) {
    .hp-category-list div {
        width: 32%;
        margin-bottom: 20px;
    }

    .hp-category-list ul {
        display: none;
    }

    .hp-category-list h2::after {
        display: none
    }

}

.article-slider {
    width: 100%;
}

.article-slider__slide {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 10px;
}


.homepage-category-preview .bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
    border: none;
    background: transparent;
}

.homepage-category-preview .bx-wrapper .bx-controls-direction a.bx-next {
    right: -36px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background-color: #000c49;
    background-image: url('../img/next.png');
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.2s;
	box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.homepage-category-preview .bx-wrapper .bx-controls-direction a.bx-prev {
    left: -36px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background-color: #000c49;
    background-image: url('../img/prev.png');
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.2s;
	box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.homepage-category-preview .bx-wrapper .bx-controls-direction a.bx-next:hover,
.homepage-category-preview .bx-wrapper .bx-controls-direction a.bx-prev:hover {
    box-shadow: 0 0px 0px rgb(0 0 0 / 0%), 0 0px 0px rgb(0 0 0 / 0%);
}

.homepage-category-preview .bx-wrapper img {
    width: auto;
}

.recipe-card__stars {
    display: flex;
    flex-direction: row;
}

.recipe-card__stars img {
    margin-right: 6px;
}

.homepage-category-preview .button:hover {
    transform: translateX(-50%);
}

.hp-cta {
    background-image: url('../img/hp-cta.jpg');
    background-size: cover;
    padding: 30px 150px;
    background-position: center;
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
}

.hp-cta h1 {
    color: #000c49;
    font-family: "Playfair Display";
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 46px;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;

}

.hp-cta h1 img {
    margin-right: 12px;
}

.hp-cta__recipe-list {
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.hp-cta__recipe-list__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 10px;
    line-height: 19px;
    text-transform: uppercase;
}

.hp-cta__recipe-list__title img {
    height: 24px;
    margin-right: 6px;
}

.hp-cta__recipe-list__thumb img {
    height: 100px;
    margin-bottom: 12px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.18);
    border-radius: 5px;
}

.hp-cta__recipe-list__recipe-name {
    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
}

@media (max-width: 1200px) {
    .hp-cta__form {
        padding-top: 10px;
    }
}

.hp-cta__form-title {
    margin-top: 30px;
    margin-bottom: 10px;

    height: 19px;
    color: #000c49;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    text-transform: uppercase;
}

.hp-cta__form__input {
    width: 440px;
    display: flex;
    flex-direction: row;
    margin: auto;
    background-color: #fff;
    align-items: center;
    margin-top: 20px;
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.11);
    position: relative;

    border-radius: 22px;
    margin-bottom: 30px;
}

.hp-cta__form__input img {
    position: absolute;;
    top: 10px;
    left: 16px;
}

.hp-cta__form__input input[type=email] {
    flex: 1;

    color: #a6aac3;
    font-family: "Montserrat";
    font-size: 15px;
    border: none;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    font-weight: 500;
    padding: 12px 50px;
    min-width: 0;

}

.hp-cta__form__input input[type=submit] {

    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.11);
    border-radius: 22px;
    background-color: #ffbaa8;
    padding: 12px 30px;
    border: none;
    -webkit-appearance: none;

    color: #0b2441;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 700;
}

.hp-cta__form__compliance {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #0b2441;
    font-family: "Montserrat";
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
}

@media (max-width: 1200px) {
    .hp-cta {
        padding: 30px 10px;
    }

    .hp-cta__form__input {
        width: 100%;
    }

    .homepage-category-preview .bx-wrapper .bx-controls-direction a.bx-next {
        display: none;
    }

    .homepage-category-preview .bx-wrapper .bx-controls-direction a.bx-prev {
        display: none;
    }
}

.hp-search-banner-input {
    width: 440px;
    display: flex;
    flex-direction: row;
    margin: auto;
    background-color: #fff;
    align-items: center;
    margin-top: 20px;
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.11);
    margin-top: 40px;
    border-radius: 22px;
    margin-bottom: 30px;
}

.hp-search-banner-input input[type=text] {
    flex: 1;

    color: #a6aac3;
    font-family: "Montserrat";
    font-size: 15px;
    border: none;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    font-weight: 500;
    min-width: 0;
    padding: 12px 50px;

}

.hp-search-banner-input input[type=submit] {

    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.11);
    border-radius: 22px;
    background-color: #000c49;
    padding: 12px 30px;
    border: none;
    -webkit-appearance: none;

    
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1200px) {

    .hp-search-banner-input {
        width: 90%;
    }

    .hp-cta__recipe-list {
        flex-wrap: wrap;
    }

    .hp-cta__recipe-list__item {
        width: 48%;
        margin-bottom: 20px
    }
}

.register-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-modal__container {
    padding: 40px;

    border-radius: 10px;
    background-color: #f0f4ff;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.register-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    text-decoration: none;
}

.register-modal h1 {

    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
}

.register-modal p {

    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 19px;
}

.register-modal form {
    margin-top: 20px;
}

.register-modal input[type=text],
.register-modal input[type=email],
.register-modal input[type=password] {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    margin: 0 auto 12px auto;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 26px;
    max-width: 250px;
}

.register-modal label {

    color: #0b2441;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

.register-modal button {

    color: #ffffff;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #9dbf09;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .register-modal__container {
        max-width: 90%;
    }
}

.login-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-modal__container {
    padding: 40px;

    border-radius: 10px;
    background-color: #f0f4ff;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.login-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    text-decoration: none;
}

.login-modal h1 {

    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
}

.login-modal p {

    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 19px;
}

.login-modal form {
    margin-top: 20px;
}

.login-modal input[type=text],
.login-modal input[type=email],
.login-modal input[type=password] {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    margin: 0 auto 12px auto;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 26px;
    max-width: 250px;
}

.login-modal label {

    color: #0b2441;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

.login-modal button {

    color: #ffffff;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #9dbf09;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .login-modal__container {
        max-width: 90%;
    }
}

.login-modal .only-social .login-username,
.login-modal .only-social .login-password,
.login-modal .only-social .login-remember,
.login-modal .only-social .login-submit {
    display: none;
}

.login-modal .only-wp .login-remember,
.login-modal .only-wp #nsl-custom-login-form-2,
.login-modal .only-wp #nsl-custom-login-form-3 {
    display: none;
}

.login-modal .only-wp label {
    display: none;
}

.login-modal .only-wp input[type=submit] {
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;

    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #000c49;
    border: none;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 10px
}

.login-modal .forgotten-password a {

    color: #000c49;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
}

.login-modal .j-register-button {

    color: #ffffff;
    font-family: "Montserrat";
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    padding: 10px 20px;

    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #9dbf09;
}

.no-deco {
    text-decoration: none;
    color: inherit
}

.homepage-category-preview .bx-wrapper {
    position: relative;
    z-index: 10;
}


.password-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-modal__container {
    padding: 40px;

    border-radius: 10px;
    background-color: #f0f4ff;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.password-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    text-decoration: none;
}

.password-modal h1 {

    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
}

.password-modal p {

    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 19px;
}

.password-modal form {
    margin-top: 20px;
}

.password-modal input[type=email] {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    margin: 0 auto 12px auto;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 26px;
    max-width: 250px;
}

.password-modal label {

    color: #0b2441;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

.password-modal button {

    color: #ffffff;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #9dbf09;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .password-modal__container {
        max-width: 90%;
    }
}


.password-change-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-change-modal__container {
    padding: 40px;

    border-radius: 10px;
    background-color: #f0f4ff;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.password-change-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    text-decoration: none;
}

.password-change-modal h1 {

    color: #000c49;
    font-family: "Playfair Display - Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
}

.password-change-modal p {

    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 19px;
}

.password-change-modal form {
    margin-top: 20px;
}

.password-change-modal input[type=text] {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    margin: 0 auto 12px auto;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 26px;
    max-width: 250px;
}

.password-change-modal label {

    color: #0b2441;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

.password-change-modal button {

    color: #ffffff;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #9dbf09;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .password-change-modal__container {
        max-width: 90%;
    }
}



.new-recipe {
    display: flex;
    flex-direction: row;;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.new-recipe__sidebar {
    width: 460px;
    padding-right: 40px;
    box-sizing: border-box;
}

.new-recipe__content {
    flex: 1;
}

.new-recipe__submit {
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.new-recipe__submit input[type=submit] {
    color: #ffffff;
    display: inline-block;
    border: none;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 25px;

    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #9dbf09;
    text-decoration: none;
}

.new-recipe input[type=text],
.new-recipe select,
.new-recipe textarea {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 17px;
    border: 1px solid #0b2441;
    background-color: #ffffff;
    margin: 0 auto 12px auto;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 26px;
    width: 100%;
}

.new-recipe__param {
    display: flex;
    flex-direction: row;
    align-items: center;

    color: #000c49;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    justify-content: space-between;
    padding: 10px 0;
}

.new-recipe__param  img {
    height: 35px;
    margin-right: 10px;
}


.new-recipe__param  span:nth-of-type(1) {
    margin-right: 40px;
}

.new-recipe__param  input {
    width: 50px !important;
    min-width: 0;
    margin: 0 !important;
}

.ingredients-textarea {
     background-color: #f0f4ff !important;
    padding: 20px !important;
    min-height: 150px;
}

.new-recipe__thumbnail {
    padding: 30px;

    border-radius: 6px;
    background-color: #f0f4ff;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.new-recipe__thumbnail input{
    display: none;
}

.new-recipe__thumbnail h2{
    color: #000c49;

}

.new-recipe__thumbnail div:nth-of-type(1) {
    text-align: center;
}

.new-recipe__thumbnail label{

    color: #ffffff;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-block;
    box-shadow: 5px 5px 19px rgba(0, 0, 0, 0.19);
    border-radius: 18px;
    background-color: #ee8262;
}

.new-recipe__steps-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.new-recipe__steps-header h2 {

    color: #000c49;
    font-family: "Playfair Display";
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.new-recipe__steps__step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.new-recipe__steps__number {

    color: #ee8262;
    font-family: "Playfair Display";
    font-size: 16px;
    font-weight: 700;
    text-align: left;

    border-radius: 17px;
    background-color: #ffbaa8;
    width: 35px;
    margin-right: 10px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-recipe__steps__thumbnail {
    position: relative;
}

.new-recipe__steps__thumbnail input {
    display: none;
}

.new-recipe__steps__thumbnail label {
    padding: 15px 40px;
    text-align: center;

    border-radius: 6px;
    background-color: #f0f4ff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    color: #000c49;
    font-family: "Montserrat";
    font-size: 12px;
    margin-left: 10px;
    font-weight: 700;
    text-decoration: underline;
    position: relative;
    text-transform: uppercase;
}

.new-recipe__steps__thumbnail label img{
    margin-bottom: 6px;
}

.new-recipe__steps__content {
    flex: 1;
}

.new-recipe__steps__content textarea {
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding: 4px 8px;
}

.new-recipe__new-step {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.new-recipe__new-step  span{
    color: #ee8262;
    font-family: "Playfair Display";
    font-size: 16px;
    font-weight: 700;
    text-align: left;

    border-radius: 17px;
    background-color: #ffbaa8;
    width: 35px;
    margin-right: 10px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-recipe__new-step a{
    color: #000c49;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    text-transform: uppercase;
}

.new-recipe__steps__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.new-recipe__steps__preview-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
}

::placeholder {
    color: #ccc;
}

.single-article__meta-before__bookmark a {
    color: #000c49;
    text-decoration: none;
    font-family: "Playfair Display";
}

@media(max-width: 1200px) {
    .mobile-hidden {
        display: none;
    }
}

button {
	cursor: pointer;
}

textarea {
	font-family: "Montserrat";
}


@media (min-width: 1201px) {
	header {
		width: 1080px;
		margin: auto;
		margin-left: -10px;
		padding: 10px;
		box-sizing: border-box;
	}
	
	.header-navigation {
		
		width: 1060px;
		margin: auto;
	}
	footer {
		width: 1080px;
		margin: auto;
		margin-left: -10px;
		padding: 10px;
		box-sizing: border-box;
	}
}