.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;
}

.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%;

    width: 300px;
    height: 100%;
    z-index: 1001;
    margin: 0;
    padding: 80px 0;

    list-style: none;

    background-color: #ECEFF1;
    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;
}

button.book-event {
	background: none;
    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: 80px;
    position: fixed;
    left: 0;
    /*background: var(--orange-color);*/
    /*background: var(--orange-second-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: #fff;
    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: 40px;
}


#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;
}
.information a {
    text-decoration: none;
}
.flex.mobile-menu  .information,a#phone {
    display: none;
}
.mobile-show-phone {display: none}
/*MOBILE VERSION*/
@media (max-width: 768px) {
    .mobile-show-phone {display: block;        padding-top: 6px;}
    .display-flex{display:flex !important;}
    .flex.mobile-menu{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .flex.mobile-menu .information {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding-top: 1rem;
    }
    a#phone {
        margin-top: -12px;
    }
    #menu__toggle, .flex.mobile-menu {
        display: none;
    }

    .content.flex a {

        font-size: 1rem;
        line-height: 2rem;
    }

    #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;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    background-color: #70707063;
  }

    .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 {

    }
    .pll-parent-menu-item img{
        width: 28px !important;
        height: 24px !important;
    }
    .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 {
    display: block;
    text-decoration: none;
    color: var(--mm-text);
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
    box-shadow: 0 10px 26px rgba(0,0,0,.25);
	margin-top: 10px;
  }
    .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;
    }

    .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: 100%; 
		padding: 0 10px;
		display: inline-block;
		}
    .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);
    }
    a#phone {
        margin-top: 0;
    }
	.content.flex img {margin-top: 10px;}

}