@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.ttf");
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.ttf");
    font-weight: bold;
}

@-webkit-keyframes breathe {
  0% { -webkit-transform: scale(1); transform: scale(1); }
  50% { -webkit-transform: scale(1.05); transform: scale(1.05); }
  100% { -webkit-transform: scale(1); transform: scale(1); }
}

@keyframes breathe {
  0% { -webkit-transform: scale(1); transform: scale(1); }
  50% { -webkit-transform: scale(1.05); transform: scale(1.05); }
  100% { -webkit-transform: scale(1); transform: scale(1); }
}


html,
body,
main {
	height: 100%;
}

* {
	margin: 0;
    font-family: "Montserrat";
}

body {
    background-color: black;
}
#page {
    margin: 0 auto;
    width: 100%;
    max-width: 527px;
    height: 100%;
    background-color: white;
    overflow: hidden;
    position: relative;
}




header {
    -webkit-box-shadow: 1px 2px 4px rgba(0,0,0,.1);
            box-shadow: 1px 2px 4px rgba(0,0,0,.1);
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.headSection {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
}
a.buttonLink {
    color: #3daede;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}




#menuOpener {
    width: 40px;
    height: 40px;
    line-height: 1;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

path.line-1, path.line-2, path.line-3 {
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}

#menuOpener.opened .line-1 {
    -webkit-transform: rotate(-45deg) translate(4px,-2px);
        -ms-transform: rotate(-45deg) translate(4px,-2px);
            transform: rotate(-45deg) translate(4px,-2px);
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    /* transition: .1s linear; */
}
#menuOpener.opened .line-2 {
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(45deg) translateX(0);
        -ms-transform: rotate(45deg) translateX(0);
            transform: rotate(45deg) translateX(0);
    /* transition: .3s linear; */
}
#menuOpener.opened .line-3 {
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    -webkit-transform: rotate(-45deg) translate(-3px, 3px);
        -ms-transform: rotate(-45deg) translate(-3px, 3px);
            transform: rotate(-45deg) translate(-3px, 3px);
    /* transition: .1s linear; */
}

#navWrap {
    position: absolute;
    left: 0;
    bottom: 0;
    height: calc(100% - 80px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: rgba(0,0,0,.8);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
    z-index: 99999;
}
#navWrap nav {
    background-color: white;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 50%;
    border-top: 1px solid #bfbfbf;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-animation-delay: .2s;
            animation-delay: .2s;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}

#menuOpener.opened + #navWrap {
    opacity: 1;
    visibility: visible;
}
#menuOpener.opened + #navWrap nav {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
}

#navWrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#navWrap ul li a {
    padding: 20px;
    display: inline-block;
    border-bottom: 1px solid #eaeaea;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-decoration: none;
    color: black;
}

.appLogo {
    width: 100px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    height: 100%;
    text-align: center;
}
.appLogo img {
    width: auto;
    height: 100%;
}
.listPage {
    padding-top: 20px;
    height: calc(100% - 100px);
    overflow: auto;
}


.titleSection {
    font-weight: bold;
    font-size: 22px;
}


.headerBtnWrap-el {
    width: 40px;
     position: relative;
}
.headerBtnWrap-el.breathe a {
	display: block;
	-webkit-animation-name : breathe;
	        animation-name : breathe;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
	-webkit-animation-duration: .8s;
	        animation-duration: .8s;
	-webkit-animation-iteration-count: 2;
	        animation-iteration-count: 2;
}

.headerBtnWrap-el .cartNum {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 10px;
    -webkit-box-sizing: border-box;
        box-sizing: border-box;
    font-size: 8px;
    padding-left: 8px;
}
.headerBtnWrap-el img {
    width: 100%;
}


.gridWrap.list .gridEl {
    display: -ms-grid;
    	display: grid;
    -ms-grid-columns: 70px auto 75px;
    	grid-template-columns: 70px auto 75px;
    padding: 10px 5px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    -webkit-box-sizing: border-box;
    	box-sizing: border-box;
    margin-top: -1px;
}
#productsList.gridWrap.list .gridEl {
    -ms-grid-columns: 70px auto 75px;
    grid-template-columns: 70px auto 75px;
}




.gridWrap.list .gridEl > div {
    padding: 5px;
}

.gridWrap.list .gridEl .productName {
    font-weight: bold;
    font-size: 13px;
        width: 100%;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.gridWrap.list .gridEl .productDescription {
    color: #bfbfbf;
    font-size: 13px;
}

.gridWrap.list .imageWrap {
    width: 64px;
    height: 64px;
    border: 1px solid #bfbfbf;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: #bfbfbf;
}

.gridWrap.list .imageWrap img {
    width: auto;
    height: 100%;
}

.gridWrap.list .gridEl-image {
    -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
           padding: 2px !important;
}

.gridWrap.list .gridEl-price {
    -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 0px;
        padding: 5px 0 !important;
}

.gridWrap.list .gridEl-price .quantity {
font-weight: 500;
}

.gridWrap.list .gridEl-text {
    overflow: hidden;
}

.gridEl-lastRow {
	align-self: flex-start;
    justify-self: center;
    padding: 0 !important;
}

.gridWrap.list .gridEl-options {
    -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center;
}


.gridWrap.list .alergenosWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px;
}

.gridWrap.list .alergenosEl {
    width: 20px;
}

.gridWrap.list .alergenosEl + .alergenosEl {
    margin-left: 4px;
}

.gridWrap.list .alergenosEl img {
    width: 100%;
    height: auto;
}


.gridWrap.imageList {
    padding: 20px;
}
.gridWrap.imageList .gridEl {
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 13px;
    overflow: hidden;
    color: black;
    text-decoration: none;
}
.gridWrap.imageList .gridEl-image {
    height: 200px;
    background-color: #bfbfbf;
    border-radius: 13px;
    display: -webkit-box;
        display: -ms-flexbox;
            display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
}
.gridWrap.imageList .gridEl-image .imageWrap {
    width: 100%;
    height: auto;
}
.gridWrap.imageList .gridEl-image img {
    width: 100%;
    height: auto;
}
.gridWrap.imageList .gridEl-text {
    padding: 20px;
}
.gridWrap.imageList .productName {
    font-size: 18px;
    font-weight: bold;
}
.gridWrap.imageList .productDescription {
    color: #bfbfbf;
    font-size: 12px;
}
.gridWrap.imageList .gridEl + .gridEl {
    margin-top: 30px;
}


.optMenu-wrap {
    position: relative;
}
.optMenu-button {
    cursor: pointer;
}
.optMenu-menu {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    background-color: white;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
            box-shadow: 0 0 3px rgba(0,0,0,.2);
    border-radius: 5px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}
.optMenu-menu:after {
    content: "";
    border-left: 8px solid #bfbfbf;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    left: 101%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.optMenu-button.visible + .optMenu-menu{
    opacity: 1;
    visibility: visible;
}
.optMenu-menu .optMenu-menu-el:hover {
    background-color: #bfbfbf;
    color: white;
}
.optMenu-menu .optMenu-menu-el {
    padding: 5px 10px;
    cursor: pointer;
    display: block;
    color: black;
    text-decoration: none;
}
.optMenu-menu .optMenu-menu-el + .optMenu-menu-el {
    border-top: 1px solid #bfbfbf;
}



.errorMsg {
    padding: 20px;
}


#cartPopup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,.6);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    opacity: 0;
    visibility: hidden;
}
#cartPopup.visible {
    opacity: 1;
    visibility: visible;
}
.cartPopup-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cartPopup-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: white;
    border-radius: 13px 13px 0 0;
}
.cartPopup-image {
    height: 220px;
    background-color: #bfbfbf;
    border-radius: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
        border-bottom: 1px solid #cdbfc5;
}
.cartPopup-image img{
    width: 100%;
    height: auto;
}
.cartPopup-content {
    padding: 25px;
}
.cartPopup-name {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0px;
}
.cartPopup-price {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.cartPopup-description {
    text-align: center;
    color: #bfbfbf;
    margin-bottom: 5px;
}
.addToCart-wrap {
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #3daede;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}


.addToCart {
    background-color: #bfbfbf;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
                margin: 0 auto;
}
.addToCart img {
    width: 50%;
}


.cartPopup-close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    z-index: 1;
}
.cartPopup-close:before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 50px;
    display: block;
    position: absolute;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.cartPopup-close:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 50px;
    display: block;
    position: absolute;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}


.cartPopup-quantity-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 15px;
}
.cartPopup-quantity-minus {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}
.cartPopup-quantity-minus:after {
    content: "";
    display: block;
    width: 30%;
    height: 2px;
    background-color: black;
}
.cartPopup-quantity-minus.inactive:after {
    background-color: #bfbfbf;
}
.cartPopup-quantity-q {
    margin: 0 10px;
    width: 35px;
}
.cartPopup-quantity-q input {
    text-align: center;
    -webkit-appearance: none !important;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 30px;
    width: 100%;
    outline: 0;
    pointer-events: none;
    border: 0px solid #bfbfbf !important;
    padding: 0 !important;
}

.cartPopup-quantity-plus {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    cursor: pointer;
}

.cartPopup-quantity-plus:before {
    content: "";
    display: block;
    width: 2px;
    height: 30%;
    background-color: black;
    position: absolute;
}

.cartPopup-quantity-plus:after {
    content: "";
    display: block;
    width: 30%;
    height: 2px;
    background-color: black;
    position: absolute;
}



#alertWrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0,0,0,.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
#alertCover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#alertBox {
    position: relative;
    z-index: 1;
    background-color: white;
    width: 80%;
    border-radius: 13px;
    text-align: center;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
#alertBox h3{
    line-height: 1;
    margin-bottom: 10px;
}
#alertBox p{
    font-size: 14px;
}
.btnWrap{
    margin-top: 10px;
}
.btn {
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
}
.btn.black {
    background-color: black;
    color: white;
}
a.btn.gray {
    background-color: #bfbfbf;
    color: white;
}




.formSection {
    padding: 20px;
}
.formEl {
    margin-bottom: 20px;
}
.formEl-title {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
        font-size: 14px;
        margin-bottom: 10px;
}

input[type="text"], 
input[type="phone"], 
input[type="mail"],
input[type="password"] {
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
    padding: 5px 10px;
    outline: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="datetime-local"] {
    box-shadow: none;
    border: 0px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
    padding: 5px 10px;
    outline: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


input[type="text"]:focus,
input[type="phone"]:focus, 
input[type="mail"]:focus,
input[type="datetime-local"]:focus,
input[type="password"]:focus { 
    -webkit-box-shadow: 0 0 3px 0px rgba(0,0,0,.5);
            box-shadow: 0 0 3px 0px rgba(0,0,0,.5);
}

.submitBtn {
    -webkit-appearance: none;
    background-color: #3daede;
    color: white;
    border: 1px solid #3daede;
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 15px;
    cursor: pointer;
}





.gridEl-quantity{
    -ms-grid-row-align: center;
        -ms-flex-item-align: center;
        align-self: center;  
}

.cart-quantity-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-quantity-minus {
    width: 20px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}
.cart-quantity-minus:after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: black;
}
.cart-quantity-minus.inactive:after {
    background-color: #bfbfbf;
}
.cart-quantity-q {
    width: 30px;
}
.cart-quantity-q input[type="number"] {
    text-align: center;
    -webkit-appearance: none !important;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 20px;
    width: 100%;
    outline: 0;
    pointer-events: none;
}
.cart-quantity-q input[type=number]::-webkit-inner-spin-button {
    display: none;
}
.cart-quantity-plus {
    width: 20px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    cursor: pointer;
}

.cart-quantity-plus:before {
    content: "";
    display: block;
    width: 2px;
    height: 48%;
    border-left: 2px solid;
    position: absolute;
}

.cart-quantity-plus:after {
    content: "";
    display: block;
    width: 50%;
    border-bottom: 2px solid;
    position: absolute;
}

/*
.removeFromCart {
    position: relative;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}
.removeFromCart:before {
    position: absolute;
    content: "";
    width: 100%;
    border-bottom: 2px solid;
    display: block;
    -webkit-transform: rotate(50deg);
        -ms-transform: rotate(50deg);
            transform: rotate(50deg);
}
.removeFromCart:after {
    position: absolute;
    content: "";
    width: 100%;
    display: block;
    -webkit-transform: rotate(-50deg);
        -ms-transform: rotate(-50deg);
            transform: rotate(-50deg);
    border-bottom: 2px solid;
}
*/
.removeFromCart {
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.removeFromCart img {
    width: 100%;
    height: auto;
}

.categoriesWrap {
    padding: 20px;
}
.categoriesContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
}
.categoriesWrap-el {
    width: calc(100%/5);
    text-decoration: none;
    min-width: calc(100%/5);
}
.categoriesWrap-el-icon {
    overflow: hidden;
    width: 65%;
    padding-top: 65%;
    border-radius: 50%;
    background-color: #bfbfbf;
    margin: 0 auto;
    position: relative;
}
.categoriesWrap-el-icon img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.categoriesWrap-el-text {
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    margin-top: 10px;
    color: black;
}
.categoriesWrap-el.current .categoriesWrap-el-text {
    text-decoration: underline;
}

.buttonWrap {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    background-color: white;
}
.buttonWrap .button {
    text-decoration: none;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #3daede;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}


.xdsoft_datetimepicker.xdsoft_noselect.xdsoft_.xdsoft_inline {
    padding: 0 !important;
    border: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td, 
.xdsoft_datetimepicker .xdsoft_calendar th {
    background-color: transparent !important;
    padding: 7px !important;
    font-size: 13px !important;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
    width: 100% !important;
}
td.xdsoft_date.xdsoft_day_of_week2.xdsoft_date.xdsoft_current.xdsoft_today {
    background-color: #3daede !important;
}

.xdsoft_monthpicker {
    display: flex;
    justify-content: space-between;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, 
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, 
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
    background: #3daede !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div {
    background: transparent !important;
    height: 30px !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
    height: 188px !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker {
    width: 90px !important; 
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, 
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
    margin-left: 21px !important;
}




#load_page {
    display: flex;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 3s linear;
}
#load_page img {
    opacity: 0;
    visibility: hidden;
    transition: 1.5s linear;
    width: 150px;
}
.load #load_page {
    opacity: 1;
    visibility: visible;
    background-color: white;
    transition: 0s linear;
}
.loading #load_page {
    opacity: 1;
    visibility: visible;
    background-color: #3daede;
    transition: 0s linear;
}
.loading #load_page img {
    opacity: 1;
    visibility: visible;
     transition: 0s linear;
         
}


.copyright {
    position: absolute;
    width: 50%;
    bottom: 0;
    padding: 10px;
    text-align: center;
    font-size: 11px;
}
.copyright a {
    color: black;
    text-decoration: none;
}

#orderDone {
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
#orderDone .orderDoneWrap {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.orderDoneText {
    font-size: 20px;
}

.btnWrap .button {
    text-decoration: none;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #3daede;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;

    display: block;
}
.btnWrap .button + .button {
    margin-top: 10px;
}