@font-face{
    font-family: 'Poppins', sans-serif;
    src: url(https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap);
    font-weight: normal;
    font-style: normal;
}

body {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

img {
    image-rendering: auto;
}

html {
    scroll-behavior: smooth !important;
}

a {
    text-decoration: none;
    color:black;
}

.canvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    /**background: url(../assets/imgs/mable.webp) no-repeat center center fixed;**/
    min-width: 100%;
    min-height: 100%;
    -webkit-filter: blur(7px);
    -o-filter: blur(7px);
    filter: blur(7px);
    z-index: -100;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

div.container {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    height: auto;
    width: auto;
    text-align: center;
    margin: auto 10px;
}

@media screen and (max-width:950px) {
    div.banner {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
    
}

@media screen and (min-width:950px) {
    div.banner {
        margin: auto;
        width: 860px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

@media screen and (max-width:480px) {
    div.banner img {
        vertical-align: middle;
        height: 80%;
        width: 500px;
    }
}

button.menuButton {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    opacity: 50%;
    color: white;
    outline: none;
    border: 1px solid black;
    border-radius: 5px;
    margin: 5px;
    width: 60%;
    display: inline-block;
    background-color: black;
    height: 40px;
}

@media screen and (max-width:950px) {
    button.menuButton2 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: bold;
        color: black;
        outline: none;
        border: 1px solid black;
        border-radius: 5px;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 70%;
        display: inline-block;
        background-color: #ffffff;
        height: 40px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

@media screen and (min-width:950px) {
    button.menuButton2 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: bold;
        color: black;
        outline: none;
        border: 1px solid black;
        border-radius: 5px;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 360px;
        display: inline-block;
        background-color: #ffffff;
        height: 40px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

button.menuButton2:hover {
    transform: scaleY(1.1);
    transform: scaleX(1.03);
    transition-duration: 400ms;
}

button.menuButton2:active {
    transform: scale(0.98);
    transition-duration: 50ms;
}

button.menuButton:hover {
    transform: scale(1.03);
    transition: 200ms ease-in-out;
}

button.menuButton:active {
    transform: scale(0.98);
    transition-duration: 100ms;
}

img.grid {
    width: auto;
    height: 500px;
    text-align: center;
    margin: auto;
}

div.orderNum {
    margin-top: 25px;
    font-size: 20px;
    font-weight: normal;
}

#sidebarMenu {
    height: 10%;
    opacity: 100%;
    position: absolute;
    overflow: none;
    width: 90%;
    z-index: 100;
    transform: translateY(-271px) scale(0.5);
    transition: transform 200ms ease-in-out;
    left: -7%;
    /*change here related your menu height*/
}

.main-content-wrapper a {
    width: 70%;
    height: 40px;
    display: block;
    background: #ffffff;
    text-align: center;
    padding-top: 15px;
    border: 1px solid black;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    margin: 5px 5px 5px auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.main-content-wrapper a:hover {
    transform: scaleY(1.1);
    transform: scaleX(1.02);
    transition-duration: 400ms;
    transition: ease-in-out;
}

.main-content-wrapper a:active {
    transform: scaleY(0.87);
    transform: scaleX(0.95);
    transition-duration: 400ms;
}

#sidebarMenu::-webkit-scrollbar {
    width: 12px;
}

#sidebarMenu::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

#sidebarMenu::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background: #0000002e;
    height: 50px;
}

.sidebarMenuInner {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

input[type="checkbox"]:checked~#sidebarMenu {
    transform: scale(1);
    transform: translatey(0);
    top: 35px;
    left: -7%;
    animation: fadeIn 0.5s;
    /*change here related your top menu height*/
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

input[type=checkbox] {
    transition: all 0.5s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 22px;
    width: 22px;
    left: 35px;
    top: 20px;
    display: none
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: black;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

@media screen and (max-width: 950px) {
    .sidebarIconToggle {
        display: block;
    }
}

@media screen and (max-width: 950px) {
    table {
        padding-top: 10px;
        margin: auto;
        width: 85%;
    }
}

@media screen and (min-width: 950px) {
    table {
        padding-top: 10px;
        margin: auto;
        width: 50%;
    }
}

td {
    border: 1px solid black;
}

td.col1 {
    text-align: right;
}

td.col2 {
    text-align: justify;
}

td.col3 {
    text-align: end;
}

@media screen and (max-width:950px) {
    div.radovi {
        height: fit-content;
        width: 99%;
        display: inline-flexbox;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

@media screen and (min-width:950px) {
    div.radovi {
        height: fit-content;
        padding: 20px;
        margin: auto;
        width: 860px;
        display: flex;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}



@media screen and (max-width:950px) {
    img.dogs1 {
        display: inline-block;
        width: 100%;
        height: 50%;
        max-width: 500px;
        min-height: 300px;
        max-height: 300px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        animation: fade 3s;
        margin: auto;
    }
}

@media screen and (min-width:950px) {
    img.dogs1 {
        display: inline-block;
        width: max-content;
        max-width: 500px;
        min-width: 400px;
        height: 390px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        animation: fade 3s;
        margin-top: 20%;
    }
}

@keyframes fade {
    0%,
    100% {
        opacity: 0;
    }
    20%,
    30%,
    40%,
    50%,
    60%,
    70%,
    80% {
        opacity: 1;
    }
}

@media screen and (max-width:950px) {
    img.dogs2 {
        display: inline-block;
        width: 100%;
        height: 50%;
        max-width: 500px;
        min-height: 300px;
        max-height: 300px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        animation: fade 4s;
        margin: auto;
    }
}

@media screen and (min-width:950px) {
    img.dogs2 {
        display: inline-block;
        width: max-content;
        max-width: 500px;
        min-width: 400px;
        height: 390px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        animation: fade 4s;
    }
}

@keyframes fade {
    0%,
    100% {
        opacity: 0;
    }
    20%,
    30%,
    40%,
    50%,
    60%,
    70%,
    80% {
        opacity: 1;
    }
}

@media screen and (max-width:950px) {
    img.dogs3 {
        display: inline-block;
        width: 100%;
        height: 50%;
        max-width: 500px;
        min-height: 300px;
        max-height: 300px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        animation: fade 3.5s;
        margin: auto;
    }
}

@media screen and (min-width:950px) {
    img.dogs3 {
        display: inline-block;
        width: max-content;
        max-width: 500px;
        min-width: 400px;
        height: 390px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        animation: fade 3.5s;
    }
}

@keyframes fade {
    0%,
    100% {
        opacity: 0;
    }
    20%,
    30%,
    40%,
    50%,
    60%,
    70%,
    80% {
        opacity: 1;
    }
}

@media screen and (max-width:950px) {
    div.onama {
        margin-top: 20px;
        height: fit-content;
        width: 99%;
        display: block;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

@media screen and (min-width:950px) {
    div.onama {
        height: fit-content;
        padding: 20px;
        margin: auto;
        width: 860px;
        display: flex;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

@media screen and (max-width:950px) {
    div.onama2 {
        margin-top: 20px;
        height: fit-content;
        width: 99%;
        display: block;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
    p.content {
        padding: 0px 10px 20px 10px;
    }

    p.naslov{
        white-space: nowrap;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin: auto;
        padding: 10px 0px 0px 0px;
    }
}

@media screen and (min-width:950px) {
    div.onama2 {
        height: fit-content;
        padding: 20px;
        margin:auto;
        width: 860px;
        display: flex;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
    p.content {
        padding: 0px 10px 20px 10px;
    }

    p.naslov{
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin: auto;
        padding: 20px;
    }
}


@media screen and (max-width:950px) {
    div.onama3 {
        align-items: center;
        text-align: center;
        margin-block: 20px;
        height: 625px;
        width: 99%;
        display: flex;
        overflow: hidden;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
    .instaembed{
        margin:auto;
        max-height: 625px;
        height: 100%;
        max-width: 450px;
        width: 100%;
    }

    #insta1{
        display: none;
    }
}

@media screen and (min-width:950px) {
    div.onama3 {
        text-align: center;
        align-items: center;
        height: max-content;
        padding: 20px;
        margin: auto;
        width: 860px;
        display: flex;
        gap: 5px;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }

    .instaembed {
        width: 100%;
        height: 750px;
    }
}


div.onama p {
    padding: 10px 10px 0px 10px;
}


@media screen and (max-width:950px) {
    div.kontakt {
        height: 100%;
        width: 99%;
        display: block;
        padding-bottom: 60px;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

@media screen and (min-width:950px) {
    div.kontakt {
        height: 100%;
        padding: 20px;
        margin: auto;
        width: 860px;
        display: block;
        overflow: clip;
        background-color: #ffffff;

        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

div.kontakt p {
    padding: 20px 10px 10px 10px;
}

.gmap_canvas {
    overflow: hidden;
    background: none!important;
    height: 550px;
    width: 100%;
    border-radius: 10px;
    -webkit-mask-image: -webkit-radial-gradient(#798589, #798589);
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.mapouter {
    position: relative;
    text-align: right;
    height: fit-content;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}

iframe {
    border-radius: 10px;
}
@media screen and (min-width:950px) {
    div.socials {
        z-index: unset;
        position: fixed;
        top: 94%;
        left: 2%;
        height: 40px;
        width: 168px;
        display: block;
        justify-content: left;
        align-items: left;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

@media screen and (max-width:950px) {
    div.socials {
        z-index: unset;
        position: fixed;
        top: 94%;
        left: 2%;
        height: 40px;
        width: 168px;
        display:block;
        float: left;
        justify-content: left;
        align-items: left;
        overflow: clip;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    }
}

img.insta {
    display: inline;
    padding: 7px 5px 7px;
    height: 25px;
    width: 25px;
}

img.face {
    display: inline-block;
    padding: 7px 5px 7px;
    height: 25px;
    width: 25px;
}

img.whatsapp {
    display: inline-block;
    padding: 7px 5px 7px;
    height: 25px;
    width: 25px;
}

img.tiktok {
    display: inline-block;
    padding-top: 7px;
    padding: 7px 5px 7px;
    height: 25px;
    width: 25px;
}