body {
  font-family: "Bitter", sans-serif, "Calibri";
  padding: 0;
  margin: 0;
  font-size: 16px !important;
  letter-spacing: 0;
}

.hide {
  display: none !important;
}

.error {
  text-align: center;
  font-size: 18px;
  color: #d83b29;
  margin-top: 20px;
  padding-bottom: 10px;
}

.error-border {
  border: 2px solid #e74c3c !important;
}

.error-border::placeholder {
  color: #e74c3c !important;
}

.show-check {
  display: block !important;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.custom-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  font-size: 14px;
  padding: 2px;
}

.custom-checkbox:checked + label::before {
  border-color: #e76d30;
  background-color: #e76d30;
  color: white;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
}

label {
  position: relative;
}

label i {
  position: absolute;
  left: 4px;
  font-size: 14px;
}

.show {
  display: flex !important;
}

.del {
  height: auto !important;
}

.active-tab {
  color: #ff7300 !important;
}

.active-menu {
  background-color: #e76d30;
  border: 1px solid #e76d30 !important;
  color: white !important;
  transition: all 0.25s;
}

@media only screen and (max-width: 768px) {
  .show-cart {
    display: flex !important;
  }
}

a {
  text-decoration: none;
  color: black;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes burger {
  0% {
    height: 300px;
    opacity: 0;
  }
  25% {
    height: 450px;
    opacity: 0.8;
  }
  50% {
    height: 600px;
    opacity: 1;
  }
  75% {
    height: 450px;
    opacity: 0.8;
  }
  100% {
    height: 300px;
    opacity: 0;
  }
}

.cart-btn {
  position: fixed;
  bottom: 50px;
  right: 15px;
  height: 75px;
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(3, 3, 3, 0.1);
  cursor: pointer;
}

.cart-btn i {
  font-size: 30px;
}

.end-message {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 700;
}

.end-message .message {
  text-align: center;
  background-color: white;
  border-radius: 25px;
  border: 2px solid #F8F6F7;
  padding: 20px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.end-message .message .title {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
  color: #4E4E4E;
}

.end-message .message .msg {
  margin-bottom: 30px;
  font-size: 18px;
  color: #666;
}

.end-message .message .msg span {
  color: #4E4E4E;
  font-weight: bold;
  font-size: 16px;
}

.end-message .message a {
  width: 100%;
  background-color: #e76d30;
  padding: 10px;
  color: white;
  border-radius: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: none;
}

.cart-popup {
  position: fixed;
  right: 0;
  height: 100%;
  z-index: 500;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  -webkit-box-shadow: -4px 0px 4px -3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -4px 0px 4px -3px rgba(0, 0, 0, 0.3);
  box-shadow: -4px 0px 4px -3px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 768px) {
  .cart-popup {
    display: none;
    width: 100% !important;
  }
}

.cart-popup .items-cart {
  padding: 10px;
  border: 1px solid white;
  background-color: #ffffff;
  width: 320px;
  overflow: auto;
}

@media only screen and (max-width: 768px) {
  .cart-popup .items-cart {
    width: 100% !important;
  }
}

.cart-popup .items-cart .order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #e76d30;
  font-family: "Bitter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  outline: none;
  cursor: pointer;
  color: white;
  border: none;
  padding: 20px 0px;
  border-radius: 15px;
  transition: all 0.25s;
  margin-top: 20px;
}

.cart-popup .items-cart .order:hover {
  background-color: #e76d30;
}

.cart-popup .items-cart .order span {
  padding: 0px 10px;
}

.cart-popup .items-cart .disable {
  background-color: #d7d7d7 !important;
  cursor: not-allowed;
}

.cart-popup .items-cart .empty {
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

.cart-popup .items-cart .empty i {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.3);
}

.cart-popup .items-cart .top {
  width: 100%;
}

.cart-popup .items-cart .top .title {
  border-radius: 25px 25px 0px 0px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  font-family: "Bitter", sans-serif;
  text-align: center;
  position: relative;
  background-color: white;
  border-bottom: 1px solid #F8F6F7;
  z-index: 450;
  color: #4E4E4E;
}

@media only screen and (max-width: 768px) {
  .cart-popup .items-cart .top .title {
    background-color: #F8F6F7;
  }
}

.cart-popup .items-cart .top i {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

@media only screen and (max-width: 768px) {
  .cart-popup .items-cart .top i {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .cart-popup .items-cart .content {
    border: 1px solid #F8F6F7;
    padding: 0px 20px;
    border-radius: 0px 0px 25px 25px;
    background-color: #FEFEFE;
  }
}

.cart-popup .items-cart .items .item {
  display: flex;
  justify-content: space-between;
  font-family: "Bitter", sans-serif;
  font-size: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  color: #666666;
}

.cart-popup .items-cart .items .item .top-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cart-popup .items-cart .items .item .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-popup .items-cart .items .item .left .count {
  font-weight: 600 !important;
}

.cart-popup .items-cart .items .item .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-popup .items-cart .items .item .item-title {
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 5px;
}

@media only screen and (max-width: 769px) {
  .cart-popup .items-cart .items .item .item-title {
    width: 300px;
  }
}

@media only screen and (max-width: 600px) {
  .cart-popup .items-cart .items .item .item-title {
    width: 140px;
  }
}

.cart-popup .items-cart .items .item .item-price {
  color: #e76d30;
  font-family: "Bitter", sans-serif;
}

.cart-popup .items-cart .items .item .indgredients {
  width: 100%;
  opacity: 0.6;
}

.cart-popup .items-cart .items .item .add-delete {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-popup .items-cart .items .item .add-delete i {
  font-size: 16px;
  padding: 7px;
  border-radius: 5px;
  cursor: pointer;
  color: #e76d30;
  transition: all 0.25s;
}

.cart-popup .items-cart .items .item .add-delete i:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.cart-popup .items-cart .items .item .add-delete i:last-child {
  margin-right: 10px;
}

.cart-popup .items-cart .items .item .fa-trash {
  font-size: 20px;
  color: #e76d30;
  cursor: pointer;
}

.cart-popup .items-cart .price {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  font-size: 16px;
  color: #e76d30;
  opacity: 0.7;
  font-family: "Bitter", sans-serif;
}

.cart-popup .items-cart .price .pr {
  color: #666666;
  font-family: "Bitter", sans-serif;
  font-size: 16px;
}

.cart-popup .items-cart .price span {
  font-size: 20px;
}

.cart-popup .items-cart .sub-total {
  border-top: 1px solid #F8F6F7;
  margin-top: 15px;
}

.cart-popup .items-cart .sub-total .pr {
  color: #666666;
  font-family: "Bitter", sans-serif;
  font-size: 16px;
}

.cart-popup .items-cart .total {
  font-size: 18px;
  margin-top: 0px;
  font-weight: 600;
  color: #e76d30;
  padding-bottom: 15px;
  border-bottom: 1px solid #F8F6F7;
  opacity: 1;
  font-family: "Bitter", sans-serif;
}

.cart-popup .items-cart .min-price {
  text-align: center;
  margin-top: 10px;
  color: #e76d30;
  font-weight: bold;
  font-family: "Bitter", sans-serif;
}

.cart-popup .items-cart .min-price .pr {
  color: #666666;
  font-family: "Bitter", sans-serif;
  font-size: 16px;
}

.cart-popup .items-cart .payment {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #e76d30;
}

.mobile-order-btn {
  position: fixed;
  z-index: 450;
  width: 100%;
  top: calc(100% - 77px);
  padding: 10px;
  background-color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: none;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: uppercase;
}

@media only screen and (max-width: 769px) {
  .mobile-order-btn {
    display: block;
  }
}

.mobile-order-btn .content {
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e76d30;
  color: white;
  padding: 15px;
  border-radius: 15px;
}

.mobile-order-btn .content .left {
  position: absolute;
  left: 35px;
}

.address-bg {
  height: 100%;
  width: calc(100% - 340px);
  position: fixed;
  z-index: 450;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

@media only screen and (max-width: 768px) {
  .address-bg {
    width: 100%;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 1024px) {
  .address-bg {
    box-sizing: border-box;
    border-radius: 0px;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 600;
    overflow: auto;
  }
}

.address-bg .address-popup {
  background-color: white;
  border-radius: 25px;
  min-width: 900px;
  color: #4E4E4E;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup {
    padding: 10px;
  }
}

.address-bg .address-popup .top-address {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F8F6F7;
  color: #4E4E4E;
  padding: 15px 25px;
  border-radius: 25px 25px 0px 0px;
}

.address-bg .address-popup .top-address .title-address {
  font-size: 22px;
}

.address-bg .address-popup .top-address .close {
  font-size: 26px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup {
    box-sizing: border-box;
    border-radius: 0px;
    height: auto !important;
    width: 100%;
    min-width: 100%;
    position: absolute;
    top: 0px;
  }
}

@media only screen and (max-height: 720px) {
  .address-bg .address-popup {
    height: 100vh;
  }
}

.address-bg .address-popup .title {
  font-size: 20px;
}

.address-bg .address-popup .content {
  padding: 0px 25px;
  border-radius: 0px 0px 25px 25px;
  border: 1px solid #F8F6F7;
  background-color: white;
}

.address-bg .address-popup .swipe {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.address-bg .address-popup .swipe .menu {
  width: 45%;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 2px solid #e76d30;
  color: #e76d30;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .address-bg .address-popup .swipe .menu {
    width: 40%;
  }
}

.address-bg .address-popup .swipe .menu i {
  margin-right: 10px;
  padding: 7px 0px;
}

.address-bg .address-popup .delivery {
  margin-top: 20px;
}

.address-bg .address-popup .delivery .map {
  font-size: 18px;
}

.address-bg .address-popup .delivery .map a {
  text-decoration: underline;
  font-weight: bold;
}

.address-bg .address-popup .delivery .timepicker {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.address-bg .address-popup .delivery .timepicker select {
  font-size: 16px;
  border-radius: 5px;
  padding: 5px;
  outline: none;
  margin-left: 20px;
}

.address-bg .address-popup .delivery .timepicker div {
  font-size: 18px;
}

.address-bg .address-popup .delivery .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .delivery .info {
    display: block;
  }
  .address-bg .address-popup .delivery .info .top {
    margin-top: 20px;
  }
  .address-bg .address-popup .delivery .info .bottom div {
    margin-top: 20px;
  }
}

.address-bg .address-popup .delivery .info input {
  outline: none;
  border: none;
  border: 1px solid #dfdfdf;
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.address-bg .address-popup .delivery .info input::placeholder {
  color: #c1c2c7;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .delivery .info input {
    width: 94%;
  }
}

.address-bg .address-popup .delivery .info .left {
  width: 48%;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .delivery .info .left {
    width: 100%;
  }
}

.address-bg .address-popup .delivery .info .left .bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .delivery .info .left .bottom {
    display: block;
  }
}

.address-bg .address-popup .delivery .info .right {
  width: 48%;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .delivery .info .right {
    width: 100%;
  }
}

.address-bg .address-popup .delivery .info .right .bottom {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

.address-bg .address-popup .delivery .info .right .bottom div {
  white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .delivery .info .right .bottom {
    display: block;
  }
  .address-bg .address-popup .delivery .info .right .bottom div {
    width: 100% !important;
  }
}

.address-bg .address-popup .delivery textarea {
  max-width: 100%;
  min-width: 100%;
  height: 100px;
  max-height: 100px;
  font-family: "Bitter", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  resize: none;
  border: 1px solid #dfdfdf;
  color: #4E4E4E;
}

.address-bg .address-popup .delivery textarea::placeholder {
  color: #d7d7d7;
}

.address-bg .address-popup .delivery .comment {
  margin-top: 40px !important;
  margin-bottom: 20px;
  font-size: 18px;
  color: #787b82;
  font-weight: 600;
}

.address-bg .address-popup .delivery .list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.address-bg .address-popup .delivery .error {
  text-align: center;
  font-size: 18px;
  color: #e74c3c;
  margin-top: 20px;
}

.address-bg .address-popup .delivery .help {
  margin-top: 20px;
  text-align: center;
}

.address-bg .address-popup .delivery .order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0px;
  background-color: #e76d30;
  border: none;
  margin-bottom: 20px;
  outline: none;
  margin-top: 20px;
  font-size: 20px;
  text-transform: uppercase;
  font-family: unset;
  color: white;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s;
}

.address-bg .address-popup .delivery .order:hover {
  background-color: #e76d30;
}

.address-bg .address-popup .delivery .order img {
  height: 30px;
}

.address-bg .address-popup .delivery .order span {
  margin-left: 10px;
}

.address-bg .address-popup .takeaway {
  width: 900px;
  font-family: "Bitter", sans-serif;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .takeaway {
    width: 100%;
  }
}

.address-bg .address-popup .takeaway textarea {
  max-width: 100%;
  min-width: 100%;
  height: 100px;
  max-height: 100px;
  font-family: "Bitter", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  resize: none;
  border: 1px solid #dfdfdf;
  color: #4E4E4E;
}

.address-bg .address-popup .takeaway textarea::placeholder {
  color: #d7d7d7;
}

.address-bg .address-popup .takeaway .timepicker {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.address-bg .address-popup .takeaway .timepicker select {
  font-size: 16px;
  border-radius: 5px;
  padding: 5px;
  outline: none;
  margin-left: 20px;
}

.address-bg .address-popup .takeaway .timepicker div {
  font-size: 18px;
}

.address-bg .address-popup .takeaway .comment {
  margin-top: 40px !important;
  margin-bottom: 20px;
  font-size: 18px;
  color: #787b82;
  font-weight: 600;
}

.address-bg .address-popup .takeaway .error {
  text-align: center;
  font-size: 18px;
  color: #e74c3c;
  margin-top: 20px;
  padding-bottom: 10px;
}

.address-bg .address-popup .takeaway .list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.address-bg .address-popup .takeaway .address {
  font-size: 18px;
  margin-top: 20px;
}

.address-bg .address-popup .takeaway .grafic-caffe {
  margin-bottom: 10px;
}

.address-bg .address-popup .takeaway .grafic-caffe .grafic-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
}

.address-bg .address-popup .takeaway .grafic-caffe .grafic {
  padding: 4px 0px;
}

.address-bg .address-popup .takeaway .phone {
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 15px;
}

.address-bg .address-popup .takeaway .data {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .address-bg .address-popup .takeaway .data {
    display: block;
  }
  .address-bg .address-popup .takeaway .data .text {
    width: 100% !important;
  }
  .address-bg .address-popup .takeaway .data .text input {
    width: 95% !important;
  }
}

.address-bg .address-popup .takeaway .data .text {
  margin-top: 15px;
  width: 40%;
}

.address-bg .address-popup .takeaway .data .text div {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #666666;
}

.address-bg .address-popup .takeaway .data .text input {
  width: 80%;
  font-size: 16px;
  outline: none;
  border: none;
  border: 2px solid #dfdfdf;
  border-radius: 8px;
  padding: 10px;
  color: #797F84;
}

.address-bg .address-popup .takeaway .data .text input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.address-bg .address-popup .takeaway .help {
  text-align: center;
  margin-top: 20px;
}

.address-bg .address-popup .takeaway button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  width: 100%;
  padding: 20px 0px;
  background-color: #e76d30;
  border: none;
  outline: none;
  margin-top: 20px;
  font-size: 20px;
  font-family: "Bitter", sans-serif;
  color: white;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 15px;
  transition: all 0.25s;
}

.address-bg .address-popup .takeaway button:hover {
  background-color: #e76d30;
}

.address-bg .address-popup .takeaway button span {
  margin-left: 10px;
}

#root {
  width: calc(100% - 340px);
}

#root .map {
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 700;
}

#root .map .content {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}

@media only screen and (max-width: 600px) {
  #root .map .content {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
}

#root .map .content .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#root .map .content .header .title {
  font-size: 20px;
}

#root .map .content .header i {
  font-size: 22px;
}

#root .map .content iframe {
  width: 600px;
}

@media only screen and (max-width: 600px) {
  #root .map .content iframe {
    width: 100%;
  }
}

#root .work-time {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

#root .work-time .content {
  padding: 20px;
  border-radius: 10px;
  background-color: white;
}

#root .work-time .content .help {
  font-size: 20px;
  color: #e76d30;
}

#root .work-time .content .title {
  padding: 10px 0px;
  font-size: 24px;
  text-align: center;
}

#root .work-time .content .grafic {
  padding: 2px 0px;
}

#root .work-time .content .grafic span {
  color: #e76d30;
  font-weight: bold;
}

#root .work-time .content .check {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

#root .work-time .content .check .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

#root .work-time .content .check .custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

#root .work-time .content .check .custom-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  font-size: 14px;
  padding: 2px;
}

#root .work-time .content .check .custom-checkbox:checked + label::before {
  border-color: #e76d30;
  background-color: #e76d30;
  color: white;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
}

#root .work-time .content .check label {
  position: relative;
}

#root .work-time .content .check label i {
  position: absolute;
  left: 4px;
  font-size: 14px;
}

#root .work-time .content .timepicker {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

#root .work-time .content .timepicker .delivery {
  font-size: 18px;
}

#root .work-time .content .timepicker select {
  margin-left: 20px;
  font-size: 16px;
  outline: none;
  padding: 5px;
  border-radius: 5px;
}

#root .work-time .content .timepicker select option {
  text-align: center;
}

#root .work-time .content button {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-top: 10px;
  font-size: 16px;
  background-color: #e76d30;
  color: white;
  outline: none;
  cursor: pointer;
}

#root .mob-menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  #root {
    width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
  #root .mob-menu {
    position: fixed;
    display: block;
    top: calc(80% - 25px);
    border-radius: 50%;
    left: 83%;
    width: 50px;
    height: 50px;
    z-index: 320;
    display: flex;
    justify-content: center;
    background-color: rgba(3, 3, 3, 0.5);
    font-weight: bold;
  }
  #root .mob-menu a {
    text-align: center;
    padding: 15px 20px;
  }
  #root .mob-menu a i {
    font-size: 20px;
    color: white;
  }
}

#root .index {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 600;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #797F84;
  font-weight: bold;
}

#root .index .content {
  text-align: center;
  background-color: white;
  border-radius: 25px;
  border: 2px solid #F8F6F7;
  padding: 20px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.45);
}

#root .index .content .title {
  font-size: 24px;
  color: #4E4E4E;
}

#root .index .content input {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  font-size: 14px;
  outline: none;
  border: 2px solid #e4e4e4;
  border-radius: 4px;
  padding: 10px 5px;
}

#root .index .content input::placeholder {
  color: rgba(121, 127, 132, 0.6);
}

#root .index .content .error {
  color: #e74c3c;
  margin-bottom: 15px;
  text-align: center;
}

#root .index .content .takeaway {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
  color: #4E4E4E;
}

#root .index .content button {
  font-size: 16px;
  color: white;
  padding: 15px;
  background-color: #e76d30;
  border-radius: 15px;
  transition: all 0.25s;
  text-transform: uppercase;
  font-family: "Bitter", sans-serif;
  width: 100%;
  border: none;
  cursor: pointer;
  outline: none;
}

#root .index .content button:hover {
  background-color: #e76d30;
}

#root .vc-1 {
  position: absolute;
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .vc-1 {
    height: 100px !important;
  }
}

#root .vc-3 {
  position: absolute;
  z-index: 40;
  right: 0px;
  top: calc(50% - 100px);
}

@media only screen and (max-width: 768px) {
  #root .vc-3 {
    height: 100px !important;
    right: 0;
    top: calc(50% - 100px);
  }
}

@media only screen and (max-width: 1024px) {
  #root .vc-3 {
    top: calc(50% - 100px);
  }
}

#root .logo {
  position: absolute;
  z-index: 250;
  height: 50px;
  left: 5px;
  top: 5px;
}

#root .bg-item-1 {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(10% - 85px);
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .bg-item-1 {
    top: calc(40% - 100px);
    left: calc(10% - 20px);
  }
}

#root .bg-item-2 {
  position: absolute;
  top: calc(20%);
  right: calc(40%);
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .bg-item-2 {
    top: calc(25% - 100px) !important;
    right: calc(10% - 20px) !important;
  }
}

#root .bg-item-3 {
  position: absolute;
  top: calc(10%);
  right: calc(30%);
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .bg-item-3 {
    top: calc(25% - 100px);
    left: calc(20% - 20px);
  }
}

#root .bg-item-4 {
  position: absolute;
  top: calc(50%);
  right: calc(30%);
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .bg-item-4 {
    top: calc(75% - 100px);
    left: calc(20% - 20px);
  }
}

#root .bg-item-5 {
  position: absolute;
  top: calc(50%);
  left: calc(20%);
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .bg-item-5 {
    top: calc(65% - 100px);
    left: calc(80% - 20px);
  }
}

#root .bg-item-6 {
  position: absolute;
  top: calc(15%);
  left: calc(15%);
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .bg-item-6 {
    display: none;
  }
}

#root .bg-item-7 {
  position: absolute;
  top: calc(80%);
  left: calc(30%);
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  #root .bg-item-7 {
    top: calc(35% - 100px);
    left: calc(50% - 20px);
  }
}

@media only screen and (max-width: 600px) {
  #root .heg {
    height: 50px;
    z-index: 50;
  }
  #root .logo {
    height: 35px;
    z-index: 250 !important;
  }
}

@media only screen and (max-width: 768px) {
  #root .logo {
    height: 35px;
  }
}

#root .block-1 {
  background: radial-gradient(at center center, #F3DE78 0%, #FFD501 100%);
  padding: 40px 0px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #root .block-1 {
    padding: 0px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 {
    padding: 0px;
  }
}

#root .block-1 .content {
  margin: auto;
  max-width: 1033px;
  position: relative;
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .footer {
    display: none !important;
  }
  #root .block-1 .content img {
    height: 50px;
    z-index: 50;
  }
  #root .block-1 .content .bg-item-1 {
    top: calc(75% - 100px) !important;
    left: 5%;
  }
  #root .block-1 .content .about-us-btn {
    margin-top: 85px;
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .footer {
    display: block !important;
  }
}

#root .block-1 .content .head-socials {
  display: none;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .head-socials {
    display: flex !important;
  }
}

#root .block-1 .content .head-socials a {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-color: #e76d30;
  margin-right: 10px;
  margin-top: 10px;
}

#root .block-1 .content .vc-2 {
  position: absolute;
  top: calc(60% - 100px);
  left: calc(43% - 200px);
  height: 270px;
  z-index: 40;
}

@media only screen and (max-width: 1440px) {
  #root .block-1 .content .vc-2 {
    height: 230px;
    top: calc(65% - 130px);
    left: calc(47% - 200px);
  }
}

@media only screen and (max-width: 1024px) {
  #root .block-1 .content .vc-2 {
    display: none;
    height: 150px;
    top: calc(70% - 100px);
    left: calc(57% - 200px);
  }
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .vc-2 {
    display: none;
    height: 150px !important;
    top: calc(60% - 100px);
    left: calc(55% - 200px);
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .vc-2 {
    display: none;
    height: 120px !important;
    top: calc(70% - 100px);
    left: calc(70% - 200px);
  }
}

#root .block-1 .content .mob-vc {
  display: none;
}

@media only screen and (max-width: 1440px) {
  #root .block-1 .content .mob-vc {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  #root .block-1 .content .mob-vc {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .mob-vc {
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .mob-vc {
    display: block;
    height: 120px !important;
    top: calc(75% - 100px);
    left: calc(70% - 200px);
  }
}

#root .block-1 .content .animate-souses {
  z-index: 300 !important;
  position: absolute;
  top: calc(50% - 400px);
  left: calc(48% - 400px);
  animation: 20s ease-in-out infinite rotation;
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .animate-souses {
    display: none;
  }
}

@media only screen and (max-width: 1440px) {
  #root .block-1 .content .animate-souses {
    top: calc(50% - 375px);
    left: calc(50% - 375px);
  }
  #root .block-1 .content .animate-souses img {
    height: 750px !important;
  }
}

@media only screen and (max-width: 1024px) {
  #root .block-1 .content .animate-souses {
    top: calc(50% - 250px) !important;
    left: calc(50% - 250px) !important;
  }
  #root .block-1 .content .animate-souses img {
    height: 500px !important;
  }
}

#root .block-1 .content .animate-souses img {
  height: 800px;
  z-index: 300 !important;
}

#root .block-1 .content .header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 50px;
  padding-top: 20px;
  position: relative;
}

#root .block-1 .content .header img {
  height: 50px;
  margin-left: 10px;
  margin-top: 5px;
  position: relative;
  z-index: 50;
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .header img {
    position: relative;
    left: 0;
    height: 35px;
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .header {
    display: block;
    margin-bottom: 50px;
  }
}

#root .block-1 .content .header .menu {
  position: relative;
  z-index: 320;
}

#root .block-1 .content .header .menu a {
  border: 1px solid #e76d30;
  outline: none;
  cursor: pointer;
  border-radius: 12px;
  background-color: #e76d30;
  height: 30px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-left: 65px;
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .header .menu {
    display: none;
  }
}

#root .block-1 .content .title {
  font-size: 5vw;
  text-align: center;
  color: white;
  font-family: "Bitter", sans-serif;
  text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.73);
  position: relative;
  z-index: 200;
  top: 50px;
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .title {
    font-size: 7vw;
    top: 0px;
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .title {
    font-size: 12vw;
    top: 0px;
    display: none !important;
  }
}

#root .block-1 .content .title .text {
  font-family: 'Fredericka the Great', cursive;
  position: relative;
  z-index: 200;
}

#root .block-1 .content .title .mr {
  margin-left: 9vw;
}

#root .block-1 .content .title .ml {
  margin-right: 3vw;
}

#root .block-1 .content .title .animate-burger {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  top: calc(0% - 0px);
  left: calc(50% - 300px);
  width: 600px;
  z-index: 150;
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .title .animate-burger {
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(50% - 0px);
    left: calc(50% - 0px);
    width: auto;
  }
}

#root .block-1 .content .title .animate-burger .burger {
  display: flex;
  align-items: center;
  justify-content: center;
}

#root .block-1 .content .title .animate-burger .burger-img {
  height: 400px;
}

@media only screen and (max-width: 1440px) {
  #root .block-1 .content .title .animate-burger .burger-img {
    height: 300px !important;
  }
}

@media only screen and (max-width: 1024px) {
  #root .block-1 .content .title .animate-burger .burger-img {
    height: 230px !important;
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .title .animate-burger .burger-img {
    height: 150px !important;
  }
}

#root .block-1 .content .title .animate-burger .item-1 {
  z-index: 100;
}

#root .block-1 .content .title .animate-burger .item-2 {
  z-index: 91;
}

#root .block-1 .content .title .animate-burger .item-3 {
  z-index: 90;
}

#root .block-1 .content .title .animate-burger .item-4 {
  z-index: 89;
}

#root .block-1 .content .title .animate-burger .item-5 {
  z-index: 88;
}

#root .block-1 .content .title .animate-burger .item-6 {
  z-index: 87;
}

#root .block-1 .content .title .animate-burger .item-7 {
  z-index: 85;
}

#root .block-1 .content .title-mob {
  display: none;
  text-align: center;
  position: relative;
  z-index: 400;
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .title-mob {
    display: block !important;
  }
}

#root .block-1 .content .title-mob .burger-img {
  height: 400px;
}

@media only screen and (max-width: 1440px) {
  #root .block-1 .content .title-mob .burger-img {
    height: 300px !important;
  }
}

@media only screen and (max-width: 1024px) {
  #root .block-1 .content .title-mob .burger-img {
    height: 200px !important;
  }
}

@media only screen and (max-width: 600px) {
  #root .block-1 .content .title-mob .burger-img {
    height: 150px !important;
  }
}

#root .block-1 .content .title-mob .title-txt {
  font-size: 38px;
  font-family: 'Fredericka the Great', cursive;
}

#root .block-1 .content .title-mob .title-txt .text:last-child {
  margin-bottom: 20px;
}

#root .block-1 .content .footer {
  display: flex;
  margin-top: 150px;
  position: relative;
  z-index: 100;
  padding-bottom: 15px;
}

#root .block-1 .content .footer a {
  display: none;
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .footer {
    display: none !important;
  }
}

#root .block-1 .content .footer a {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  background-color: #e76d30;
  margin-right: 20px;
}

#root .block-1 .content .footer a:last-child {
  margin-right: 0px;
}

#root .block-1 .content .footer a i {
  font-size: 20px;
}

#root .block-1 .content .about-us-btn {
  display: none;
}

@media only screen and (max-width: 768px) {
  #root .block-1 .content .about-us-btn {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 60px;
  }
}

#root .block-1 .content .about-us-btn a {
  position: relative;
  z-index: 200;
  border: 2px solid #e76d30;
  color: #e76d30;
  outline: none;
  cursor: pointer;
  border-radius: 15px;
  height: 30px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.25s;
}

#root .block-1 .content .about-us-btn a:hover {
  background-color: #e76d30;
  color: white;
}

#root .block-2 .content {
  margin: auto;
  max-width: 1033px;
  padding: 0px 10px;
}

#root .block-2 .content .alerg {
  margin-top: 40px;
  font-size: 14px;
}

#root .block-2 .content .header {
  display: flex;
  align-items: center;
  min-height: 100px;
  justify-content: flex-end;
}

#root .block-2 .content .header a {
  position: relative;
  z-index: 320;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .header {
    justify-content: center;
  }
}

#root .block-2 .content .header .title {
  font-size: 36px;
  font-family: "Bitter", sans-serif;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

#root .block-2 .content .header .title .text {
  width: 100%;
  padding-bottom: 10px;
}

#root .block-2 .content .header .title .border {
  width: 60px;
  height: 5px;
  background-color: #E8C300;
  border-radius: 50px;
}

#root .block-2 .content .header a {
  border: 1px solid #e76d30;
  outline: none;
  cursor: pointer;
  border-radius: 12px;
  background-color: #e76d30;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-left: 65px;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .header a {
    display: none;
  }
}

#root .block-2 .content .menu {
  font-size: 40px;
  font-family: 'Fredericka the Great', cursive;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#root .block-2 .content .menu .text {
  width: 100%;
}

#root .block-2 .content .menu .border {
  width: 70px;
  height: 5px;
  background-color: #E8C300;
  border-radius: 50px;
  margin-top: 10px;
}

#root .block-2 .content .burger-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  position: -webkit-sticky;
  color: #4E4E4E;
  top: 0px;
  z-index: 100;
  background-color: white;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .burger-menu {
    overflow: auto;
    white-space: nowrap;
    justify-content: normal;
  }
  #root .block-2 .content .burger-menu .item {
    display: inline-block;
    text-align: center;
  }
}

#root .block-2 .content .burger-menu .item {
  text-transform: uppercase;
  padding: 10px 25px;
  font-size: 12px;
  min-height: 25px;
  font-weight: bold;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
  color: #333333;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  cursor: pointer;
}

#root .block-2 .content .burger-menu .item:last-child {
  border: none;
}

#root .block-2 .content .burger-menu .item .border {
  width: 70px;
  height: 5px;
  background-color: #E8C300;
  border-radius: 50px;
  margin-top: 10px;
}

#root .block-2 .content .burger-menu .item i {
  font-size: 30px;
}

#root .block-2 .content .container .item {
  border-radius: 27px;
  margin-top: 50px;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item {
    margin-top: 20px;
  }
}

#root .block-2 .content .container .item h1 {
  text-align: center;
  font-family: 'Fredericka the Great', cursive;
  color: #333333;
  font-weight: 400;
  font-size: 36px;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item h1 {
    font-size: 26px;
  }
}

#root .block-2 .content .container .item .burger {
  background: #F8F6F7;
  border-radius: 27px;
  z-index: 20;
  position: relative;
  cursor: pointer;
}

#root .block-2 .content .container .item .burger .burger-content {
  border-radius: 27px;
  padding: 20px 30px;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item .burger {
    box-shadow: 0px 0px 35px -23px rgba(0, 0, 0, 0.8);
  }
  #root .block-2 .content .container .item .burger .title {
    font-size: 22px !important;
    font-family: "Bitter", sans-serif;
  }
  #root .block-2 .content .container .item .burger .info-text {
    font-size: 14px !important;
  }
}

#root .block-2 .content .container .item .burger .title {
  font-size: 26px;
  font-weight: 600;
  color: #4E4E4E;
}

#root .block-2 .content .container .item .burger .info-text {
  font-size: 16px;
  margin-top: 5px;
  font-family: "Bitter", sans-serif;
  font-weight: normal;
}

#root .block-2 .content .container .item .burger .ingredients {
  font-size: 16px;
  margin-top: 15px;
  color: #666;
  font-family: "Bitter",sans-serif;
  font-style: italic;
  font-weight: 100;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item .burger .ingredients {
    font-size: 12px;
  }
}

#root .block-2 .content .container .item .burger .add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item .burger .add {
    display: none;
  }
}

#root .block-2 .content .container .item .burger .add .add-right {
  display: flex;
  align-items: center;
}

#root .block-2 .content .container .item .burger .add .add-right .counter {
  display: flex;
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  border: 1px solid #e76d30;
  color: #e76d30;
  border-radius: 25px;
}

#root .block-2 .content .container .item .burger .add .add-right .counter div {
  padding: 0px 30px;
  font-size: 20px;
}

#root .block-2 .content .container .item .burger .add .add-right .counter i {
  font-size: 14px;
  font-weight: bold;
  color: #e76d30;
}

#root .block-2 .content .container .item .burger .add .add-right .price {
  color: #e76d30;
  font-size: 20px;
  padding: 0px 10px;
  font-family: "Bitter", sans-serif;
}

#root .block-2 .content .container .item .burger .add .add-right .price .text {
  color: black;
  padding-right: 5px;
  font-family: "Bitter", sans-serif;
}

#root .block-2 .content .container .item .burger .add .add-right .price span {
  font-weight: 500;
  color: #e76d30;
}

#root .block-2 .content .container .item .burger .add .add-right .add-to-cart {
  display: flex;
  align-items: center;
  color: white;
  border: none;
  border-radius: 16px;
  background: #e76d30;
  text-align: center;
  background-color: white;
  border-radius: 25px;
  border: 2px solid #F8F6F7;
  padding: 20px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 15px;
  cursor: pointer;
  height: 100%;
  font-size: 14px !important;
}

#root .block-2 .content .container .item .burger .add .add-right .add-to-cart i {
  font-size: 18px;
  margin-right: 5px;
}

#root .block-2 .content .container .item .burger .add .price {
  font-size: 22px;
  font-family: "Bitter", sans-serif;
}

#root .block-2 .content .container .item .burger .add .price span {
  color: #e76d30;
  font-weight: 500;
}

#root .block-2 .content .container .item .burger .add .add-ing {
  cursor: pointer;
  display: flex;
}

#root .block-2 .content .container .item .burger .add .add-ing i {
  font-size: 28px;
  font-weight: 400;
  color: #e76d30;
}

#root .block-2 .content .container .item .burger .add .add-ing div {
  font-size: 14px;
  color: green;
}

#root .block-2 .content .container .item .burger .add-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item .burger .add-mobile {
    display: flex;
  }
}

#root .block-2 .content .container .item .burger .add-mobile .price {
  font-weight: 500;
  color: #e76d30;
  font-size: 20px;
  font-family: "Bitter", sans-serif;
}

#root .block-2 .content .container .item .burger .add-mobile .add-ing {
  cursor: pointer;
  display: flex;
}

#root .block-2 .content .container .item .burger .add-mobile .add-ing i {
  font-size: 20px;
  font-weight: 400;
  color: #e76d30;
}

#root .block-2 .content .container .item .burger .add-mobile .add-ing div {
  font-size: 14px;
  color: green;
}

#root .block-2 .content .container .item .burger .add-mobile .counter {
  display: flex;
  background-color: rgba(0, 0, 0, 0.06);
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  border-radius: 10px;
}

#root .block-2 .content .container .item .burger .add-mobile .counter div {
  padding: 0px 15px;
}

#root .block-2 .content .container .item .burger .add-mobile .add-to-cart {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #669E76;
  border: 1px solid;
  border-radius: 13px;
  background: #E3ECE5;
  outline: none;
  padding: 10px 30px;
  height: 100%;
  font-size: 14px !important;
}

#root .block-2 .content .container .item .burger .add-mobile .add-to-cart div {
  color: black;
  font-size: 18px;
  padding: 0px 10px;
}

#root .block-2 .content .container .item .popup {
  top: -20px;
  background-color: #fdfdfd;
  border-radius: 0px 0px 27px 27px;
  z-index: 10;
  border: 2px solid #e9e9e9;
  padding: 40px 30px;
  position: relative;
}

#root .block-2 .content .container .item .popup .select-menu .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

#root .block-2 .content .container .item .popup .select-menu select {
  width: 100%;
  outline: none;
  font-size: 18px;
  height: 40px;
  border-radius: 5px;
  background-color: #f5f5f5;
  border: 1px solid #c5c8cc;
}

#root .block-2 .content .container .item .popup .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4E4E4E;
  font-family: "Bitter", sans-serif;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .container .item .popup .title {
    font-size: 20px;
  }
}

#root .block-2 .content .container .item .popup .check-menu {
  margin-top: 20px;
}

#root .block-2 .content .container .item .popup .check-menu:first-child {
  margin-top: 0px;
}

#root .block-2 .content .container .item .popup .check-menu .list {
  font-size: 18px;
  width: 40%;
  padding: 15px;
  margin-top: 15px;
}

#root .block-2 .content .container .item .popup .check-menu .list:first-child {
  margin-top: 0px;
}

#root .block-2 .content .container .item .popup .check-menu .list:last-child {
  border-bottom: none;
}

#root .block-2 .content .container .item .popup .check-menu .list span {
  color: #4E4E4E;
  font-size: 16px;
}

#root .block-2 .content .container .item .popup .check-menu .list span span {
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .container .item .popup .check-menu .list {
    width: auto;
    font-size: 16px;
    border: none;
  }
}

#root .block-2 .content .container .item .popup .check-menu .list .show {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #e76d30;
  margin-top: 10px;
  cursor: pointer;
}

#root .block-2 .content .container .item .popup .check-menu .list .show div {
  margin-left: 10px;
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item {
  padding: 10px 0px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .container .item .popup .check-menu .list .list-item {
    border-bottom: 1px solid #dadada;
  }
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item:last-child {
  border-bottom: none;
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item .custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item .custom-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  font-size: 14px;
  padding: 2px;
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item .custom-checkbox:checked + label::before {
  border-color: #e76d30;
  background-color: #e76d30;
  color: white;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item label {
  position: relative;
}

#root .block-2 .content .container .item .popup .check-menu .list .list-item label i {
  position: absolute;
  left: 4px;
  font-size: 14px;
}

#root .block-2 .content .container .item .popup .footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .container .item .popup .footer {
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
  }
  #root .block-2 .content .container .item .popup .footer button {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  #root .block-2 .content .container .item .popup .footer button .mob {
    color: black;
    font-size: 20px;
    font-weight: 500;
    padding: 0px 15px;
    display: block !important;
  }
  #root .block-2 .content .container .item .popup .footer .count-block .counter {
    margin-right: 0px !important;
  }
  #root .block-2 .content .container .item .popup .footer .count-block .counter div {
    padding: 0px 50px !important;
  }
  #root .block-2 .content .container .item .popup .footer .count-block .price {
    display: none;
  }
}

#root .block-2 .content .container .item .popup .footer .price-mob {
  color: #e76d30;
  font-family: "Bitter", sans-serif;
  font-size: 24px;
  display: none;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .container .item .popup .footer .price-mob {
    display: block;
  }
}

#root .block-2 .content .container .item .popup .footer .count-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#root .block-2 .content .container .item .popup .footer .count-block .counter {
  display: flex;
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  border: 1px solid #e76d30;
  border-radius: 25px;
}

#root .block-2 .content .container .item .popup .footer .count-block .counter i {
  font-size: 14px;
  font-weight: bold;
  color: #e76d30;
}

#root .block-2 .content .container .item .popup .footer .count-block .counter div {
  color: #e76d30;
  padding: 0px 30px;
}

@media only screen and (max-width: 768px) {
  #root .block-2 .content .container .item .popup .footer .count-block .counter .price {
    display: none !important;
  }
}

#root .block-2 .content .container .item .popup .footer .count-block .price {
  font-size: 20px;
  margin-right: 10px;
  font-weight: 500;
  font-family: 'Bitter', sans-serif;
}

#root .block-2 .content .container .item .popup .footer .count-block .price .text {
  color: #4E4E4E;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item .popup .footer .count-block .price {
    font-size: 18px;
  }
  #root .block-2 .content .container .item .popup .footer .count-block .price .text {
    display: none;
  }
}

#root .block-2 .content .container .item .popup .footer .count-block .price span:last-child {
  font-family: "Bitter", sans-serif;
  color: #e76d30;
  margin-left: 10px;
}

#root .block-2 .content .container .item .popup .footer button {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  border: none;
  font-family: "Bitter", sans-serif;
  border-radius: 15px;
  background: #e76d30;
  outline: none;
  padding: 14px 15px;
  cursor: pointer;
  height: 100%;
  font-size: 14px !important;
  font-size: 11px;
}

@media only screen and (max-width: 600px) {
  #root .block-2 .content .container .item .popup .footer button {
    font-size: 16px !important;
  }
}

#root .block-2 .content .container .item .popup .footer button i {
  font-size: 18px;
  padding-right: 5px;
}

#root .block-3 {
  background: radial-gradient(at center center, #FDA173 0%, #e76d30 100%);
}

@media only screen and (max-width: 600px) {
  #root .block-3 {
    background: white;
  }
}

#root .block-3 .content {
  margin: auto;
  max-width: 1033px;
  padding-top: 70px;
  margin-top: 50px;
}

@media only screen and (max-width: 600px) {
  #root .block-3 .content {
    background-image: url(../img/bg-about-us.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

#root .block-3 .content .header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#root .block-3 .content .header .menu a {
  background: #F7D158;
  border: 1px solid #e76d30;
  box-sizing: border-box;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  height: 30px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-left: 65px;
}

@media only screen and (max-width: 768px) {
  #root .block-3 .content .header .menu {
    display: none;
  }
}

#root .block-3 .content .about-us {
  padding: 10px 15px;
  color: white;
}

#root .block-3 .content .about-us .info-block {
  display: flex;
}

@media only screen and (max-width: 768px) {
  #root .block-3 .content .about-us .info-block {
    display: block;
  }
}

#root .block-3 .content .about-us .left-block {
  margin-top: 45px;
}

#root .block-3 .content .about-us .left-block .title {
  font-family: 'Fredericka the Great', cursive;
  text-align: center;
  font-weight: normal !important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#root .block-3 .content .about-us .left-block .title .txt {
  width: 100%;
  font-size: 32px;
  margin: 0;
  margin-bottom: 10px;
}

#root .block-3 .content .about-us .left-block .info {
  margin-top: 50px;
}

#root .block-3 .content .about-us .left-block .info .title {
  font-family: "Bitter", Sans-serif;
  font-size: 18px;
  margin-top: 50px;
  display: block;
  text-align: left;
  font-weight: 500 !important;
}

#root .block-3 .content .about-us .left-block .info .title:first-child {
  margin-top: 0px;
}

#root .block-3 .content .about-us .left-block .info .text {
  font-size: 13px;
  margin-top: 15px;
  line-height: 20px;
  font-weight: 100;
  font-style: italic;
  opacity: 0.8;
}

#root .block-3 .content .about-us .left-block .border {
  width: 80px;
  height: 5px;
  background-color: #E8C300;
  border-radius: 50px;
}

#root .block-3 .content .about-us .right-block {
  position: relative;
}

@media only screen and (max-width: 768px) {
  #root .block-3 .content .about-us .right-block {
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 1024px) {
  #root .block-3 .content .about-us .right-block img {
    height: 420px;
  }
}

@media only screen and (max-width: 768px) {
  #root .block-3 .content .about-us .right-block img {
    height: 250px;
    position: relative;
    top: 40px;
    transform: rotate(-20deg);
  }
}

#root .block-3 .content .about-us .right-block .window {
  height: 300px;
  width: 230px;
  border: 20px solid #E8C300;
  box-sizing: border-box;
  filter: drop-shadow(0px 0px 100px rgba(0, 0, 0, 0.5));
  border-radius: 5px;
  position: absolute;
  top: calc(50% - 150px);
  right: 10px;
}

@media only screen and (max-width: 1024px) {
  #root .block-3 .content .about-us .right-block .window {
    height: 250px;
    width: 180px;
    border: 13px solid #E8C300;
    top: calc(50% - 180px);
  }
}

@media only screen and (max-width: 768px) {
  #root .block-3 .content .about-us .right-block .window {
    height: 175px;
    width: 150px;
    border: 5px solid #E8C300;
    top: calc(112% - 175px);
    right: calc(55% - 20vw);
    transform: rotate(-20deg);
  }
}

@media only screen and (max-width: 550px) {
  #root .block-3 .content .about-us .right-block .window {
    right: calc(49% - 20vw);
  }
}

@media only screen and (max-width: 415px) {
  #root .block-3 .content .about-us .right-block .window {
    right: calc(43% - 20vw);
  }
}

@media only screen and (max-width: 320px) {
  #root .block-3 .content .about-us .right-block .window {
    right: calc(35% - 20vw);
  }
}

#root .block-3 .content .about-us .socials {
  display: flex;
  justify-content: center;
  padding-bottom: 25px;
}

@media only screen and (max-width: 768px) {
  #root .block-3 .content .about-us .socials {
    padding-bottom: 15px;
  }
}

#root .block-3 .content .about-us .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  background-color: #F7D158;
  margin-right: 20px;
}

#root .block-3 .content .about-us .socials a i {
  font-size: 20px;
}

#root .block-4 {
  padding-top: 40px;
  margin-top: 60px;
}

#root .block-4 .content {
  max-width: 1033px;
  margin: auto;
  padding: 0px 15px;
  padding-bottom: 20px;
}

#root .block-4 .content .header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#root .block-4 .content .header .menu a {
  border: 1px solid #e76d30;
  outline: none;
  cursor: pointer;
  border-radius: 12px;
  background-color: #e76d30;
  height: 30px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-left: 65px;
}

@media only screen and (max-width: 768px) {
  #root .block-4 .content .header .menu {
    display: none;
  }
}

#root .block-4 .content .address {
  margin-top: 30px;
}

#root .block-4 .content .address .top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#root .block-4 .content .address .top .title {
  font-size: 36px;
  font-family: 'Fredericka the Great', cursive;
  color: #4E4E4E;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

#root .block-4 .content .address .top .border {
  width: 60px;
  height: 5px;
  background-color: #E8C300;
  border-radius: 50px;
}

@media only screen and (max-width: 600px) {
  #root .block-4 .content .address {
    flex-wrap: wrap;
    justify-content: center;
  }
  #root .block-4 .content .address .left-block {
    width: 100% !important;
  }
  #root .block-4 .content .address .left-block .address-info {
    text-align: center;
  }
  #root .block-4 .content .address .left-block .address-info img {
    width: 100% !important;
  }
  #root .block-4 .content .address .left-block .address-info .text {
    width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
  #root .block-4 .content .address .left-block .address-info img {
    width: 70vw;
  }
}

#root .block-4 .content .address .left-block {
  width: 100%;
}

#root .block-4 .content .address .left-block .cont {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #root .block-4 .content .address .left-block .cont {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  #root .block-4 .content .address .left-block .cont {
    display: block;
  }
}

#root .block-4 .content .address .left-block .address-info {
  font-size: 18px;
  margin-bottom: 70px;
  text-align: center;
}

#root .block-4 .content .address .left-block .address-info .text {
  line-height: 33px;
  font-weight: bold;
  font-family: "Bitter", Sans-serif;
  width: 350px;
  margin: auto;
  margin-bottom: 40px;
  text-align: left !important;
}

#root .block-4 .content .address .left-block .address-info img {
  border-radius: 20px;
  box-shadow: 0px 5px 14px -3px rgba(0, 0, 0, 0.51);
  height: 300px;
}

@media only screen and (max-width: 768px) {
  #root .block-4 .content .address .left-block .address-info img {
    height: auto;
  }
}

#root .block-4 .content .address .left-block .address-info a {
  border-radius: 15px;
  color: #e76d30;
  border: 2px solid #e76d30;
  text-decoration: none;
  padding: 15px 40px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: all 0.25s;
  margin-left: 20px;
}

@media only screen and (max-width: 600px) {
  #root .block-4 .content .address .left-block .address-info a {
    margin-left: 0px;
  }
}

#root .block-4 .content .address .left-block .address-info a:hover {
  color: white;
  background-color: #e76d30;
}

#root .block-5 {
  background: #FAFAFA;
}

#root .block-5 .footer {
  margin: auto;
  max-width: 1033px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0px;
}

#root .block-5 .footer img {
  height: 60px;
}

@media only screen and (max-width: 768px) {
  #root .block-5 .footer img {
    height: 50px !important;
  }
}

#root .block-5 .footer .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
}

#root .block-5 .footer .nav a {
  box-sizing: border-box;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  height: 30px;
  padding: 8px 0px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: black;
  margin-left: 65px;
}

@media only screen and (max-width: 1024px) {
  #root .block-5 .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  #root .block-5 .footer .nav {
    width: 80%;
    justify-content: space-around;
    margin-top: 20px;
  }
  #root .block-5 .footer .nav a {
    margin-left: 0px;
  }
  #root .block-5 .footer .socials {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  #root .block-5 .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  #root .block-5 .footer .nav {
    width: 80%;
    justify-content: space-around;
    margin-top: 20px;
  }
  #root .block-5 .footer .nav a {
    margin-left: 0px;
  }
  #root .block-5 .footer .socials {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

#root .block-5 .footer .socials {
  font-size: 18px;
}

#root .block-5 .footer .socials i {
  padding: 0px 20px;
}

.impressum-content {
  max-width: 1033px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 50px;
  padding-top: 20px;
  margin-top: 20px;
  font-family: "Tahoma", sans-serif;
}

@media only screen and (max-width: 768px) {
  .impressum-content {
    margin-top: 0px;
  }
}

.impressum-content h1 {
  text-align: center;
  font-size: 40px;
  color: #4E4E4E;
}

@media only screen and (max-width: 600px) {
  .impressum-content h1 {
    font-size: 20px;
  }
}

.impressum-content h2 {
  font-size: 20px;
}

.impressum-content h3 {
  font-size: 18px;
}

.impressum-content p {
  word-wrap: break-word;
}

.select-tab {
  color: #d00022 !important;
  text-decoration: underline;
}

.impressum-map {
  margin-top: 30px;
  font-family: "Tahoma", sans-serif;
}

.impressum-map iframe {
  position: relative;
}

.impressum-map .contain {
  position: relative;
}

.impressum-map .map-legend {
  width: 500px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 50px 40px;
  position: absolute;
  top: 100px;
  left: 100px;
}

@media only screen and (max-width: 768px) {
  .impressum-map .map-legend {
    position: static;
    width: 100%;
    box-sizing: border-box;
  }
}

.impressum-map .map-legend .header {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.impressum-map .map-legend .text {
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.impressum-map .map-legend .anrufen {
  display: flex;
  justify-content: center;
  align-items: center;
}

.impressum-map .map-legend .anrufen a {
  font-size: 20px;
  padding: 10px 40px;
  border-radius: 5px;
  background-color: #ffea00;
}

.impressum-map .map-legend .map-tabs {
  margin-top: 20px;
}

.impressum-map .map-legend .map-tabs .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.impressum-map .map-legend .map-tabs .tabs .tab {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  margin-right: 10px;
  color: #e76d30;
  font-size: 20px;
  cursor: pointer;
}

.impressum-map .map-legend .map-tabs .tabs .tab:last-child {
  margin-right: 0px;
}

.impressum-map .map-legend .map-tabs .tab-content {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  color: #bababa;
}

.impressum-map .map-legend .map-tabs .tab-content .grafic {
  line-height: 5px;
}

.toggle-enter-active, .toggle-leave-active {
  transition: opacity 0.5s;
}

.toggle-enter, .toggle-leave-to {
  opacity: 0;
}

.disabled {
    		    display: flex;
    			align-items: center;
    			justify-content: center;
    			width: 100%;
    			font-family: "Bitter", sans-serif;
    			font-weight: 500;
    			text-transform: uppercase;
    			font-size: 18px;
    			outline: none;
    			cursor: pointer;
    			color: white;
    			border: none;
    			padding: 20px 0px;
    			border-radius: 15px;
    			transition: all 0.25s;
    			margin-top: 20px;
            	background-color: #b1b1b1;
}            	
