html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
    background-color: #f0f0f0;
    font-family: 'Raleway', sans-serif;
    color: #26292c;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@font-face {
    font-family: 'janda';
    src: url('../fonts/janda/JandaElegantHandwriting.ttf'); /* IE9 Compat Modes */
url('../fonts/janda/JandaElegantHandwriting.ttf')  format('truetype'); /* Safari, Android, iOS */
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.6rem;
}

.handWrittenBCP {
    font-family: 'janda', janda, sans-serif;
    font-weight: normal;
    font-style: normal;
}

a, a:hover {
    color: #26292c;
}

.selectable * {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.raleway {
    font-family: 'Raleway', sans-serif;
}

.openSans {
    font-family: 'Open Sans', sans-serif;
}

.bold-1 *, .bold-1 {
    font-weight: 700;
}

.bold-2 *, .bold-2 {
    font-weight: 800;
}

.thin *, .thin {
    font-weight: 300;
}

.rem1 {
    font-size: 1rem;
}

.callUs {
    width: auto;
    text-align: center;
}

.logo {
    height: 100%;
    padding: 10px;
}

.logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.form-group label {
    margin-bottom: 1px;
}

.logoBar {
    padding-left: 30px;
    padding-right: 30px;
    height: 80px;
    width: 100%;
    position: fixed;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 30px 30px;
    background-color: white;
    box-shadow: -4px -4px 8px 0px rgba(255, 255, 255, 0.7), 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navigationBar {
    padding-left: 30px;
    padding-right: 30px;
    height: 80px;
    width: 100%;
    position: fixed;
    bottom: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: all 1s ease;
    z-index: 999;
    pointer-events: none;
}

.navigationBar.hidden {
    bottom: -150px;
}

.progressBar {
    padding-left: 30px;
    padding-right: 30px;
    height: 60px;
    width: 100%;
    position: fixed;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px 30px 0 0;
    background-color: white;
    transition: all 0.8s ease;
    z-index: 1000;
    box-shadow: +4px+4px 8px 0px rgba(0, 0, 0, 0.2), 4px -4px 8px 0px rgba(0, 0, 0, 0.05);

}

.progressBar.hidden {
    bottom: -150px;
}

.hideThis {
    opacity: 0;
}

.progressBar .row {
    width: 100%;
}

section {
    width: 100%;
    min-height: 100vh;
    padding: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content {
    width: 100%;
    padding: 50px;
    border-radius: 30px;
    background-color: #f0f0f0;
    box-shadow: -4px -4px 8px 0px rgba(255, 255, 255, 0.7), 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.author {
    width: auto;
    padding: 5px;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 0 0 10px 10px;
    background-color: #f0f0f0;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
    padding-left: 40px;
    padding-right: 40px;
    font-size: 10px;
    margin-right: 50px;
    opacity: 80%;
}

.button {
    opacity: 1;
    width: 50%;
    max-width: 300px;
    padding: 15px;
    margin: 10px;
    border-radius: 30px;
    background-color: #f0f0f0;
    cursor: default;
    text-align: center;
    transition: all 0.5s ease;
    font-weight: 700;
    color: #1c1f21;
    box-shadow: +4px+4px 8px 0px rgba(0, 0, 0, 0.2), 4px -4px 8px 0px rgba(0, 0, 0, 0.05);
}

.navigationBar .button {
    background-color: white;
    pointer-events: all;
}

.button.hidden {
    pointer-events: none;
    transition: all 0.2s ease;
    opacity: 0;
}

.oneLine {
    white-space: nowrap
}

.button i {
    transition: all 0.5s ease;
}

.summaryWrapper {
    max-width: 700px;
    margin: auto;
}

.orderedProducts {
    margin-bottom: 20px;
}

.orderedProducts > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    line-height: 2rem;
}

.orderedProducts > div span:nth-child(1) {
    white-space: nowrap;
}

.orderedProducts > div span:nth-child(2) {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    border-bottom: #cdcdcd solid 1px
}

.orderedProducts > div span:nth-child(3) {
    white-space: nowrap;
}

.button.final {
    text-transform: uppercase;
}

.noOpacity {
    opacity: 0;
    pointer-events: none;
}

.orderDetail {
    font-size: 2rem;
}

.imageHolder {
    cursor: pointer;
    position: relative;
}

.imageHolder img {
    width: 100%;
    background: white;
    padding: 10px;
}

.onePiece {
    transition: all 0.3s ease;
    width: 100%;
    padding: 30px;
    border-radius: 30px;
    margin-top: 50px;
    background-color: #f0f0f0;
    box-shadow: -4px -4px 8px 0px rgba(255, 255, 255, 0.7), 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.onePiece:hover {
    box-shadow: -4px -4px 8px 0px rgba(255, 255, 255, 0.7), 4px 4px 8px 0px rgba(0, 0, 0, 0.05), -4px -4px 8px 0px rgba(255, 255, 255, 0.7), 4px 4px 8px 0px rgba(0, 0, 0, 0.05), -4px -4px 8px 0px rgba(255, 255, 255, 0.7), 4px 4px 8px 0px rgba(0, 0, 0, 0.05), -4px -4px 8px 0px rgba(255, 255, 255, 0.7), 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
}

.priceTag {
    font-size: 1.3rem;
}

.grayText {
    color: #747474;
}

.animate {
    transition: all 0.3s ease;
}

.grayText-dark {
    color: #515151;
}

.small, small {
    font-size: 60%;
}

.clickablePointer {
    cursor: pointer;
    pointer-events: all !important;
}

.spanHyperlink {
    cursor: pointer;
}

.spanHyperlink:hover {
    text-decoration: underline;
}

.small-70, small-70 {
    font-size: 70%;
}

.title {
    font-size: 2rem;
}

.topImageHolder img {
    max-width: 90%;
    width: 600px;
}

.titleHolder {
    margin-top: 13px;
}

.topDesc img {
    width: 150px;
    height: auto;
    max-width: 100%;
}

.modal-header {
    height: 100px;
    border: 0;
}

.thumbHolder {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
}

.sub-title {
    color: #747474;
    margin-top: -6px;
    margin-bottom: 10px;
}

.sub-header {
    font-size: 1rem;
    color: #747474;
}

.header {
    margin-top: 20px;
}

.productImage {
    transition: all 0.5s ease;
}

.zoomDiv {
    text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
    opacity: 0.3;
    font-size: 30px;
    color: gray;
    position: absolute;
    bottom: 0%;
    right: 0%;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    text-align: center;
    transition: all 0.4s ease;
    pointer-events: none;
}

.discount {
    font-size: 35px;
    color: #4d4d4d;
    position: absolute;
    top: 0%;
    right: 0%;
    text-align: center;
    margin-top: -25px;
    margin-right: -15px;
    transition: all 0.4s ease;
    opacity: 0.8;
    pointer-events: none;
}

.noWrapSpan span {
    white-space: nowrap;
}

.imageHolder:hover .discount {
    opacity: 0.3;
}

.imageHolder:hover .zoomDiv {
    opacity: 1;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    font-size: 40px;
}

.imageHolder:hover .productImage {
    opacity: 0.3;
}

.sizeDesc {
    color: #747474;
}

.modal-body {
    overflow-y: auto;
    text-align: center;
}

.modal-body img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 300px);
}

.modal-content {
    border: 0px solid rgba(0,0,0,1);
    border-radius: 1rem;
}

.close {
    font-size: 3.5rem;
    font-weight: 400;
    padding: 1rem 2rem !important;
}

.controls {
    font-size: 1.4rem;
}

.modal-alergens {
    opacity: 70%;
    font-size: 0.8rem;
}

.modal-name {
    opacity: 80%;
}

.redStar {
    color: #FF5555 !important;
}

.controls.fa-plus-circle {
    color: #3BB33B;
    transition: 0.2s all ease;
    cursor: pointer;
}

.colorGreen {
    color: #3BB33B !important;
}

.checkMarker {
    font-size: 2rem;
    opacity: 80%;
}

.controls.fa-minus-circle {
    color: #d93f45;
    transition: 0.2s all ease;
    cursor: pointer;
}

.pricing.row {
    margin-top: 10px;
    justify-content: space-evenly;
}

.pricing div {
    padding: 0 !important;
}

.controls.fas:hover {
    transform: scale(1.2);
}

.makeHover {
    transition: all 300ms ease;
}

.makeHover:hover {
    transform: scale(1.2);
}

.deliveryWrapper {
    padding-top: 10px;
    padding-bottom: 40px;
}

.deliveryWrapper i {
    font-size: 5rem;
}

.disableLinebreak {
    white-space: nowrap;
}

.deliveryPrice {
    font-size: 1rem;
    line-height: 2.5rem;
}

#innerBA, #outerBA {
    margin-top: 15px;
}

.delieryInfoBox {
    font-size: 1.5rem;
    cursor: pointer;
    height: 100%;
    margin-top: 0px;
    padding-bottom: 0px;
}

.delieryInfoBox * {
    transition: all 0.2s ease;
}

.normalMouse {
    cursor: default;
}

.pointerMouse {
    cursor: pointer;
}

.isSelected .fa-question-circle {
    opacity: 0;
}

#delivery-setter .fa-check-circle,
#time-setter .fa-check-circle {
    opacity: 0;
}

.deliveryWrapper .fa-map-marker-alt,
.deliveryWrapper .fa-car-side,
.deliveryWrapper .fa-calendar-alt,
.deliveryWrapper .fa-hand-point-up {
    opacity: 0.2;
}

.delivery-head {
    font-size: 1rem;
    margin-top: 5px;
}

.delivery-head-2 {
    margin-top: 10px;
    font-size: 0.8rem;
}

#delivery-setter.isSelected .selected .fa-check-circle,
#delivery-setter.isSelected .selected .fa-map-marker-alt,
#delivery-setter.isSelected .selected .fa-car-side,
#time-setter.isSelected .selected .fa-check-circle,
#time-setter.isSelected .selected .fa-calendar-alt,
#time-setter.isSelected .selected .fa-hand-point-up {
    opacity: 1;
}

.delieryInfoBox:hover .fa-map-marker-alt,
.delieryInfoBox:hover .fa-car-side,
.delieryInfoBox:hover .fa-calendar-alt,
.delieryInfoBox:hover .fa-hand-point-up {
    opacity: 1;
}

.makeBigger {
    transition: all 1s ease;
}

.makeBigger:hover {
    transition: all 20s ease;
    font-size: 500% !important;
}

.pickerWrapper {
    max-width: 200px;
    margin: auto;
}

.thumbImage {
    width: 150px;
    height: 100px;
    border-radius: 100%;
    border: 5px white solid;
    overflow: hidden;
    position: relative;
    background: white;
}

.thumbImage img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 500ms ease-out;
}

.thumbImage img:hover {
    transform: scale(1.2);
}

.infoToolTip {
    color: #5ab097;
    font-size: 2rem !important;
}

.flexRight {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.thankYou {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
    background: #ffffff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    transition: all 1000ms ease;
    opacity: 1;
}

.thankYou.hidden {
    opacity: 0;
}

.thankYou > div {
    height: max-content;
    margin: auto;
    text-align: center;
    width: 100%;
}

.thankYou img {
    height: auto;
    margin: auto;
    max-width: 400px;
    width: 30%;
}

.titleCupcake {
    font-size: 1.8rem;
    margin-bottom: 3px;
}

.makeSmaller {
    margin-bottom: .8rem;
}

#datetimepickerDate .bootstrap-datetimepicker-widget .datepicker-days table th.picker-switch {
    pointer-events: none;
}

@media only screen and (max-width: 576px) {

    .logoBar {
        border-radius: 0 0 20px 20px;
        height: 60px;
    }

    .hideOnSmall {
        display: none;
    }

    .titles h3 {
        font-size: 1.4rem;
    }

    .titles h4 {
        font-size: 1.2rem;
    }

    .titleCupcake {
        font-size: 1.4rem;
    }

    .content {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    section {
        padding-left: 5px;
        padding-right: 5px;
    }

    .imageHolder img {
        padding: 5px;
    }

    .onePiece {
        padding: 20px;
        padding-bottom: 15px;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
        padding-right: 10px;
        padding-left: 10px;
    }

    .col-4 {
        padding-right: 5px;
        padding-left: 5px;
    }

    .pricing {
        margin-left: 0px;
        margin-right: 0px;
    }

    .makeSmaller {
        font-size: 0.8rem;
    }
}

.s11 {
    font-size: 1.1rem;
}

#debug {
    position: fixed;
    z-index: 100000;
    font-size: 30px;
    color: red;
    background: white;
}


#section-2,
#section-3,
#section-4,
#section-5,
#section-6 {
    display: flex;
}

.forceHidden {
    display: none !important;
}

.makeSmaller i {
    margin-right: 5px;
    margin-bottom: 2px;
    font-size: 14px;
}

