/*  primary: #29AD4A;   !* green color of the logo*!*/
/*  secondary: '#FF9500', // orange color of the logo (note: this hasn't been used anywhere yet so we can easily pick a different secondary color)*/
/*  white: '#FFFFFF',*/
/*  black: '#000000',*/
/*  gray: '#777777',*/
/*  lightGray: '#959292',*/
/*  transparent: 'transparent',*/
/*  warning: '#FF2609',*/
/*  success: '#48DC6C',*/

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-print-color-adjust: exact;
}


footer {
    bottom: 0;
    position: absolute;
}

.text-black {
    color: #000000;
}



.text-primary {
    color: #29AD4A;
}

.text-secondary {
    color: #FF9500;
}

.text-gray {
    color: #777777;
}

.text-light-gray {
    color: #959292;
}

.text-red {
    color: #FF2609;
}

.background-green, .background-green:hover {
    background-color: #29AD4A;
}

.background-gray {
    background-color: #777777;
}

.background-light-gray {
    background-color: #959292;
}

.background-red {
    background-color: #FF2609;
}

.btn-default, .btn-default:hover {
    background-color: #29AD4A;
}

.btn-secondary, .btn-secondary:hover {
    background-color: #FF9500;
    color: #000;
}

.btn-grey, .btn-grey:hover {
    background-color: #DDD;
    color: #000;
}

.pointer:hover {
    cursor: pointer;
}

.btn {
    margin: 20px 20px 20px auto;
}

img {
    height: inherit;
    object-fit: cover;
}

img.logo {
    line-height: inherit;
    vertical-align: middle;
}

nav ul a {
    color: #000;
    font-weight: bold;
}
nav ul span {
    color: #000;
    font-weight: bold;
}

nav li.active a, nav a:hover {
    color: #777;
}

nav ul li.active, nav ul a:hover {
    background-color: inherit;
}

nav ul.menu {
    display: flex;
    align-items: center;
}

nav li.item {
    line-height: initial;
}

.btn, .btn-small, .btn-flat,
.card {
    border-radius: 10px;
}

section.main-content {
    max-width: 1200px;
    margin: 20px auto;
}

.form-container {
    max-width: 400px;
    margin: 20px auto;
}

.form-container-middle {
    max-width: 700px;
    margin: 0 auto;
}

.form-container-big {
    max-width: 1000px;
    margin: 0 auto;
}

.media-files-preview {
    height: 40px;
}

.media-files-preview img {
    margin: 1px 0;
}

.add-product a {
    margin-left: 12px;
}

.product-image-wrapper {
    overflow: hidden;
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
}

#id_is_price_variable_container span {
    font-size: 0.8rem;
    line-height: 20px;
}

#id_is_price_variable_container input[type="checkbox"] {
    position: relative;
}

#id_is_alcohol_container {
    margin-top: 1rem;
}

#id_alcohol_percentage_container {
    margin-top: 0;
}

.carousel .carousel-item img {
    border-radius: 10px;
    height: inherit;
}

.carousel .carousel-item > img {
    width: initial;
    max-width: 100%;
}

.carousel {
    height: 250px;
}

.marketing-pictures .carousel {
    height: 700px;
}

.carousel.carousel-slider .carousel-item {
    height: inherit;
}

/* navigation */

nav {
    background: #FFF;
}

nav .menu {
    line-height: 30px;
}

.logo {
    font-size: 20px;
}

.item {
    padding: 10px;
}

.item.button {
    padding: 9px 5px;
}

/* Mobile menu */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu li a {
    display: block;
}

.menu li.subitem a {
}

.toggle {
    order: 1;
    font-size: 20px;
}

.item.button {
    order: 2;
}

.item {
    order: 3;
    width: 100%;
    text-align: center;
    display: none;
}

.active .item {
    display: block;
    z-index: 5;
    background: #FFF;
}

/*!* Submenu up from mobile screens *!*/
.submenu {
    display: none;
}

.submenu-active {
    background-color: #EEE;
    border-radius: 3px;
}

/* Tablet menu */
@media all and (min-width: 700px) {
    .menu {
        justify-content: center;
    }

    .logo {
        flex: 1;
        margin: 4px;
    }

    .item.button {
        width: auto;
        order: 1;
        display: block;
    }

    .toggle {
        flex: 1;
        text-align: right;
        order: 2;
    }

    /* Button up from tablet screen */
    .button.secondary {
        border: 0;
    }
}

/* Desktop menu */
@media all and (min-width: 960px) {
    nav .menu {
        line-height: 64px;
    }
    .menu {
        align-items: flex-start;
        flex-wrap: nowrap;
        background: none;
    }

    .logo {
        order: 0;
    }

    .item {
        order: 1;
        position: relative;
        display: block;
        width: auto;
    }

    .button {
        order: 2;
    }

    .submenu-active .submenu {
        display: block;
        position: absolute;
        left: 0;
        top: 68px;
        background: #EEE;
    }

    .toggle {
        display: none;
    }

    .submenu-active {
        border-radius: 0;
    }
}

/* navigation ends */

@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
}