@-ms-viewport {
    width: device-width;
}

/* CSS reset */

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 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    color: inherit;
    text-decoration: none;
}

input, button, textarea, select {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
}

input, button, textarea, select, a {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
button,
input[type="submit"] {
    cursor: pointer;
}

::-moz-selection {
    color: #fff;
    background-color: rgba(186, 146, 108, 0.94);
}

::selection {
    color: #fff;
    background-color: rgba(184, 145, 108, 0.94);
}



:root {
    --header-height: 100px;
    --sides: 40px;
}


@media screen and (max-width: 768px) {

    :root {
        --header-height: 85px;
        --sides: 35px;
    }
}
@media screen and (max-width: 425px) {

    :root {
        --header-height: 70px;
        --sides: 25px;
    }
}
@media screen and (max-width: 375px) {

    :root {
        --sides: 20px;
    }
}


html {
    min-width: 320px;
}

body {
    color: #b6b3b4;
    font-family: "Montserrat", sans-serif;
    background-color: #1d2020;
    background-size: contain;
}
body.scroll-disabled {
    overflow: hidden;
}


/**** AJAX SPINNER ****/

#ajax-spinner {
    margin: 15px 0 0 15px;
    padding: 7px;
    background: transparent url('../web_images/spinner.gif') no-repeat;
    font-size: 0;
    z-index: 888;
    display: none;
}

#ajax-spinner.mega {
    padding: 50px;
}



/**** FLASH MESSAGE ****/

#flashes {
    pointer-events: none;
    z-index: 123456789;
    position: fixed;
    width: 380px;
    right: 25px;
    top: 110px;
    bottom: 170px;
    overflow: hidden;

    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

div.flash {
    pointer-events: auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 1.1em 1.5em;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    background: #2ECC71;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2);

    -webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    -ms-transition: background-color 0.2s ease-out;
    -o-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}
div.flash.error {
    background: #dc3434;
}
div.flash.warning {
    background: #F39C12;
}

div.flash:hover {
    background: #30c76a;
}
div.flash.error:hover {
    background: #cf302d;
}
div.flash.warning:hover {
    background: #e88f13;
}

div.flash .flash-type {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}

div.flash .progressbar {
    z-index: -1;
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000000;
    opacity: 0.04;
}

div.flash .close {
    float: right;
    font-weight: 400;
    font-size: 19px;
    line-height: 19px;
    cursor: pointer;
}

@media screen and (max-width: 430px) {

    #flashes {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        top: 90px;
    }

    div.flash {
        font-size: 13px;
        padding: 0.8em 1.2em;
    }

    div.flash .flash-type {
        font-weight: 700;
        margin-bottom: 2px;
        font-size: 13.5px;
    }

    div.flash .close {
        padding-left: 20px;
    }
}


a[href^="#error:"] {
    background: red;
    color: white;
}




/**** KOMENTARE ****/

/** form pro vkladani komentaru **/

#cancel {
    cursor: pointer;
    position: absolute;
    display: none;

    top: -41px;
    right: 0;
    width: 35px;
    height: 35px;

    line-height: 34px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 200;
    text-align: center;

    border-radius: 2px;
    background-color: #9e5428;

    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#cancel:hover {
    background-color: #7e4320;
}

#commentForm {
    position: relative;
    margin-top: 25px;
    margin-bottom: 45px;
}

.comment-form input,
.comment-form textarea {
    padding: 10px 14px;
    color: #636363;
    font-size: 1.7rem;
    border-radius: 2px;
}

.comment-form input[name=author],
.comment-form textarea {
    border: 1px solid #cccccc;
}

.comment-form input:hover,
.comment-form textarea:hover{
    outline: none;
    border: 1px solid #bdafa6;
    -webkit-box-shadow: 0 0 5px 0 #d9d5d2;
    box-shadow: 0 0 5px 0 #d9d5d2;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border: 1px solid #b7a091;
}

.comment-form input {
    height: 43px;
}

.comment-form textarea {
    line-height: 1.6;
}


.comment-form input[name=author],
.comment-form input[name=_submit] {
    margin-top: 5px;
    width: 70%;
}

.comment-form input[name=_submit] {
    float: right;
    width: 28%;
    color: #f2f2f2;
    background-color: #9e5428;
    border: none;
}

.comment-form input[name=_submit].admin {
    float: none;
    width: 100%;
}

.comment-form input[name=_submit]:hover {
    background-color: #7e4320;
}

@media screen and (max-width: 768px) {

    #commentForm {
        margin-bottom: 38px;
    }

    .comment-form input {
        height: 40px;
    }

    .comment-form input,
    .comment-form textarea {
        padding: 8px 12px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {

    #commentForm {
        margin-bottom: 30px;
    }

    .comment-form input {
        height: 35px;
    }

    .comment-form input,
    .comment-form textarea {
        padding: 7px 10px;
        font-size: 1.4rem;
    }

}



/** zahlavi bloku s komentari **/

.comments-header {
    position: relative;
    height: 60px;
    margin: 50px 0 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9e5428;
}

.comments-header h3 {
    line-height: 60px;
    font-size: 2.1rem;
    color: #9e5428;
}

.comments-header .comments-sort {
    position: absolute;
    right: 0;
    top: 7px;
    color: #9e5428;
    font-weight: 400;
    font-size: 1.6rem;
}

.comments-header .comments-sort a {
    display: inline-block;
    margin: 0 15px;
    padding: 0 8px;
    line-height: 50px;
    border-bottom: 2px solid #f2f2f2;
}

.comments-header .comments-sort a:hover {
    border-bottom: 2px solid #9e5428;
}

.comments-header .comments-sort a.active {
    font-weight: 600;
    border-bottom: 3px solid #9e5428;
}


@media screen and (max-width: 768px) {

    .comments-header {
        margin: 15px 0;
    }

    .comments-header h3 {
        font-size: 2rem;
        text-align: left;
        line-height: 64px;
    }

    .comments-header .comments-sort {
        font-size: 1.4rem;
    }

    .comments-header .comments-sort a {
        margin: 0 10px;
        padding: 0 4px;
    }
}

@media screen and (max-width: 480px) {

    .comments-header {
        text-align: center;
        height: 70px;
        margin: 30px 0 15px;
    }

    .comments-header h3 {
        line-height: 0;
        text-align: center;
        font-size: 1.8rem;
    }

    .comments-header h3.no-sort {
        line-height: 70px;
    }

    .comments-header .comments-sort {
        position: static;
        margin-top: 17px;
        font-size: 1.3rem;
    }
}



/** komentar **/

.comment {
    position: relative;
    margin-top: 30px;
}

.comment abbr,
.comment .answer {
    color: #bdbdbd;

    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.comment:hover abbr,
.comment:hover .answer {
    color: #7f7f7f;
}


.comment .name {
    display: inline-block;
    color: #9e5428;
    font-size: 1.7rem;
    font-weight: 700;

    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.comment .name span {
    display: inline-block;
    margin-bottom: 2px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    background-color: #909090;
    width: 15px;
    line-height: 15px;
    border-radius: 50%;

    cursor: help;
    opacity: 0.5;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.comment .name span:hover {
    opacity: 1;
}

.comment.feedback .name {
    color: #8648a6;
    font-size: 1.8rem;
}

.comment abbr {
    margin-left: 10px;
    cursor: help;
    font-size: 1.3rem;
}


.comment p.text {
    padding: 6px 0;
    text-align: left;
    font-size: 1.7rem;
}

.comment p.text a {
    margin-right: 5px;
    color: #9e5428;
    font-weight: 400;
    font-style: normal;
}

.comment p.text a:hover {
    color: #8648a6;
}

.comment p.text.hidden {
    font-style: italic;
}

.comment p.text.nonactive {
    display: none;
}


.comment .rating {
    display: inline-block;
    color: #828282;
    font-size: 1.3rem;
}

.comment .rating .uprate,
.comment .rating .downrate {
    display: inline-block;
    vertical-align: sub;
    width: 11px;
    height: 15px;
    background: transparent no-repeat center;
    opacity: 0.75;
}

.comment .rating .uprate:hover,
.comment .rating .downrate:hover {
    opacity: 1;
}

.comment .rating .uprate {
    background-image: url('../web_images/uprate.png');
}

.comment .rating .uprate.active {
    background-image: url('../web_images/uprate_a.png');
}

.comment .rating .downrate {
    background-image: url('../web_images/downrate.png');
}

.comment .rating .downrate.active {
    background-image: url('../web_images/downrate_a.png');
}


.comment .answer {
    margin-left: 10px;
    cursor: pointer;
    font-size: 1.3rem;
}

.comment .answer:hover {
    color: #9e5428;
}


.comment.reply {
    margin-left: 30px;
}


@media screen and (max-width: 768px) {

    .comment {
        margin-top: 25px;
    }

    .comment .name {
        font-size: 1.6rem;
    }

    .comment.feedback .name {
        font-size: 1.7rem;
    }

    .comment p.text {
        padding: 6px 0;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {

    .comment {
        margin-top: 20px;
    }

    .comment .name {
        font-size: 1.5rem;
    }

    .comment.feedback .name {
        font-size: 1.6rem;
    }

    .comment p.text {
        padding: 4px 0;
        text-align: left;
        font-size: 1.4rem;
    }
}


/******************* Login *******************/

#login-panel .modal-panel {
    width: 370px;
    padding: 45px 20px 20px 20px;
}

#login-panel form input {
    padding: 13px 12px;
    width: 100%;
    font-size: 15px;
    margin-top: 8px;
    font-weight: 300;
    border-radius: 4px;
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-bottom: 1px solid #bfbfbf;
}
#login-panel form input:hover {
    border: 1px solid #a2a2a2;
}
#login-panel form input:focus {
    border: 1px solid #a2a2a2;
}

#login-panel form button {
    display: inline-block;
    line-height: 45px;
    margin-top: 21px;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    background-color: #4aa76a;
    -webkit-box-shadow: 0 2px 0 0 #388e55;
    box-shadow: 0 2px 0 #388e55;
}
#login-panel form button:hover {
    background-color: #479e64;
}
#login-panel form button:active {
    background-color: #43965f;
}
#login-panel form button:focus {
    outline: none;
}

#login-panel form ul.error {
    padding: 0 5px;
    padding-top: 30px;
    color: #E23E3E;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    list-style-type: none;
}


#login-panel form::-webkit-input-placeholder {
    color: #999999;
}
#login-panel form :-moz-placeholder { /* Firefox 18- */
    color: #999999;
}
#login-panel form::-moz-placeholder {  /* Firefox 19+ */
    color: #999999;
}
#login-panel form :-ms-input-placeholder {
    color: #999999;
}




/*********** LOGIN BUTTONY ***********/

#login-panel p {
    padding-top: 20px;
    margin: 35px 0 11px;
    text-align: center;
    font-size: 13.5px;
    color: #a6a6a6;
    border-top: 1px solid #e6e6e6;
}

.social-media-btns {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.social-media-btns a {
    display: block;
    padding: 10px 15px;
    margin-top: 10px;
    width: 30%;
    font-size: 15px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background-color: #3a579a;
    -webkit-box-shadow: 0 2px 0 0 #314880;
    box-shadow: 0 2px 0 #314880;
}
.social-media-btns a:hover {
    background-color: #314c82;
}

.social-media-btns .twitter {
    background-color: #00abf0;
    -webkit-box-shadow: 0 2px 0 0 #008dc6;
    box-shadow: 0 2px 0 #008dc6;
}
.social-media-btns .twitter:hover {
    background-color: #00a1db;
}

.social-media-btns .google {
    background-color: #dd493d;
    -webkit-box-shadow: 0 2px 0 0 #ba3e33;
    box-shadow: 0 2px 0 #ba3e33;
}
.social-media-btns .google:hover {
    background-color: #c7433a;
}


@media screen and (max-height: 380px), screen and (max-width: 370px) {

    #login-panel .modal-panel {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

}

@media screen and (max-width: 370px) {

    #login-panel p {
        padding-top: 15px;
        margin: 25px 0 11px;
    }

    .social-media-btns {
        flex-direction: column;
    }

    .social-media-btns a {
        width: 100%;
        margin-top: 13px;
    }
}

@media screen and (max-height: 380px) {

    #login-panel form button {
        line-height: 35px;
    }

    #login-panel form input {
        padding: 8px 12px;
    }

    #login-panel p {
        padding-top: 12px;
        margin: 22px 0 11px;
    }

    .social-media-btns {
        flex-direction: row;
    }

    .social-media-btns a {
        padding: 7px 15px;
    }
}



/******************* Social media login *******************/

#social-login-panel .modal-panel {
    width: 400px;
}

#social-login-panel .social-media-btns a {
    width: 100%;
    margin: 0 5px;
}

#social-login-panel .auth {
    margin: 10px 0 20px;
    font-size: 15px;
}



/*TODO upravit RWD*/

@media screen and (max-width: 400px) and (orientation: portrait) {

    #social-login-panel .modal-panel {
        width: 100%;
    }
}





/**** ZAHLAVI ****/

.header {
    z-index: 555;
    position: absolute;
    top: 10px;
    left: 0;
    height: var(--header-height); /* custom - vyska headeru (3.75) */
    width: 100%;
    padding: 0 var(--sides);
    background-color: transparent; /* custom - barva */
    color: #fff;

    -webkit-transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
    -ms-transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
    transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.header.active {
    position: fixed;
    top: 0;
    background-color: #353638; /* custom - barva */
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.header .logo-wrapper,
.header .social-medias {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.header .logo {
    position: relative;
    top: -8px;
    flex-shrink: 0;
    width: 250px;
    height: 70px;
    background: url("../web_images/logo.svg") center no-repeat;
    background-size: contain;
}

@media screen and (max-width: 1200px) {

    .header .logo {
        top: -5px;
        width: 208px;
        height: 60px;
    }
}
@media screen and (max-width: 768px) {

    .header .logo {
        top: -4px;
        width: 191px;
        height: 55px;
    }
}
@media screen and (max-width: 425px) {

    .header .logo {
        top: -3px;
        width: 174px;
        height: 50px;
    }
}


/* prepinac pro ostatni pobocky */

.branch-switcher {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 40px;
    line-height: 40px;
    font-family: "Noto Serif", serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    overflow: hidden;
}
.branch-switcher.active {
    overflow: visible;
}

.branch-switcher .cur-branch {
    padding: 0 40px 0 12px;
    height: 40px;
    line-height: 40px;
    background: url("../web_images/arrow.svg") center right 13px no-repeat;
    background-size: 16px auto;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.branch-switcher .branch-link {
    width: 100%;
    padding: 0 12px;
    line-height: 40px;
    text-align: left;
    background-color: #fff;
    border-top: 1px solid #efefef;
}
.branch-switcher .branch-link:hover,
.branch-switcher .cur-branch:hover {
    color: #fff;
    background-color: #cda176;
}
.branch-switcher .branch-link:hover {
    border-top: 1px solid #cda176;
}


/* odkazy na socky */

.social-medias a,
.social-medias a:before,
.social-medias a:after {
    position: relative;
    width: 27px;
    height: 27px;
}
.social-medias a + a {
    margin-left: 17px;
}

.social-medias a:before,
.social-medias a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0;
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.social-medias a:hover:after {
    opacity: 1;
}
.social-medias a:before {
    opacity: 1;
    background-position: top center;
}
.social-medias a:hover:before {
    opacity: 0;
}

.social-medias .fb:before,
.social-medias .fb:after {
    background-image: url("../web_images/soc/ico-facebook.svg");
}
.social-medias .vimeo:before,
.social-medias .vimeo:after {
    background-image: url("../web_images/soc/ico-virtual_2.svg");
}
.social-medias .ig:before,
.social-medias .ig:after {
    background-image: url("../web_images/soc/ico-instagram.svg");
}


@media screen and (min-width: 1600px) {

    #navigation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }
}
@media screen and (min-width: 1201px) { /* custom */

    #navigation {
        font-size: 0; /* fix mezer mezi inline-blocky */
    }

    #navigation > li {
        display: inline-block;
        position: relative;
        line-height: var(--header-height);
        font-family: "Noto Serif", serif;
        font-weight: 400;
        font-size: 16px;
        white-space: nowrap;
    }
    #navigation > li + li {
        margin-left: 25px;
    }

    #navigation > li > a {
        display: inline-block;
        position: relative;
    }

    #navigation > li > a:hover,
    #navigation > li > .active {
        color: #cda176;
    }
    #navigation > li > .active {
        font-weight: 700;
    }


    /* switcher pobocek & socky */

    #navigation .social-medias-wrapper,
    #navigation .branch-switcher-wrapper {
        display: none;
    }

    .branch-switcher {
        margin-left: 40px;
    }
}
@media screen and (max-width: 1200px) { /* custom */

    .header {
        top: 0;
    }

    #navigation {
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        top: var(--header-height);
        color: #fff;
        background-color: rgba(53, 54, 56, 0.95);
        padding: 10px 30px;
        text-align: center;

        font-family: "Noto Serif", serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 55px;

        list-style: none;

        pointer-events: none;
        opacity: 0;
        height: 0;
        overflow: hidden;

        -webkit-transition: opacity .3s ease-out 0s, height 0s ease-out .3s;
        -moz-transition: opacity .3s ease-out 0s, height 0s ease-out .3s;
        -ms-transition: opacity .3s ease-out 0s, height 0s ease-out .3s;
        -o-transition: opacity .3s ease-out 0s, height 0s ease-out .3s;
        transition: opacity .3s ease-out 0s, height 0s ease-out .3s;
    }
    #navigation.active {
        pointer-events: auto;
        opacity: 1;
        height: calc(100% - var(--header-height));
        overflow-y: auto;

        -webkit-transition: opacity .3s ease-out 0s, height 0s ease-out 0s;
        -moz-transition: opacity .3s ease-out 0s, height 0s ease-out 0s;
        -ms-transition: opacity .3s ease-out 0s, height 0s ease-out 0s;
        -o-transition: opacity .3s ease-out 0s, height 0s ease-out 0s;
        transition: opacity .3s ease-out 0s, height 0s ease-out 0s;
    }

    #navigation .divider {
        display: none;
    }

    #navigation > li {
        position: relative;
        padding: 10px 0;
        opacity: 0;

        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateY(-30px);
    }

    #navigation.active > li {
        opacity: 1;

        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateY(0);

        -webkit-transition: all .3s .15s;
        -moz-transition: all .3s .15s;
        -ms-transition: all .3s .15s;
        -o-transition: all .3s .15s;
        transition: all .3s .15s;
    }

    #navigation > li a {
        display: block;
    }

    #navigation > li > a,
    #navigation > li > a:link,
    #navigation > li > a:visited {
        color: #fff;
    }


    /* switcher pobocek & socky */

    .header .social-medias,
    .header .branch-switcher {
        display: none;
    }

    #navigation .branch-switcher-wrapper {
        padding: 20px 0 30px;
        line-height: 0;
    }

    #navigation .branch-switcher {
        display: inline-block;
    }

    #navigation .social-medias-wrapper {
        padding-top: 35px;
    }

    #navigation .social-medias {
        display: flex;
        justify-content: center;
    }

    .social-medias a + a {
        margin-left: 32px;
    }
}

@media screen and (min-width: 1201px) { /* custom */

    .header .hamburger-menu {
        display: none;
    }
}

@media screen and (max-width: 1200px) { /* custom */

    .header .hamburger-menu {
        position: relative;
        z-index: 10000;
        width: 3rem;
        height: 3rem;
        margin-left: auto;
        margin-right: -5px;
    }

    .hamburger-menu .breadroll {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -11px 0 0 -17px;
    }

    .header.hamburger-active {
        background-color: #353638;
        background-color: rgba(53, 54, 56, 0.95);
    }

    .hamburger-menu .breadroll .beef,
    .hamburger-menu .breadroll .beef::before,
    .hamburger-menu .breadroll .beef::after {
        display: inline-block;
        position: absolute;
        width: 35px;
        height: 4px;

        background-color: #cda176;

        -webkit-transition: transform 0.25s ease;
        -moz-transition: transform 0.25s ease;
        -ms-transition: transform 0.25s ease;
        -o-transition: transform 0.25s ease;
        transition: transform 0.25s ease;
    }
    .hamburger-menu .breadroll .beef::before {
        top: 9px;
        content: "";
        opacity: 1;
    }
    .hamburger-menu .breadroll .beef::after {
        top: 18px;
        content: "";
    }
    .hamburger-menu.active .breadroll .beef {
        -webkit-transform: translate3d(0px, 9px, 0px) rotate(45deg);
        transform: translate3d(0px, 9px, 0px) rotate(45deg);
    }
    .hamburger-menu.active .breadroll .beef::before {
        opacity: 0;
    }
    .hamburger-menu.active .breadroll .beef::after {
        -webkit-transform: translate3d(0px, -18px, 0px) rotate(-90deg);
        transform: translate3d(0px, -18px, 0px) rotate(-90deg);
    }
}




/**** obsah webu ****/

.main-wrapper {
    min-height: 80vh;
    background: #1d2020 url("../web_images/hero_image.jpg") no-repeat center top;
}
.main-wrapper.news-detail {
    background-image: url("../web_images/hero_image_news.jpg");
}

@media screen and (max-width: 1200px) {

    .main-wrapper {
        background-size: 120% auto;
    }
}
@media screen and (max-width: 768px) {

    .main-wrapper {
        background-size: 140% auto;
    }
}
@media screen and (max-width: 680px) {

    .main-wrapper {
        background-position: right 39% top;
        background-size: 160% auto;
    }
}
@media screen and (max-width: 540px) {

    .main-wrapper {
        background-size: 200% auto;
    }
}

.content-wrapper {
    width: 100%;
    padding: 0 var(--sides);
    background-color: transparent;
}

.content {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 120px;
}

.content h1 {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-family: "Noto Serif", serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: .45px;
}

@media screen and (max-width: 900px) {

    .content {
        padding-top: 100px;
    }
}
@media screen and (max-width: 768px) {

    .content {

        padding-top: 90px;
    }
    .content h1 {
        font-size: 22px;
    }
}
@media screen and (max-width: 540px) {

    .content h1 {
        font-size: 20px;
    }
}
@media screen and (max-width: 425px) {

    .content {
        padding-top: 80px;
    }
}

.content p {
    margin: 0 auto;
}
.content p:empty {
    font-size: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.content-wrapper-newspost {
    display: grid;
    grid-template-columns: 780px 1fr;
    max-width: calc(1170px + 2*var(--sides));
    margin: 0 auto;
}

.content-newspost {
    min-height: 840px;
    width: 100%;
    margin: 180px auto 0;
    padding: 55px 55px 60px;
    background-color: #252829;
}

.content-newspost .post-headline {
    margin-bottom: 20px;
    text-align: left;
    font-family: "Noto Serif", serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: 1.2px;
}

.news-text-wrapper {
    position: relative;
    text-align: left;
    line-height: 1.6;
    font-size: 15px;
}

.news-text-wrapper p + p,
.news-text-wrapper ul + p,
.news-text-wrapper ol + p,
.news-text-wrapper .headline + p {
    margin-top: 20px;
}
.news-text-wrapper p + ul,
.news-text-wrapper p + ol {
    margin-top: 15px;
}

.news-text-wrapper .headline {
    margin-top: 30px;
    font-family: "Noto Serif", serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #fff;
}

.news-text-wrapper ol {
    padding-left: 25px;
    list-style-type: decimal;
}

.news-text-wrapper ul li {
    position: relative;
    padding-left: 20px;
}
.news-text-wrapper ul li:before {
    position: absolute;
    content: "";
    display: block;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #cda075;
}

.news-text-wrapper ol li {
    padding-left: 10px;
}

.news-text-wrapper li + li {
    margin-top: 10px;
}

.news-text-wrapper li > a,
.news-text-wrapper p > a {
    color: #cca076;
}
.news-text-wrapper p a:hover {
    text-decoration: underline;
}

.news-text-wrapper strong {
    font-weight: 700;
}

.news-text-wrapper img {
    max-width: 100%;
    height: auto;
}


.news-img-wrapper {
    margin: 60px -55px 0;
    padding-top: 75%;
}


@media screen and (max-width: 1200px) {

    .content-newspost {
        padding: 50px 50px 55px;
    }

    .news-img-wrapper {
        margin: 55px -50px 0;
    }

    .content-newspost .post-headline {
        font-size: 42px;
    }
}
@media screen and (max-width: 1024px) {

    .content-newspost {
        padding: 40px 40px 50px;
    }

    .news-img-wrapper {
        margin: 50px -40px 0;
    }

    .content-newspost .post-headline {
        font-size: 36px;
    }

    .news-text-wrapper .headline {
        font-size: 22px;
    }
}
@media screen and (max-width: 860px) {

    .content-wrapper-newspost {
        display: inline-block;
    }
}
@media screen and (max-width: 768px) {

    .content-newspost {
        min-height: 400px;
        padding: 35px 35px 45px;
    }
    .news-img-wrapper {
        margin: 45px -35px 0;
    }

    .content-newspost .post-headline {
        font-size: 34px;
    }

    .news-text-wrapper .headline {
        font-size: 20px;
    }
}
@media screen and (max-width: 680px) {

    .content-newspost {
        min-height: 450px;
    }

    .content-newspost .post-headline {
        font-size: 32px;
    }
}
@media screen and (max-width: 540px) {

    .content-newspost .post-headline {
        font-size: 26px;
    }

    .news-text-wrapper .headline {
        font-size: 18px;
    }
}
@media screen and (max-width: 425px) {

    .content-newspost {
        min-height: 350px;
        padding: 30px 30px 35px;
    }
    .news-img-wrapper {
        margin: 35px -30px 0;
    }

    .news-text-wrapper p + p,
    .news-text-wrapper ul + p,
    .news-text-wrapper ol + p,
    .news-text-wrapper .headline + p {
        margin-top: 15px;
    }
    .news-text-wrapper p + ul,
    .news-text-wrapper p + ol {
        margin-top: 10px;
    }

    .content-newspost .post-headline {
        font-size: 22px;
    }
}
@media screen and (max-width: 375px) {

    .content-newspost {
        padding: 25px 25px 35px;
    }
    .news-img-wrapper {
        margin: 35px -25px 0;
    }
}


.content-newspost.has-image {
    min-height: 0;
    padding-bottom: 0;
}

.no-wrap {
    white-space: nowrap;
}

.empty {
    padding: 30px 0 !important;
    margin: 0 auto !important;
    line-height: 1.5;
    font-size: 15px !important;
}




/****************/
/*** tlacitka ***/
/****************/

.content .more,
.content .more-btn,
.newsletter-form .button,
.content .more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 0 20px;
    line-height: 45px;
    height: 45px;
    text-align: center;
    font-family: "Noto Serif", serif;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    color: #cda075;
    background-color: transparent;
    border: 1px solid #cda075;
    border-radius: 0;
}
.content .more:hover,
.content .more-btn:hover,
.newsletter-form .button:hover,
.content .more-button:hover {
    color: #1d2020;
    background-color: #cda075;
}

@media screen and (max-width: 768px) {

    .content .more,
    .content .more-btn,
    .newsletter-form .button,
    .content .more-button {
        font-size: 16px;
    }
}
@media screen and (max-width: 680px) {

    .content .more,
    .content .more-btn,
    .newsletter-form .button,
    .content .more-button {
        line-height: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 425px) {

    .content .more,
    .content .more-btn,
    .newsletter-form .button,
    .content .more-button {
        margin-top: 15px;
    }
}



/******************/
/*** hero image ***/
/******************/

.content-wrapper-hero {
    height: 840px;
}

@media screen and (max-width: 1200px) {

    .content-wrapper-hero {
        height: 540px;
    }
}
@media screen and (max-width: 768px) {

    .content-wrapper-hero {
        height: 350px;
    }
}
@media screen and (max-width: 680px) {

    .content-wrapper-hero {
        height: 325px;
    }
}
@media screen and (max-width: 540px) {

    .content-wrapper-hero {
        height: 300px;
    }
}

@media screen and (max-height: 900px) {

    .content-wrapper-hero {
        height: 83vh;
    }

    @media screen and (max-width: 768px) {

        .content-wrapper-hero {
            height: 75vh;
        }
    }
    @media screen and (max-width: 680px) {

        .content-wrapper-hero {
            height: 67vh;
        }
    }
    @media screen and (max-width: 540px) {

        .content-wrapper-hero {
            height: 50vh;
        }
    }
}

/*****************/
/**** nabidka ****/
/*****************/

.content-about {
    padding-top: 0;
    max-width: 1170px;
}


.column {
    position: relative;
    padding: 50px;
}

.column .title {
    line-height: 1.2;
    font-family: "Noto Serif", serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .8px;
}

.column .description {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 15px;
}

.column .description p + p {
    margin-top: 20px;
}

@media screen and (max-width: 425px) {

    .column .description p + p {
        margin-top: 15px;
    }
}

.column .description a:hover {
    text-decoration: underline;
}

.offer1-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.offer1-inner-wrapper .column {
    background-color: #252829;
}

.offer1-inner-wrapper .title {
    font-size: 48px;
    color: #cda176;
    letter-spacing: 1.2px;
}
.offer1-inner-wrapper .title:hover {
    text-decoration: underline;
}

.offer1-wrapper .wine-img-wrapper {
    background: url("../web_images/wine_bg.jpg") center no-repeat;
    background-size: cover;
}


.offer2-wrapper .column-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.column-list .sortable-placeholder {
    background-color: #353638;
    border: 1px dashed #606165;
}

.offer2-wrapper .column {
    background-color: #353638;
}
.offer2-wrapper .column:first-of-type {
    background-color: #454547;
}
.offer2-wrapper .column:last-of-type {
    background-color: #cda075;
    color: #252829;
    font-weight: 600;
}

.offer2-wrapper .img-wrapper {
    height: 90px;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.offer2-wrapper .title {
    margin-top: 35px;
}
.offer2-wrapper .column:last-of-type .title {
    color: #353638;
}

/*.offer2-wrapper .description {
    margin-top: 40px;
}*/


@media screen and (max-width: 1200px) {

    .column .title {
        font-size: 30px;
    }

    .offer1-inner-wrapper .title {
        font-size: 42px;
    }

    .column {
        padding: 45px;
    }
}
@media screen and (max-width: 1024px) {

    .column .title {
        font-size: 28px;
    }

    .offer1-inner-wrapper .title {
        font-size: 36px;
    }

    .offer2-wrapper .title {
        margin-top: 25px;
    }

    .column {
        padding: 40px;
    }
}
@media screen and (max-width: 900px) {

    .offer1-wrapper {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 768px) {

    .column .title {
        font-size: 22px;
    }

    .offer1-inner-wrapper .title {
        font-size: 34px;
    }

    .column {
        padding: 35px;
    }

    .offer2-wrapper .img-wrapper {
        height: 75px;
    }
}
@media screen and (max-width: 680px) {

    .offer1-inner-wrapper .title {
        font-size: 32px;
    }

    .offer2-wrapper .title {
        margin-top: 20px;
    }

    .offer2-wrapper .column-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 540px) {

    .column .title {
        font-size: 20px;
    }

    .offer1-inner-wrapper .title {
        font-size: 26px;
    }

    .offer2-wrapper .img-wrapper {
        height: 65px;
    }
}
@media screen and (max-width: 425px) {

    .offer1-inner-wrapper .title {
        font-size: 22px;
    }

    .column {
        padding: 30px 25px;
    }
}


/*****************/
/**** novinky ****/
/*****************/

.content-news {
    max-width: 1060px;
}

.news-wrapper {
    margin-top: 80px;
}

.news-wrapper .news-list {
    display: flex;
    flex-wrap: wrap;
    margin: -50px;
}

.news {
    position: relative;
    margin: 50px;
    width: calc(33.33% - 100px);
}

.news .date,
.news .title {
    font-family: "Noto Serif", serif;
    font-weight: 700;
}

.news .date {
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 24px;
    letter-spacing: .6px;
    color: #fff;
}

.news .title {
    line-height: 1.2;
    font-size: 36px;
    color: #cda075;
    letter-spacing: .9px;
}
.news .title:hover {
    text-decoration: underline;
}

.news .perex {
    margin-top: 12px;
    line-height: 1.6;
    font-size: 15px;

    max-height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
}

.news-wrapper .paginator {
    margin-top: 25px;
    text-align: center;
}

@media screen and (max-width: 1200px) {

    .news .date {
        font-size: 21px;
    }

    .news .title {
        font-size: 30px;
        letter-spacing: .7px;
    }

    .news-wrapper .news-list {
        margin: -40px;
    }

    .news {
        margin: 40px;
        width: calc(33.33% - 80px);
    }
}
@media screen and (max-width: 1024px) {

    .news .date {
        font-size: 20px;
    }

    .news .title {
        font-size: 24px;
        letter-spacing: .5px;
    }

    .news-wrapper .news-list {
        margin: -30px;
    }

    .news {
        margin: 30px;
        width: calc(33.33% - 60px);
    }
}
@media screen and (max-width: 900px) {

    .news-wrapper {
        margin-top: 65px;
    }
}
@media screen and (max-width: 768px) {

    .news-wrapper {
        margin-top: 55px;
    }

    .news .date {
        font-size: 18px;
        letter-spacing: .4px;
    }

    .news .title {
        font-size: 22px;
    }

    .news-wrapper .news-list {
        margin: -25px;
    }

    .news {
        margin: 25px;
        width: calc(33.33% - 50px);
    }
}
@media screen and (max-width: 680px) {

    .news {
        width: 100%;
    }
}
@media screen and (max-width: 540px) {

    .news .date {
        font-size: 16px;
    }

    .news .title {
        font-size: 20px;
    }
}
@media screen and (max-width: 425px) {

    .news-wrapper {
        margin-top: 40px;
    }

    .news-wrapper .news-list {
        margin: -20px;
    }

    .news {
        margin: 20px;
    }
}


/********************/
/**** dodavatele ****/
/********************/

.content-suppliers {
    max-width: 1170px;
}

.suppliers-wrapper {
    margin-top: 80px;
    text-align: center;
}

@media screen and (max-width: 900px) {

    .suppliers-wrapper {
        margin-top: 65px;
    }
}
@media screen and (max-width: 768px) {

    .suppliers-wrapper {
        margin-top: 55px;
    }
}
@media screen and (max-width: 425px) {

    .suppliers-wrapper {
        margin-top: 40px;
    }
}

.suppliers {
    position: relative;
}

.suppliers .img-wrapper {
    display: block;
    height: 90px;
    margin: 0 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
}
.suppliers .img-wrapper:hover {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.slideshow .suppliers .description {
    display: none;
}


/* dodavatele - slidy - administrace */

.admin .suppliers-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.suppliers-list .sortable-placeholder {
    background-color: #353638;
    border: 1px dashed #606165;
    border-radius: 10px;
}

@media screen and (max-width: 1100px) {

    .admin .suppliers-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 680px) {

    .admin .suppliers-list {
        grid-template-columns: repeat(1, 1fr);
    }
}


/************************/
/** slick - dodavatele **/
/************************/

.slick-slide {
    outline: none;
}

.slick-prev,
.slick-next {
    z-index: 1;
    /*width: 100% !important;
    height: 100% !important;*/
    display: none !important;
}
.slick-next {
    right: -40px !important;
}
.slick-prev {
    left: -40px !important;
}
.slick-prev:before,
.slick-next:before {
    content: none !important;
}

.slides-dots-container {
    position: relative;
}

.slides-dots-container .dot {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #4d4d4d;

    -webkit-transform: scale(.85);
    -moz-transform: scale(.85);
    -ms-transform: scale(.85);
    -o-transform: scale(.85);
    transform: scale(.85);
}
.slides-dots-container li:hover .dot,
.slides-dots-container .slick-active .dot {
    background-color: #cca076;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.slides-dots-container li {
    margin: 0 3px !important;
}


/*********************/
/**** nabidka vin ****/
/*********************/

.offers-wrapper {
    margin-top: 15px;
}

.action-offers-list .admin-actions.small,
.offers-list .admin-actions.small {
    width: auto;
}


.action-offer {
    padding: 30px 55px;
    margin: 45px -55px;
    color: #252829;
    font-weight: 600;
    background-color: #cda075;
}

.action-offer .headline {
    font-family: "Noto Serif", serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
}

.action-offers {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.4;
}
.action-offers + .action-offers {
    border-top: 1px dotted rgba(37, 40, 41, 0.33);
}

.action-offers-list .sortable-placeholder {
    background-color: #d4af8c;
    border: 1px dashed #ae9073;
    border-radius: 5px;
}

.action-offers .title {
    padding-right: 15px;
}

@media screen and (max-width: 1200px) {

    .action-offer {
        padding: 30px 50px;
        margin: 45px -50px;
    }
}
@media screen and (max-width: 1024px) {

    .action-offer {
        padding: 30px 40px;
        margin: 40px -40px;
    }

    .action-offer .headline {
        font-size: 22px;
    }
}
@media screen and (max-width: 768px) {

    .action-offer {
        padding: 25px 35px;
        margin: 35px -35px;
    }

    .action-offer .headline {
        font-size: 20px;
    }
}
@media screen and (max-width: 540px) {

    .action-offer .headline {
        font-size: 18px;
    }
}
@media screen and (max-width: 425px) {

    .action-offer {
        padding: 20px 30px;
        margin: 30px -30px;
    }
}
@media screen and (max-width: 375px) {

    .action-offer {
        padding: 20px 25px;
        margin: 25px -25px;
    }
}


.offers-list .offers {
    padding: 10px 0;
    line-height: 1.4;
}
.offers-list .offers + .offers {
    border-top: 1px dotted rgba(205, 160, 117, 0.33);
}

.offers-list li {
    margin-top: 0 !important;
}

.offers-list .sortable-placeholder {
    background-color: #353638;
    border: 1px dashed #606165;
    border-radius: 5px;
}

.news-text-wrapper .offers-list li:before {
    display: none;
}



/***************/
/**** album ****/
/***************/

.album-wrapper {
    margin-top: 80px;
}

.album-wrapper .album-content .photos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    font-size: 0;
}

.album-content .photos-container a {
    display: block;
    border: 7px solid #454547;
}
.album-content .photos-container a:hover {
    border-color: #cda176;
}

.album-content .photos-container img {
    width: 100%;
    height: auto;
}

.album-wrapper .album-content .photos-container .photo {
    width: 100%;
}

.album-wrapper .paginator {
    margin-top: 25px;
    text-align: center;
}

@media screen and (max-width: 900px) {

    .album-wrapper {
        margin-top: 65px;
    }
}
@media screen and (max-width: 768px) {

    .album-wrapper {
        margin-top: 55px;
    }
}
@media screen and (max-width: 680px) {

    .content-album .album-content .photos-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 425px) {

    .album-wrapper {
        margin-top: 40px;
    }
}



/*****************/
/**** kontakt ****/
/*****************/

.content-wrapper-contact {
    margin-top: 170px;
    padding: 0;
}

@media screen and (max-width: 900px) {

    .content-wrapper-contact {
        margin-top: 150px;
    }
}
@media screen and (max-width: 768px) {

    .content-wrapper-contact {
        margin-top: 140px;
    }
}
@media screen and (max-width: 425px) {

    .content-wrapper-contact {
        margin-top: 130px;
    }
}

.content-wrapper-contact .content {
    padding: 0;
}

.content-contact-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1170px;
    background-color: #353638;
}

.vcelarsky-dvur-wrapper {
    background: url("../web_images/logo_vcelarsky_dvur.svg") center no-repeat #252829;
    background-size: contain;
}


/* kontaktni formular */

.contact-form-wrapper {
    padding: 50px;
}

.contact-form-wrapper .title {
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Noto Serif", serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .6px;
}

.contact-form-wrapper .description {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 15px;
}

.contact-form-wrapper .description a {
    color: #cda075;
}

.contact-form-wrapper .description a:hover {
    text-decoration: underline;
}

.newsletter-form table {
    width: 100%;
}

.newsletter-form th {
    display: none;
}

.newsletter-form input,
.newsletter-form textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #b6b3b4;
    background-color: #252829;
    border: none;
    border-radius: 0;
}

.newsletter-form textarea {
    margin-top: 15px;
    min-height: 150px;
}

.newsletter-form input:not(.button):hover,
.newsletter-form input:not(.button):focus,
.newsletter-form textarea:hover,
.newsletter-form textarea:focus,
.newsletter-form .not-validated,
.newsletter-form .not-validated:hover,
.newsletter-form .not-validated:focus {
    background-color: #252829;
    border: none;
    border-radius: 0;
}

.newsletter-form .button {
    width: auto;
}

.newsletter-form form ::-webkit-input-placeholder {
    color: #767477;
}
.newsletter-form form :-moz-placeholder { /* Firefox 18- */
    color: #767477;
}
.newsletter-form form ::-moz-placeholder {  /* Firefox 19+ */
    color: #767477;
}
.newsletter-form form :-ms-input-placeholder {
    color: #767477;
}


/* mapa */

#map-wrapper {
    position: relative;
    height: 150vh;
    min-height: 1090px;
    background-color: #333333;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* kontaktni udaje */

.content-contact-bottom {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    background-color: #353638;
}

.content-contact-bottom .column-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.content-contact-bottom .column {
    min-height: 390px;
    background-color: #252829;
}
.content-contact-bottom .column:first-of-type {
    background-color: #cda075;
    color: #353638;
    font-weight: 600;
}
.content-contact-bottom .column:last-of-type {
    word-break: break-word;
    background-color: #353638;
}

.content-contact-bottom .column:first-of-type .title {
    color: #353638;
}

.content-contact-bottom .column:first-of-type .description {
    font-weight: 600;
}

.content-contact-bottom .description strong {
    font-weight: 700;
}


@media screen and (max-width: 1200px) {

    .content-contact-bottom .column {
        min-height: 0;
    }

    .contact-form-wrapper {
        padding: 45px;
    }
}
@media screen and (max-width: 1024px) {

    .contact-form-wrapper {
        padding: 40px;
    }
}
@media screen and (max-width: 768px) {

    .contact-form-wrapper .title {
        font-size: 22px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }
}
@media screen and (max-width: 680px) {

    .vcelarsky-dvur-wrapper {
        min-height: 360px;
    }

    .content-contact-top,
    .content-contact-bottom .column-list {
        grid-template-columns: repeat(1, 1fr);
    }

    #map-wrapper {
        height: 1090px;
    }

    #map {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
    }

    .content-contact-bottom .column,
    .contact-form-wrapper {
        padding: 40px 35px;
    }
}
@media screen and (max-width: 540px) {

    .vcelarsky-dvur-wrapper {
        min-height: 300px;
    }

    .contact-form-wrapper .title {
        font-size: 20px;
    }
}
@media screen and (max-width: 425px) {

    .vcelarsky-dvur-wrapper {
        min-height: 250px;
    }

    .content-contact-bottom .column,
    .contact-form-wrapper {
        padding: 38px 30px;
    }
}


/****************/
/**** zapati ****/
/****************/

.content-wrapper-footer {
    background-color: #454547;
}

.content-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px 0 55px;
    line-height: 1.5;
    color: #fff;
    font-size: 15px;
}

.content-footer:nth-of-type(2) {
    padding-top: 0;
    text-align: center;
}

.links-wrapper-left {
    text-align: right;
}

.content-footer a {
    color: #cda075;
}
.content-footer a:hover {
    text-decoration: underline;
}

.footer-logo-wrapper {
    position: relative;
    top: -13px;
    flex-shrink: 0;
    width: 140px;
    height: 75px;
    background: url("../web_images/logo_footer.svg") center no-repeat;
    background-size: contain;
}


@media screen and (max-width: 768px) {

    .content-footer {
        padding: 45px 0 35px;
    }
}
@media screen and (max-width: 600px) {

    .content-footer {
        flex-direction: column;
        padding: 45px 0;
    }

    .links-wrapper-left,
    .links-wrapper-right {
        text-align: center;
    }

    .footer-logo-wrapper {
        top: 0;
        margin: 20px 0;
        height: 50px;
    }
}
@media screen and (max-width: 425px) {

    .content-footer {
        padding: 35px 0;
    }
}

.grecaptcha-badge { 
    visibility: hidden; 
}

.newsletter-form p {
    font-size: 0.75rem;
    padding-top: 10px;
    line-height: 1.5rem;
}

.newsletter-form p a {
    color: #cda075;
}

.newsletter-form p a:hover {
    text-decoration: underline;
}