/* [ SCREEN OVERLAY ] */
#screen-backoverlay {
  position: fixed;
  display: none;
  z-index: 999;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  width: 100vw;
  height: 100vh;

  background: rgba(0, 0, 0, 0.1);
}
#screen-backoverlay.active {
  display: flex;
}

/* [ PRODUCT MODAL ] */
#prodmodal {
  position: fixed;
  display: none;
  z-index: 1000;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  flex-direction: column;

  overflow: auto;

  width: 100vw;
  height: 100vh;
}
#prodmodal.active {
  display: flex;
}

#prodmodal > * {
  flex: none;
}

#prodmodal .prodmodalbox {
  position: relative;
  display: flex;

  overflow: hidden;

  flex-direction: column;

  margin: 0 auto;

  width: 100%;
  max-width: 600px;

  border-radius: 4px;

  background: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}


#prodmodal .prodmodal-closebutton {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 20px;
  height: 20px;

  text-decoration: none;

  color: #5e5e5e;
  fill: #5e5e5e;
}

#prodmodal .prodmodal-headbar {
  position: relative;
  display: flex;

  flex-direction: row;

  width: 100%;

  padding: 15px;
}
#prodmodal .prodmodal-headbar .prodmodal-closebutton {
  margin-right: auto;
}

#prodmodal .prodmodal-images {
  position: relative;
  display: flex;

  overflow: hidden;

  flex-direction: row;

  width: 100%;
  height: 260px;

  background: white;
}

#prodmodal .prodmodal-images .prodmodal-images-item {
  position: relative;
  display: flex;

  height: 260px;
}

#prodmodal .prodmodal-images .prodmodal-images-item img {
  position: relative;
  display: flex;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

#prodmodal .prodmodal-info {
  position: relative;
  display: flex;

  flex-direction: column;

  padding: 15px;
}

#prodmodal .prodmodal-info .prodmodal-info__title {
  margin: 5px 0;

  text-align: justify;

  font-weight: 500;
  font-size: 24px;

  color: #B10000;
}
#prodmodal .prodmodal-info .prodmodal-info__description {
  margin: 10px 0;

  text-align: justify;

  font-weight: 400;
  font-size: 16px;

  color: #3c3c3c;
}

#prodmodal .prodmodal-modifiers {
  position: relative;
  display: flex;

  flex-direction: column;

  overflow: hidden;
  overflow-y: auto;

  width: 100%;
  max-height: 300px;

  padding: 15px;
}
#prodmodal .prodmodal-modifiers::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
#prodmodal .prodmodal-modifiers::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}
#prodmodal .prodmodal-modifiers::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}
#prodmodal .prodmodal-modifiers:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-item {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 15px 0;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-item-header {
  position: relative;
  display: flex;

  justify-content: space-between;

  flex-direction: row;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-item__title {
  margin: 5px 0;

  text-align: justify;

  font-weight: 500;
  font-size: 18px;

  color: #000000;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-item__counter {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  padding: 2px 15px;

  border-radius: 4px;

  line-height: 16px;

  font-size: 16px;

  color: white;

  background: rgba(177, 0, 0, 1);
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 5px 0;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin: 5px 0;

  width: 100%;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item > div {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser {
  position: relative;
  display: flex;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser input[type="checkbox"],
#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser input[type="radio"] {
  display: none;
  padding: 0;
  margin: 0;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooserbox {
  cursor: pointer;
  position: relative;
  display: flex;

  margin-left: 5px;

  width: 18px;
  height: 18px;

  border-radius: 6px;
  border: 1px solid rgba(221, 221, 221, 0.6);

  background: white;
}
#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser > label input ~ .prodmodal-modifiers-list-item-chooserbox::after {
  content: '';
  position: absolute;

  top: 3px;
  right: 3px;
  left: 3px;
  bottom: 3px;

  transform: scale(0.7);

  border-radius: 4px;

  background: #B10000;

  opacity: 0;
  transition: 0.3s all ease-out;
}
#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser > label {
}
#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser > label:hover input ~ .prodmodal-modifiers-list-item-chooserbox {
}
#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser > label input:checked ~ .prodmodal-modifiers-list-item-chooserbox {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.05);
}
#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item-chooser > label input:checked ~ .prodmodal-modifiers-list-item-chooserbox::after {
  transform: scale(1);
  opacity: 1;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item__title {
  text-align: justify;

  font-weight: 400;
  font-size: 16px;

  color: #000000;
}

#prodmodal .prodmodal-modifiers .prodmodal-modifiers-list .prodmodal-modifiers-list-item__sidehint {
  text-align: justify;

  font-weight: 400;
  font-size: 14px;

  color: #878787;
}

#prodmodal .prodmodal-notices {
  position: relative;
  display: flex;

  flex-direction: column;

  overflow: hidden;
  overflow-y: auto;

  width: 100%;

  padding: 15px;
}

#prodmodal .prodmodal-notices .prodmodal-notices__title {
  margin: 5px 0;

  text-align: justify;

  font-weight: 600;
  font-size: 18px;

  color: #000000;
}

#prodmodal .prodmodal-notices .prodmodal-notices-content {
  position: relative;

  width: 100%;

  margin: 0;
  padding: 0;
  border: 0;
  resize: none;

  padding: 15px;

  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;

  font-size: 15px;
}

#prodmodal .prodmodal-pricing {
  position: relative;
  display: flex;

  justify-content: space-between;

  flex-direction: row;

  margin: 15px 0;
  margin-top: 30px;

  width: 100%;

  padding: 15px;
}

#prodmodal .prodmodal-pricing .prodmodal-pricing__price {
  font-weight: 500;
  font-size: 20px;

  color: #B10000;
}

#prodmodal .prodmodal-pricing .prodmodal-pricing-quantity {
  position: relative;
  display: flex;

  flex-direction: row;
}
#prodmodal .prodmodal-pricing .prodmodal-pricing-quantity__button {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 40px;
  height: 40px;

  border: 2px solid #efefef;
  border-radius: 12px;

  text-decoration: none;

  color: #5e5e5e;
  fill: #5e5e5e;

  transition: 0.3s all ease-out;
}
#prodmodal .prodmodal-pricing .prodmodal-pricing-quantity__button:hover {
  border-color: #B10000;
  color: #B10000;
  fill: #B10000;
  /* background: #B10000;
  border-color: #B10000;
  fill: white; */
}
#prodmodal .prodmodal-pricing .prodmodal-pricing-quantity__button.disabled {
  cursor: not-allowed;
  pointer-events: none;
  border-color: #efefef;
  color: #5e5e5e;
  fill: #5e5e5e;

  opacity: 0.5;
}

#prodmodal .prodmodal-pricing .prodmodal-pricing-quantity__quantity {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  height: 40px;

  padding: 0 20px;

  font-weight: 600;
  font-size: 18px;

  color: #B10000;
}

#prodmodal .prodmodal-confirmcont {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 15px;
}

#prodmodal .prodmodal-confirmcont .prodmodal-confirmbutton,
#prodmodal .prodmodal-confirmcont .prodmodal-confirmpointsbutton {
  position: relative;
  display: flex;
  flex: 1;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  padding: 15px;

  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0);

  text-decoration: none;

  font-weight: 500;
  font-size: 18px;

  color: white;
  fill: white;

  background: #B10000;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);

  transition: 0.3s all ease-out;
}
#prodmodal .prodmodal-confirmcont .prodmodal-confirmbutton:hover,
#prodmodal .prodmodal-confirmcont .prodmodal-confirmpointsbutton:hover {
  background: #c80c0c;
}

#prodmodal .prodmodal-confirmcont .prodmodal-confirmbutton__text,
#prodmodal .prodmodal-confirmcont .prodmodal-confirmpointsbutton__text {
}
#prodmodal .prodmodal-confirmcont .prodmodal-confirmbutton svg,
#prodmodal .prodmodal-confirmcont .prodmodal-confirmpointsbutton svg {
  margin-left: 10px;
}

#prodmodal .prodmodal-confirmcont .prodmodal-confirmpointsbutton {
  margin-bottom: 10px;
  background: #ffa30a;
}
#prodmodal .prodmodal-confirmcont .prodmodal-confirmpointsbutton:hover {
  background: #ffab1f;
}
#prodmodal .prodmodal-confirmcont .prodmodal-confirmpointsbutton[disabled] {
  opacity: 0.6;
}



/* [ CART MODAL ] */
#cartmodal {
  position: fixed;
  display: none;
  z-index: 1000;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  flex-direction: column;

  overflow: auto;

  width: 100vw;
  height: 100vh;
}
#cartmodal.active {
  display: flex;
}

#cartmodal > * {
  flex: none;
}

#cartmodal .cartmodalbox {
  position: relative;
  display: none;

  overflow: hidden;

  flex-direction: column;

  margin: 0 auto;

  width: 100%;
  max-width: 600px;

  border-radius: 4px;

  background: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
#cartmodal .cartmodalbox.active {
  display: flex;
}


#cartmodal .cartmodal-closebutton {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 20px;
  height: 20px;

  text-decoration: none;

  color: #5e5e5e;
  fill: #5e5e5e;
}

#cartmodal .cartmodal-headbar {
  position: relative;
  display: flex;

  flex-direction: row;

  width: 100%;

  padding: 15px;
}
#cartmodal .cartmodal-headbar .cartmodal-headbar__title {
  font-weight: 600;
  font-size: 16px;

  color: #5e5e5e;
}
#cartmodal .cartmodal-headbar .cartmodal-closebutton {
  margin-right: auto;
}

#cartmodal .cartmodal-items {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 15px 0;
}

#cartmodal .cartmodal-items-item {
  position: relative;
  display: flex;

  justify-content: space-between;

  flex-direction: row;

  width: 100%;

  padding: 15px;

  transition: 0.15s all ease-out;
}
#cartmodal .cartmodal-items-item.not_available_in_branch {
  opacity: 0.3;
}

#cartmodal .cartmodal-items-item .cartmodal-items-item-info {
  position: relative;
  display: flex;

  flex-direction: column;
}
#cartmodal .cartmodal-items-item .cartmodal-items-item-info__title {
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}
#cartmodal .cartmodal-items-item .cartmodal-items-item-info__price {
  font-weight: 500;
  font-size: 14px;
  color: #B10000;
  opacity: 0.6;
}

#cartmodal .cartmodal-items-item .cartmodal-items-item-info-modifiers {
  position: relative;
  display: flex;

  flex-direction: column;

  padding: 5px 5px;
}
#cartmodal .cartmodal-items-item .cartmodal-items-item-info-modifiers-item {
  position: relative;

  font-weight: 400;
  font-size: 13px;

  color: #000000;
  opacity: 0.6;
}

#cartmodal .cartmodal-items-item .cartmodal-items-item-info-notices {
  position: relative;
  display: flex;

  flex-direction: column;

  padding: 5px 5px;
}
#cartmodal .cartmodal-items-item .cartmodal-items-item-info-notices-item {
  position: relative;

  font-weight: 400;
  font-size: 13px;

  color: #000000;
  opacity: 0.6;
}

#cartmodal .cartmodal-items-item .cartmodal-items-item-quantity {
  position: relative;
  display: flex;

  flex-direction: row;
}
#cartmodal .cartmodal-items-item .cartmodal-items-item-quantity__button {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 30px;
  height: 30px;

  border: 2px solid #efefef;
  border-radius: 7px;

  text-decoration: none;

  color: #5e5e5e;
  fill: #5e5e5e;

  transition: 0.3s all ease-out;
}
#cartmodal .cartmodal-items-item .cartmodal-items-item-quantity__button:hover {
  border-color: #B10000;
  color: #B10000;
  fill: #B10000;
}
#cartmodal .cartmodal-items-item .cartmodal-items-item-quantity__button.disabled {
  cursor: not-allowed;
  pointer-events: none;
  border-color: #efefef;
  color: #5e5e5e;
  fill: #5e5e5e;

  opacity: 0.5;
}

#cartmodal .cartmodal-items-item .cartmodal-items-item-quantity__quantity {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  height: 30px;

  padding: 0 15px;

  font-weight: 600;
  font-size: 16px;

  color: #B10000;
}

#cartmodal .cartmodal-boxchoices {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 15px 0;
}

#cartmodal .cartmodal-boxchoices-subfield {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 15px 0;
}

#cartmodal .cartmodal-boxchoices .cartmodal-boxchoices__title {
  padding: 0 15px;

  font-weight: 600;
  font-size: 18px;
}

#cartmodal .cartmodal-boxchoices-inputgroup {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}

#cartmodal .cartmodal-boxchoices-input {
  position: relative;
  display: flex;

  margin: 10px 15px;

  padding: 10px 10px;

  border: 2px solid #efefef;
}

#cartmodal .cartmodal-boxchoices-list {
  position: relative;
  display: flex;

  overflow: hidden;
  overflow-x: auto;

  flex-direction: row;
  flex-wrap: nowrap;

  padding: 15px 0;
}

#cartmodal .cartmodal-boxchoices-list-item {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: column;

  margin-right: 15px;

  padding: 15px;

  border-radius: 12px;

  color: rgba(177, 0, 0, 1);
  fill: rgba(177, 0, 0, 1);

  background: #efefef;

  transition: 0.15s all ease-out;
}
#cartmodal .cartmodal-boxchoices-list-item > svg {
  width: 30px;
  height: 30px;

  margin-bottom: 15px;
}
#cartmodal .cartmodal-boxchoices-list-item .cartmodal-boxchoices-list-item__title {
  white-space: nowrap;

  font-weight: 600;
  font-size: 14px;
}

#cartmodal .cartmodal-boxchoices-list-item.active {
  color: #efefef;
  fill: #efefef;

  background: rgba(177, 0, 0, 1);
}

#cartmodal .cartmodal-boxchoices-list-item.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

#cartmodal .cartmodal-info {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 10px 15px;
}

#cartmodal .cartmodal-info-item {
  position: relative;
  display: flex;

  justify-content: space-between;

  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;

  padding: 5px 0;

  font-weight: 500;
  font-size: 14px;

  color: #000000;
}
#cartmodal .cartmodal-info-item .cartmodal-info-item__title {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
#cartmodal .cartmodal-info-item .cartmodal-info-item__value {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

#cartmodal .cartmodal-info-item:last-of-type {
  margin-top: 10px;

  padding-top: 10px;

  border-top: 1px solid rgba(0, 0, 0, 0.1);

  font-weight: 600;
  font-size: 16px;
}

#cartmodal .cartmodalbutton {
  position: relative;
  display: flex;

  overflow: hidden;

  flex-direction: row;

  margin: 30px auto;

  width: 100%;
  max-width: 600px;
  height: 60px;

  /* padding: 15px; */

  border-radius: 4px;
  /* border: 2px solid rgba(0, 0, 0, 0); */

  text-decoration: none;

  font-weight: 500;
  font-size: 18px;

  color: white;
  fill: white;

  background: white;

  box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  transition: 0.3s all ease-out;
}
#cartmodal.is_loading .cartmodalbutton {
  cursor: not-allowed;
}

#cartmodal .cartmodalbutton .cartmodalbutton-swiper,
#cartmodal .cartmodalbutton .cartmodalbutton-hinter {
  position: absolute;
  display: flex;

  align-items: center;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: calc(100% + 60px);
  height: 100%;

  /* transition: 0.3s all ease-out; */
}

#cartmodal .cartmodalbutton-swiper {
  flex-direction: row-reverse;

  z-index: 2;
  transform: translateX(calc(100% - (60px)));

  color: white;
  fill: white;
  background: #C80C0C;
}
#cartmodal .cartmodalbutton-swiper .cartmodalbutton-swiper-visiblebox {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  margin-right: auto;

  height: 100%;
  width: 60px;
}
#cartmodal.is_loading .cartmodalbutton .cartmodalbutton-swiper .cartmodalbutton-swiper-visiblebox {
  cursor: not-allowed;
}

#cartmodal .cartmodalbutton-swiper .cartmodalbutton-swiper-longbutton {
  position: relative;
  display: flex;
  flex: 1;

  align-items: center;

  height: 100%;
}
#cartmodal .cartmodalbutton-swiper .cartmodalbutton-swiper-longbutton__text {
  position: relative;

  margin: 0 auto;

  opacity: 0;
  transition: 0.15s all ease-out;
}

#cartmodal .cartmodalbutton-swiper.swiped .cartmodalbutton-swiper-longbutton {
  cursor: pointer;
}
#cartmodal.is_loading .cartmodalbutton .cartmodalbutton-swiper.swiped .cartmodalbutton-swiper-longbutton {
  cursor: not-allowed;
}
#cartmodal .cartmodalbutton-swiper.swiped .cartmodalbutton-swiper-longbutton__text {
  opacity: 1;
}

#cartmodal .cartmodalbutton-hinter {
  z-index: 1;
  /* pointer-events: none; */

  justify-content: center;

  padding-right: 60px;

  color: #C80C0C;
  fill: #C80C0C;
  background: rgba(0, 0, 0, 0);
}

#cartmodal .cartmodalbutton-hinter .cartmodalbutton-hinter__text {
  animation-name: fadedanim-cartmodalbutton-hinter__text;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes fadedanim-cartmodalbutton-hinter__text {
  0%   {opacity: 1;}
  100% {opacity: 0.1;}
}

#cartmodal.is_loading .cartmodalbox.active::after {
  content: 'جاري التحميل ...';
  position: absolute;
  display: flex;
  z-index: 10;

  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  font-weight: 600;

  background: rgba(255, 255, 255, 0.95);
}

#cartmodal .cartmodalbutton .cartmodalbutton-loadingcont {
  position: absolute;
  display: none;
  z-index: 5;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 1);
}
#cartmodal.is_loading .cartmodalbutton .cartmodalbutton-loadingcont {
  display: flex;
}

#cartmodal .cartmodalbutton .cartmodalbutton-loadingcont .cartmodalbutton-loadingcont-loader {
  position: relative;
  display: flex;

  margin: 10px auto;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  /* background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), #e5f403); */
  background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), #B10000);

  animation: loadinganim-cartmodal-loadingcont-loader 2s linear infinite;
}
@keyframes loadinganim-cartmodal-loadingcont-loader {
  0% {
    transform: rotate(0deg);
    filter: hue-rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    filter: hue-rotate(360deg);
  }
}
#cartmodal .cartmodalbutton .cartmodalbutton-loadingcont .cartmodalbutton-loadingcont-loader::before {
  content: '';
  position: absolute;
  z-index: 10;

  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;

  border-radius: 50%;

  background: #ffffff;
  box-shadow: inset 0 0 10px rgb(0, 0, 0, 0.05);
}
#cartmodal .cartmodalbutton .cartmodalbutton-loadingcont .cartmodalbutton-loadingcont-loader::after {
  content: '';
  position: absolute;
  z-index: 1;

  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;

  border-radius: 50%;

  filter: blur(5px);

  background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), #B10000);
}



/* [ Categories ] */
.crdpg-catsection {
}

.crdpg-catsection > .container {
  padding: 0;
}

.crdpg-catsection > .container::after,
.crdpg-catsection > .container::before {
  content: '';
  position: absolute;
  display: flex;
  z-index: 1;

  top: 0;
  left: 0;
  bottom: 0;

  width: 50px;
  height: 100%;

  pointer-events: none;

  background: linear-gradient(to right, rgba(var(--homepage_background_color_rgb), 1), rgba(var(--homepage_background_color_rgb), 0));
}
.crdpg-catsection > .container::before {
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, rgba(var(--homepage_background_color_rgb), 1), rgba(var(--homepage_background_color_rgb), 0.9), rgba(var(--homepage_background_color_rgb), 0));
}

.crdpg-categories {
  position: relative;
  display: flex;

  overflow: hidden;
  overflow-x: auto;

  flex-direction: row;

  width: 100%;

  padding: 20px 20px;
  padding-bottom: 10px;
}

/* Categories Scrollbar. */
.crdpg-categories::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.crdpg-categories::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}
.crdpg-categories::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}
.crdpg-categories:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

/* Categories Items. */
.crdpg-categories .crdpg-categories-item {
  cursor: pointer;
  position: relative;
  display: flex;

  justify-content: space-between;

  flex-direction: column;

  margin-right: 5px;
  margin-left: 5px;

  padding: 15px 5px;

  border: 3px solid rgba(0, 0, 0, 0);
  border-radius: 100px;

  color: black;
  background: white;

  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);

  transition: 0.15s all ease-out;
}
.crdpg-categories .crdpg-categories-item:first-child {
  margin-right: 10px;
}
.crdpg-categories .crdpg-categories-item:last-child {
  margin-left: 10px;
}

.crdpg-categories .crdpg-categories-item .crdpg-categories-item__image {
  position: relative;
  display: flex;

  margin: 0 auto;
  margin-bottom: 5px;

  width: 50px;
  height: 50px;

  object-fit: cover;
  object-position: center center;

  border-radius: 1000px;
}

.crdpg-categories .crdpg-categories-item .crdpg-categories-item__title {
  max-width: 100px;
  min-width: 60px;
  max-height: 60px;

  overflow: hidden;

  padding: 10px;

  text-align: center;

  font-weight: 600;
  font-size: 15px;
}

/* Categories Items (Active). */
.crdpg-categories .crdpg-categories-item.active {
  color: #B10000;
  border: 3px solid #B10000;
}


/* [ PRODUCTS ] */
.crdpg-prodsection {
}

.crdpg-prodsection > .container {
  padding: 0;
}

.crdpg-products {
  position: relative;
  display: none;

  flex-direction: column;

  width: 100%;

  padding: 20px;
  padding-top: 10px;
}

.crdpg-products.active {
  display: flex;
}

.crdpg-products .crdpg-products__cattitle {
  padding: 10px;

  font-weight: 500;
  font-size: 24px;

  color: #222222;
}

.crdpg-products .crdpg-products-list {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;
}

.crdpg-products .crdpg-products-item {
  cursor: pointer;
  position: relative;
  display: flex;

  justify-content: flex-start;

  flex-direction: row;

  margin: 10px 10px;

  width: calc((100% - 10px * (4 * 2)) / 4);

  padding: 10px;

  border-radius: 4px;

  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 1050px) {
  .crdpg-products .crdpg-products-item {
    width: calc((100% - 10px * (3 * 2)) / 3);
  }
}
@media (max-width: 850px) {
  .crdpg-products .crdpg-products-item {
    width: calc((100% - 10px * (2 * 2)) / 2);
  }
}
@media (max-width: 500px) {
  .crdpg-products .crdpg-products-item {
    width: calc((100% - 10px * (1 * 2)) / 1);
  }
}

.crdpg-products .crdpg-products-item .crdpg-products-item__image {
  position: relative;
  display: flex;

  width: 80px;
  max-width: 80px;
  min-width: 80px;
  height: 60px;
  max-height: 60px;
  min-height: 60px;

  border-radius: 6px;

  object-fit: cover;
  object-position: center center;
}

.crdpg-products .crdpg-products-item-details {
  position: relative;
  display: flex;
  flex: 1;
  flex-shrink: 0;

  justify-content: space-between;

  flex-direction: row;

  width: 100%;

  background: white;
}

.crdpg-products .crdpg-products-item-details-addrembtn {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  min-width: 44px;
  height: 100%;

  padding: 10px;

  border: 2px solid rgba(0, 0, 0, 0.05);
  border-top: 0;
  border-bottom: 0;

  fill: rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.5);
}
.crdpg-products .crdpg-products-item-details-addrembtn:first-child {
  border-right: 0;
}
.crdpg-products .crdpg-products-item-details-addrembtn:last-child {
  border-left: 0;
}

.crdpg-products .crdpg-products-item-details-info {
  position: relative;
  display: flex;
  flex: 1;

  flex-direction: column;

  padding: 5px 10px;
}
.crdpg-products .crdpg-products-item-details-info__title {
  position: relative;

  overflow: hidden;

  width: 100%;
  max-height: calc(24px * 2);

  line-height: 24px;

  font-weight: 500;
  font-size: 16px;
}
.crdpg-products .crdpg-products-item-details-info__description {
  display: none;
}
.crdpg-products .crdpg-products-item-details-info-pricing {
  position: relative;
  display: flex;

  flex-direction: row;

  flex-wrap: wrap;
}
.crdpg-products .crdpg-products-item-details-info__price {
  margin-top: 5px;

  white-space: nowrap;

  font-weight: 600;
  font-size: 12px;
}
.crdpg-products .crdpg-products-item-details-info__priceloyalty {
  margin-right: 4px;

  color: #ffa30a;
}



/* [ WAITER REQUEST ] */
#WAITER_REQUEST_BUTTON {
  position: fixed;
  display: flex;
  flex-shrink: 0;
  z-index: 500;

  left: 30px;
  bottom: calc(30px + (70px));

  align-items: center;
  justify-content: center;

  width: 70px;
  height: 70px;

  border-radius: 100px;

  color: #B10000;
  fill: #B10000;

  background: white;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
}
#WAITER_REQUEST_BUTTON.waiting_waiter {
  color: white;
  fill: white;
  background: #B10000;
}
#WAITER_REQUEST_BUTTON.coming_waiter {
  color: white;
  fill: white;
  background: #FF9800;
}

/* [ User Points Float ] */
#USER_POINTS_FLOAT {
  position: fixed;
  display: flex;
  flex-shrink: 0;
  z-index: 500;

  left: 30px;
  bottom: calc(30px + (70px));

  align-items: center;
  justify-content: center;

  min-width: 70px;
  height: 70px;

  padding: 0 30px;

  border-radius: 100px;

  font-weight: 600;
  text-decoration: none;

  color: #ffa30a;
  fill: #ffa30a;

  background: white;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
}



/* [ CART ] */

#OPEN_CART_BUTTON {
  position: fixed;
  display: none;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  bottom: 30px;
  right: calc(50% - 30px);

  margin: 0 30px;

  width: calc(100% - (30px * 2));
  max-width: calc(1200px - (30px * 2));

  padding: 15px;

  transform: translateX(50%);

  border-radius: 4px;
  border: 2px solid rgba(0, 0, 0, 0);

  text-decoration: none;

  font-weight: 500;
  font-size: 18px;

  color: white;
  fill: white;

  background: #B10000;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);

  transition: 0.3s all ease-out;
}
#OPEN_CART_BUTTON.active {
  display: flex;
}
#OPEN_CART_BUTTON:hover {
  background: #c80c0c;
}
