@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@media (min-width: 769px) {
    .hide_above_768 { display: none !important; }
}
@media (max-width: 768px) {
    .hide_below_768 { display: none !important; }
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}
html {
    scroll-behavior: smooth;
    --mb-main-color: #F26622;
}
:root{
    --cc-text: black;
    --cc-btn-primary-bg: var(--mb-main-color);
    --cc-btn-primary-hover-bg: var(--mb-main-color);
}

a {
    color: inherit;
    outline: none;
    text-decoration: none;
    display: block;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

* { box-sizing: border-box; }

.container {
    max-width: 1320px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

p { margin: 0; }
img { max-width: 100%; }


/* Header start */

.header_outside_wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: ease-in-out 0.3s;
}
.header_wrapper {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
}
.header_outside_wrapper.header-bg.header-about .header_wrapper {
    height: 130px;
}
.header_logo {
    max-width: 315px;
}
.header_navigation_wrapper {
    padding-left: 10%;
}
.header_navigation_wrapper ul {
    display: flex;
    gap: 50px;
}
.header_navigation_wrapper ul li a {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: white;
    position: relative;
    text-decoration: none;
    transition: ease-in-out 0.3s;
}
.header_navigation_wrapper ul li a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header_navigation_wrapper ul li a:hover::before {
    transform: scaleX(1);
}

div.header_language_wrapper {
    margin-left: auto;
}
div.header_language_wrapper ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
div.header_language_wrapper ul li a {
    width: 34px;
    height: 34px;
    border: 2px solid #C8D0D6;
    background: white;
    font-size: 16px;
    line-height: 19px;
    color: #707070;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.2s;
}
div.header_language_wrapper ul li.wpml-ls-current-language a {
    border: 2px solid var(--mb-main-color);
    background: var(--mb-main-color);
    color: white;
}
div.header_language_wrapper ul li a:hover {
    border: 2px solid var(--mb-main-color);
    background: var(--mb-main-color);
    color: white;
}
.header_language_wrapper .wpml-ls-legacy-list-horizontal {
    padding: 0;
    border: none;
}

.header-bg {
    background: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-bg .header_navigation_wrapper ul li a {
    color: black;
}
.header-bg .header_navigation_wrapper ul li a::before {
    background-color: black;
}
.header-bg label.hb_label span {
    background: black;
}
.header_logo img {
    height: 105px;
    width: 186px;
}
/* Header end */


.home_slider_block {
    width: 100%;
    height: 720px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.home_slider_text_part {
    padding-top: 244px;
    max-width: 482px;
}
.home_slider_text_part h1 {
    font-size: 66px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    line-height: 89px;
    margin: 0 0 40px 0;
    color: var(--mb-main-color);
    position: relative;
    left: -200px;
    opacity: 0;
}
.home_slider_text_part p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: white;
    position: relative;
    left: -300px;
    opacity: 0;
}
.home_slider_text_part p a {
    display: inline-block;
    font-weight: 600;
    color: var(--mb-main-color);
}
.home_slider_text_part p a:hover {
    text-decoration: underline;
}
.home_btn {
    padding: 15px 72px 15px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: black;
    position: relative;
    background: white;
    margin: 40px 0 0 0;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    bottom: -200px;
    opacity: 0;
}
.home_btn::after {
    content: url('/wp-content/uploads/2022/09/orange-arrow-down.svg');
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
.home_btn:hover::after {
    -webkit-animation-name: vert-hang;
    animation-name: vert-hang;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}
@keyframes vert-hang {
    0% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    10% {
        -webkit-transform: translateY(-60%);
        transform: translateY(-60%);
    }
    50% {
        -webkit-transform: translateY(-15%);
        transform: translateY(-15%);
    }
    100% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.home_slider_block .container {
    display: flex;
    position: relative;
}
.home_slider_image_part {
    padding: 145px 0 0 128px;
    position: relative;
    height: 669px;
    width: 624px;
}

.home_slider_nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    top: 50%;
    right: 0;
}
.home_slider_box {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    height: 26px;
}
.home_slider_box p {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: white;
    transition: ease-in-out 0.4s;
}
.home_slider_box div {
    width: 15px;
    height: 15px;
    border: 1px solid #707070;
    background-color: white;
    border-radius: 50%;
    transition: ease-in-out 0.4s;
}
.sb_active div {
    height: 26px;
    border-radius: 8px;
    border: 1px solid var(--mb-main-color);
    background-color: var(--mb-main-color);
}
.sb_active p {
    color: var(--mb-main-color);
}

.home_produkti_block {
    padding-top: 50px;
    overflow: hidden;
    position: relative;
    background-image: url('/wp-content/uploads/2022/09/mb-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.home_produkti_block h2 {
    font-size: 64px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    line-height: 77px;
    color: var(--mb-main-color);
    margin: 0 0 20px 0;
    text-align: center;
}
.home_produkti_block h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: black;
    margin: 0 0 22px 0;
    text-align: center;
}


.home_produkti_wrap {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 5px;
}
.home_produkti_upper.carousel {
    height: 173px;
    margin: 0;
    display: flex;
}
.product_category_box img {
    width: 80px;
    height: 80px;
}
.home_produkti_upper .product_category_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: 146.5px;
    max-width: 146.5px;
    height: 171px;
    padding: 20px 0 0 0;
}
.product_category_box p {
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    color: black;
    margin-top: auto;
    padding-bottom: 12px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    max-width: 94%;
}

.pcb_active {
    border-bottom: 4px solid var(--mb-main-color);
}
.pcb_active p {
    margin-bottom: -4px;
}
.product_category_box:hover:not(.pcb_active) p {
    color: var(--mb-main-color);
}

.home_produkti_lower > div {
    padding: 56px 0 72px 0;
}
.home_produkti_tab {
    height: 540px;
}
.home_produkti_row {
    padding: 0 84px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 84px 20px;
}
.home_produkti_row:nth-child(2) {
    padding-top: 84px;
}
@media (min-width: 1000px) {
    .home_produkti_tab .product_box:nth-child(4),
    .home_produkti_tab .product_box:nth-child(5),
    .home_produkti_tab .product_box:nth-child(6) {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
}


.product_box {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: default;
}
.product_box_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    color: black;
    margin: 0 0 12px 0;
}
.product_box_price {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: black;
}
.product_box_description {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    color: black;
    margin: 9px 0 0 0;
    max-width: 170px;
}
.product_box_text {
    width: 170px;
}
.product_box_image {
    width: 180px;
    height: 170px;
}
.product_box_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 1600px) {
    .product_box_image { flex-shrink: 0; }
}



.home_produkti_pagination {
    height: 151px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination_wrap {
    display: flex;
    gap: 2px;
}
.pagination_box {
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: ease-in-out 0.2s;
}
.pagination_box:hover {
    color: white;
    background: var(--mb-main-color);
}
.pagination_active {
    color: white;
    background: var(--mb-main-color);
}



.home_kafejnicas_block {
    padding: 50px 0;
    background: #F1EFE8;
    position: relative;
}

.home_kafejnicas_block .container {
    display: flex;
    gap: 20px;
    height: 532px;
}
.kafejnicas_left {
    background: white;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    max-width: 385px;
}
.kafejnicas_l_upper {
    height: 89px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E4E7EA;
}
.kafejnicas_l_upper h3 {
    font-size: 34px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    line-height: 41px;
    color: var(--mb-main-color);
    padding-left: 24px;
    margin: 0;
}
.kafejnicas_l_lower {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.kafejnicas_adress {
    font-weight: 500;
    line-height: 19px;
    color: black;
    transition: ease-in-out 0.2s;
    max-width: initial;
}
.kb_active .kafejnicas_adress {
    color: var(--mb-main-color);
}

.kafejnicas_box_right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    width: 106px;
}
.kafejnicas_light {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0AB739;
}
.kafejnicas_work_time {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: black;
}
.kafejnicas_box {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.kafejnicas_box:hover .kafejnicas_adress {
    color: var(--mb-main-color);
}

.kafejnicas_right {
    background: white;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.kafejnica_left_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 10px 24px 24px;
    height: 310px;
}
.kafejnica_info_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
/* .kafejnica_info_wrap:last-of-type {
    margin-top: auto;
} */
.kafejnica_left h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: black;
    margin: 0;
}
.kafejnica_info, .kafejnica_info_value {
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
}
.kafejnica_info {
    color: #8B8C8E;
}
.kafejnica_info_value {
    color: var(--mb-main-color);
    font-weight: 600;
}

.kafejnica_location {
    display: flex;
    gap: 37px;
}
.kafejnica_location img {
    display: block;
    height: auto;
}
.kafejnica_location a:nth-child(1) img {
    width: 101px;
}
.kafejnica_location a:nth-child(2) img {
    width: 109px;
}

.kafejnica_left_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kafejnica_left_image {
    height: 280px;
    width: 100%;
}
.kafejnica_left {
    width: 450px;
}
.kafejnica_right {
    width: 100%;
    max-width: 465px;
}
.kafejnica_right #map {
    width: 100%;
    height: 100%;
    position: absolute !important;
    max-width: 525px;
    z-index: 1000000;
}
.kafejnicas_right > div {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 915px;
    background: white;
}
.kb_closed .kafejnicas_adress, .kb_closed .kafejnicas_work_time {
    opacity: 0.5;
}
.kb_closed .kafejnicas_light {
    background: #b70a0a;
}


.home_jaunumu_subscribe {
    height: 170px;
    width: 100%;
    background: var(--mb-main-color);
    display: flex;
    align-items: center;
    position: relative;
}
.home_jaunumu_subscribe .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.js-1, .js-2 {
    color: white;
}
.js-1 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}
.js-2 {
    font-size: 44px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    line-height: 53px;
}

.jaunumu_subscribe_right {
    display: flex;
    gap: 10px;
}
.jaunumu_subscribe_right input {
    height: 50px;
    width: 272px;
    border-radius: 5px;
    background: white;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #909193;
    outline: none;
}
.jaunumu_subscribe_right .jaunumu-save {
    height: 50px;
    width: auto;
    border-radius: 5px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: white;
    background: black;
    border: none;
    outline: none;
    cursor: pointer;
    transition: ease-in-out 0.2s;
}
.jaunumu_subscribe_right .jaunumu-save::placeholder {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: white;
}
.jaunumu_subscribe_right .jaunumu-save:hover {
    background: rgba(0, 0, 0, 0.8);
}



.footer_wrapper {
    height: 517px;
    background: black;
    padding: 55px 0 0 0;
    position: relative;
}
.footer_wrapper .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.footer_contact_btn {
    border-radius: 5px;
    border: 1.5px solid #47484A;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #909193;
    padding: 16px 20px;
    margin: 50px 0;
    transition: 0.2s ease-in-out;
    width: fit-content;
}
.footer_contact_btn:hover {
    background: #47484A;
}
.footer_social_wrap {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.footer_social_wrap img {
    width: 24px;
    height: 24px;
    transition: 0.2s ease-in-out;
}
.footer_social_wrap img:hover {
    opacity: 0.7;
}

.footer_wrapper .footer_upper h6 {
    font-size: 34px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    line-height: 41px;
    color: white;
    margin: 0 0 30px 0;
}
.footer_wrapper .footer_upper p {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: white;
}

.footer_upper {
    display: flex;
}
.footer_column_1 {
    width: 100%;
    max-width: 270px;
}
.footer_column_2 {
    width: 100%;
    max-width: 386px;
}
.footer_column_3 {
    width: 100%;
    max-width: 325px;
}
.footer_column_4 {
    width: 100%;
    max-width: 335px;
    margin-left: auto;
}
.footer_contact_box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}
.footer_contact_box img {
    width: 24px;
    height: 24px;
}
.footer_contact_box p {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: white;
}
.footer_wrapper .footer_upper .fc4-1 {
    text-align: center;
    font-size: 12px;
}
.footer_wrapper .footer_upper .fc4-2 {
    text-align: center;
    margin-bottom: 8px;
    max-width: 335px;
    font-weight: 400;
    font-size: 10px;
    line-height: 17px;
}
.footer_column_4 img {
    background: white;
    margin: 0 auto;
    max-width: 335px;
    padding: 4px;
}

.footer_lower {
    height: 79px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.footer_lower p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: white;
}
.footer_lower p a {
    color: var(--mb-main-color);
    font-weight: 700;
    display: inline-block;
}
.footer_lower p a:hover {
    text-decoration: underline;
}
.footer_lower_t2 {
    text-align: right;
}
.footer_middle {
    display: flex;
    width: 100%;
}




.home_slider_image_part img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 496px;
    max-height: 525px;
}

.home_produkti_upper .carousel__dots {
    display: none;
}
.home_produkti_block .carousel__nav .carousel__button.is-prev {
    left: -50px;
}
.home_produkti_block .carousel__nav .carousel__button.is-next {
    right: -50px;
}

label.hb_label {
    display: flex;
    flex-direction: column;
    width: 35px;
    cursor: pointer;
    margin-left: auto;
}

label.hb_label span {
    background: white;
    border-radius:15px;
    height: 3px;
    margin: 5px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}


.hb_label span:nth-of-type(1){
    width:100%;
}
.hb_label span:nth-of-type(2){
    width:100%;
}
.hb_label span:nth-of-type(3){
    width:100%;
}


.hb_label input[type="checkbox"]{
    display:none;
}


.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(1){
    width:50%;
    transform-origin:bottom;
    transform:rotatez(45deg) translate(7px,2px)
}
.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(2){
    width:100%;
    transform-origin:top;
    transform:rotatez(-45deg)
}
.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(3){
    transform-origin:bottom;
    width:50%;
    transform: translate(15px,-8px) rotatez(45deg);
}
.header_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 10000;
    padding: 115px 70px 100px 70px;
}

.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-right {
    0% {
        right: -1500px;
        opacity: 0;
    }
    100% {
        right: 0px;
        opacity: 1;
    }
  }
  @keyframes slide-in-right {
    0% {
      right: -1500px;
      opacity: 0;
    }
    100% {
      right: 0;
      opacity: 1;
    }
}


.slide-out-right {
	-webkit-animation: slide-out-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-out-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-out-right {
    0% {
        right: 0px;
        opacity: 1;
    }
    100% {
        right: -1500px;
        opacity: 0;
    }
  }
  @keyframes slide-out-right {
    0% {
        right: 0;
        opacity: 1;
      }
    100% {
      right: -1500px;
      opacity: 0;
    }
}

@media (min-width: 1200px) {
    #site-navigation { display: none; }
}
#site-navigation {
    opacity: 0;
}
nav.main-navigation.header_menu.hidden {
    z-index: 2;
    display: none;
}

.mobile_header_close {
    position: absolute;
    top: 20px;
    right: 45px;
    cursor: pointer;
}
.mobile_header_close img {
    width: 30px;
    height: 30px;
}
.mobile_header_navigation_wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}
.mobile_header_navigation_wrapper ul li a {
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

.kafejnicas_right #map {
    position: absolute;
    top: 0;
    left: initial;
    right: 0;
    width: 465px;
    height: 532px;
}
.error-404-title, .error-404-text {
    text-align: center;
}
.error-404-title {
    font-size: 21px;
    line-height: 36px;
    margin: 200px 0 12px 0;
}
.error-404-text {
    font-size: 60px;
    font-weight: 600;
    display: block;
    margin-bottom: 30px;
    color: black;
}
.error-404-btn {
    background: var(--mb-main-color);
    height: 46px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    font-size: 18px;
    color: white;
    transition: ease-in-out 0.18s;
    margin: 0 auto;
    text-decoration: none;
    margin-bottom: 150px;
}
.error-404-btn:hover {
    background: #cc561b;
}
.jaunumu-success p {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: white;
}
.page-main {
    margin: 130px 0 70px 0;
}
.par_mums_wrapper p {
    font-size: 17px;
    line-height: 26px;
    max-width: 800px;
    margin: 12px 0;
}
.grid:after {
    content: '';
    display: block;
    clear: both;
}
.grid-sizer,
.grid-item {
    width: 32.333%;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 10px;
}
.grid-item {
    float: left;
}
.grid-item img {
    display: block;
    max-width: 100%;
    width: 100%;
}
.grid-item img {
    cursor: pointer;
}
.gallery_title {
    padding-top: 100px;
    font-size: 48px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: var(--mb-main-color);
    margin: 0 0 20px 0;
}
.par_mums_banner {
    margin-top: 130px;
    height: 195px;
    width: 100%;
    background-position: center;
    background-size: cover;
}
.par_mums_banner .container {
    position: relative;
    height: 100%;
}
.page-main.about-main {
    margin: 0;
}
.par_mums_title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0;
    color: white;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-size: 48px;
}
.par_mums_b {
    display: flex;
    gap: 160px;
    flex-wrap: wrap;
}
.par_mums_b_item {
    width: 100%;
    max-width: 320px;
    position: relative;
}
.par_mums_b_item:first-child {
    max-width: 360px;
}
.par_mums_block {
    background: #f1efe8;
    padding: 65px 0 110px 0;
}
.par_mums_block h1 {
    font-size: 48px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    color: var(--mb-main-color);
    margin: 0 0 55px 0;
}
.par_mums_block h3 {
    font-size: 30px;
    line-height: 32px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    color: var(--mb-main-color);
    margin: -8px 0 24px 0;
}
.par_mums_block p {
    font-size: 17px;
    font-weight: 600;
    line-height: 30px;
    color: black;
}
.par_mums_b_item img {
    position: absolute;
    left: -9px;
    top: 1px;
    transform: translateX(-50%)translateY(-50%);
}
.page_part {
    background-image: url('/wp-content/uploads/2022/09/mb-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header-offset {
    position: absolute;
    top: -190px;
    width: 0;
    height: 0;
}

.gallery {
    margin-bottom: 0;
    padding-bottom: 124px;
}
.page-info-bar {
    background-color: var(--mb-main-color);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 130px;
    z-index: 100;
    transition: ease-in-out 0.2s;
    padding: 0 20px;
}
.page-info-bar p {
    color: white;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    transition: ease-in-out 0.2s;
}
.page-info-bar.info-bar-expanded {
    height: auto;
}
.page-info-bar.info-bar-expanded p {
    max-width: 1100px;
}
html[lang="de-DE"] .page-info-bar:not(.info-bar-expanded) {
    height: auto;
}

@media (min-width: 768px) {
    .home_produkti_wrap .carousel__viewport::before,
    .home_produkti_wrap .carousel__viewport::after {
        content: '';
        position: absolute;
        height: 171px;
        width: 146.5px;
        background: white;
        opacity: 0.5;
        top: 0;
        left: 0;
        z-index: 10;
        box-shadow: 0 0 12px 12px white;
        pointer-events: none;
    }
    .home_produkti_wrap .carousel__viewport::after {
        left: initial;
        right: 0;
    }
}

.footer_logo {
    width: 192px;
    height: 262px;
}

.kafejnica_special_1 {
    color: var(--mb-main-color);
    font-size: 18px;
    font-weight: 600;
}
.p_sm_text {
    font-size: 12px;
    display: inline;
}
.flt1 {
    text-align: center;
}

@media (min-width: 1300px) {
    html[lang="ru-RU"] .home_slider_text_part h1 {
        font-size: 60px;
        line-height: 78px;
    }
    html[lang="de-DE"] .home_slider_text_part h1 {
        font-size: 70px;
        line-height: 86px;
    }
}

@media (min-width: 1200px) {
    .product_box:nth-child(1),
    .product_box:nth-child(2),
    .product_box:nth-child(3) {
        margin-left: auto;
    }
    .product_box:nth-child(4),
    .product_box:nth-child(5),
    .product_box:nth-child(6) {
        margin-right: auto;
    }
    .product_box_text {
        width: auto;
        max-width: 240px;
    }
    .product_box_image img[data-src="/wp-content/uploads/2022/09/produkts-2.png"] {
        background-color: red;
    }
    .product_box {
        gap: 5px;
    }
}

.page-main-content {
    padding: 60px 0 40px 0;
}
.page-main-content p {
    margin: 1rem 0;
    line-height: 25px;
}
.page-main-content a {
    display: inline-block;
}
.page-main-content ul {
    list-style: initial;
    padding: 0 0 0 25px;
}

.jaunumu_subscribe_right .jaunumu_checkbox {
    width: auto;
    height: auto;
    opacity: 0;
    position: absolute;
    left: 4px;
}
.jaunumi_check_wrap {
    display: flex;
    align-items: center;
    height: 43px;
    gap: 10px;
    position: relative;
}
.jaunumi_check_wrap a {
    display: inline-block;
    text-decoration: underline;
}
.jaunumi_check_wrap p {
    font-weight: 500;
    line-height: 21px;
    color: white;
}
.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #eee;
    position: relative;
}
.jaunumi_check_wrap .jaunumu_checkbox:checked ~ label .checkmark {
    background-color: #2196F3;
}
.jaunumi_check_wrap .jaunumu_checkbox:checked ~ label .checkmark:after {
    display: block;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.jaunumi_check_wrap label:hover .checkmark {
    background-color: #ccc;
}
.jaunumi_check_wrap label {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1200px) {
    .header_logo_mobile { display: none; }
}
@media (max-width: 1199px) {
    .header-bg .header_logo_desktop { display: none; }
    .header_outside_wrapper:not(.header-bg) .header_logo_mobile {
        display: none;
    }
}




.home_kafejnicas_block .container {
    height: auto;
    min-height: 560px;
}
.kafejnicas_left, .kafejnicas_right {
    height: auto;
}
.kafejnica_left_content {
    height: auto;
}




.kafejnica_ad_text p {
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    color: #8B8C8E;
    margin: 0 0 14px 0;
}
.kafejnica_ad_text p strong,
.kafejnica_ad_text p b {
    color: var(--mb-main-color);
    font-weight: 600;
}
.kafejnica_ad_text h6 {
    margin: 10px 0 10px 0;
}
.kafejnica_ad_text h6 {
    font-weight: 700;
}


.kafejnica_left_content td {
    color: #8B8C8E;
    font-size: 17px;
    line-height: 1.3em;
    font-weight: 500;
    padding: 2px 5px;
}
.kafejnica_left_content td strong {
    color: var(--mb-main-color);
    font-weight: 600;
}
@media (max-width: 500px) {
    .kafejnica_left_content td {
        font-size: 15px;
    }
}



#popup-content,
#popup-content--clone {
    border-radius: 10px;
    max-width: 770px;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: initial;
    flex-direction: column;
    background: white;
}

.popup_upper {
    height: 352px;
    width: 100%;
    background: #F26522;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    padding: 96px 58px 20px 58px;
    position: relative;
}
.popup_element_1 {
    display: block;
    position: absolute;
    bottom: 0;
    right: 38px;
}
.popup_element_2 {
    left: 25px;
    top: -38px;
    position: absolute;
}

.popup_upper p:nth-child(1) {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    max-width: 250px;
    position: relative;
    z-index: 6;
}
.popup_upper p:nth-child(2) {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    z-index: 6;
}

.popup_lower {
    padding: 54px 56px 12px 56px;
    width: 100%;
}
.popup_lower table {
    width: 100%;
    border-spacing: 0;
    margin: 0;
    border: initial;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.popup_lower table thead th {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2em;
    text-align: center;
    color: black;
}
@media (min-width: 1200px) {
    .popup_lower table thead th{
        padding-left: 28px;
        padding-right: 28px;
    }
}
.popup_lower table thead tr th {
    padding-bottom: 20px;
    border-bottom: 1px solid #C9C9C9;
}
.popup_lower table tbody tr:nth-child(1) td {
    padding-top: 20px;
}
.popup_lower table tbody tr {
    font-size: 16px;
    text-align: center;
    color: black;
}
.popup_lower table tbody td:nth-child(1) {
    font-size: 18px;
    font-weight: 600;
}


@media (max-width: 768px) {
    .popup_upper {
        padding: 52px 25px 16px 25px;
        height: auto;
    }
    .popup_upper p:nth-child(1) {
        font-size: 22px;
        margin: 0 0 18px 0;
        max-width: 165px;
    }
    .popup_upper p:nth-child(2) {
        font-size: 18px;
    }
    .popup_element_1 {
        width: 190px;
        height: 174px;
        right: 16px;
        z-index: 1;
    }
    .popup_element_2 {
        width: 94px;
        height: 47px;
        left: 25px;
        top: -17px;
    }
}


.pmt_content {
    display: flex;
    flex-direction: column;
}

.pmt_row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    margin: 0;
}
.pmt_row:not(:last-of-type) {
    border-bottom: 1px solid #C9C9C9;
}
.pmt_row p {
    font-size: 16px;
    color: black;
    margin: 0;
}
.pmt_row p:nth-child(1) {
    font-weight: 600;
}
.pmt_row p:nth-child(2) {
    text-align: right;
}


.pmt_navigation {
    display: flex;
    gap: 10px;
    padding: 20px 0 32px 0;
    margin: 20px 0 0 0;

    overflow: auto;
    width: calc(100% + 50px);
    position: relative;
    left: -25px;
    padding-left: 25px;
    padding-right: 25px;
}
.pmt_navigation button {
    background: #EFEFEF;
    border-radius: 23px;
    padding: 12px 16px;
    margin: 0;
    border: initial;
    flex-shrink: 0;

    font-family: inherit;
    font-weight: 500;
    font-size: 15px;
    color: black;
    line-height: 1.25em;
}
.pmt_navigation button.active {
    background: #F26522;
    font-weight: 700;
    color: white;
}



.pmt_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    margin: 0 0 44px 0;
}
.pmt_controls .pmt_name {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.pmt_prev,
.pmt_next {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: initial;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center;
    outline: 2px solid transparent;
    border: initial;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.25s;
}
.pmt_prev {
    background-image: url('../../images/mb_2024_ligo_left_arrow.svg');
}
.pmt_next {
    background-image: url('../../images/mb_2024_ligo_right_arrow.svg');
}
.pmt_prev:focus-visible,
.pmt_next:focus-visible {
    outline: 2px solid black;
}

.pmt_prev.disabled,
.pmt_next.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}


@media (max-width: 768px) {
    .popup_lower {
        padding: 38px 25px 0 25px;
    }
}


#view_holiday_worktime_btn {
    background: var(--mb-main-color);
    border: initial;
    border-radius: 5px;
    padding: 8px 14px;
    cursor: pointer;
    width: fit-content;
    color: white;
    font-weight: 500;
    font-family: inherit;

    display: flex;
    align-items: center;
    gap: 6px;
}
#view_holiday_worktime_btn img {
    display: block;
    width: 20px;
    height: 20px;
    filter: invert(1);
}
@media (max-width: 768px) {
    #view_holiday_worktime_btn {
        font-size: 14px;
    }
    .home_kafejnicas_block .container {
        min-height: initial !important;
    }
}

.kafejnica_left .kafejnica_holiday_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--mb-main-color);
    margin: 8px 0 0 0;
}






.tortes_tab_left {
    width: 100%;
    max-width: 910px;
    display: grid;
    grid-template-columns: 225px 210px 365px;
    gap: 32px 40px;
}

.tortes_custom_tab.home_produkti_tab {
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.tortes_custom_tab.home_produkti_tab .product_box {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: initial;
    margin: 0;
    width: 100%;
}
.tortes_custom_tab.home_produkti_tab .product_box .product_box_title {
    display: flex;
    align-items: baseline;
    gap: 1px 16px;
    margin: 0 0 5px 0;
    flex-wrap: wrap;
}
.tortes_custom_tab.home_produkti_tab .product_box .product_box_title span {
    display: flex;
    align-items: center;
    height: 25px;
    border-radius: 13px;
    background: #F26522;
    padding: 5px 10px;
    margin: 0;

    font-weight: 600;
    font-size: 12px;
    color: white;
}

.tortes_custom_tab.home_produkti_tab .product_box .product_box_price {
    font-weight: 500;
    font-size: 15px;
    margin: 0 0 10px 0;
}

.tortes_custom_tab.home_produkti_tab .product_box .product_box_description {
    margin: 0;
}


.tortes_tab_right {
    width: 100%;
    max-width: 406px;
    background: #F9F9F9;
    border-radius: 10px;
    padding: 46px 42px 50px 42px;
    box-shadow: rgba(0, 0, 0, 0.1) 6px 10px 15px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.tortes_tab_right::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -72px;
    right: -10px;
    width: 250px;
    height: 284px;
    background-image: url('../../images/tortes_bg_element.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.tortes_tab_right p {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: black;
}
.tortes_text_1, .tortes_text_2, .tortes_text_3 {
    margin: 0 0 16px 0;
    font-size: 16px;
}
p.tortes_text_1 {
    font-weight: 600;
    font-size: 18px;
    color: #F26522;
}
.tortes_text_3 {
    font-weight: 600;
}
.tortes_text_4 {
    font-size: 18px;
}



@media (max-width: 1400px) {
    .tortes_custom_tab.home_produkti_tab {
        flex-direction: column;
        gap: 30px;
    }
    .tortes_tab_left {
        max-width: initial;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1000px) {
    .tortes_tab_left {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .tortes_tab_left {
        gap: 0;
    }
    .tortes_custom_tab.home_produkti_tab .product_box {
        padding: 22px 2px;
    }
    .tortes_custom_tab.home_produkti_tab .product_box:not(:last-child) {
        border-bottom: 1px solid #e1e1e1;
    }
    .tortes_tab_right {
        max-width: initial;
        padding: 52px 30px;
    }
}
@media (max-width: 600px) {
    .tortes_tab_left {
        grid-template-columns: repeat(1, 1fr);
    }
}



.page_video_popup {
    position: fixed;
    z-index: 110;
    right: 40px;
    bottom: 40px;
    width: 390px;
    height: auto;
}
#page_video_container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

#page_video_popup_close {
    border: initial;
    border-radius: 50%;
    background: white;
    padding: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    background-image: url('../../images/x-solid.svg');
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;

    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}
@media (max-width: 1400px) {
    .page_video_popup {
        width: 250px;
    }
}
@media (max-width: 320px) {
    .page_video_popup {
        display: none;
    }
}



#page_video_prev,
#page_video_next {
    width: 38px;
    height: 38px;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    border: initial;
    display: block;
    background: initial;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
}
#page_video_prev {
    background-image: url('../../images/chevron-left.svg');
    left: -40px;
    right: initial;
}
#page_video_next {
    background-image: url('../../images/chevron-right.svg');
    left: initial;
    right: -40px;
}
