/*
Green: #00963f
Light: #efdccb
Darker: #e7d2b7
Brown: #736356
*/
body{
    word-break: break-word;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 100px auto;
    background-color: #333;

    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

* {
    box-sizing: border-box;
}

/* GENERIC CLASSES */

.bg-green {
    background: #00963f;
}

.bg-light {
    background: #efdccb;
}

.bg-dark {
    background: #e7d2b7;
}

.bg-brown {
    background: #736356;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-right-30 {
    margin-right: 30px;
}

.white {
    color: white;
}

.green {
    color: #00963f;
}

.black {
    color: black
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-wrap {
    flex-wrap: wrap;
}

.space-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-center {
    justify-content: center;
}


.align-center {
    align-items: center;
}

.text-right {
    text-align: right;
}

.container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 1280px;
    margin: auto;
}

.bordered {
    /*position: relative;*/
    /*border: 1px solid #4e4b4b;*/
    /*box-shadow: 0 0 0 2px #ead6bf, 0 0 0 4px #4e4b4b;*/
    /*padding: 30px 45px;*/
    /*margin: 5px;*/
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.3);
    padding: 25px;
}

h2 {
    position: relative;
    text-align: center;
    color: #00963f;
    text-transform: uppercase;
    margin: 0 0 30px;

}

h2 span {
    display: inline-block;
    padding: 0 20px;
}

h2.with-line:before {
    z-index: -1;
    background: #777;
    left: 30px;
    right: 30px;
    height: 1px;
    position: absolute;
    content: '';
    top: 50%;
}

h1 {
    position: relative;
    text-align: center;
    color: #00963f;
    font-size: 30px;
    text-transform: uppercase;
    margin: 50px 0;

}

h1 img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    max-height: 50px;
    max-width: 50px;
}

h1 span {
    display: inline-block;
    padding: 0 20px;
}

h1:before {
    z-index: -1;
    background: #777;
    left: 100px;
    right: 30px;
    height: 1px;
    position: absolute;
    content: '';
    top: 50%;
}

h1.no-icon:before {
    left: 30px;
}

/*.bordered:before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background: #e7d2b7;*/
/*    left: -1px;*/
/*    top: -1px;*/
/*    border-radius: 0;*/
/*    border-right: 1px solid #4e4b4b;*/
/*    border-bottom: 1px solid #4e4b4b;*/
/*    box-shadow: -1px -1px 0 3px #e7d2b7, 1px 1px 0 3px #4e4b4b;*/
/*}*/

/* CUSTOM STYLES */
nav .menu {
    height: 100px;
}

nav .menu .container {
    height: 100%;
}

nav .menu ul {
    margin: 0;
    list-style-type: none;
}

nav .menu li a:hover {
    text-decoration: underline;
}

nav .menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 16px;
    margin: 0 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

#main-menu {
    display: flex;
}

nav .menu li.active a {
    background: #00963f;
    color: white;
}

nav .menu li {
    padding: 4px 10px;
    position: relative;
    overflow: hidden;
}

nav .menu li .ribbon{
    position: absolute;
    font-weight: bold;
    font-size: 13px;
    background: #00963f;
    color: white;
    width: 100px;
    height: 20px;
    top: 10px;
    right: -30px;
    transform: rotate(45deg);
    line-height: 20px;
    text-align: center;
    box-shadow: 0 0 6px -3px black;
}

nav .menu li:nth-last-child(n+2) {
    border-right: 1px solid #00963f;
}

nav .menu li:nth-last-child(1) {
    padding-right: 0;
}

nav .top .social {
    text-align: right;
}

nav .top .social img {
    height: 20px;
    margin-left: 10px;
}

nav .top {
    font-size: 14px;
    padding: 10px 0;
}

nav .top .find_us {
    margin-bottom: 5px;
}

nav .top .left a {
    text-decoration: none;
    display: inline-block;
    padding-right: 20px;
}

nav .top .left a:hover {
    text-decoration: underline;
}

nav .top .left a:nth-child(2) {
    padding-left: 20px;
    border-left: 1px solid white;
}

nav .top .left img {
    height: 24px;
    margin-right: 5px;
    vertical-align: middle;
}

nav .top .left a:nth-child(2) img {
    height: 18px;
}

.intro .bordered h3 {
    margin-top: 0;
    color: #00963f;
    text-transform: uppercase;
}

.obvestila .obvestilo:nth-child(n+2) {
    margin-top: 20px;
    border-top: 1px solid #4e4b4b;
}

.gallery h2 {
    margin: 0 0 30px;
}

.gallery .inner {
    display: flex;
    flex-wrap: wrap;
}

.gallery .inner .item {
    line-height: 0;
    flex: 1 0 20%;
    position: relative;
    overflow: hidden;
}

.gallery .inner .item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery .inner .item .overlay {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.7s, transform 0.5s;
    position: absolute;
    line-height: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333333ee;
}

.gallery .inner .item .overlay .likes {
    color: white;
    text-align: center;
    margin: 20px;
}

.gallery .inner .item .overlay .likes img {
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

.gallery .inner .item .overlay .text {
    color: white;
    margin: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 19px;
    max-height: 133px;
}

.gallery .inner .item > img {
    width: 100%;
}

.button:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .4);
}

.button {
    transition: box-shadow 0.5s;
    padding: 0 20px;
    text-decoration: none;
    height: 50px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    justify-content: center;
}

footer {
    margin-top: 50px;
    padding: 40px 0 30px;
}

footer .button img {
    margin-right: 10px;
    height: 20px;
}

footer .container > div:nth-child(n+2) {
    margin-left: 30px;
}

footer .social img {
    height: 25px;
    margin-left: 10px;
}

footer h5 {
    font-size: 16px;
    color: #00963f;
    margin: 0 0 5px;
}

footer .logo {
    height: 60px;
}

footer .flex .button {
    /*flex: 0 0 48%;*/
    min-width: 250px;
}

footer .menu a:hover {
    text-decoration: underline;
}

footer .menu a {
    color: #000000;
    text-decoration: none;
}

footer .container.flex .flex-1:nth-last-child(1) a {
    display: inline-block;
    font-weight: bold;
    color: black;
}

footer .flex-1 p {
    margin: 0;
    margin-bottom: 10px;
}

footer a {
    display: block;
    color: #00963f;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
}

footer a:hover {
    text-decoration: underline;
}

.copyright {
    padding: 7px 20px;
    text-align: center;
}

.copyright a{
    color: white;
}

.ponudba.alergeni-list{
    padding-top: 20px;
}

.ponudba .categories > div {
    text-align: center;
    flex: 1 0 100%;
    position: relative;
    margin: auto auto;
    max-width: 600px;
}

.ponudba .categories > div a:before,
.ponudba .categories > div a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: black;
    transition: all .5s;
}

.ponudba .categories > div a:after {
    bottom: 0;
    top: auto;
}

.ponudba .categories > div a:hover:before,
.ponudba .categories > div a:hover:after {
    left: 0;
    right: 0;
}

.ponudba .categories > div a {
    color: black;
    margin: 5px 0;
    display: block;
    padding: 10px 30px;
    position: relative;
    text-decoration: none;
}

.ponudba .categories > div.active a {
    background: #00963f;
    color: white;
}

.ponudba .gallery .item, .dostava .gallery .item, .about .gallery .item {
    flex: 0 0 23%;
    background-size: cover;
    background-position: center;
    padding-bottom: 23%;
    position: relative;
    margin-bottom: 20px;
}

.ponudba .gallery {
    padding: 20px;
    margin-top: -25px;
}

.ponudba .gallery .item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: #736356;
}

.ponudba .pdf {
    margin-top: 20px;
    position: relative;;
    padding-bottom: 91%;
    margin-bottom: -30px;
}

.ponudba .pdf .inner {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.ponudba h2{
    margin: 20px 0;
}

.ponudba .pdf iframe {
    width: 100%;
    height: 100%;
}

.alergeni {
    padding: 10px 20px;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.3);
    margin-top: 50px;
    margin-bottom: 100px;
}

.alergeni img {
    height: 25px;
    vertical-align: middle;
    margin-left: 10px;
}

.dostava-box h3 {
    margin: 0;
    margin-bottom: 20px;
}

.dostava-box a {
    font-weight: bold;
    position: relative;
    text-decoration: none;
    color: black;
}

.dostava-box a:hover {
    text-decoration: underline;
}

.dostava-box a:before {
    content: '';
    background: url('/static/images/phone-green.png') no-repeat center;
    background-size: contain;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: -30px;
}

.dostava-box table strong {
    color: #00963f;
}

.dostava-outter {
    padding: 100px;
}

.dostava-outter .dostava-right {
    margin-left: 50px;
}

.dostava-outter .dostava-right > .flex-1 {
    margin-left: 30px;
}

.dostava-outter .dostava-right > div > img {
    height: 60px;
}

.dostava-outter .dostava-right .button {
    justify-content: center;
}

.dostava-outter .dostava-right .phone a {
    text-decoration: none;
    font-size: 25px;
}

.dostava-outter .dostava-right .phone {
    text-align: center;
    margin-top: 30px;
}

.dostava-outter .dostava-right .phone a img {
    vertical-align: middle;
    height: 30px;
}

.dostava .title h3 {
    margin: 0;
    font-size: 25px;
    color: #00963f;
}

.dostava .title {
    margin-bottom: 30px;
}

.dostava .files {
    display: flex;
    margin-top: 50px;
    justify-items: center;
    justify-content: center;
}

.dostava .files .file {
    padding: 8px 15px;
    background: #00963f;
    color: white;
    text-decoration: none;
}

.dostava .files .file:nth-child(n+2) {

    margin-left: 20px;
}

.dostava .files .file:hover {
    text-decoration: underline;
}

.dostava .title .subtitle {
    font-weight: bold;
    font-size: 20px;
}

.dostava {
    padding: 50px 0;
}

.dostava .phone a {
    font-weight: bold;
}

.dostava .phone a:hover {
    text-decoration: underline;
}

.dostava .phone a {
    text-decoration: none;
}

.dostava .phone img {
    vertical-align: middle;
    height: 20px;
}

.dostava .gallery .item {
    flex: 0 0 30%;
    padding-bottom: 20%;
}

.about .gallery {
    margin: 40px 0;
}

.about .gallery .item {
    flex: 0 0 30%;
    padding-bottom: 20%;
}

.about .pogoji {
    padding: 20px 40px;
    margin: 50px 0;
}

.about .pogoji a {
    min-width: 20%;
    justify-content: center;
}

.vizitka {
    height: 100%;
}

.vizitka h3 {
    font-size: 20px;
    color: #00963f;
}

.vizitka h3 img {
    height: 35px;
    vertical-align: middle;
    margin-right: 25px;
}

.swiper-container {
    height: 500px;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-slide .container {
    position: relative;
    height: 100%;
}

.swiper-slide .container .text {
    position: absolute;
    bottom: 70px;
    left: 20px;
    /*background: #00963f;*/
    color: white;
    padding: 20px 30px;
}

.swiper-slide .container .text .title {
    font-size: 40px;
    text-transform: uppercase;
}

.swiper-slide .container .text .subtitle {
    font-size: 25px;
}

.swiper-button-prev, .swiper-button-next {
    color: white !important;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: white !important;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

.lb-nav a.lb-prev, .lb-nav a.lb-next {
    opacity: 1 !important;
}

.lb-nav a.lb-next {
    margin-right: -100px;
}

.lb-nav a.lb-prev {
    margin-left: -100px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #00963f;
    margin: 6px 0;
    transition: 0.4s;
}

.alergeni-ul {
    color: black;
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding-top: 10px;
}

.alergeni-ul a {
    color: #1A1919;
    text-decoration: none;
}

.alergeni-ul a:hover {
    text-decoration: underline;
}

.alergeni-ul li {
    padding: 7px 0;
}

.button.back{
    max-width: 200px;
    height: 35px;
}

@media screen and (max-width: 1050px) {
    .swiper-container {
        height: 300px;
    }

    .hamburger {
        display: block;
    }

    #main-menu {
        margin: 0;
        padding: 0 50px;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #00963f;
        color: white;
        z-index: 100;
        text-align: center;
    }

    #main-menu.active {
        display: block;
    }

    #main-menu li:nth-last-child(n+2) {
        border-bottom: 1px solid #ffffff88;
    }

    #main-menu li.active a {
        text-decoration: underline;
    }

    #main-menu li a {
        color: white;
    }

    .menu > .container {
        position: relative;
    }

    .gallery .inner .item {
        flex: 1 0 30%;
    }

    .gallery .inner .item:nth-last-child(1) {
        display: none;
    }

    .ponudba .categories > div {
        flex: 0 0 33%;
    }

    .ponudba .gallery .item, .dostava .gallery .item, .about .gallery .item {
        flex: 0 0 47%;
    }

    .ponudba .gallery .item.empty {
        padding-bottom: 0;
    }

    .mobile-no-flex {
        display: block;
    }

    .mobile-no-flex > div {
        margin-bottom: 20px;
    }

    .mobile-no-flex .margin-right-30 {
        margin-right: 0;
    }

    .ponudba .gallery .item, .dostava .gallery .item, .about .gallery .item {
        padding-bottom: 40%;
    }
}

@media screen and (max-width: 800px) {
    footer > .flex {
        display: block;
        text-align: center;
    }

    footer .container > div:nth-child(n+2) {
        margin-top: 20px;
        margin-left: 0;
    }

    .alergeni {
        display: block;
        text-align: center;
        padding: 20px;
    }

    .alergeni > div:nth-child(n+2) {
        margin-top: 20px;
    }

    .gallery .inner .item {
        flex: 1 0 45%;
    }

    .gallery .inner .item:nth-last-child(1) {
        display: block;
    }
}

@media screen and (max-width: 600px) {

    .gallery .inner .item {
        flex: 1 0 80%;
    }

    .ponudba .gallery .item, .dostava .gallery .item, .about .gallery .item {
        flex: 1 0 100%;
        padding-bottom: 80%;
    }

    .ponudba .gallery .item.empty, .dostava .gallery .item.empty, .about .gallery .item.empty {
        margin-bottom: 0;
    }

    .ponudba .pdf .inner {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    .ponudba .categories > div {
        flex: 1 0 100%;
        border-right: 0;
        margin-bottom: 10px;
    }

    nav .top .left a {
        display: block;
        padding-left: 0 !important;
        position: relative;
    }

    nav .top .left a img {
        /*position: absolute;*/
        /*left: 0;*/
        /*top: 0;*/
        display: none;
    }

    nav .top .left a:nth-child(2) {
        border: 0;
    }

    .lb-nav a.lb-next {
        margin-right: 0;
    }

    .lb-nav a.lb-prev {
        margin-left: 0;
    }

    .gallery div.item {
        display: none;
    }

    .button.back{
        max-width: 100%;
        width: 100%;
    }

    .ponudba .pdf {
        padding-bottom: 120%;
    }
}

table.borders{
    width: 100%;
    border-collapse: collapse;
}

table.borders td{
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding: 5px;
}

.financiranje{
    display: block;
    padding: 10px 20px;
    background: white;
    position: fixed;
    bottom: 3%;
    z-index: 2000;
    left: 2%;
}

.financiranje img{
    width: 160px;
}
