/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    /*Image only BG fallback*/

    /*background = gradient + image pattern combo*/
    background:
        linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));
    /*	background: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;*/
    overflow: hidden;
    font-family: montserrat, arial, verdana;
}

/*form styles*/
#msform {
    width: 520px;
    margin: 50px auto;
    text-align: center;
    position: relative;
}

fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
input,
textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

/*buttons*/
.action-button {
    width: 100px;
    background: #27AE60;
    background: #9013FE;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.action-button:hover,
.action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
    box-shadow: 0 0 0 2px white, 0 0 0 3px #9013FE;
}

/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 25%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: #27AE60;
    background: #9013FE;
    color: white;
}

label {
    display: inline-block;
    width: 69%;
}

#msform .number-style {
    vertical-align: baseline;
    width: inherit;
    display: inline-block;
}

#msform .number-style input {
    vertical-align: baseline;
    padding: 0px 0px;
    width: inherit;
}

#msform .number-style span {
    margin: 0px 0px;
}

#msform span.itemDescription {
    display: inline-block;
    width: 217px;
    text-align: left;
}

#msform span.itemPrice {
    display: inline-block;
    width: 47px;
    text-align: center;
}

#msform span.itemPrice.raised {
    color: red;
}

#msform .number-style span.number-plus {
    border: 2px solid #00b301;
}

#msform .number-style span.number-plus::after,
#msform .number-style span.number-plus::before {
    background-color: #00b301;
}

#msform .number-style span.number-minus {
    border: 2px solid #cd0a0a;
}

#msform .number-style span.number-minus::after {
    background-color: #cd0a0a;
}

#fillOrder {
    margin-left: -168px;
}

#fillOrder label {
    width: inherit;
}

#order {
    width: 833px;
}

#order .order-container {
    display: inline-block;
    vertical-align: top;
    width: 385px;
}

#order .order-container.left {}

#order .order-container.right {
    margin-left: 25px;
}

@page {
    size: 62mm 200mm;
    margin: 5mm;
}

div.label {
    page-break-before: always;
}


/* Radio Buttons */

#pickupTime ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: auto;
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

ul#radio-date {
    width: 60%;
}

ul#radio-time {
    width: 38%;
}

#pickupTime ul li {
    color: #888888;
    display: block;
    position: relative;
}

#pickupTime ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
    width: 50%;
}

#pickupTime ul li label {
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1.35em;
    margin: 7px auto;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    width: 100%;
    text-align: left;
    text-indent: 44px;
}

#pickupTime ul li:hover label {
    color: #444444;
}

#pickupTime ul li .check {
    display: block;
    position: absolute;
    border: 5px solid #888888;
    border-radius: 100%;
    height: 17px;
    width: 17px;
    top: 0px;
    left: 0px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

#pickupTime ul li:hover .check {
    border: 5px solid #444444;
}

#pickupTime ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 11px;
    width: 11px;
    top: 3px;
    left: 3px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

#pickupTime input[type=radio]:checked~.check {
    border: 5px solid #27AE60;
    border: 5px solid #9013FE;
}

#pickupTime input[type=radio]:checked~.check::before {
    background: #27AE60;
    background: #9013FE;
}

#pickupTime input[type=radio]:checked~label {
    color: #27AE60;
    color: #9013FE;
}

#pickupTime input[type=radio][disabled]~label {
    text-decoration: line-through;
}



hr {
    margin-bottom: 6px;
}

/* Tooltip container */
#order p {
    position: relative;
    display: block;
}

/* Tooltip text */
#order p .tooltiptext {
    visibility: hidden;
    position: absolute;
}

/* Show the tooltip text when you mouse over the tooltip container */
#order p:hover .tooltiptext {
    visibility: visible;
    z-index: 1;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 7px 11px;
    background: white;
    width: 260px;
    text-align: left;
    top: -20px;
    left: 365px;
}

#order p:hover .itemDescription {
    font-weight: bold;
}


#inputPhone,
#inputPhone:focus {
    border: none;
    padding: 0;
    font-size: 49px;
    outline: none;
}

.softkeys {
    margin: 0;
}

.legal {
    position: absolute;
    bottom: -7em;
    width: 37em;
    height: 4.5em;
    background: aliceblue;
    padding: 0.4em;
    left: -5.7em;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.order-info {
    position: absolute;
    bottom: 82px;
    right: 65px;
    font-weight: bold;
}

body.banned #customerDetails input.next {
    background: gray;
    box-shadow: none;
    pointer-events: none;
}

#customerDetails .banned-notice {
    display: none;
    font-size: 23px;
    margin-block: 10px;
    padding: 0px;
    font-weight: bold;
    color: red;
}

body.banned {
    background: #ff0000;
}

body.banned #customerDetails .banned-notice {
    display: block;
}