/*Reset*/
* {
    padding                : 0;
    margin                 : 0;
    border                 : 0;
    box-sizing             : border-box;
    -webkit-font-smoothing : antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    width: 100%;
}

.clearfix:after {
    content   : ".";
    clear     : both;
    display   : block;
    visibility: hidden;
    height    : 0px;
}

/*Font define*/
html {
    font-family: "Foco", Arial, sans-serif;
}

body {
    /*overflow : scroll;*/
    font-weight: 100;
}

body.open {
    position  : fixed;
    overflow-y: scroll;
}

main {
    padding-top: 70px;
}

h1,
p {
    font-weight: 100;
}

h2 {
    font-weight: normal;
}

a {
    text-decoration: none;
    color          : black;
}

form {
    padding: 20px 0;
}

form .label {
    width        : 100%;
    height       : 40px;
    margin-bottom: 0px;
    padding-top  : 10px;
    font-weight  : 400;
}

form .input-wrapper {
    margin-bottom: 20px;
}

form input[type=text],
form textarea {
    width     : 100%;
    height    : 40px;
    padding   : 10px;
    display   : block;
    border    : 1px solid grey;
    box-sizing: border-box;
}

form textarea {
    height: auto;
}

form select {
    width     : 50%;
    height    : 40px;
    padding   : 10px;
    border    : 1px solid grey;
    box-sizing: border-box;
}

form button {
    background-color: transparent;
    border          : 1px solid #818a8d;
    padding         : 10px 15px;
    margin-top      : 40px;
    width           : 130px;
    text-align      : center;
    font-size       : 1em;
    cursor          : pointer;
}

.input-validation-error {
    color       : #e52320;
    border-color: #e52320;
}

.checkBoxFix {
    width  : 50px;
    display: inline-block;
}


.home_nav {
    display  : inline-block;
    padding  : 10px 0 10px 10px;
    font-size: 18px;
}

/*Wrapper*/
.wrapper {
    margin   : 0 2%;
    max-width: 1200px;
}

.padding_wrapper {
    padding: 0 10px;
}

.no-border {
    border: none !important;
}

/*Header*/
header {
    position        : fixed;
    z-index         : 10;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 80px;
    background-color: white;
    border-bottom   : 1px solid grey;
}

.headerLogo {
    position       : relative;
    top            : 13px;
    left           : 10px;
    float          : left;
    background     : url(../img/logo.svg) no-repeat;
    background-size: cover;
    width          : 180px;
    height         : 60px;
    cursor         : pointer;
}



/*Mobile Nav*/
#mobile_menu_btn {
    display : block;
    float   : right;
    height  : 70px;
    width   : 70px;
    cursor  : pointer;
    position: absolute;
    z-index : 1;
    right   : 0;
    top     : 0;
}

#mobile_menu_btn span {
    height          : 5px;
    width           : 40px;
    margin          : 5px;
    background-color: #e52320;
    display         : block;
    position        : relative;
    top             : 18px;
    left            : 10px;
    z-index         : 2;
    transition      : all .5s, background 1.5s ease-out;
}

#hi {
    transform: rotate(0deg);
}

#hi.open {
    transform: rotate(45deg);
    top      : 28px;
}

#mi {
    position: relative;
}

#mi.open {
    height          : 4px;
    width           : 50px;
    /* margin       : 10px; */
    background-color: #f2f2f2;
    display         : block;
    /* top          : 9px; */
    width           : 100%;
    height          : 100%;
    transform       : translate(-15px, -34px) rotate(360deg);
    position        : relative;
    z-index         : -1;
}

#lo {
    transform: rotate(0deg);
}

#lo.open {
    transform: rotate(-45deg);
    top      : -57px;
}

nav#mobile.open {
    left: 0%;
}

nav#mobile {
    position        : absolute;
    left            : 100%;
    padding         : 25px;
    padding-top     : 0;
    font-size       : 15px;
    letter-spacing  : 2.5px;
    background-color: white;
    width           : 100%;
    height          : calc(100vh - 70px);
    top             : 70px;
    overflow-y      : scroll;
    transition      : all .5s;
    /* z-index      : -1; */
}

nav#mobile li {
    list-style-type: none;
}

nav#mobile a {
    list-style-type : none;
    padding         : 10px 30px;
    margin          : 5px;
    font-size       : 18px;
    display         : block;
    background-color: #f2f2f2;
    color           : black;
}

nav#mobile ul li a:hover,
nav#mobile ul li a.active {
    box-shadow: inset 0px -8px 0px 0px #e52320;
}

nav#mobile h2 {
    margin: 20px;
}

/*Desktop Nav*/
nav#main {
    display         : none;
    float           : right;
    padding-top     : 35px;
    font-size       : 15px;
    /*letter-spacing: 2.5px;*/
    padding-right   : 10px;
}

nav#main ul li {
    display: inline-block;
    padding: 0 5px;
}

nav#main ul li:before {
    content      : "|";
    font-size    : 20px;
    padding-right: 8px;
}

nav#main ul li:first-child:before {
    content: none;
}

nav#main ul li a {
    color    : black;
    font-size: 20px;
}

nav#main ul li a:hover,
nav#main ul li a.active {
    padding-bottom: 5px;
    border-bottom : 3px solid #e52320;
}

nav#sub_nav li {
    list-style: none;
}

nav#sub_nav li a span,
nav#main li a span {
    color: #e52320;
}

nav#sub_nav a {
    text-decoration : none;
    list-style      : none;
    background-color: #f2f2f2;
    display         : block;
    padding         : 15px;
    color           : black;
    font-size       : 18px;
    border-bottom   : 1px solid #6f6f6f;
}

nav#sub_nav ul li a:hover,
nav#sub_nav a.active {
    box-shadow   : inset 0px -8px 0px 0px #e52320;
    border-bottom: 1px solid rgba(111, 111, 111, 0);
}

body.green nav#sub_nav ul li a:hover,
body.green nav#sub_nav a.active {
    box-shadow: inset 0px -8px 0px 0px #76b72a;
}

body.yellow nav#sub_nav ul li a:hover,
body.yellow nav#sub_nav a.active {
    box-shadow: inset 0px -8px 0px 0px #ffcc33;
}

nav#sub_nav ul li ul li a:hover {
    background-color: #ccc;
}

nav#sub_nav ul li a.blue_hover:hover {
    box-shadow: inset 0px -8px 0px 0px #0099cc;
}

nav#sub_nav ul li a.pink_hover:hover {
    box-shadow: inset 0px -8px 0px 0px #e5007d;
}

nav#sub_nav ul li a.orange_hover:hover {
    box-shadow: inset 0px -8px 0px 0px #cc6633;
}


/*Body*/

article a {
    color: #e52320;
}

.main_content article h2 {
    color        : #000;
    font-weight  : normal;
    margin-bottom: 0;
}

.main_content article ul li {
    font-size  : 20px;
    line-height: 28px;
    list-style : none;
    position   : relative;
    margin-left: 20px;
}

.main_content ul {
    margin-bottom: 20px;
}

.main_content article ul li:before {
    position   : absolute;
    content    : ">";
    font-size  : 20px;
    line-height: 28px;
    left       : -20px;
}

/*Coloumn*/
.gericht .col_02.first,
.gericht .col_03.first {
    border     : none;
    padding-top: 10px;
}

.gericht .col_03 h2.first {
    border-bottom: 2px dashed white;
}

.col_02 {
    float   : left;
    width   : 100%;
    height  : auto;
    border  : 10px solid rgba(255, 255, 255, 0);
    position: relative;
}

.col_02 p {
    padding         : 20px;
    position        : absolute;
    top             : 50px;
    bottom          : 4px;
    color           : white;
    background-color: rgba(229, 35, 32, 0.8);
    width           : 100%;
}

.col_02 p span {
    text-transform: uppercase;
    display       : block;
    margin-top    : 20px;
    color         : white;
    font-weight   : bold;
    position      : absolute;
    bottom        : 20px;
}

.col_02 p span:before {
    content: "";
}

.col_02 p {
    display: none;
}

.col_02:hover p {
    display: block;
}

.gericht .col_02 {
    height: 150px;
}

.gericht .col_03 {
    height: 150px;
}

.col_03 {
    float   : left;
    width   : 100%;
    height  : auto;
    border  : 10px solid rgba(255, 255, 255, 0);
    position: relative;
}

.col_03 p {
    padding         : 20px;
    position        : absolute;
    top             : 50px;
    bottom          : 4px;
    color           : white;
    background-color: rgba(229, 35, 32, 0.8);
    width           : 100%;
}

.col_02 p span,
.col_03 p span {
    text-transform: uppercase;
    display       : block;
    margin-top    : 20px;
    color         : white;
    font-weight   : 500;
    position      : absolute;
    bottom        : 20px;
    margin-left   : 5px;
}

.col_02 p span:before,
.col_03 p span:before {
    content      : "";
    position     : relative;
    display      : inline-block;
    width        : 0;
    height       : 0;
    top          : 3px;
    left         : -5px;
    border-top   : 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left  : 10px solid #fff;
}

.col_03 p {
    display: none;
}

.col_03:hover p {
    display: block;
}

.col_02,
.col_03 {
    border-top: none;
}

/*.col_02 img, .col_03 img {
        height: 290px;
    }*/

.col_02 p,
.col_03 p {
    font-size  : 22px;
    line-height: 30px;
}

.red_txt {
    color: #e52320;
}

.yellow_txt {
    color: #ffcc33;
}

.green_txt {
    color: #76b72a;
}

.blue_txt {
    color: #0099cc;
}

.pink_txt {
    color: #e5007d;
}

.orange_txt {
    color: #cc6633;
}



p.red_bg {
    background-color: rgba(229, 35, 32, 0.8);
}

p.yellow_bg {
    background-color: rgba(255, 204, 51, 0.8);
}

p.green_bg {
    background-color: rgba(118, 183, 42, 0.8);
}

p.blue_bg {
    background-color: rgba(0, 153, 204, 0.8);
}

p.pink_bg {
    background-color: rgba(229, 0, 125, 0.8);
}

p.orange_bg {
    background-color: rgba(204, 102, 51, 0.8);
}




.main_content_full_width {
    width     : 100%;
    margin-top: 20px;
}

.main_content {
    width: 100%;
    float: right;
   min-height:calc(100vh - 310px)
}

.side_content {
    width  : 100%;
    float  : left;
    padding: 0 10px 10px 10px;
}

.side_content img {
    padding: 20px 0px;
}

.side_content p {
    padding-bottom: 0px;
}


.gericht {
    clear          : both;
    background     : grey;
    width          : 100%;
    text-align     : center;
    padding        : 20px;
    background     : url(../img/gericht.jpeg) no-repeat;
    background-size: cover;
    height         : 550px;
    box-sizing     : border-box;
}


footer {
    width             : 100%;
    /*height          : 100px;*/
    background-color  : #666666;
    font-size         : 14px;
    letter-spacing    : 1px;
    margin-top        : 50px;
}

footer .footer__share {
    padding: 20px 0;
}

footer .footer__share p {
    padding: 0;
}

footer .addthis_toolbox a.at300b {
    border: none;
    margin: 0 15px 0 0;
}

footer ul {
    padding-top: 15px;
    color      : white;
}

footer ul li {
    display: inline-block;
}

footer ul li:before {
    content: "|";
}

footer ul li:first-child:before {
    content: none;
}

footer a {
    text-decoration: none;
    color          : #fff;
    border-bottom  : 1px solid #fff;
}

/*Typographie*/
h1 {
    font-size     : 40px;
    line-height   : 1em;
    color         : #e52320;
    letter-spacing: 2px;
    padding-bottom: 20px;
    margin-top    : 20px;
    font-weight   : 100;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size     : 50px;
        line-height   : 1.2em;
        padding-bottom: 40px;
        margin-top    : 10px;

    }
}

body.yellow h1,
body.yellow h2,
body.yellow .contact h3,
body.yellow nav#sub_nav ul li a.subnav {
    color: #ffcc33;
}

nav#sub_nav ul li a.subnav {
    font-weight: normal;
}

body.green h1,
body.green h2,
body.green .contact h3,
body.green nav#sub_nav ul li a.subnav {
    color: #76b72a;
}

.gericht .wrapper {
    margin-top: 0;
}

.gericht h1 {
    font-family      : 'Chalkduster';
    color            : white;
    -webkit-transform: rotate(-5deg);
    -moz-transform   : rotate(-5deg);
    -ms-transform    : rotate(-5deg);
    -o-transform     : rotate(-5deg);
    font-size        : 60px;
    line-height      : 36px;
}

.gericht .col_03 {
    text-align: left;
}

.gericht .col_03 p {
    display   : block;
    position  : relative;
    background: none;
    padding   : 0;
    top       : auto;
    bottom    : auto;
    width     : auto;
}

.gericht h1 .date {
    font-size: 0.5em;
}

h2 {
    font-size       : 24px;
    color           : #e52320;
    /*height        : 30px;*/
    letter-spacing  : 1px;
    margin          : 10px 0 10px 0;
}

h2 span {
    color: #000;
}

.gericht h2,
.gericht p {
    color      : white;
    font-family: 'Chalkduster';
}

.gericht h2 {
    padding-bottom: 35px;
    width         : 75%
}

h3 {
    font-size: 24px;
    color    : #e52320;
}

h4 {
    font-size     : 15px;
    line-height   : 20px;
    color         : black;
    letter-spacing: 1px;
    font-weight   : bold;
}

h5 {}

h6 {}

p {
    font-size     : 20px;
    line-height   : 28px;
    color         : black;
    letter-spacing: 1px;
    padding-bottom: 20px;
}


/*Slider Caroussel*/
.mySlides {
    display            : none;
    height             : 250px;
    background-size    : cover;
    background-position: center;
    position           : relative;
}

.mySlides .slide-content-wrapper {
    padding  : 0 10px;
    max-width: 70%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    /*position : absolute;*/
    /*bottom   : 25px;*/
}

.mySlides .slider-content {
    background-color: rgba(255, 255, 255, .7);
    padding         : 20px
}

.mySlides .wrapper{
    height: 100%;
}

.mySlides .slide-title {
    font-size: 32px;
    font-weight: 100;
    margin-bottom: 10px;
    line-height: 38px;
}

.mySlides .slide-text {
    padding-bottom: 0;
}

.mySlides .slide-cta {
    text-transform: uppercase;
    display: inline-block;
    font-weight: 400;
    margin-top: 20px;
    font-size: 20px;
}

.mySlides .slide-cta:hover {
    color: #e52320;
}

.mySlides .slide-cta::before {
    content      : ">";
    position     : relative;
    display      : inline-block;
    margin-right: 5px;
    /*width        : 0;*/
    /*height       : 0;*/
    /*top          : 1px;*/
    /*left         : -5px;*/
    /*border-top   : 7px solid transparent;*/
    /*border-bottom: 7px solid transparent;*/
    /*border-left  : 7px solid #000;*/
}

.mySlides .slide-cta:hover::before {
    /*border-left: 7px solid #e52320;*/
}

@media screen and (min-width: 1024px) {
    .mySlides .slide-content-wrapper {
        max-width: 50%;
    }
}


/* Slideshow container */
.slideshow-container {
    width   : 100%;
    position: relative;
    margin  : auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor     : pointer;
    text-align : center;
    position   : absolute;
    top        : 0%;
    width      : auto;
    padding    : 16px;
    color      : white;
    font-weight: bold;
    bottom     : 5px;
    font-size  : 25px;
    transition : 0.6s ease;
}

a.prev:before {
    content: "\25C0";
}

a.next:before {
    content: "\25B6";
}

a.next:before,
a.prev:before {
    height   : 50px;
    width    : 50px;
    display  : block;
    position : relative;
    top      : 50%;
    transform: translateY(-50%);
}

/* Position the "next button" to the right */
.next {
    right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(229, 35, 32, 0.8);
}

/* Caption text */
.text {
    color     : #f2f2f2;
    font-size : 15px;
    padding   : 8px 12px;
    position  : absolute;
    bottom    : 30px;
    width     : 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color    : #f2f2f2;
    font-size: 12px;
    padding  : 8px 12px;
    position : absolute;
    bottom   : 80px;
    left     : 50%;
    transform: translateX(-50%);
}

/* The dots/bullets/indicators */
.img_dots {
    text-align: center;
    position  : absolute;
    bottom    : 20px;
    right     : 0%;
    transform : translateX(-50%);
}

.dot {
    cursor          : pointer;
    height          : 20px;
    width           : 20px;
    margin          : 0 2px;
    background-color: #bbb;
    border-radius   : 50%;
    display         : inline-block;
    transition      : background-color 0.6s ease;
}

.dot:hover,
.dot.active {
    background-color: #e52320;
}

/* Fading animation */
.fade {
    -webkit-animation-name    : fade;
    -webkit-animation-duration: 1.5s;
    animation-name            : fade;
    animation-duration        : 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


/*Font Face*/
/* This stylesheet generated by Transfonter (https://transfonter.org) on January 22, 2018 10:32 AM */

@font-face {
    font-family: 'Foco';
    src        : url('../fonts/Foco-Light.eot');
    src        : url('../fonts/Foco-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Foco-Light.woff2') format('woff2'), url('../fonts/Foco-Light.woff') format('woff'), url('../fonts/Foco-Light.svg#Foco-Light') format('svg');
    font-weight: 300;
    font-style : normal;
}

@font-face {
    font-family: 'Foco';
    src        : url('../fonts/Foco-Regular.eot');
    src        : url('../fonts/Foco-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Foco-Regular.woff2') format('woff2'), url('../fonts/Foco-Regular.woff') format('woff'), url('../fonts/Foco-Regular.svg#Foco-Regular') format('svg');
    font-weight: normal;
    font-style : normal;
}

@font-face {
    font-family: 'Chalkduster';
    src        : url('../fonts/Chalkduster.eot');
    src        : url('../fonts/Chalkduster.eot?#iefix') format('embedded-opentype'), url('../fonts/Chalkduster.woff2') format('woff2'), url('../fonts/Chalkduster.woff') format('woff'), url('../fonts/Chalkduster.svg#Chalkduster') format('svg');
    font-weight: normal;
    font-style : normal;
}

@font-face {
    font-family: 'Foco';
    src        : url('../fonts/Foco-Bold.eot');
    src        : url('../fonts/Foco-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Foco-Bold.woff2') format('woff2'), url('../fonts/Foco-Bold.woff') format('woff'), url('../fonts/Foco-Bold.svg#Foco-Bold') format('svg');
    font-weight: bold;
    font-style : normal;
}

/**/
/**/
/*Media Queries*/

.breadcrumb {
    margin-top: 15px;
}

.mobile-hidden {
    display: none;
}

.fancybox-gallery {
    text-align: center;
}

.fancybox-gallery img {
    width    : auto;
    max-width: 100%;
}

.search-result {
    margin-bottom: 30px;
}

.search-result h3 {
    font-size  : 20px;
    font-weight: normal;
}

.search-container h2 {
    margin-bottom: 30px;
}

.search-result:hover .more {
    color: #e52320;
}

@media only screen and (min-width: 768px) {
    form .label {
        float: left;
    }

    .mobile-hidden {
        display: block;
    }

    .desktop-hidden {
        display: none;
    }

    footer {
        /*height: 50px;*/
    }

    form .label {
        width        : 25%;
        margin-bottom: 20px;
    }

    form .input-wrapper {
        float: right;
        width: 75%;
    }

    .col_02 {
        width: 50%;
    }

    .col_03 {
        width: 50%;
    }

    .gericht,
    .mySlides {
        height: 350px;
    }

    .gericht .wrapper {
        margin-top: 50px;
    }

    .gericht .col_03 {
        width: 33.33337%;
    }


    .staff {
        float    : left;
        flex     : 0 0 50%;
        max-width: 50%;
        padding  : 10px;
    }

    .search-container {
        width: 66%;
    }
}

@media only screen and (min-width: 1024px) {
    .col_03 {
        width: 33.33337%;
    }

    nav#main {
        display: block;
    }

    #mobile_menu_btn {
        display: none;
    }

    .side_content {
        width        : 30%;
        padding-right: 30px;
    }

    .main_content {
        width: 70%;
        min-height: calc(100vh - 240px);
    }

    .wrapper {
        margin: 0 auto;
    }

    .breadcrumb {
        margin-top: 15px;
    }

    footer .wrapper {
        margin         : 0 2%;
        display        : flex;
        justify-content: space-between;
    }

    footer .footer__share {
        padding: 15px 0 10px;
    }

    footer ul {
        padding-top: 23px;
    }

}

.embed-responsive {
    position: relative;
    display : block;
    height  : 0;
    padding : 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top     : 0;
    left    : 0;
    bottom  : 0;
    height  : 100%;
    width   : 100%;
    border  : 0;
}

.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive.embed-responsive-4by3 {
    padding-bottom: 76.5%;
}

/*** BLOG ***/
[data-css="c-blog"] {
    border-top: 4px dotted #E52320;
    padding   : 1.5em 0 2.5em 0;
}

[data-css="c-blog"] .blog__link {
    display: block;
}

[data-css="c-blog"] .blog__link:hover .blog__title {
    color: #000;
}

[data-css="c-blog"] .blog__link:hover .figure__img {
    transform: scale3d(1.08, 1.08, 1.08);
}

[data-css="c-blog"] .blog__header {
    position: relative;
    height  : auto;
    border  : 0;
    z-index : 1;
}

[data-css="c-blog"] .blog__time {
    color: #000;
}

[data-css="c-blog"] .blog__title {
    font-size     : 40px;
    line-height   : 1em;
    color         : #e52320;
    letter-spacing: 2px;
    margin-top    : 20px;
    font-weight   : 100;
    height        : auto;
    padding-bottom: 10px;
}

footer.blog__footer {
    height        : auto;
    background    : #fff;
    letter-spacing: inherit;
    margin        : 0;
    font-size     : inherit;
    display       : flex;
    flex-wrap     : wrap;
    padding       : 15px 0 0 0;
    border-top    : 1px solid rgba(0, 0, 0, .15);
}

footer.blog__footer .blog__like-text {
    padding   : 0 0 0 10px;
    margin-top: -4px;
    font-size : 18px;
}

footer.blog__footer .blog__like {
    flex       : 0 0 100%;
    max-width  : 100%;
    display    : flex;
    align-items: center;
}

footer.blog__footer .blog__like-icon {
    background: none;
    cursor    : pointer;
    width     : 18px;
}

footer.blog__footer .blog__like-icon.is-active svg path {
    fill: #e52320;
}

footer.blog__footer .blog__like-svg {
    width: 100%;
}

footer.blog__footer .blog__share {
    flex       : 0 0 100%;
    max-width  : 100%;
    display    : flex;
    align-items: center;
}

footer.blog__footer .blog__share-text {
    padding  : 0 15px 0 0;
    font-size: 18px;
}

[data-css="c-blog"] .blog__share-list {
    display: flex;
    padding: 0;
    margin : 0;
}

[data-css="c-blog"] .blog__share-item {
    display    : block;
    width      : 18px;
    margin-left: 15px;
}

[data-css="c-blog"] .blog__share-link {
    display: block;
    width  : 100%;
}

[data-css="c-blog"] .blog__share-link:hover .blog_share-svg .is-grey {
    fill: #e52320;
}

[data-css="c-blog"] .blog_share-svg {
    display   : block;
    width     : 100%;
    max-height: 18px;
}

[data-css="c-blog"] .blog_share-svg .is-grey {
    fill: #666;
}

[data-css="c-blog"] .blog__share-item:before {
    display: none;
}

[data-css="c-blog"] .blog__rt p {
    /*height       : 50px;*/
    /*white-space  : nowrap;*/
    /*overflow     : hidden;*/
    /*text-overflow: ellipsis;*/
}

[data-css="c-blog"] #st-2 {
    z-index: 5 !important;
}

@media screen and (min-width: 600px) {
    footer.blog__footer .blog__like {
        flex     : 0 0 50%;
        max-width: 50%;
    }

    footer.blog__footer .blog__share {
        flex           : 0 0 50%;
        max-width      : 50%;
        justify-content: flex-end;
    }
}

@media screen and (min-width: 768px) {
    [data-css="c-blog"] .blog__title {
        font-size     : 50px;
        line-height   : 1.2em;
        padding-bottom: 20px;
        margin-top    : 10px;
    }

    footer.blog__footer .blog__share-text,
    footer.blog__footer .blog__like-text {
        font-size: 20px;
    }

    [data-css="c-blog"] .blog__share-item {
        width: 22px;
    }

    [data-css="c-blog"] .blog_share-svg {
        max-height: 22px;
    }

    footer.blog__footer .blog__like-icon {
        width: 22px;
    }
}

/*** SECTION ***/
[data-css="c-section"] .section__lead {
    color        : #000;
    font-weight  : 600;
    margin-bottom: 30px;
}

[data-css="c-section"] .section__title span {
    font-weight: 600;
}

.c-section--blog .section__title {
    font-size: 50px;
    color    : #000;
}

.c-section--blog .section__title span {
    color: #e52320;
}

@media screen and (min-width: 768px) {
    .c-section--blog .section__title {
        font-size: 60px;
    }
}


/*** FIGURE ***/
[data-css="c-figure"] {
    display : block;
    width   : 100%;
    overflow: hidden;
}

[data-css="c-figure"] .figure__img {
    display   : block;
    width     : 100%;
    transform : scale3d(1, 1, 1);
    transition: transform ease 1s;
}

.umbraco-forms-field.date input.text {
    position : static;
    width    : 100% !important;
    color    : #000;
    padding  : 5px 10px;
    width    : 130px;
    border   : 1px solid grey;
    max-width: none !important;
}

.umbraco-forms-field.date label {
    height: auto;
}

.umbraco-forms-field.date .input-wrapper {
    margin-top: -5px;
}




@media only screen and (min-width: 768px) {
    .umbraco-forms-field.date .label {
        width        : 25%;
        margin-bottom: 0;
        line-height  : 2.5;
        padding-top  : 5px;
    }

    .umbraco-forms-field.date .input-wrapper {
        float: left;
        width: 75%;
    }

    .umbraco-forms-field.date .input-wrapper input.text {
        padding: 10px;
        height : auto;
    }
}

.barometer__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .barometer__text p {
        font-size: 16px;
        line-height: normal;
        max-width: 100%;
        font-weight: 500;
    }

    .barometer__text h3 {
        color: black;
    }

    .barometer__text a {
        color: #76b72a;
    }

.barometer__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

@media screen and (min-width: 768px) {
    .barometer__text p {
        max-width: 55%;
    }
}