.content {
    max-width: 1200px;
    margin: 0 auto;
	padding: 15px;
}

.header .flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.information a {
    text-decoration: none;
}
a#phone{
    display: none;
}
.papashon_extra_menu_class ul, .kids-page-navigation ul {
    list-style-type: none;
    display: flex;
}

.papashon_head_establishment_class ul {
    list-style-type: none;
    display: block;
}

.papashon_extra_menu_class a {
    padding: 0 1rem;
    text-decoration: none;
    color: var(--white-color);
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.papashon_head_establishment_class a {
    text-decoration: none;
    font-family: Arial, sans-serif;
    color: var(--orange-color);
}

.papashon_extra_menu_class li ul {
    display: none;
}

.papashon_extra_menu_class li:hover ul {
    display: block;
    position: absolute;
    z-index: 1;
    margin: 0;
    background-color: var(--orange-color);
    padding: 0 1px;
}

#menu__toggle {
    opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: relative;
  top: 0px;
  left: 0px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
  background-color: #E6BA90;
  padding: 12px;
  border-radius: 50px;
}

.menu__btn > span, .menu__btn > span::before, .menu__btn > span::after {
  display: block;
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: var(--white-color);
  transition-duration: .25s;
}

.menu__btn > span::before {
    content: '';
    top: -8px;
}

.menu__btn > span::after {
    content: '';
    top: 8px;
}


.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    background-color: var(--white-color);
    height: 100%;
    width: 300px;
    z-index: 1001;
    margin: 0;
    padding: 80px 0;

    list-style: none;

    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);

    transition-duration: .25s;
}

.papashon_head_establishment_class .menu-item a {
    display: block;
    padding: 12px 24px;


    font-family: 'Roboto', sans-serif;

    text-decoration: none;

    transition-duration: .25s;
}

.menu__box .menu-item:hover {
    background-color: var(--white-color);
}

/*.snip1168 {*/
/*    text-align: center;*/
/*}*/
/*.snip1168 * {*/
/*    box-sizing: border-box;*/
/*}*/
/*.snip1168 li {*/
/*    display: inline-block;*/
/*    list-style: outside none none;*/
/*    margin: 0 1.5em;*/
/*    padding: 0;*/
/*}*/
.snip1168 a {
    /*    padding: 0.5em 0;*/
    position: relative;
    /*line-height: 2rem;*/
    /*    letter-spacing: 1px;*/
    /*    text-decoration: none;*/
}

.snip1168 a:before,
.snip1168 a:after {
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.snip1168 a:before {
    bottom: -10px;
    display: block;
    height: 2px;
    width: 0%;
    content: "";
    background-color: var(--white-color);
}

.snip1168 a:after {
    left: 0;
    top: 0;
    /*padding: 0.5em 0;*/
    position: absolute;
    content: attr(data-hover);
    color: #ffffff;
    white-space: nowrap;
    max-width: 0%;
    overflow: hidden;
}

.snip1168 a:hover:before,
.snip1168 .current a:before ,.active a:before{
    opacity: 1;
    width: 100%;
}

.snip1168 a:hover:after,
.snip1168 .current a:after {
    max-width: 100%;
}

.pll-parent-menu-item a:before,
.pll-parent-menu-item a::after {
    height: 0px;
}
.information {
    margin-top: 0px;
    display: inline-flex;
    gap: 4px;
}
button.book-event {
    position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: linear-gradient(135deg, #A48AD4, #8CB8E8, #99C3DF, #E8ACC8, #E6BA90);
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 7px 7px;
}

button.book-event :after {
    content: " ";
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #A48AD4, #8CB8E8, #B5D8F0, #F2C1D8, #FAD4B0);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
    z-index: -1;
}

button.book-event :hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

button.book-event span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 4px 8px;
    color: var(--white-color);
    font-size: 17px;
    font-weight: 400;
    /*letter-spacing: 0.2em;*/
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

button.book-event:hover span {
    color: var(--white-color) !important;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.kids-page-navigation {
    display: none;
}

.kids-page-template .kids-page-navigation.show {
    width: 100%;
    display: block;
    top: 78px;
    /*top: 0px;*/
    position: fixed;
    left: 0;
    /*background: var(--orange-color);*/
    background: var(--mulen-ruge-color);
    z-index: 1;
}

.kids-page-navigation ul {
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: flex-start;
    padding: 1rem 0;
}

.kids-page-navigation a {
    text-decoration: none;
    color: var(--white-color);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.kids-page-navigation a span {
    padding: 0 5px;
}

/* Icon 2 */
#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 40px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
    display: block;
    position: absolute;
    height: 9px;
    width: 100%;
    background: var(--mulen-ruge-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon2 {
    display: none;
}

#nav-icon2 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: var(--mulen-ruge-color);
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 4px 4px 0;
}

#nav-icon2 span:nth-child(odd) {
    left: 0px;
    border-radius: 4px 0 0 4px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
    top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
    top: 12px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
    top: 24px;
}

#nav-icon2.open{
	position: fixed;
	right: 20px;
}


#nav-icon2.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
    left: 3px;
    top: 6px;
}

#nav-icon2.open span:nth-child(2) {
    left: calc(50% - 3px);
    top: 6px;
}

#nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
    left: 3px;
    top: 20px;
}

#nav-icon2.open span:nth-child(6) {
    left: calc(50% - 3px);
    top: 20px;
}

.close {
    display: none;
    /*position: absolute;*/
    top: 1rem;
    right: 1rem;
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
}
.flex.mobile-menu  .information {
    display: none;
}
.mobile-show-phone {display: none}
/*MOBILE VERSION*/
@media (max-width: 768px) {
    .mobile-show-phone {display: block;        padding-top: 6px;}
 .flex.mobile-menu .information {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15px;
    left: 70px;
  }
    a#phone {
        margin-top: -12px;display: block;
    }
    #menu__toggle, .flex.mobile-menu {
        display: none;
    }

    .content.flex a {
        margin: 0;
        font-size: 1rem;
        line-height: 1.5rem;
		margin-left: 5px;
		margin-right: 5px;
    }

    #nav-icon2 {
        /*margin: 1rem auto;*/
		z-index: 999;
		margin-top: 0;
    margin-right: 0;
    /*background-color: #c50d0d73;*/
    }

 .flex.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    background: #2b304f;
    padding-top: 70px;
    padding-bottom: 70px;
  }

    .papashon_extra_menu_class ul, .kids-page-navigation ul {
        font-size: 0.86em;
        display: block;
        margin-left: 0rem;
        margin-top: 0rem;
        padding-left: 0rem;
    }

    .menu__btn {
        display: none;
    }

 .pll-parent-menu-item {
    position: absolute;
    left: -5px;
    top: 13px;
  }
  .pll-parent-menu-item img {
    width: 45px !important;
    height: 32px !important;
    border-radius: 5px;
  }
    .menu__box {
        display: block;
        position: relative;
        visibility: visible;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 0;
        margin: 0;
        padding: 0;
        list-style: none;
        background-color: #f3920000;
        box-shadow: none;
        transition-duration: .25s;
    }
    .papashon_head_establishment_class a {
        color: var(--white-color);
    }
    .papashon_head_establishment_class .menu-item a {
        padding: 0;
    }
    .papashon_head_establishment_class ul{
        padding-left: 0rem;
    }
.papashon_head_establishment_class ul li {
    padding: 10px 15px;
    border: none;
    margin: 2px auto;
    border-radius: 5px;
    background: #474e75;
  }
    .papashon_head_establishment_class ul li.current-menu-item {
        background: none !important;
    }
    button.book-event span{
        font-size: 1.4em;
    }
 button.book-event {
    margin-left: 1rem;
    position: absolute;
    bottom: 20px;
  }

    .kids-page-navigation a{
        flex-direction: column;
    }
    .kids-page-navigation ul {
        margin-top: 0;
        display: flex;
        margin-left: 0rem;
        padding-left: 0rem;
        justify-content: center;
    }
    .kids-page-navigation a {
        min-width: 4rem;
    }
    nav.kids-page-navigation .content svg {
        width: 35px !important;
        height: 35px !important;
        /*fill: var(--white-color);*/
        stroke: var(--white-color);
    }
    .papashon_head_establishment_class ul{max-width: 375px; padding: 0 10px}
    .content.flex  a + .information {
        display: none;
    }
    .papashon_head_establishment_class + .information {
        display: flex;
        width: 100%;
        align-content: center;
        justify-content: center;
    }
    .menu__box .menu-item:hover {
        background-color: var(--red-color-opacity);
    }
}
.content.flex.max-width-1315 {
    padding-bottom: 0;
}
/* Контейнер */
.establishment-select {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

/* Кнопка */
.establishment-toggle {
    width: 100%;
    /*background: linear-gradient(135deg, #A48AD4, #8CB8E8, #99C3DF, #E8ACC8, #E6BA90);*/
    background: inherit;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 40px 12px 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.establishment-toggle:hover {
    background: #AD89D2;
}

/* Стрілочка */
.establishment-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    transition: transform 0.3s ease;
}

/* При відкритті */
.establishment-select.active .establishment-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Dropdown */
.establishment-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 5px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 20;
    overflow: hidden;
}

/* Меню */
.establishment-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.establishment-menu li {
    border-bottom: 1px solid #eee;
}

.establishment-menu li:last-child {
    border-bottom: none;
}

.establishment-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.establishment-menu a:hover {
    background: #f2f2f2;
}

/* Активна сторінка */
.establishment-menu .current-menu-item > a,
.establishment-menu .current_page_item > a {
    background: #C1A2E0;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .establishment-select {
        max-width: 100%;
    }

    .establishment-toggle {
        font-size: 18px;
        padding: 16px 45px 16px 20px;
        border-radius: 12px;
    }

    .establishment-dropdown {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 5px;
    }

    .establishment-menu a {
        padding: 16px 20px;
        font-size: 17px;
    }

    .establishment-menu .current-menu-item > a {
        background: #AD89D2;
    }
}
