@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

body,
p,
h1,
h2,
h3,
h4,
h5,
div,
button,
.btn,
.form-control,
input,
select,
.selectpicker,
span {
    font-family: 'DM Sans', 'Sans-Serif', 'Arial' !important;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.loader-body {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
}

.loader-body img {
    width: 50px;
    z-index: 999999;
}

.bg-bb {
    background-color: var(--bs-bb) !important;
}

.text-bold {
    font-weight: 700 !important;
}

.bg-darkblue {
    background-color: #37517e !important;
}

:root {
    --bs-bb: #bf5e15 !important;
    --bs-bb-rgb: 191, 94, 21 !important;
}

.btn-bb {
    color: #fff;
    background-color: var(--bs-bb) !important;
}

.btn-outline-bb {
    color: var(--bs-bb);
    background-color: #fff;
    border: 1px solid var(--bs-bb);
}

.btn-outline-bb:hover {
    color: #fff;
    background-color: var(--bs-bb);
}

.pointer {
    cursor: pointer;
}

.radius-5 {
    border-radius: 5px !important;
}

a {
    color: var(--bs-bb) !important;
}

body {
    background: url('/assets/img/background2.jpg');
    background-size: 450px;
}

.container, .container-fluid {
    background-color: #fdfdfd;
}

.nav-left {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--bs-bb);
    max-width: 200px;
    z-index: 99;
    align-content: flex-start;

}

.nav-left.active {
    -webkit-transition: width 0.2s ease-in-out;
    -moz-transition: width 0.2s ease-in-out;
    -o-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
    width: 200px;
}

.nav-left-item {
    height: 70px;
}

.form-control.is-searching {
    border-color: #ddd;
    padding-right: calc(1.49em + 1rem);
    background-image: url("../img/spinners/spinner1.svg");
    background-repeat: no-repeat;
    background-position: right calc(0.3725em + 0.25rem) center;
    background-size: 3rem 3rem;
}

.recipe-block:hover {
    background-color: #000;
    cursor: pointer;
}

.recipe-block>.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.recipe-block {
    position: relative;
}

.recipe-block:hover .image {
    opacity: 0.3;
}

.recipe-block:hover .middle {
    opacity: 1;
}

.recipe-block .text {
    background-color: var(--bs-bb);
    color: white;
    font-size: 16px;
    padding: 16px 32px;
}

.category-block:hover {
    background-color: #ddd;
    transform: scale(1.05);
    transition: 0.1s ease;
    cursor: pointer;
}

.recipe-ingredients li,
.recipe-method li {
    line-height: 2 !important;
}


/* -xs- */

@media only screen and (max-width: 768px) {
    .wh {
        height: 100vh;
        min-height: calc(100vh - 200px);
        position: relative;
    }

    .center {
        height: calc(100vh - 100px);
        position: relative;
        overflow: auto;
    }
}


/* -sm- */

@media only screen and (max-width: 992px) {
    .wh {
        height: 100vh;
        min-height: calc(100vh - 130px);
    }

    .center {
        height: calc(100vh - 160px);
        position: relative;
        overflow: auto;
    }
}


/* -md- */

@media only screen and (min-width: 993px) {
    .wh {
        height: 100vh;
        min-height: calc(100vh - 130px);
    }

    .center {
        height: calc(100vh - 160px);
        position: relative;
        overflow: auto;
    }
}


/* -lg- */

@media only screen and (min-width: 1400px) {
    .wh {
        min-height: calc(100vh - 130px);
    }
}