:root {
    --bg-color-01: #73877B;
    --bg-color-02: #839788;
    --bg-color-03: #BDBBB6;
    --bg-color-04: #E5D1D0;
    --bg-color-05: #F5E4D7;
}

html, body {
    /*overscroll-behavior-y: none;*/
    overflow-x: hidden;
  }
  
/* utilities */
/*Where property is one of:

m - for classes that set margin
p - for classes that set padding
Where sides is one of:

t - for classes that set margin-top or padding-top
b - for classes that set margin-bottom or padding-bottom
s - (start) for classes that set margin-left or padding-left in LTR, margin-right or padding-right in RTL
e - (end) for classes that set margin-right or padding-right in LTR, margin-left or padding-left in RTL
x - for classes that set both *-left and *-right
y - for classes that set both *-top and *-bottom
blank - for classes that set a margin or padding on all 4 sides of the element
Where size is one of:

0 - for classes that eliminate the margin or padding by setting it to 0
1 - (by default) for classes that set the margin or padding to $spacer * .25
2 - (by default) for classes that set the margin or padding to $spacer * .5
3 - (by default) for classes that set the margin or padding to $spacer
4 - (by default) for classes that set the margin or padding to $spacer * 1.5
5 - (by default) for classes that set the margin or padding to $spacer * 3
auto - for classes that set the margin to auto
(You can add more sizes by adding entries to the $spacers Sass map variable.)*/

.px-6 {
    padding-left: 5% !important;
    padding-right: 5% !important;
}
.px-7 {
    padding-left: 10% !important;
    padding-right: 10% !important;
}
.mt--1 {
    margin-top: -5%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: .01em;
    font-weight: 400;
    /* color: var(--bg-color-01); */
    /* color: var(--bg-color-02); */
    /* color: var(--bg-color-03); */
    /* color: var(--bg-color-04); */
    /* color: var(--bg-color-05); */
    /* color: #2d2b2b; */
    /* background-color: var(--bg-color-01); */
    /* background-color: var(--bg-color-02); */
    background-color: var(--bg-color-03);
    /* background-color: var(--bg-color-04); */
    /* background-color: var(--bg-color-05); */
}

#mailMessageWrapSuccess,
#mailMessageWrapFail {
    display: none;
}
p {
    margin-bottom: 0;
}

a {
    color: inherit;
}

.quote {
    font-size: 1.5em;
    line-height: 0;
}
.quote-text {
    padding: 0 .75em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 300;
    font-weight: inherit;
}
.quote:first-child {
    margin-right: -.35em;
}
.quote:last-child {
    margin-left: -.35em;
    vertical-align: middle;
}


@media (min-width: 768px) {
.order-md-6 {
    order: 6!important;
}
}

@media (max-width: 576px) {
    .py-3 {
        /* padding-bottom: 0!important; */
    }
}

#footer {
    background: var(--bs-dark);
    color: var(--bg-color-01);
    border-top: 1em solid var(--bg-color-02);
}

#footer a,
#footer p{
    color: var(--bs-dark);
    color: inherit;
    font-weight: 400;
}

.list-group {
    margin-top: 1rem;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    padding-left: .25rem;
    /* color: #fff; */
    text-decoration: none;
    background-color: transparent;
    border: 0;
    font-size: 1.25rem;
    /* font-size: 1.5rem; */
}
@media (max-width: 576px) {
    .list-group-item {
        font-size: 1rem;
    }
}
.list-group-item .icon {
    padding-right: .75rem;
}

img.rounded {
    border-radius: 8pt !important;
}

.figure-caption {
    font-size: 14pt;
    /* font-style: italic; */
    color: unset;
    padding: .25em 1em;
    text-align: center;
    /* background-color: #ececeb; */
    /* border-radius: 1em; */
    /* width: max-content; */
    /* color: #ececeb; */
}
.content {
    transition: visibility 0s, opacity 0.25s ease-in-out;
    visibility: visible;
    opacity: 1;
    margin-bottom: 0;
    padding-bottom: 0;
}
.hero {
    transition: .2s all;
}

.smart-scroll {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.scrolled-down {
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
}
.scrolled-up {
    transform: translateY(0);
    transition: all 0.15s ease-in-out;
}


.navbar-dark .navbar-brand {
    color: rgba(255,255,255,.55);
}
.brand-logo img {
    padding-left: .35em;
    height: 50px;
    filter: invert(.8);
}
@media (min-width: 576px) {
    .brand-logo img {
        height: 65px;
    }
}




.hero {
    height: 100vh;
    min-height: 50vh;
    background-image: url('../img/banners/podrum-drvene-bacve.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: brightness(0.5); */
}
.hero .lead {
    margin-top: 1rem;
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Libre Baskerville', serif; */
    font-weight: bold;
}

.display-2,
.display-5 {
    font-weight: 400;
}


.content {
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,0.5) 0%, rgba(148,187,233,0.07412471824667366) 100%);
    background: rgb(115,135,123);
    background: radial-gradient(circle, rgba(115,135,123,1) 0%, rgba(189,187,182,1) 50%, rgba(131,151,136,1) 100%);
}


#map-location {
    height: 40vh;
}





.lead {
    /* padding: .5rem .75rem; */
    font-size: 18pt;
    /* margin-bottom: 1rem; */
    /* margin-top: 1rem; */
    /* line-height: 2.25rem; */
    font-weight: inherit;
    font-weight: 300;
}
    @media (min-width: 1576px) {
        .lead {
            font-size: 20pt;
        }
    }
    @media (max-width: 576px) {
        .lead {
            font-size: 14pt;
        }
    }
.modal {
    backdrop-filter: blur(3px);
}
@media (min-width: 576px) {
    .modal:not(#siteEntry) .modal-dialog,
    .modal:not(#mailModalFail) .modal-dialog,
    .modal:not(#mailModalSuccess) .modal-dialog {
        /*max-width: 750px; */
        /* margin: auto; */
        display: flex;
        align-items: flex-end;
    }
}
.modal-header {
    border-bottom: 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    padding: 1rem;
    border-radius: inherit;
}
.modal-footer {
    border-top: 0;
    justify-content: center;
}
.modal .btn-close {
    margin: unset;
    background: none;
    opacity: 1;
    font-size: 1.25rem;
    width: auto;
    height: auto;
    display: flex;
    align-items: baseline;
    font-size: 1.1rem;
}
.modal .btn-close .icon {
    padding-right: 1rem;
}

.modal-content {
    height: fit-content !important;
    color: var(--bs-dark);
    border: 0;
}


#siteEntry .modal-content,
#mailModalFail .modal-content,
#mailModalSuccess .modal-content {
    background-color: var(--bg-color-03);
    color: var(--bs-dark) !important;
}
#siteEntry .modal-content,
#mailModalFail .modal-content,
#mailModalSuccess .modal-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.modal-content .card {
    margin: 0;
    border:0;
    transition: all .25s ease-in-out;
    cursor: initial;
}
.modal-content .card-title {
    margin-bottom: 1rem;
}
.modal-content .card-text .intro {
    font-size: 20pt;
    margin-right: 0.75rem;
    margin-top: .75rem;
    line-height: 1;
    font-weight: 400;
    display: inline-block;
}
.modal-content .card-img-top {
    margin-top: 0;
    padding: 1rem;
    padding-bottom: 0;
    width: auto !important;
    max-height: 40vh;
    max-width: 65%;
    transition: all .15s ease-in-out;
}
@media (min-width: 576px) {
    .modal-content .card-img-top:hover {
    transform: translateY(-1rem);
    filter: drop-shadow(0.25rem 1.5rem 0.75rem rgba(0, 0, 0, 0.35));
    }
}


/*#nav-container {
    padding-left: 0;
    padding-right: 0;
}*/

.navbar {
    padding: .5rem;
    background-color: rgb(6 2 0 / 90%);
}

@media (min-width: 576px) {
    .navbar {
        padding: 0;
        background-color: rgb(6 2 0 / 90%);
    }
}

html:has(.navbar-collapse.show),
body:has(.navbar-collapse.show) {
    margin: 0;
    margin-right: 0.5em;
    /*height: 100%;*/
    overflow: hidden;
}


.navbar:has(.navbar-collapse.show) {
    background: rgb(4 4 4 / 95%);
}

nav .nav-link {
    color: var(--bs-light);
    color: var(--bg-color-04);
    font-weight: 300;
    letter-spacing: .025rem;
    margin: .25em;
}

.navbar-toggler {
    border: 0;
    z-index: 99;
}

.navbar-collapse.show {
    height: 100vh;
    margin-top: -4em;
    display: flex;
    justify-content: space-evenly!important;
    /* align-content: center; */
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
    align-items: center;
}
.navbar-collapse.collapsing {
    opacity: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.bg-light {
    background-color: white !important;
}

.nav-item {
    font-size: 1.15rem;
    text-transform: uppercase;
    font-weight: 300;
}
.navbar-nav .nav-item {
    padding: 1rem 1rem;
}
.collapse.show .navbar-nav .nav-item {
    padding: .5rem;
}

@media (max-width: 576px) {
    footer ul.nav {
        flex-direction: column;
    }
    footer li.nav-item a {
        font-size: 1.25rem;
    }
}
@media (max-width: 991.98px) {
    li.nav-item {
        text-align: center;
        font-size: 1.5rem;
    }

}

section.half-height {
    min-height: 50vh;
  }

.h2, h2 {
    /* font-size: 3rem; */
    /* margin-bottom: 5rem; */
    /* margin-bottom: 0; */
    /* padding: 0 1rem; */
    /* padding: 0 .5rem; */
    margin-bottom: 0;
}



/* banner */
.banner {background: var(--bg-color-03);color: var(--bs-gray-dark);border-radius: 0;overflow: hidden;}
@media (max-width: 576px) {
    .banner {
        border-radius: 0;
    }
}
.banner-content {
    align-self: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* padding: 1rem 2rem; */
    /* background-image: url(../img/banners/shot-tasting-03.jpg); */
    /* background-size: cover; */
    /* background-position: center; */
    /* color: #fff; */
    /* align-content: space-around; */
    /* justify-content: flex-start; */
}
.banner-location {
    padding-left: .5em;
    font-size: 1.25em;
}
    .banner-content.left {
        align-items: flex-start;
    }
    .banner-content h4{
        /* font-size: 3rem; */
        /* margin-bottom: 2rem; */
    }
    .banner-location .icon{
        padding-right: .25rem;
    }
.banner-img {
    padding: 0;
    margin: 0;
    overflow: hidden;
    /* height: 67vh; */
    /* max-height: 30vh; */
    /* width: unset; */
}
.banner-v2 .img-fluid {
    width: auto;
}
    @media (min-width: 768px) {
        .banner-v2 .img-fluid {
            /* max-height: 50vh; */
        }
        .banner-img {
            height: auto;
            max-height: 34vh;
            /* width: unset; */
        }
    }
    @media (min-width: 1200px) {
        .banner-v2 .img-fluid {
            max-width: unset;
            max-height: 51vh;
        }
        .banner-img {
            /* height: 31vh; */
            height: auto;
            max-height: 52vh;
            /* width: unset; */
        }
    }
    @media (min-width: 1576px) {
        .banner-v2.big-images .img-fluid {
            max-height: unset;
        }
    }
.banner-text {
    padding: 0;
    /* margin-bottom: 2rem; */
}



















/* Custom cards - START */
#story-about-us .row > * {
    align-self: center;
}

/* Owl carousel */
.owl-carousel, .owl-stage-outer {
    overflow-x: clip;
    overflow-y: visible !important;
}
.owl-stage-outer {
    padding: 1rem;
    padding-top: 20rem;
    padding-left: 0;
}
.owl-stage {
    padding-left:0px !important;
    /* cursor: url("../img/web/swipe-arrow.svg") 16 16, pointer; */
    cursor: grab;
    /* padding-top: 15rem; */
}
.owl-theme .owl-nav {display: none;}
/* Owl carousel */

/*(1) owl-stage box*/
.owl-carousel .owl-stage { display: flex; }
/*(2) the direct div of each element in the owl carousel*/
.item.card { height: 100%; }


/* buttons */

.btn {
    border-radius: 3rem;
    padding: 0.5rem 2.5rem;
    display: inline-block;
    align-content: center;
    align-items: center;
    margin: 1rem;
    width: max-content;
    font-size: 16pt;
    font-weight: 300;
}
.hero-btn {
    margin-top: 1rem;
}
.btn-primary {
    background-color: #1E9FBB;
    background-color: var(--bg-color-01);
    color: #fff;
    color: var(--bg-color-05);
    border: 3px solid #fff;
    border: 0;
}
.btn-secondary {
    background-color: #fff;
    background-color: transparent;
    background-color: var(--bg-color-02);
    color: #092d35;
    color: inherit;
    color: var(--bg-color-05);
    border: 1px solid #092d35;
    border: 0;
}
.btn-primary:hover,
.btn-secondary:hover {
    background-color: var(--bg-color-04);
    color: var(--bs-dark);
    border-color: var(--bg-color-04);
    border: 0;
}
/*.btn-secondary:hover {
    background-color: #1e9ebb81;
    color: #1E9FBB;
    border-color: #1E9FBB;
}*/

.btn-text {
    font-size: 16pt;
    font-weight: 300;
}
.btn-icon {
    font-size: 15pt;
    padding-left: 1rem;
}

@media (max-width: 576px) {
    .btn {
        padding: .75rem 1.8rem;
        margin: 0.75rem 0;
        width: inherit;
    }
    .btn-text {
        font-size: 14pt;
    }
    .btn-icon {
    font-size: 13pt;
    }
}

.add-to-cart-btn {display: none;}
/* buttons - END */


.form-floating > label {
    padding-left: 1.5rem;
    font-size: 15pt;
    /* opacity: 0.55; */
}
.form-floating>.form-control {
    padding: 1.75rem;
    font-size: 16pt;
}
.form-control {
    background-color: transparent;
    transition: background-color .25s ease-in-out;
}







/* loading */
.loader,
.loader-text {
    display: none;
}
.loader.loading,
.loader-text.loading {
    display: inline-block;
    /* display: flex; */
    /* flex-direction: column; */
    /* flex-wrap: nowrap; */
    /* justify-content: center; */
    /* align-items: center; */
}

div#loader-text {
    position: absolute;
    top: calc(52vh);
    left: calc(50%);
    transform: translateX(-50%);
    font-size: 1.75rem;
    width: max-content;
}

.lds-heart,
.loader {
    /* display: inline-block; */
    position: absolute;
    top: calc(50vh - 80px);
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    /*transform: rotate(45deg);*/
    transform-origin: 40px 40px;
  }
  .lds-heart div {
    top: 32px;
    left: 32px;
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--bg-color-01);
    animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .lds-heart div:after,
  .lds-heart div:before {
    content: " ";
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background: var(--bg-color-01);
  }
  .lds-heart div:before {
    left: -24px;
    border-radius: 50% 0 0 50%;
  }
  .lds-heart div:after {
    top: -24px;
    border-radius: 50% 50% 0 0;
  }
  @keyframes lds-heart {
    0% {
      transform: scale(0.95);
    }
    5% {
      transform: scale(1.1);
    }
    39% {
      transform: scale(0.85);
    }
    45% {
      transform: scale(1);
    }
    60% {
      transform: scale(0.95);
    }
    100% {
      transform: scale(0.9);
    }
  }

body.loading{
    overflow: hidden;
}
  
body.loading .content{
    visibility: hidden;
    opacity: 0;
}

body.loading .loader{
    visibility: visible;
    overflow: hidden;
}

.hamag-esif-banner {
    background: #ffffffc7 !important;
    background-color: rgb(255 255 255 / 78%) !important;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
}
.hamag-esif-banner img {
    padding: 1rem;
    max-width: 100%;
    height: auto;
    display: block;
}

.asw-menu {
    font-family: 'Inter';
    position: fixed;
    right: 20px;
    top: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px #00000080;
    opacity: 1;
    transition: .3s;
    z-index: 500000;
    overflow: hidden;
    background: #f9f9f9;
    width: 500px;
    line-height: 1;
    font-size: 16px;
    letter-spacing: 0.015em;
    height: calc(100% - 40px - 75px);
    color: #000 ;
}

.asw-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 18px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #dedede;
    color: #000;
}

.asw-menu-header > div {
    display: flex;
}

.asw-menu-header div[role="button"] {
    padding: 12px;
    cursor: pointer;
    color: #000;
}

.asw-menu-header div[role="button"]:hover {
    opacity: 0.8;
    color: #000;
}

.asw-card {
    margin: 0 15px 30px;
}

.asw-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.asw-items.content {
    background: transparent !important;
}

.asw-btn {
    aspect-ratio: 6 / 5;
    border-radius: 4px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #333;
    font-size: 16px !important;
    background: #fff;
    border: 1px solid #dedede;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.4;
}

.asw-btn .asw-translate {
    font-size: 15px !important;
}

.asw-btn .material-icons {
    margin-bottom: 16px;
}

.asw-btn:hover {
    border-color: #419D4A;
}

.asw-btn.asw-selected {
    background: #419D4A;
    color: white;
    border-color: #419D4A;
}

.asw-menu-content {
    overflow-y: scroll;
    max-height: calc(100% - 80px);
    color: #333;
    padding: 15px 0;
}

.asw-widget,
.asw-menu {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.asw-widget *,
.asw-menu * {
    box-sizing: border-box;
}

.asw-menu-btn {
    position: fixed;
    z-index: 500000;
    right: 20px;
    bottom: 20px;
    background: #419D4A ;
    box-shadow: 0 5px 15px 0 rgb(37 44 97 / 15%), 0 2px 4px 0 rgb(93 100 148 / 20%);
    transition: .3s;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    width: 54px;
    height: 54px;
    display: flex;
    cursor: pointer;
    border: 4px solid white ;
    outline: 4px solid #419D4A;
    text-decoration: none;
}

.asw-menu-btn:hover {
    transform: scale(1.1);
}
.material-icons.md-36.white { font-size: 36px; color: #f9f9f9; }

@font-face {
        font-family: 'OpenDyslexic3';
        src: url("https://website-widgets.pages.dev/fonts/OpenDyslexic3-Regular.woff") format("woff"), url("https://website-widgets.pages.dev/fonts/OpenDyslexic3-Regular.ttf") format("truetype");
    }

@media only screen and (max-width: 560px) {
    .asw-menu-btn {
        width: 38px;
        height: 38px;
    }

    .asw-menu-btn svg {
        width: 24px;
        height: 24px;
        min-height: 24px;
        min-width: 24px;
        max-width: 24px;
        max-height: 24px;
    }
}

@media only screen and (max-width: 560px) {
    .asw-menu {
        width: calc(100% - 20px);
        left: 10px;
    }
}

@media only screen and (max-width: 420px) {
    .asw-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .asw-menu {
        width: calc(100% - 20px);
        left: 10px;
    }
}