/* 
    Created on : 3.2.2020, 11:54:08
    Author     : Zdeněk Józsa
*/

.disabled {
    display: none;
}

.comment__form-group.input-error textarea, .comment__form-group.input-error input {
    border-color: #cb0000;
    background-color: #fef6f2;
}

.comment__form-group.input-error .error-text {
    right: 0;
    color: #f04f00;
    font-size: 0.8rem;
    line-height: 1;
}

.comment-show-more {
    font-weight: 700;
    color: #ff6c00;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.3rem;
}

.comment-hidden, .reaction-hidden {
    display: none;
}

.recipe__rating-stars-item {
    cursor: pointer;
}

.discussion__text-red:hover {
    color: #CC0000;
}

.rating-active:before, .rating-active ~ .rating-active:before {
    color: #FFD000;
    content: "\f005";
}

.filter__heart-item.heart-active:before {
    content: "\f004";
}

#search-results {
    background-color: #e9fbff;
    border: #bcdab6 1px solid;
    margin: -29px 0 0 71px;
    min-width: 50%;
    padding: 5px;
    position: absolute;
    z-index: 10;
}

#search-results a {
    color: #0f7c38;
}

#search-results a:hover {
    text-decoration: underline;
}

@media (max-width: 1199px) {
    #search-results {
        margin: -29px 0 0 56px;
    }
}

.modal-open {
    overflow: hidden;
    padding-right:0 !important;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    padding-right:0 !important;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    outline: 0;
    margin-bottom:2.5rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 3.5rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    position:relative;
}

.modal-header .close {
    padding: 1rem 1.3rem;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: normal;
    font-size: 1rem;
    color: #fc0b00;
    position:relative;
}
.modal-title:after {
    content: "";
    border-bottom: 1px solid var(--primary-default);
    width: 100%;
    height: 1px;
    display: inline-block;
    position: absolute;
    bottom: calc(-1.5rem - 1px);
    left: 0;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding:1rem 1.5rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 3.5rem 1rem 3.5rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

#tema-message {
    font-size: 0.75rem;
}

button#tema-send:hover {
    background-color: #9D241F;
    border-color: #9D241F;
}

.icon:before {
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: 900;
    margin-left: -0.25rem;
    margin-right: 1rem;
    line-height: 1;
    position: relative;
    bottom: -2px;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

.sz-banner-container {
    text-align: center;
    margin: 0 0 1.5rem 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.aside-banner-container {
    height: auto;
}

.sidebar {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

@media (max-width: 991px) {
  .sidebar { display: none; }
}

.item-options a {
    color: #666;
}

.item-options a:hover {
    color: #126832;
    text-decoration: none;
}

.item-options .icon-pencil {
    margin-right: .2rem;
}

.dobry-kontakt-item.no-image {
    padding-left: 1rem !important;
    margin: .5rem 0;
}
.dobry-kontakt-item {
    position: relative;
    line-height: 1.4;
    padding: .5rem .5rem 1rem 45%;
    margin: .5rem 0;
}

.dobry-kontakt-item .item-title {
    color: #EE6402;
    font: bold 17px/22px 'Roboto',sans-serif;
    font-weight: 700;
    line-height: 1.33;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.dobry-kontakt-item .item-text {
    position: relative;
    padding-right: 3rem;
}

.dobry-kontakt-item .item-arrow {
    font-weight: 700;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    background-color: var(--primary-dark);
    text-align: center;
    line-height: 3rem;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
}

.dobry-kontakt-item .item-arrow:before {
    content: "\e91e";
    font-family: icomoon;
}

.heading-dobry-kontakt {
    color: var(--primary-dark);
}

.aside-box {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.dobry-kontakt-item .item-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
}

.article-item-image.b-loaded, .lazy-image.b-loaded {
    background-size: cover;
}

.article-item-image, .lazy-image {
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.02);
    display: block;
}

.aside-box:after, .aside-box:before {
    display: table;
    content: "";
    clear: both;
}

.box-blue {
    margin-bottom: 1.5rem;
}

.outer {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.video-wrapper {
    height: 0;
    margin: auto;
    z-index: 1;
    position: relative;
    padding-top: 25px;
    padding-bottom: 56.25%;
    display: block;
    overflow: hidden;
}

.video-wrapper iframe {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    position: absolute;
}