@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Shadows+Into+Light+Two&display=swap');

:root {
    --ko-yellow: #ffcc00;
    --ko-brown: #413232;
    --ko-grey-light: #8e8e8e;
    --ko-blue-light: #9fbfd5;
    --ko-beige: #f6f0ea;
    --ko-font-basic: 'Roboto', sans-serif;
    --ko-font-header: 'Shadows Into Light Two', cursive;
}

html, body {
	font-family: var(--ko-font-basic);
	color: var(--ko-brown);
}
body {
    background: #FFFFFF;
}
body.subpage {
    background: url(/img/sp-bg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
body.waiting * {cursor: wait;}

/** COMMON **/
.line-through {
    text-decoration: line-through;
}

/** HEADERS **/
h1, h2, h3, h4 {
    font-family: var(--ko-font-header);
}

/** H1 SECTION **/
h1 {
    margin: 0px 0px 30px 0px;
}
h1.with-action-links {
    width: calc(100% - 550px);
    float: left;
    line-height: 48px;
}
div.action-links {
    width: 550px;
    float: right;
    text-align: right;
    padding: 0;
    margin: 0px 0px 30px 0px;
    line-height: 48px;
    font-size: 2.5rem;
}
div.action-links a {
    display: inline-block;
    background: var(--ko-grey-light);
    color: #FFFFFF;
    border: none;
    font-size: 16px;
    padding: 5px 7px;
    line-height: 16px;
    border-radius: 8px;
    margin-top: 10px;
    text-decoration: none;
}
div.action-links a:hover {
    color: #FFFFFF;
    background: #BBBBBB;
}
@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
    h1.with-action-links {
        width: 100%;
        float: none;
        line-height: 1.2em;
        margin: 0px 0px 0px 0px;
    }
    div.action-links {
        width: 100%;
        float: none;
        line-height: 1.2em;
        text-align: left;
    }
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/** LISTS **/
ul.list-1 {
    list-style-type: none;
    margin: 0px;
    padding: 0;
}
ul.list-1 li {
    background: url(/img/tick.png) no-repeat left 2px;
    padding: 0px 0 10px 45px;
    margin-bottom: 10px;
    font-size: 22px;
    min-height: 30px;
    border-bottom: 2px dashed #e5e5e5;
    color: var(--ko-brown);
}
ul.list-1 li:last-child {
    border-bottom: none;
}

/** MESSAGES **/
.flash-message {
    background: var(--ko-beige);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 8px solid #777777;
    box-shadow: 0px 5px 16px -2px #8C8C8C;
    font-size: 1.2rem;
    font-weight: 300;
}
.flash-message.error {
    border-color: #FF0000;
    color: #FF0000;
}
.flash-message.success {
    border-color: #00AA00;
    color: #00AA00;
}

.message {
    background: var(--ko-beige);
    padding: 10px;
    margin: 20px 0 30px;
    box-shadow: 0px 3px 8px -2px #CCCCCC;
    font-size: 1rem;
    font-weight: 300;
}
.message.success {
    border-left: 3px solid #777777;
    border-color: #00AA00;
    color: #00AA00;
}
.message.error {
    border-left: 3px solid #777777;
    border-color: #FF0000;
    color: #FF0000;
}

.info {
    background: var(--ko-beige);
    padding: 10px;
    margin: 20px 0 30px;
    box-shadow: 0px 3px 8px -2px #CCCCCC;
    font-size: 1rem;
    font-weight: 300;
}

/** BASIC TABLE (datalist) **/
.table-box {
    overflow-x: auto;
}
table.datalist {
	border-collapse: collapse;	
	margin: auto;
    width: 100%;
}
table.datalist th {
	border-bottom: 1px solid #eeeff1;
	font-size: 14px;
	font-weight: bold;
	color: #797979;
	padding: 8px 5px;
	line-height: 1.1em;
	vertical-align: middle;
    text-align: center;
}
table.datalist th a {
	color: #797979;
	text-decoration: none;
}
table.datalist th a:hover {
	color: #97c8e9;
}
table.datalist td {
	background: #ffffff;
	border-bottom: 1px solid #eeeff1;
	font-size: 14px;
	font-weight: 300;
	color: #797979;
	padding: 5px;
	line-height: 1.1em;
	vertical-align: middle;
}
table.datalist td.tv {
	vertical-align: top;
}
table.datalist td a {
	color: #3498db;
    text-decoration: none;
}
table.datalist td a:hover {
	color: #97c8e9;
}
table.datalist td em {
	color: #AAAAAA;
	font-style: italic;
}
table.datalist td em.red {
	color: #FF0000;
	font-style: italic;
}
table.datalist td span.red {
	color: #FF0000;
}
table.datalist tr.highlighted td {
	background: #feffab;
}
table.datalist tr:hover td {
	background: #eef6fc;
}

table.datalist th.id,
table.datalist td.id {
    text-align: right;
}
table.datalist td.id {
	width: 40px;
}

table.datalist td.date {
	width: 140px;
    text-align: center;
}

table.datalist th.actions, 
table.datalist td.actions {
	text-align: right;
}
table.datalist td.actions {
    width: 140px;
}

table.datalist.datalist-details th {
	text-align: left;
}
table.datalist.datalist-details.fixed-th th {
	width: 220px;
}
table.datalist.datalist-details tr:hover th {
	background: #eef6fc;
}
table.datalist.datalist-details th a {
	color: #3498db;
	text-decoration: none;
}
table.datalist.datalist-details th a:hover {
	color: #97c8e9;
}
table.datalist.datalist-details th em {
	font-weight: normal;
	font-style: italic;
}
table.datalist td strong {
    font-weight: bold;
}

/** PAGINATOR **/
div.paginator {
	padding: 20px 0px 0px 0px;
	text-align: center;
	line-height: 25px;
}
div.paginator ul.pagination {
	text-align: center;
    display: block;
}
div.paginator ul.pagination li {
	display: inline-block;
}
div.paginator ul.pagination li a {
	padding: 4px 8px;
	background: var(--ko-brown);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #FFFFFF;
	text-decoration: none;
	margin-right: 2px;
	font-size: 13px;
}
div.paginator ul.pagination li a:hover {
	opacity: 0.8;
}
div.paginator ul.pagination li.disabled a, div.paginator ul.pagination li.disabled a:hover {
	background: #bfc2cd;
	display: none;
}
div.paginator ul.pagination li.active a, div.paginator ul.pagination li.active a:hover {
	background: var(--ko-yellow);
}
div.paginator p {
	padding-top: 8px;
	font-size: 12px;
}

/** BUTTONS **/
a.button {
    font-family: var(--ko-font-header);
    background: var(--ko-brown);
    color: var(--ko-yellow);
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.5rem;
    display: inline-block;
    margin: 2px 0;
}
a.button-mini {
    background: var(--ko-brown);
    color: var(--ko-yellow);
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}
a.button:hover,
a.button-mini:hover {
    opacity: 0.8;
}
a.button.button-yellow,
a.button-mini.button-yellow:hover {
    background: var(--ko-yellow);
    color: var(--ko-brown);
}

/** BASIC FORM **/
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea,
select
{
	font-size: 1.2rem;
    line-height: 1.2em;
	border: 1px solid var(--ko-brown);
	color: var(--ko-brown);
	background: #FFFFFF;
    border-radius: 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea
{
	padding: 3px 5px;
	width: 650px;
    max-width: 100%;
}
textarea.xl
{
	width: 850px;
	height: 300px;
}
textarea.high
{
	height: 300px;
}
input[type="file"]
{
	padding: 0px 5px;
	width: 650px;
    max-width: 100%;
}
input[type="number"]
{
	padding: 3px 1px 3px 5px;
	width: 650px;
    max-width: 100%;
}
input[type="checkbox"]
{
	margin-right: 5px;
}

select
{
	padding: 3px 5px;
	width: 650px;
    max-width: 100%;
}
.input.time select
{
	padding: 3px 5px;
	margin-right: 5px;
	width: 228px;
}

button[type="submit"],
button[type="button"] {
    font-family: var(--ko-font-header);
    background: var(--ko-brown);
    color: var(--ko-yellow);
	border: none;
    font-size: 1.5rem;
    padding: 10px 30px;
    border-radius: 30px;
	margin-top: 10px;
	cursor: pointer;
}
button[type="submit"]:hover,
button[type="button"]:hover {
	opacity: 0.8;
}


/** MAIN FORM **/
form.mainform .error-message {
	color: #FF0000;
}


form.mainform .input.text,
form.mainform .input.tel,
form.mainform .input.email,
form.mainform .input.number,
form.mainform .input.password,
form.mainform .input.file,
form.mainform .input.time,
form.mainform .input.select,
form.mainform .input.datetime,
form.mainform .input.textarea,
form.mainform .field 
{
	padding: 0 0 15px 0;
}

form.mainform .input.text label,
form.mainform .input.number label,
form.mainform .input.tel label,
form.mainform .input.email label,
form.mainform .input.password label,
form.mainform .input.file label,
form.mainform .input.time label,
form.mainform .input.select label,
form.mainform .input.datetime label,
form.mainform .input.textarea label,
form.mainform .label
{
	padding: 0 0 3px 0;
	display: block;
}
form.mainform .input.datetime select
{
	padding: 3px 5px;
	margin-right: 3px;
	width: 120px;
}

form.mainform input.readonly, form.mainform select.readonly {
	background: #DDDDDD;
}

form.mainform .required label:after,
form.mainform .label.required:after
{
	display: inline;
	content: " *";
	color: #FF0000;
}

form.mainform .checkboxradios {
	padding: 0 0 10px 0;
}

form.mainform .input.radio label {
    margin-right: 15px;
}
form.mainform .input.radio input {
    margin-right: 5px;
}


/** FILTER FORM **/
form.filterForm {padding-bottom: 20px; line-height: 36px;}
form.filterForm.filterFormNoSpaceAfter {padding-bottom: 0px;}
form.filterForm div {
	display: inline-block;
	padding-right: 10px;
}
form.filterForm .filter-form-block {
	background: #FAFAFA;
    padding: 10px;
}
form.filterForm label {
	padding-right: 10px;
}
form.filterForm input[type="text"],
form.filterForm input[type="number"],
form.filterForm input[type="tel"],
form.filterForm input[type="email"],
form.filterForm textarea,
form.filterForm select
{
	font-size: 16px;
	border: 1px solid #bfc2cd;
	color: #333333;
	background: #FFFFFF;
    line-height: 1em;
}

form.filterForm input[type="text"],
form.filterForm input[type="tel"],
form.filterForm input[type="email"],
form.filterForm textarea
{
	padding: 3px 5px;
	width: 150px;
}
form.filterForm input[type="text"].s {width: 100px;}
form.filterForm input[type="text"].m {width: 200px;}
form.filterForm input[type="text"].xl {width: 250px;}
form.filterForm input[type="text"].xxl {width: 350px;}

form.filterForm select
{
	padding: 3px 5px;
	width: 462px;
}
form.filterForm select.xs {width: 92px;}
form.filterForm select.s {width: 182px;}
form.filterForm select.m {width: 292px;}
form.filterForm select.l {width: 382px;}
form.filterForm select.xl {width: 482px;}

form.filterForm button[type="submit"],
form.filterForm button[type="button"] {
	font-family: var(--ko-font-header);
    background: var(--ko-brown);
    color: var(--ko-yellow);
	border: none;
    font-size: 1.2rem;
    line-height: 1em;
    padding: 10px 15px;
    border-radius: 10px;
	margin: 5px 3px 0 0;
	cursor: pointer;
}
form.filterForm button[type="submit"]:hover,
form.filterForm button[type="button"]:hover {
	opacity: 0.8;
}

/** NAV TOP **/
nav.top-nav {
    background: #000000;
    height: 50px;
}
nav.top-nav .main-menu {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
nav.top-nav .main-menu li {
    display: inline-block;
}
nav.top-nav .main-menu li a {
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    padding: 13px 15px 13px 0px;
}
nav.top-nav .main-menu li a:hover {
    color: var(--ko-yellow);
}
nav.top-nav .main-menu li a.current {
    color: var(--ko-yellow);
}
nav.top-nav .main-menu li a.current:hover {
    opacity: 0.8;
}
a#main-menu-mobile-button {
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    padding: 11px 15px 13px 0px;
    display: inline-block;
}
nav.top-nav .user-menu {
    list-style-type: none;
    text-align: right;
    padding: 0px;
    margin: 0px;
}
nav.top-nav .user-menu li {
    display: inline-block;
    position: relative;
}
nav.top-nav .user-menu li.icon-item a {
    font-size: 16px;
}
nav.top-nav .user-menu > li:after {
    content: ' \2022 ';
    color: var(--ko-yellow);
}
nav.top-nav .user-menu > li:last-child:after, 
nav.top-nav .user-menu > li.no-divider:after {
    content: '';
}
nav.top-nav .user-menu > li > a {
    display: inline-block;
    color: var(--ko-yellow);
    text-decoration: none;
    font-size: 14px;
    padding: 13px 5px 13px 5px;
}
nav.top-nav .user-menu > li:last-child > a {
    padding-right: 0;
}
nav.top-nav .user-menu > li > a.strong {
    font-weight: bold;
}
nav.top-nav .user-menu > li > a:hover {
    opacity: 0.8;
}
nav.top-nav .user-menu > li > a > span.notifications-no {
    background: #FF0000;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 2px 4px;
    display: inline-block;
    position: relative;
    margin: 0 0 0 -5px;
    vertical-align: top;
}


nav.top-nav .user-menu li ul {
    display: none;
    position: absolute;
    top: 42px;
    right: 0;
    background: #000000;
    text-align: left;
    padding: 5px 7px;
    width: 120px;
}
nav.top-nav .user-menu li:hover ul {
    display: block;
}
nav.top-nav .user-menu li ul li {
    display: block;
}
nav.top-nav .user-menu li ul li a {
    display: inline-block;
    color: var(--ko-yellow);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 5px 4px 5px;
}
nav.top-nav .user-menu li ul li a:hover {
    opacity: 0.8;
}

@media (min-width: 768px) and (max-width: 1199px) {
    nav.top-nav .main-menu li a {
        text-transform: none;
        font-size: 12px;
        font-weight: bold;
        padding: 15px 10px 13px 0px;
    }
}
@media (max-width: 991px) {
    nav.top-nav .user-menu > li.no-divider-md:after {
        content: '';
    }
}
@media (max-width: 767px) {
    nav.top-nav .main-menu {
        display: none;
        position: absolute;
        background: var(--ko-brown);
        top: 50px;
        width: 200px;
        height: auto;
        margin-left: -10px;
        padding-bottom: 30px;
    }
    nav.top-nav .main-menu li {
        display: block;
    }
    nav.top-nav .main-menu li a {
        padding: 5px 5px 5px 10px;
    }
}


/** FOOTER **/
footer {
    background-color: #fbf8f5;
    padding-top: 120px;
}
footer .footer-contact {
    margin-bottom: 100px;
    text-align: center;
}
footer .footer-contact .footer-contact-header {
    font-family: var(--ko-font-header);
    font-size: 48px;
}
footer .footer-contact .footer-contact-delivery-box {
    font-family: var(--ko-font-header);
    margin: 20px 0 40px;
}
footer .footer-contact .footer-contact-delivery-box-1 {
    font-size: 24px;
    color: var(--ko-brown);
}
footer .footer-contact .footer-contact-delivery-box-2 {
    font-size: 48px;
    line-height: 1.05em;
    color: var(--ko-yellow);
}
footer .footer-contact .footer-contact-delivery-box-3 {
    font-size: 30px;
    color: var(--ko-brown);
}
footer .footer-contact .footer-contact-address {
    background: url(/img/contact-pointer.png) center top no-repeat;
    padding: 50px 0 20px 0;
    font-size: 1.2rem;
    font-weight: 300;
}
footer .footer-contact .footer-contact-phone {
    background: url(/img/contact-phone.png) center top no-repeat;
    padding: 50px 0 20px 0;
    font-family: var(--ko-font-header);
    font-size: 2rem;
}
footer .footer-contact .footer-contact-phone a {
    font-size: 3rem;
    color: var(--ko-yellow);
    text-decoration: none;
}
footer .footer-contact .footer-contact-social-links {
    background: url(/img/contact-separator.png) center top no-repeat;
    padding: 20px 0 20px 0;
}
footer .footer-contact .footer-contact-form-link {
    font-family: var(--ko-font-header);
    font-size: 1.8rem;
    line-height: 3.5rem;
}
footer .footer-map {
    margin-bottom: 100px;
}
footer .footer-map img {
    border: 20px solid #FFFFFF;
    box-shadow: 0 10px 50px 0 rgba(190, 190, 190, 0.6);
    max-width: 100%;
}
footer .footer-policy-links {
    padding: 10px 0 10px 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
}
footer .footer-policy-links span {
    padding-right: 30px;
}
footer .footer-policy-links span:last-child {
    padding-right: 0px;
}
footer .footer-policy-links a {
    color: var(--ko-brown);
    text-decoration: none;
}
footer .footer-policy-links a:hover {
    opacity: 0.8;
}

/** COOKIES INFO **/
#cookiesInfoBox {
	position: fixed;
	width: 100%;
	left: 0px;
	bottom: 0px;
	z-index: 100;
	background: #FFFFFF;
	border-top: 1px solid #454545;
}
#cookiesInfoBox .container {
	padding: 15px 60px 15px 30px;
	text-align: left;
	background: #FFFFFF;
	font-size: 13px;
	color: #555555;
	position: relative;
	font-family: arial, sans-serif !important;
}
#cookiesInfoBox a, #cookiesInfoBox a:hover {
	color: #555555;
	font-size: 13px;
	text-decoration: none;
	text-decoration: underline;
}
#cookiesInfoBox a:hover {
	text-decoration: none;
}
#cookiesInfoBox a.cookiesInfoBoxClose, #cookiesInfoBox a.cookiesInfoBoxClose:hover {
	display: block;
	position: absolute;
	top: 5px;
	right: 14px;
	width: 24px;
	height: 24px;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	background: #000000;
	font-weight: 700;
	font-size: 13px;
	font-family: arial, sans-serif !important;
}
#cookiesInfoBox a.cookiesInfoBoxClose:hover {
	background: #999999;
}

/** MAINPAGE SECTION 1 **/
.mp-section-1 {
    background: url(/img/section1-bg.png) no-repeat top left;
    height: 899px;
    text-align: center;
    padding: 80px 0 0 0;
}

.mp-section-1 .section-1-intro {
    font-size: 30px;
    font-weight: bold;
    color: #FFFFFF;
    padding-top: 70px;
    text-shadow: 2px 2px 2px #000000;
}
.mp-section-1 .section-1-header {
    font-family: var(--ko-font-header);
    font-size: 72px;
    font-weight: normal;
    color: var(--ko-yellow);
    padding-top: 70px;
    text-shadow: 2px 2px 2px #000000;
}
.mp-section-1 .section-1-products {
    /*background: #FFFFFF;*/
    width: 100%;
    max-width: 1140px;
    margin: 70px auto 0;
    vertical-align: top;
    box-shadow: 0px 5px 16px -2px #8C8C8C;
    background: #FFFFFF;
    border-bottom: 16px solid var(--ko-yellow);
}
.mp-section-1 .section-1-products a.section-1-product {
    display: inline-block;
    width: calc(100% / 4);
    background: #FFFFFF;
    padding: 22px 19px 12px 18px;
    vertical-align: top;
    font-family: var(--ko-font-header);
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.mp-section-1 .section-1-products a.section-1-product:nth-child(even) {
    background: var(--ko-beige);
}
.mp-section-1 .section-1-products a.section-1-product img {
    padding-bottom: 10px;
    max-width: 100%;
}
.mp-section-1 .section-1-products a.section-1-product:hover {
    color: var(--ko-yellow);
    text-shadow: 1px 1px 0px #444444;
}

@media (max-width: 991px) {
    .mp-section-1 .section-1-intro {
        font-size: 30px;
        padding-top: 80px;
    }
    .mp-section-1 .section-1-header {
        font-size: 52px;
        padding-top: 80px;
    }
    .mp-section-1 .section-1-products a.section-1-product {
        padding: 22px 19px 12px 18px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .mp-section-1 .section-1-products {
        display: none;
    }
}
@media (max-width: 575px) {
    .mp-section-1 .section-1-intro {
        font-size: 24px;
        padding-top: 60px;
    }
    .mp-section-1 .section-1-header {
        font-size: 42px;
        padding-top: 50px;
    }
}

/** MAINPAGE SECTION 2 **/
.mp-section-2 {
    margin-top: 70px;
}
.mp-section-2 img {
    max-width: 100%;
}
.mp-section-2 .section-2-header {
    font-family: var(--ko-font-header);
    font-size: 56px;
    color: var(--ko-brown);
    margin-bottom: 30px;
}

.mp-section-2 .section-2-box {
    background: var(--ko-brown);
    padding: 30px;
    margin-left: -200px;
    color: #FFFFFF;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.mp-section-2 .section-2-content-2 {
    background: #fbf8f5;
}

.mp-section-2 .section-2-packages {
    margin: 0 auto 40px;
    width: 250px;
}
.mp-section-2 .section-2-packages .section-2-packages-intro {
    font-family: var(--ko-font-header);
    font-size: 40px;
    color: var(--ko-brown);
    overflow: hidden;
}
.mp-section-2 .section-2-packages .section-2-packages-intro:before,
.mp-section-2 .section-2-packages .section-2-packages-intro:after {
    background-color: var(--ko-brown);
    content: "";
    display: inline-block;
    height: 3px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.mp-section-2 .section-2-packages .section-2-packages-intro:before {
    right: 0.5em;
    margin-left: -50%;
}
.mp-section-2 .section-2-packages .section-2-packages-intro:after {
    left: 0.5em;
    margin-right: -50%;
}
.mp-section-2 .section-2-packages .section-2-packages-amount {
    font-size: 72px;
    font-weight: bold;
    color: var(--ko-yellow);
    line-height: 72px;
}
.mp-section-2 .section-2-packages .section-2-packages-unit {
    font-size: 24px;
    font-weight: bold;
    color: var(--ko-yellow);
    line-height: 24px;
    overflow: hidden;
}
.mp-section-2 .section-2-packages .section-2-packages-unit:before,
.mp-section-2 .section-2-packages .section-2-packages-unit:after {
  background-color: var(--ko-brown);
  content: "";
  display: inline-block;
  height: 3px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.mp-section-2 .section-2-packages .section-2-packages-unit:before {
  right: 0.5em;
  margin-left: -50%;
}
.mp-section-2 .section-2-packages .section-2-packages-unit:after {
  left: 0.5em;
  margin-right: -50%;
}
.mp-section-2 .section-2-text {
    font-family: var(--ko-font-header);
    font-size: 30px;
    color: var(--ko-brown);
}
.mp-section-2 .section-2-delivery-box {
    font-family: var(--ko-font-header);
    border-top: 2px dashed #e2dfdc;
    border-bottom: 2px dashed #e2dfdc;
    margin: 30px 0 40px;
    padding: 10px 0;
}
.mp-section-2 .section-2-delivery-box .section-2-delivery-box-1 {
    font-size: 24px;
    color: var(--ko-brown);
}
.mp-section-2 .section-2-delivery-box .section-2-delivery-box-2 {
    font-size: 48px;
    line-height: 1.05em;
    color: var(--ko-yellow);
}
.mp-section-2 .section-2-delivery-box .section-2-delivery-box-3 {
    font-size: 30px;
    color: var(--ko-brown);
}
@media (max-width: 1399px) {
    .mp-section-2 .section-2-header {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .mp-section-2 .section-2-packages .section-2-packages-intro {
        font-size: 30px;
    }
    .mp-section-2 .section-2-packages .section-2-packages-amount {
        font-size: 64px;
        line-height: 64px;
    }
    .mp-section-2 .section-2-packages .section-2-packages-unit {
        font-size: 20px;
        line-height: 20px;
    }
    .mp-section-2 .section-2-text {
        font-size: 24px;
    }
    .mp-section-2 .section-2-delivery-box {
        margin: 20px 0 40px;
        padding: 10px 0;
    }
/*    .mp-section-2 .section-2-delivery-box .section-2-delivery-box-1 {
        font-size: 24px;
    }*/
    .mp-section-2 .section-2-delivery-box .section-2-delivery-box-2 {
        font-size: 40px;
        line-height: 1.15em;
    }
    .mp-section-2 .section-2-delivery-box .section-2-delivery-box-3 {
        font-size: 24px;
    }
}
@media (max-width: 1199px) {
    .mp-section-2 .section-2-header {
        font-size: 30px;
        margin-bottom: 26px;
    }
    .mp-section-2 .section-2-box {
        font-size: 1.1em;
    }
    .mp-section-2 .list-1 li {
        font-size: 0.95em;
    }
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
    .mp-section-2 .section-2-box {
        padding: 30px;
        margin-left: 0px;
        font-size: 1.1em;
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
}

/** MAINPAGE SECTION 3 **/
.mp-section-3 {
    background: var(--ko-brown) url(/img/section3-bg.png) no-repeat;
    background-position: calc(50% - 665px) top;
}
.mp-section-3 .section-3-1 {
    height: 1002px;
}
.mp-section-3 .section-3-header {
    font-family: var(--ko-font-header);
    color: #FFFFFF;
    font-size: 55px;
    text-align: justify;
    margin-bottom: 30px;
}
.mp-section-3 .section-3-text {
    color: #FFFFFF;
    text-align: justify;
    margin-bottom: 30px;
}
.mp-section-3 .section-3-reference {
    margin-top: 400px;
}
.mp-section-3 .section-3-reference .section-3-reference-text {
    font-family: var(--ko-font-header);
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.mp-section-3 .section-3-reference .section-3-reference-signature {
    font-size: 18px;
    font-style: italic;
    color: #FFFFFF;
}
.mp-section-3 .resturant-plans {
    color: #FFFFFF;
}
.mp-section-3 .resturant-plans .restaurant-plan {
    text-align: center;
    background-color: #544747;
    padding-top: 10px;
}
.mp-section-3 .resturant-plans .restaurant-plan .restaurant-plan-name {
    font-family: var(--ko-font-header);
    font-size: 30px;
    margin-bottom: 8px;
}
.mp-section-3 .resturant-plans .restaurant-plan .restaurant-plan-price-block {
    color: var(--ko-yellow);
    font-size: 31px;
    font-weight: bold;
    line-height: 0.8em;
}
.mp-section-3 .resturant-plans .restaurant-plan .restaurant-plan-price-block .restaurant-plan-price-unit {
    font-size: 12px;
}
.mp-section-3 .resturant-plans .restaurant-plan .restaurant-plan-price-desc {
    color: var(--ko-yellow);
    font-size: 16px;
    font-weight: 300;
    line-height: 1em;
}
.mp-section-3 .resturant-plans .restaurant-plan.restaurant-plan-up {
    padding-top: 10px;
}
.mp-section-3 .resturant-plans .restaurant-plan.restaurant-plan-up .restaurant-plan-image {
  background: url(/img/border-triangle-up.png) center 10px no-repeat;
  padding-top: 24px;
}
.mp-section-3 .resturant-plans .restaurant-plan.restaurant-plan-up .restaurant-plan-image img {
    border-top: 5px solid var(--ko-yellow);
    max-width: 100%;
}
.mp-section-3 .resturant-plans .restaurant-plan.restaurant-plan-down {
    padding-bottom: 20px;
}
.mp-section-3 .resturant-plans .restaurant-plan.restaurant-plan-down .restaurant-plan-image {
  background: url(/img/border-triangle-down.png) center bottom no-repeat;
  padding-bottom: 14px;
}
.mp-section-3 .resturant-plans .restaurant-plan.restaurant-plan-down .restaurant-plan-image img {
    border-bottom: 5px solid var(--ko-yellow);
    max-width: 100%;
}

@media (max-width: 1399px) {
    .mp-section-3 {
        background-position: center top;
    }
    .mp-section-3 .section-3-reference {
        margin-top: 100px;
    }
}
@media (max-width: 767px) {
    .mp-section-3 {
        background-image: none;
    }
    .mp-section-3 .section-3-1 {
        height: auto;
    }
    .mp-section-3 .resturant-plans .restaurant-plan .restaurant-plan-name {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

/** MAINPAGE SECTION 4 **/
.mp-section-4 {
    background: var(--ko-yellow) url(/img/section4-bg.png) no-repeat;
    background-position: right top;
    background-size: 50%;
}
.mp-section-4 .section-4-1 {
    height: 834px;
}
.mp-section-4 .section-4-pre-header {
    font-size: 24px;
}
.mp-section-4 .section-4-header {
    font-family: var(--ko-font-header);
    font-size: 60px;
    margin-bottom: 50px;
}
.mp-section-4 .section-4-text {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .mp-section-4 .section-4-1 {
        height: 600px;
    }
    .mp-section-4 .section-4-header {
        font-size: 40px;
        margin-bottom: 50px;
    }
    .mp-section-4 .section-4-text {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
}
@media (max-width: 991px) {
    .mp-section-4 {
        background-image: none;
    }
    .mp-section-4 .section-4-1 {
        height: auto;
    }
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/** MAINPAGE SECTION 5 **/
.mp-section-5 {
    text-align: center;
}
.mp-section-5 .section-5-pre-header {
    font-size: 24px;
}
.mp-section-5 .section-5-header {
    font-family: var(--ko-font-header);
    font-size: 60px;
}
.mp-section-5 .section-5-subheader {
    font-family: var(--ko-font-header);
    font-size: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}
.mp-section-5 .section-5-subheader:before,
.mp-section-5 .section-5-subheader:after {
    border-top: 1px solid var(--ko-yellow);
    border-bottom: 1px solid var(--ko-yellow);
    content: "";
    display: inline-block;
    height: 4px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.mp-section-5 .section-5-subheader:before {
   right: 0.5em;
   margin-left: -50%;
}
.mp-section-5 .section-5-subheader:after {
   left: 0.5em;
   margin-right: -50%;
}
.mp-section-5 ul.daily-menu {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    text-align: left;
}
.mp-section-5 ul.daily-menu.daily-menu-left {
    padding: 0 35px 0 75px;
}
.mp-section-5 ul.daily-menu.daily-menu-right {
    padding: 0 75px 0 35px;
}
.mp-section-5 ul.daily-menu li {
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 2px dashed #e5e5e5;
    color: var(--ko-grey-light);
    font-weight: 300;
}
.mp-section-5 ul.daily-menu li:last-child {
    border-bottom: none;
}
.mp-section-5 ul.daily-menu li strong {
    color: var(--ko-brown);
    font-family: var(--ko-font-header);
    font-size: 24px;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .mp-section-5 ul.daily-menu.daily-menu-left {
        padding: 0 35px 0 35px;
    }
    .mp-section-5 ul.daily-menu.daily-menu-right {
        padding: 0 35px 0 35px;
    }
}

/** MAINPAGE SECTION 6 **/
.mp-section-6 {
    background: linear-gradient(to right, #FFFFFF, #FFFFFF 50%, var(--ko-brown) 50%, var(--ko-brown));
    min-height: 400px;
}
.mp-section-6 .section-6-1 .section-6-photo {
    background: #212121;
    text-align: right;
}
.mp-section-6 .section-6-1 .section-6-1-header {
    font-family: var(--ko-font-header);
    font-size: 60px;
    color: var(--ko-yellow);
    margin-bottom: 20px;
}
.mp-section-6 .section-6-1 .section-6-1-text {
    text-align: justify;
    font-size: 1.2rem;
    font-weight: 300;
}
.mp-section-6 .section-6-2 {
    text-align: center;
    background: var(--ko-brown);
}
.mp-section-6 .section-6-2 .section-6-2-header {
    font-family: var(--ko-font-header);
    font-size: 48px;
    color: var(--ko-yellow);
}
.mp-section-6 .section-6-2 img {
    max-width: 100%;
}
@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
    .mp-section-6 {
        background: linear-gradient(to right, #FFFFFF, #FFFFFF 50%, var(--ko-brown) 50%, var(--ko-brown));
        background: #FFFFFF;
        min-height: 400px;
    }
    .mp-section-6 .section-6-1 .section-6-photo {
        text-align: center;
    }
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/** SP SECTION 1 **/
.sp-section-1 {
    text-align: center;
    margin: 0 auto 50px;
}
.sp-section-1 img {
    max-width: 100%;
}
.sp-section-1 .section-1-products {
    margin: 20px auto 0;
    /*width: 1140px;*/
    vertical-align: top;
    box-shadow: 0px 5px 16px -2px #8C8C8C;
    background: #FFFFFF;
    border-bottom: 16px solid var(--ko-yellow);
}
.sp-section-1 .section-1-products a.section-1-product {
    display: inline-block;
    width: calc(100% / 4);
    background: #FFFFFF;
    padding: 22px 19px 12px 18px;
    vertical-align: top;
    font-family: var(--ko-font-header);
    font-size: 24px;
    color: #000000;
    text-decoration: none;
}
.sp-section-1 .section-1-products a.section-1-product:nth-child(even) {
    background: var(--ko-beige);
}
.sp-section-1 .section-1-products a.section-1-product img {
    padding-bottom: 10px;
    max-width: 100%;
}
.sp-section-1 .section-1-products a.section-1-product:hover {
    color: var(--ko-yellow);
    text-shadow: 1px 1px 0px #444444;
}

@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
    .sp-section-1 .section-1-products a.section-1-product {
        padding: 22px 19px 12px 18px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/** SUBPAGE MAIN**/
.container-subpage {
    background: #FFFFFF;
    padding: 30px 40px 50px;
}
.main-subpage {
}

/** PAGE GALLERY **/
.page-gallery {
    
}
.page-gallery img {
    max-width: 100%;
    border: 10px solid var(--ko-beige);
}

/** CONTACT FORM **/
#contact-form {
    background: var(--ko-beige);
    padding: 30px 30px;
    border-radius: 20px;
}

/** DATA BOX **/
.data-box {
    background: var(--ko-beige);
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 10px;
}
.data-box .data-box-name {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
}
.data-box .data-box-name em {
    font-weight: normal;
    font-style: italic;
    font-size: 0.9em;
}
.data-box .data-box-params {
}
.data-box .data-box-params .data-box-param {
    display: inline-block;
    font-size: 0.9em;
	border-radius: 2px;
	background: var(--ko-blue-light);
	color: #FFFFFF;
	padding: 5px 7px;
	box-sizing: border-box;
    margin: 0 0 5px 5px;
}
.data-box .data-box-params .data-box-param a {
	color: #FFFFFF;
}
.data-box .data-box-params .data-box-param a:hover {
    opacity: 0.5;
}
.data-box .data-box-subitems {
    margin: 10px 0;
    padding: 0;
    list-style-type: none;
}
.data-box .data-box-subitems li {
    width: 145px;
    min-height: 200px;
    margin: 0 0 5px 5px;
    padding: 10px;
    float: left;
    box-sizing: border-box;
    background: var(--ko-yellow);
    border-radius: 6px;
}
.data-box .data-box-subitems li .data-box-subitem-name {
    font-weight: bold;
    text-align: center;
}
.data-box .data-box-subitems li .data-box-subitem-details {
    text-align: center;
    padding: 5px 0;
}
.data-box .data-box-subitems li .data-box-subitem-subdetails {
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
}
.data-box .data-box-subitems li .data-box-subitem-links {
    text-align: center;
}
.data-box .data-box-label {
    display: inline;
    font-size: 0.9rem;
	border-radius: 6px;
	background: var(--ko-blue-light);
	color: #FFFFFF;
    padding: 2px 10px;
}

/** INTERNAL MESSAGES **/
.internal-message-view {
	background-color: var(--ko-beige);
	margin-bottom: 20px;
	padding: 10px 20px;
	border-radius: 10px;
}
.internal-message-view .internal-message-details {
	font-size: 0.9em;
}
.internal-message-view .internal-message-content {
	margin-top: 10px;
}

/** INLINE MENU **/
.inline-menu {
    margin: 10px 0 30px;
    line-height: 3em;
}
.inline-menu a {
    background: var(--ko-brown);
    color: var(--ko-yellow);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
}
.inline-menu a.current {
    background: var(--ko-yellow);
    color: var(--ko-brown);
}
.inline-menu a:hover {
    opacity: 0.8;
}

/** FULL CALENDAR **/
.fc a {
    text-decoration: none;
    color: var(--ko-brown);
}
.fc-day-blocked {
    background: #DDDDDD;
}

/** CATERING PACKAGES **/
.catering-package {
    margin-bottom: 30px;
}
.catering-package .catering-package-name {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 5px;
}
.catering-package .catering-package-price-box {
    display: inline;
}
.catering-package .catering-package-price-box .catering-package-price {
    font-weight: bold;
    font-size: 1.1em;
}
.catering-package .catering-package-button {
    display: inline;
    margin-left: 10px;
}

/** PRODUCTS LIST **/
.products-list {
    
}
.products-list .products-list-item {
    text-align: center;
}
.products-list .products-list-item .product-list-item-photo {
    aspect-ratio: 1.2;
}
.products-list .products-list-item .product-list-item-name a {
    text-decoration: none;
    color: var(--ko-brown);
    font-weight: bold;
    font-size: 1.1em;
}

/** PRODUCT DETAILS **/
.product-details .product-details-image-main {
    height: 300px;
    text-align: center;
    margin-bottom: 30px;
}
.product-details .product-details-image-main img {
    max-height: 100%;
}
.product-details .product-details-image-thubms img {
    max-width: 100%;
}
.product-details .product-details-params {
    
}
.product-details .product-details-price-gross {
    font-size: 20px;
    font-weight: 300;
    padding: 10px 0 35px;
}
.product-details .product-details-price-gross span {
    font-weight: bold;
    font-size: 24px;
}
.product-details .product-details-price-gross .product-details-price-net {
    color: var(--ko-grey-light);
    font-size: 16px;
    font-weight: 300;
}

.product-details .add-to-cart-box input {
    width: auto;
}

/** READY DISHES **/
.ready-dish-item {
	border-bottom: 1px #ccc dashed;
	border-top: 1px #ccc dashed;
	padding: 10px 0;
}

.ready-dish-item-order {
	text-align: right;
	padding-top: 15px;
}

.ready-dish-item-img {
	text-align: right;
}
.ready-dish-item-img img {
	width: 150px;
}

.ready-dish-category {
	margin: 20px 0;
	display: inline-block;
	font-weight: bold;
}

#ready-dish-order-date {
	width: 130px;
	text-align: center;
}

.ready-dish-menu-name {
	font-weight: bold;
}
.ready-dish-control {
	float: left;
	margin: 0 8px;
}
.ready-dish-control img {
	width: 35px;
	cursor: pointer;
}
.ready-dish-number {
	float: left;
}
.ready-dish-amount {
	margin: 18px 0 0 0px;
	float: left;
}
.ready-dish-number input {
	width: 34px;
	border: none;
	text-align: center;
	padding: 5px;
}

@media (max-width: 1399px) {
	.ready-dish-amount {
		margin: 0px 0 0 0px;
		float: left;
	}
	.ready-dish-item-order button {
		float: left;
		margin: 0 0 0 10px;
	}
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
	.ready-dish-item-img {
		display: none;
	}
	.ready-dish-amount {
		margin: 10px 20px 0 70px;
	}
}
@media (max-width: 575px) {
	.ready-dish-amount {
		margin: 10px 10px 0 20px;
	}
}

@media (max-width: 440px) {
	.ready-dish-amount {
		margin: 10px 10px 0 0px;
	}
	.ready-dish-item-order button {
		margin: 0 0 0 0;
	}
}
@media (max-width: 380px) {
	.ready-dish-item-order button {
		margin: 7px 0px 0 8px;
		width: 90px;
		font-size: 17px;
		padding: 7px 0px;
	}
	.ready-dish-control {
		float: left;
		margin: 0 0px;
	}
	.ready-dish-amount {
		margin: 10px 2px 0 0px;
	}
}

/** CART **/
.cart table input {
    width: 100%;
    text-align: right;
}
.cart input {
    font-size: 1em;
}
.cart input.readonly, .cart select.readonly {
	background: #DDDDDD;
}

/** ADD ORDER FORM **/
.add-order-form .price-block {
    text-align: right;
    padding: 30px 0 0 0;
}
.add-order-form .price-block .order-price,
.add-order-form .price-block .delivery-price,
.add-order-form .price-block .discount-amount,
.add-order-form .price-block .loyalty-points-discount {
    line-height: 1.4em;
    font-weight: 300;
}
.add-order-form .price-block .order-price .order-price-value,
.add-order-form .price-block .delivery-price .delivery-price-value,
.add-order-form .price-block .discount-amount .discount-amount-value,
.add-order-form .price-block .loyalty-points-discount .loyalty-points-discount-value {
    font-weight: 400;
}
.add-order-form .price-block .total-price {
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 300;
    margin-bottom: 10px;
}
.add-order-form .price-block .total-price .total-price-value {
    font-weight: 700;
    font-size: 1.4em;
}