.acc {
    position: relative;
    background-color: #fff;
}

.acc dl {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.acc dl:after {
    content: "";
    display: block;
    height: 1em;
    width: 100%;
    background-color: #2980b9;
}

.acc dt>a {
    text-align: center;
    font-weight: 300;
    padding: 2em;
    display: block;
    text-decoration: none;
    color: #fff;
    -webkit-transition: background-color 0.5s ease-in-out;
}

.acc dd {
    background-color: #fff;
    font-size: 1em;
    line-height: 1.5em;
    background-image: -webkit-linear-gradient(top, #444 0%, #fff 100%);
    background-image: linear-gradient(to bottom, #444 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.acc dd>p {
    padding: 1em 2em 1em 2em;
}

.acc_title {
    background-color: #3498db;
    border-bottom: 1px solid #258cd1;
}

.acc_title:before {
    content: "+";
    font-size: 1.5em;
    line-height: 0.5em;
    float: left;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.acc_title:hover {
    background-color: #2980b9;
}

.acc_title_active {
    background-color: #2980b9;
}

.acc_title_active:before {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.acc_panel {
    height: auto;
    overflow: hidden;
}

@media all {
    .acc_panel {
        max-height: 50em;
        -webkit-transition: max-height 1s;
        transition: max-height 1s;
    }
}

@media screen and (min-width:48em) {
    .acc_panel {
        max-height: 15em;
        -webkit-transition: max-height 0.5s;
        transition: max-height 0.5s;
    }
}

.acc_panel_col {
    max-height: 0;
}

.anim_in {
    -webkit-animation-name: acc_in;
    animation-name: acc_in;
    -webkit-animation-duration: 0.65s;
    animation-duration: 0.65s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    display: table;
}

.anim_out {
    -webkit-animation-name: acc_out;
    animation-name: acc_out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    display: none;
}

@-webkit-keyframes acc_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes acc_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes acc_out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes acc_out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.columns:hover>figure {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}

.columns figure img:hover {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.columns figure:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
}

.lightbox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 75px;
    text-align: center;
    display: none;
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
}

.lightbox figure {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    white-space: no-wrap;
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
}

.columns {
    column-width: 220px;
    column-gap: 15px;
    max-width: 1100px;
    margin: 50px auto;
}

div.columns figure {
    background: #fefefe;
    border: 2px solid #fcfcfc;
    box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
    margin: 0 2px 15px;
    padding: 15px;
    padding-bottom: 10px;
    transition: opacity .4s ease-in-out;
    display: inline-block;
    column-break-inside: avoid;
}

div.columns figure img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

div.columns figure figcaption {
    font-size: .9rem;
    color: #444;
    line-height: 1.5;
}

div.columns small {
    font-size: 1rem;
    float: right;
    text-transform: uppercase;
    color: #aaa;
}

div.columns small a {
    color: #666;
    text-decoration: none;
    transition: .4s color;
}

div.columns:hover figure:not(:hover) {
    opacity: 0.4;
}

@media screen and (max-width:750px) {
    .columns {
        column-gap: 0px;
    }

    .columns figure {
        width: 100%;
    }
}

.BasketLoad {
    z-index: 9999;
    position: absolute;
    top: 0px;
    right: -15px !important;
    color: #000;
    text-align: center;
}

.BasketLoad a {
    line-height: 43px;
    color: #fff !important;
}

#LoadingHour {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999999;
    display: block;
    height: 100%;
    background-color: #312f2e82;
    display: none;
}

#LoadingHour img {
    position: fixed;
    top: 50%;
    left: 50%;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1001;
    width: 100%;
    height: auto;
    font-family: 'Open Sans', sans-serif;
    background: rgba(0, 0, 0, 0.5);
    padding-top: 1%;
}


#DeliveryBox #postcode,
#DeliveryBox button {
    float: left;
    width: 40%;
}

#DeliveryBox button {
    height: 50px;
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #ffffff;
}

.contacts li i {
    padding: 9px 9px 9px 0px;
    font-size: 22px;
}

.NextStep {
    float: right;
}

.food-item,
.banner {
    /* for chrome and safari*/
    -webkit-animation-duration: 1s;
    -webkit-animation-name: slidein;

    /*for firefox*/
    -moz-animation-duration: 1s;
    -moz-animation-name: slidein;

    /* for opera*/
    -o-animation-duration: 1s;
    -o-animation-name: slidein;

    /* Standard syntax*/
    animation-duration: 1s;
    animation-name: slidein;
}

@-webkit-keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

@-moz-keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

@-o-keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

.NoButter,
.NoPeas {
    width: 137px !important;
}

.8Pieces,
.4Pieces {
    width: 137px !important;
}