table {
  width: 90%;
  border-collapse: collapse;
  overflow-x: scroll;
}

table,
th,
td {
  padding: 15px;
  font-size: 0.95em;
  color: #fff;
  text-align: left;
  font-weight: 500;
}

th,
td {
  color: #abafbb;
  font-weight: 500;
}

tr:nth-child(even) {
  background-color: #1a2035;
}

.thTr {
  background-color: transparent;
}

hr {
  width: 100%;
  height: 1px;
  background-color: #9a9da5;
  border: none;
  opacity: 0.3;
}

a {
  text-decoration: none;
  color: #ff2e63;
}

ul {
  list-style-type: none;
}

footer {
  font-family: "Roboto", sans-serif;
  width: 100%;
  min-height: 400px;
  background-color: #252a34;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4em;
  padding-top: 50px;
  z-index: 10;
}

.headerSearch {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.headerSearch i {
  position: absolute;
  top: 50%;
  left: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: text;
  color: #1a2035;
}

.searchInput {
  width: 400px;
  background-color: rgba(255, 255, 255, 0.453);
  border: none;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  outline: none;
}

.searchInput:focus {
  background-color: #fff;
}

.searchInput2 {
  width: 400px;
  background-color: #fff;
  border: 1px solid #1a2035;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  outline: none;
}

.searchInput2:focus {
  border: 1px solid #ff2e63;
}

.vot {
  width: 90%;
  margin: auto;
}

.vot td,
.vot th {
  color: #333;
  font-size: 1.1em;
  background-color: #252a34;
  color: #fff !important;
  padding: 8px;
}

.hcot td,
.hcot th {
  color: #fff;
  font-size: 1.1em;
  padding: 8px;
}

.borderTable td,
.borderTable th {
  border: 1px solid #41485a;
}

.customCheckbox {
  width: 13px;
  height: 13px;
  border: 1px solid #1a2035;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.customCheckbox i {
  font-size: 0.5em;
  z-index: 1;
  opacity: 0;
}

.activeCheckbox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: #ff2e63;
  -webkit-animation: growAnimation 100ms linear;
          animation: growAnimation 100ms linear;
}

.activeCheckbox {
  border: 1px solid #ff2e63;
}

.activeCheckbox i {
  -webkit-animation: fadeIn 500ms linear forwards;
          animation: fadeIn 500ms linear forwards;
  color: #fff;
}

.customRadio {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #1a2035;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.activeRadio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: #ff2e63;
  -webkit-animation: growAnimation 100ms linear;
          animation: growAnimation 100ms linear;
}

.activeRadio {
  border: 1px solid #ff2e63;
}

.activeRadio i {
  -webkit-animation: fadeIn 500ms linear forwards;
          animation: fadeIn 500ms linear forwards;
  color: #fff;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes growAnimation {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  50% {
    width: 50%;
    height: 50%;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

@keyframes growAnimation {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  50% {
    width: 50%;
    height: 50%;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

.colorValue {
  width: 100%;
  height: 40px;
  background-color: #1a2035;
  border: 1px solid #41485a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.adminTextarea {
  width: 100%;
  background-color: #1a2035;
  border: 1px solid #41485a;
  border-radius: 5px;
  color: #fff;
  outline: none;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.adminTextarea:focus {
  border: 1px solid #ff2e63;
}

.search {
  width: 150px;
  background-color: #1a2035;
  padding: 10px;
  border-radius: 60px;
  outline: none;
  border: 1px solid #41485a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}

.search::-webkit-input-placeholder {
  color: #9a9da5;
}

.search:-ms-input-placeholder {
  color: #9a9da5;
}

.search::-ms-input-placeholder {
  color: #9a9da5;
}

.search::placeholder {
  color: #9a9da5;
}

.itemImagePreview {
  width: 160px;
  height: 160px;
  border-radius: 5px;
}

.adminSectionTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.adminSectionTopLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  color: #9a9da5;
  font-size: 0.9em;
}

.adminSectionTopLeft a {
  color: #9a9da5;
}

.adminSectionTopLeft .heading {
  color: #9a9da5;
  font-weight: 600;
  font-size: 1.4em;
}

.filterItems {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.filterItemsLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  color: #fff;
  font-size: 0.8em;
}

.filterRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.filterRight button {
  visibility: hidden;
}

.adminMiddleSection {
  width: 100%;
  min-height: 50vh;
  border-radius: 5px;
  background-color: #1f283e;
  gap: 1em;
  padding-bottom: 50px;
}

.adminMiddleSection div {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.adminMiddleSection .filterRight {
  padding: 0;
}

.adminMiddleSectionTop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}

.adminMiddleSectionTop .heading {
  color: #fff;
  font-size: 1.2em;
}

.dataTable {
  width: 97%;
  margin-left: 20px;
  -webkit-box-sizing: border;
          box-sizing: border;
}

.tableImage {
  width: 80px;
  height: 80px;
}

.actionsTd {
  white-space: nowrap;
}

.lineStraight {
  height: 50px;
  width: 1px;
  background-color: #41485a;
}

.dashLeftTable {
  margin-left: 30px;
  margin-top: 20px;
}

.dashRightTable {
  margin-left: 30px;
  margin-top: 20px;
}

.heading {
  font-size: 2em;
  color: #333;
  letter-spacing: 1px;
}

.hidden {
  opacity: 0;
}

.footerLeft {
  width: 400px;
  height: 100%;
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.footerLeft .footerLeftOptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
}

.footerLeft .footerLeftOptions button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.3em;
  padding: 10px;
  border-bottom: 3px solid transparent;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
}

.footerLeft .footerLeftOptions button:hover {
  background-color: #ff2e63;
}

.footerLeft .footerLeftOptions .activeLink {
  border-bottom: 3px solid #ff2e63;
}

.footerLeft .footerLeftOptionItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 1em;
}

.footerLeft .footerLeftOptionItems .footerLeftOptionItem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 0.9em;
}

.footerLeft .opts {
  display: none;
}

.footerMiddle {
  width: 400px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3em;
}

.footerMiddle p {
  color: #fff;
  text-align: center;
}

.footerMiddle i {
  font-size: 3em;
  color: #fff;
}

.footerRight {
  width: 500px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3em;
}

.footerRight p {
  color: #fff;
  text-align: center;
  font-size: 0.9em;
}

.footerRight .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.footerRight .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #252a34;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
}

.footerRight .socials .twitter:hover {
  background-color: #1da1f2;
  color: #fff;
}

.footerRight .socials .facebook:hover {
  background-color: #4267b2;
  color: #fff;
}

.footerRight .socials .instagram:hover {
  background: #8a2387;
  /* fallback for old browsers */
  background: -webkit-gradient(linear, left top, right top, from(#f27121), color-stop(#e94057), to(#8a2387));
  background: linear-gradient(to right, #f27121, #e94057, #8a2387);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
}

.twoFormGroups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}

.formInput {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  z-index: 2;
  background-color: transparent;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.formInput2 {
  width: 100%;
  background-color: #1a2035;
  border: 1px solid #41485a;
  border-radius: 3px;
  padding: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  color: #abafbb;
}

.formInput2:focus {
  border: 1px solid #ff2e63;
}

.formGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}

.formCheck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.formSelect {
  width: 100%;
  padding: 10px;
  border: none;
  border: 1px solid lightgray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  z-index: 2;
  background-color: #fff;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
}

.formSelect2 {
  width: 100%;
  padding: 8px;
  border: none;
  border: 1px solid #41485a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border-radius: 3px;
  background-color: #1a2035;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
  color: #fff;
}

.orderBtn {
  width: 100%;
  background-color: #ff2e63;
  color: #fff;
  padding: 10px;
  border-radius: 3px;
  margin: auto;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
  white-space: nowrap;
  letter-spacing: 2px;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.orderBtn:hover {
  background-color: #e22857;
}

/* Dashboard Cards */
.blueCard {
  background-color: #1572e8;
}

.blueCard2 {
  background-color: #48abf7;
}

.orangeCard {
  background-color: #ffad46;
}

.greenCard {
  background-color: #31ce36;
}

/* Dashboard Cards */
/* Selects */
select {
  outline: none;
}

.dataTableSelect {
  width: 30%;
  background-color: #1f283e;
  padding: 10px 20px;
  outline: none;
  border: 1px solid #41485a;
  color: #fff;
  border-radius: 3px;
}

.filterSelect {
  background-color: #1f283e;
  padding: 5px 20px;
  outline: none;
  border: 1px solid #41485a;
  color: #fff;
  border-radius: 3px;
}

.greenSelect {
  padding: 7px 9px;
  border-radius: 3px;
  background-color: #31ce36;
  color: #fff;
  border: none;
}

.redSelect {
  padding: 7px 9px;
  border-radius: 3px;
  background-color: #ff2e63;
  color: #fff;
  border: none;
}

/* Selects */
/* Buttons */
.buttonGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.buttonGroup button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}

.frbgbtn {
  width: 100%;
  border: none;
  border-radius: 3px;
  background-color: #1a2035;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.frbgbtn:hover {
  background-color: #e22857;
}

.acceptBtn {
  width: 70px;
  height: 30px;
  padding: 1px;
  color: #fff;
  border: none;
  border-radius: 5px;
  background-color: #289672;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.acceptBtn:hover {
  background-color: #1f6b52;
}

.cancleBtn {
  width: 70px;
  min-height: 30px;
  padding: 1px;
  color: #fff;
  border: none;
  border-radius: 5px;
  background-color: #ff2e63;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.cancleBtn:hover {
  background-color: #e22857;
}

.print {
  background-color: #ff2e63;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  border: none;
  border-radius: 5px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.print:hover {
  background-color: #e22857;
}

.print2 {
  background-color: #185adb;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  border: none;
  border-radius: 5px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.print2:hover {
  background-color: #174bb3;
}

.filterBtn {
  background-color: #31ce36;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  border: none;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.filterBtn:hover {
  background-color: #2eba32;
}

.viewBtn {
  width: 50px;
  padding: 10px;
  background-color: #605bbf;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  font-size: 0.8em;
  border-radius: 3px;
  -webkit-transition: 150ms all ease-in-out;
  transition: 150ms all ease-in-out;
}

.viewBtn:hover {
  background-color: #5853bf;
}

.deleteButton {
  background-color: #ff2e63;
  padding: 10px;
  color: #fff;
  border: none;
  border-radius: 3px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.deleteButton i {
  margin-right: 2px;
}

.deleteButton:hover {
  background-color: #e22857;
}

.deleteBtn {
  background-color: #ff2e63;
  padding: 10px;
  color: #fff;
  border: none;
  border-radius: 3px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.deleteBtn i {
  margin-right: 2px;
}

.deleteBtn:hover {
  background-color: #e22857;
}

.editButton,
.downloadBtn {
  background-color: #605bbf;
  padding: 9.5px 6.5px;
  color: #fff;
  border: none;
  margin-right: 3px;
  border-radius: 3px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
  font-size: 0.94em;
}

.editButton i,
.downloadBtn i {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
  margin-right: 2px;
}

.editButton:hover,
.downloadBtn:hover {
  background-color: #5853bf;
}

.buttonBlue {
  width: 50px;
  padding: 10px;
  background-color: #1572e8;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  font-size: 0.8em;
  border-radius: 3px;
  -webkit-transition: 150ms all ease-in-out;
  transition: 150ms all ease-in-out;
  white-space: nowrap;
}

.buttonBlue:hover {
  background-color: #185adb;
}

.buttonBlue i {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.buttonRed {
  width: 50px;
  padding: 10px;
  background-color: #ff2e63;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  font-size: 0.8em;
  border-radius: 3px;
  -webkit-transition: 150ms all ease-in-out;
  transition: 150ms all ease-in-out;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.buttonRed:hover {
  background-color: #e22857;
}

.buttonRed i {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.buttonGreen {
  width: 50px;
  padding: 10px;
  background-color: #31ce36;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  font-size: 0.8em;
  border-radius: 3px;
  -webkit-transition: 150ms all ease-in-out;
  transition: 150ms all ease-in-out;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.buttonGreen:hover {
  background-color: #2eba32;
}

.buttonGreen i {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btnGroupWebsiteSection button {
  margin: auto;
}

.addButton,
.addButton2 {
  min-width: 50px;
  padding: 10px 25px;
  background-color: #1572e8;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3em;
  font-size: 0.7em;
  border-radius: 3px;
  -webkit-transition: 150ms all ease-in-out;
  transition: 150ms all ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}

.addButton:hover,
.addButton2:hover {
  background-color: #185adb;
}

.addButton2 {
  padding: 20px 40px;
  font-size: 0.9em;
}

.badgeRed {
  background-color: #ff2e63;
  font-size: 0.85em !important;
  color: #fff;
  padding: 5px 10px;
  width: 50px;
  border-radius: 20px;
  text-align: center;
  text-transform: capitalize;
}

.badgeGreen {
  background-color: #31ce36;
  font-size: 0.85em !important;
  color: #fff;
  padding: 5px 10px;
  width: 60px;
  border-radius: 20px;
  text-align: center;
  text-transform: capitalize;
}

.badgeCold {
  background-color: #0e49b5;
  font-size: 0.85em !important;
  color: #fff;
  padding: 5px 10px;
  width: 60px;
  border-radius: 20px;
  text-align: center;
  text-transform: capitalize;
}

.badgeCold2 {
  background-color: #48abf7;
  font-size: 0.85em !important;
  color: #fff;
  padding: 5px 10px;
  width: 60px;
  border-radius: 20px;
  text-align: center;
  text-transform: capitalize;
}

.hosr {
  padding: 5px 8px;
  color: #fff;
  background-color: #ff2e63;
  border: none;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.hosr:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
          box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
}

.hosg {
  padding: 5px 8px;
  color: #fff;
  background-color: #289672;
  border: none;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.hosg:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
          box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
}

.vobr {
  padding: 5px 8px;
  color: #fff;
  background-color: #ff2e63;
  border: none;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.vobr:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
          box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
}

.vobc {
  padding: 5px 8px;
  color: #fff;
  background-color: #185adb;
  border: none;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.vobc:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
          box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
}

.vobc2 {
  padding: 5px 8px;
  color: #fff;
  background-color: #48abf7;
  border: none;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.vobc2:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
          box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
}

.vobg {
  padding: 5px 8px;
  color: #fff;
  background-color: #289672;
  border: none;
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.vobg:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
          box-shadow: -2px 45px 134px -79px rgba(0, 0, 0, 0.75);
}

.backButton {
  width: 50px;
  padding: 10px 18px;
  background-color: #48abf7;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  font-size: 0.7em;
  border-radius: 3px;
  -webkit-transition: 150ms all ease-in-out;
  transition: 150ms all ease-in-out;
  white-space: nowrap;
}

.backButton:hover {
  background-color: #3ba0ee;
}

.backButton i {
  font-size: 1.5em;
}

.setdefbtn {
  background-color: #1f283e;
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.setdefbtn:hover {
  background-color: #1a2035;
}

.setdefbtnds {
  background-color: #1a2035;
}

.submitBtn {
  background-color: #31ce36;
  padding: 15px 20px;
  border: none;
  color: #fff;
  margin: auto;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.submitBtn:hover {
  background-color: #2eba32;
}

.resetBtn {
  background-color: #ff2e63;
  padding: 15px 20px;
  border: none;
  color: #fff;
  margin: auto;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.resetBtn:hover {
  background-color: #e22857;
}

.timesBtn {
  background-color: #ff2e63;
  color: #fff;
  padding: 10px 15px;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.timesBtn:hover {
  background-color: #e22857;
}

.delbtn {
  background-color: #ff2e63;
  color: #fff;
  padding: 10px 15px;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.delbtn:hover {
  background-color: #e22857;
}

.actions {
  background-color: #605bbf;
  padding: 10px 15px;
  border: none;
  color: #fff;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
  border-radius: 3px;
}

.actions:hover {
  background-color: #5853bf;
}

.dayBtn {
  background-color: #185adb;
  width: 300px;
  padding: 15px;
  color: #fff;
  border: none;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  border-radius: 3px;
  cursor: pointer;
}

.dayBtn:hover {
  background-color: #174bb3;
}

/* Buttons */
/* Popups */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 10;
  display: none;
}

.orderPopUp,
.orderPopUp2 {
  font-family: "Open Sans", sans-serif;
  position: fixed;
  width: 750px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 7000;
  border-radius: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  color: #1a2035;
  -webkit-box-shadow: 5px 2px 50px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 2px 50px 6px rgba(0, 0, 0, 0.15);
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.orderPopUp .closeOrder,
.orderPopUp2 .closeOrder {
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
  font-size: 1.4em;
}

.orderPopUp .closeOrder:hover,
.orderPopUp2 .closeOrder:hover {
  color: #ff2e63;
}

.orderPopUp .optc,
.orderPopUp2 .optc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3em;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}

.orderPopUp .optc textarea,
.orderPopUp2 .optc textarea {
  width: 100%;
  border: 1px solid gray;
  border-radius: 5px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

.orderPopUp .optc label,
.orderPopUp2 .optc label {
  font-size: 15px;
  color: gray;
}

.orderPopUp .optc p,
.orderPopUp2 .optc p {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em;
  color: gray;
}

.orderPopUp .fchscn,
.orderPopUp2 .fchscn {
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}

.orderPopUp .fchscn label,
.orderPopUp2 .fchscn label {
  font-size: 15px;
  color: gray;
}

.orderPopUp .opmc,
.orderPopUp2 .opmc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  max-height: 600px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.orderPopUp .opmc .opmcTop,
.orderPopUp2 .opmc .opmcTop {
  width: 100%;
  text-align: left;
}

.orderPopUp .opmc .opmcTop p,
.orderPopUp2 .opmc .opmcTop p {
  color: #ff2e63;
}

.orderPopUp .opmc .opmcs,
.orderPopUp2 .opmc .opmcs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}

.orderPopUp .opmc .opmcs .opmcst,
.orderPopUp2 .opmc .opmcs .opmcst {
  width: 100%;
  text-align: left;
}

.orderPopUp .opmc .opmcs .opmcst p,
.orderPopUp2 .opmc .opmcs .opmcst p {
  font-size: 1em;
  color: gray;
}

.orderPopUp .opmc .opmcs .opmcsos,
.orderPopUp2 .opmc .opmcs .opmcsos {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 0.5em;
}

.orderPopUp .opmc .opmcs .opmcsos .opmcso,
.orderPopUp2 .opmc .opmcs .opmcsos .opmcso {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.orderPopUp .opmc .opmcs .opmcsos .opmcso .opmcsol,
.orderPopUp2 .opmc .opmcs .opmcsos .opmcso .opmcsol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em;
}

.orderPopUp .opmc .opmcs .opmcsos .opmcso .opmcsor,
.orderPopUp2 .opmc .opmcs .opmcsos .opmcso .opmcsor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.orderPopUp .opmc .opmcs .opmcsosh,
.orderPopUp2 .opmc .opmcs .opmcsosh {
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 0.5em;
  display: none;
}

.orderPopUp .opmc .opmcs .opmcsosh .opmcso,
.orderPopUp2 .opmc .opmcs .opmcsosh .opmcso {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.orderPopUp .opmc .opmcs .opmcsosh .opmcso .opmcsol,
.orderPopUp2 .opmc .opmcs .opmcsosh .opmcso .opmcsol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em;
}

.orderPopUp .opmc .opmcs .opmcsosh .opmcso .opmcsor,
.orderPopUp2 .opmc .opmcs .opmcsosh .opmcso .opmcsor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.orderPopUp .opmc .scropmcs,
.orderPopUp2 .opmc .scropmcs {
  cursor: pointer;
  padding-bottom: 10px;
}

.orderPopUp .opmb,
.orderPopUp2 .opmb {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: auto;
  background-color: lightgray;
  gap: 0.5em;
}

.orderPopUp .opmb .opmbl,
.orderPopUp2 .opmb .opmbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 25px;
}

.orderPopUp .opmb .opmbl input,
.orderPopUp2 .opmb .opmbl input {
  padding: 10px;
  width: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  background-color: transparent;
  outline: none;
  text-align: center;
  font-size: 1.1em;
}

.orderPopUp .opmb .opmbl .opmbliad,
.orderPopUp2 .opmb .opmbl .opmbliad {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  color: #fff;
  background-color: #1a2035;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.orderPopUp .opmb .opmbl .opmbliad:hover,
.orderPopUp2 .opmb .opmbl .opmbliad:hover {
  background-color: #ff2e63;
}

.orderPopUp .opmb button,
.orderPopUp2 .opmb button {
  white-space: nowrap;
  background-color: #1a2035;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 5px;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
  -webkit-box-shadow: 5px 2px 50px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 2px 50px 6px rgba(0, 0, 0, 0.15);
  font-size: 1.1em;
}

.orderPopUp .opmb button:hover,
.orderPopUp2 .opmb button:hover {
  background-color: #1f283e;
}

.shopClosed {
  position: fixed;
  width: 450px;
  height: 300px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 5px 2px 50px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 2px 50px 6px rgba(0, 0, 0, 0.15);
  z-index: 10000;
}

.shopClosed div {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.shopClosed div i {
  font-size: 2.4em;
  color: #ff2e63;
}

.shopClosed div p {
  font-size: 1.3em;
}

.shopClosed div button {
  background-color: #ff2e63;
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  border: none;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
}

.shopClosed div button:hover {
  background-color: #e22857;
}

.notificationsContainer {
  position: fixed;
  top: 85%;
  left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  z-index: 10000;
}

.ntfc2 {
  width: 30%;
  position: fixed;
  top: 2%;
  left: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  z-index: 10;
  -webkit-transform: translateX(-90%);
          transform: translateX(-90%);
  display: none;
}

.ntf2 {
  font-family: "Roboto", sans-serif;
  position: relative;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  border-left: 10px solid #218868;
  background-color: #fff;
  border-radius: 5px;
  -webkit-animation: ntf2Animation 600ms ease-in-out;
          animation: ntf2Animation 600ms ease-in-out;
}

.ntf2 i {
  color: #218868;
  font-size: 2em;
}

.ntf2 .message {
  font-size: 1.2em;
}

.ntf2 .closeNtf2 {
  position: absolute;
  top: 2%;
  left: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  padding-right: 5px;
}

.ntf2 .closeNtf2 i {
  color: #333;
  font-size: 1em;
  cursor: pointer;
}

@-webkit-keyframes ntf2Animation {
  0% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes ntf2Animation {
  0% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.snackBar {
  background-color: #fff;
  min-width: 300px;
  height: 40px;
  border-radius: 5px;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  background: #289672;
  color: #fff;
  font-size: 0.9em;
}

.snackBar i {
  cursor: pointer;
}

.snackErr {
  background-color: #ff2e63;
}

.snackErr i {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.confirmDelete {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  background-color: #fff;
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  border-radius: 5px;
  display: none;
}

.confirmDelete i {
  color: #ff2e63;
  font-size: 2em;
}

.confirmDelete p {
  color: #1a2035;
  font-size: 1.1em;
}

.confirmDelete .buttonGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.confirmDelete img {
  width: 100px;
  height: 100px;
}

/* Popups */
/* Backgrounds */
.bgRed {
  background-color: #ff2e63;
}

/* Backgrounds */
/* Colors */
.orange {
  color: #f98404;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  text-align: center;
}

.red {
  color: #ff2e63;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}

/* Colors */
.inputWithBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.labelWithBtnToggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}

.toggleBtns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.toggleBtns button {
  width: 50%;
  color: #9a9da5;
  border: 1px solid #41485a;
  padding: 10px 15px;
  background-color: transparent;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  cursor: pointer;
}

.toggleBtns .deactive {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.toggleBtns .active {
  background-color: #2661d831;
  border: 1px solid #185adb;
  color: #185adb;
}

.imageLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}

.imageLabel img {
  width: 90px;
  height: 90px;
}

.pagination {
  width: 100%;
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}

.pagination ul li {
  background-color: #fff;
  width: 35px;
  height: 35px;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.pagination ul li:hover {
  background-color: #ff2e63;
  color: #fff;
}

.pagination ul .activePage {
  background-color: #ff2e63;
  color: #fff;
}

.disabled {
  opacity: 0.3;
}

/* Containers */
.foods {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.viewContainer {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}

.hcc {
  width: 100%;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.voc {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  gap: 2em;
  padding: 20px;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("/images/obg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.voc * {
  z-index: 1;
}

.voc img {
  width: 300px;
  height: 300px;
}

.voc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}

/* Containers */
/* Timer */
.timer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
}

.time {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  -webkit-box-shadow: 0px 2px 23px 7px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 2px 23px 7px rgba(0, 0, 0, 0.11);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ff2e63;
  font-size: 1.4em;
}

.time:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Timer */
/* Message Colors */
.erm {
  color: #ff2e63;
  display: none;
}

/* Message Colors */
/* Payment */
.eic {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid lightgray;
  margin-top: 10px;
  margin-bottom: 10px;
}

.ei {
  width: 100%;
  background-color: #fff;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Payment */
.commentTd {
  max-width: 150px;
}

* {
  margin: 0;
}

html {
  font-family: "Courier Prime", monospace;
  font-family: "Open Sans", sans-serif;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

.mainContainer {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.logOut {
  background-color: #ff2e63;
  padding: 11px 13px;
  border-radius: 3px;
  color: #fff;
  border: none;
  font-size: 1.05em;
}

.logOut:hover {
  background-color: #e22857;
}

.wbars {
  font-size: 2em;
  background-color: transparent;
  border: none;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wbars .fa-bars {
  cursor: pointer;
  color: #fff;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.wbars:hover {
  background-color: transparent;
}

.wbars:hover .fa-bars {
  color: #ff2e63;
}

.bbars {
  font-size: 2em;
  background-color: transparent;
  border: none;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.bbars .fa-bars {
  cursor: pointer;
  color: #1a2035;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.bbars:hover {
  background-color: transparent;
}

.bbars:hover .fa-bars {
  color: #ff2e63;
}

/* Header */
.adminHeaderContainer {
  position: fixed;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 6000;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.adminHeader {
  margin: 0 5%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: transparent;
}

.adminHeader img {
  width: 60px;
  height: 50px;
  -webkit-box-shadow: 1px 1px 36px -32px black;
          box-shadow: 1px 1px 36px -32px black;
}

.adminHeaderLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.adminHeaderOption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
}

.adminHeaderRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.headerLanguages {
  position: relative;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sel {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2em;
  cursor: pointer;
  color: #fff;
}

.sel img {
  width: 30px;
  height: 30px;
}

.langsc {
  position: absolute;
  top: 100%;
  width: 50px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
  -webkit-box-shadow: 1px -1px 18px -1px rgba(0, 0, 0, 0.35);
          box-shadow: 1px -1px 18px -1px rgba(0, 0, 0, 0.35);
}

.langsc .sll {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  border-radius: 5px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.langsc .sll:hover {
  background-color: lightgray;
}

.langsc .sll img {
  width: 50%;
  height: 100%;
}

/* Header */
/* Banner */
.banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.467);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Banner */
/* Shop Closed Notice */
.shopClosedNotice {
  width: 100%;
  background-color: #9a9da5;
  color: #fff;
  text-align: center;
  min-height: 20px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Shop Closed Notice */
/* Main content */
.mainContentContainer {
  width: 100%;
  min-height: 600px;
  padding-bottom: 20px;
}

.mainContent {
  padding-left: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mainContentctgs {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  padding-top: 40px;
}

.mainContentctgs ul li {
  position: relative;
  height: 50px;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-left: 10px;
  font-size: 0.95em;
}

.mainContentctgs ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11%;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: lightgray;
  z-index: 100;
}

.mainContentctgs ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -8.6%;
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: lightgray;
}

.mainContentctgs ul .clia::before {
  background-color: #333;
}

.smcctgs {
  position: relative;
  display: none;
  max-height: 250px;
  overflow-y: auto;
}

.mainContentLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0.75;
      -ms-flex: 0.75;
          flex: 0.75;
  gap: 1em;
  padding-top: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mainContentLeft .heading {
  position: relative;
  width: 100%;
  text-align: left;
  background-color: #1a2035;
  color: gold;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}

.food {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
  -webkit-box-shadow: 5px -1px 22px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 5px -1px 22px 2px rgba(0, 0, 0, 0.1);
}

.food:hover {
  -webkit-box-shadow: 5px 2px 37px -9px #1a2035;
          box-shadow: 5px 2px 37px -9px #1a2035;
}

.food .foodName {
  font-size: 1.2em;
}

.food .foodDescription {
  color: gray;
  word-break: break-all;
  font-size: 0.9em;
}

.foodLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}

.foodRight h3 {
  font-size: 1em;
}

.mainContentRight {
  -webkit-box-flex: 0.25;
      -ms-flex: 0.25;
          flex: 0.25;
  min-height: 100vh;
  -webkit-box-shadow: 0px 3px 138px -60px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 3px 138px -60px rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mainContentRightTop {
  width: 100%;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 0.5em;
  position: relative;
  margin-bottom: 100px;
}

.mainContentRightTop .price {
  margin-left: auto;
}

.mainContentRightTop p {
  color: #1a2035;
  font-weight: 600;
}

.mainContentRightTop::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  -webkit-transform: skewY(-2deg);
          transform: skewY(-2deg);
  top: 90%;
  left: -0.1%;
  z-index: -1;
}

.mainContentRightButton {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pickUpBtn {
  width: 100%;
  background-color: #ff2e63;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 3px;
  font-size: 1.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
  cursor: pointer;
}

.pickUpBtn:hover {
  background-color: #e22857;
}

.pickUpBtn i {
  margin-right: 45%;
}

.orderForm {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.orderForm a {
  -webkit-transform: translateY(-36px);
          transform: translateY(-36px);
}

.orderForm .formGroup {
  width: 100%;
  height: 50px;
}

.orderForm .formGroup input:focus {
  border-bottom: 1px solid #ff2e63;
}

.orderForm .formGroup input:focus ~ label {
  font-size: 0.8em;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  color: #ff2e63;
}

.orderForm .formGroup label {
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  font-size: 1em;
  color: gray;
}

.orderForm .formGroup .noMove {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: gray;
  font-size: 1em;
}

.orderForm .formCheck input {
  width: 15px;
  height: 15px;
}

.orderForm .formCheck img {
  width: 30px;
  height: 30px;
}

.info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

.info i {
  color: #ff2e63;
}

/* Main content */
/* Overlay */
.overlay {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  background-color: #252a34;
  opacity: 0.6;
  display: none;
  z-index: 7000;
}

/* Overlay */
/* Widgets */
.siderBarWidget {
  position: fixed;
  width: 300px;
  min-height: 100vh;
  background-color: #fff;
  border: 1px solid lightgray;
  top: 0;
  left: 100%;
  -webkit-transition: 200ms all ease-in;
  transition: 200ms all ease-in;
  z-index: 7000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.siderBarWidget a {
  width: 100%;
  padding: 20px 0 20px 30px;
  color: #333;
  text-decoration: none;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.siderBarWidget a:hover {
  background-color: lightgray;
}

.siderBarWidget .activeLink {
  background-color: lightgray;
}

/* Widgets */
/* Order Popup */
.orderPopUpTop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.orderTopInfo {
  width: 100%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.orderTopInfoLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}

.orderTopInfoLeft .otilt {
  font-size: 2em;
  font-weight: bolder;
  color: #1a2035;
}

.orderTopInfoLeft .otild {
  font-size: 1em;
  color: #1a2035;
}

.orderTopInfoRight .otirp {
  font-size: 1.2em;
  color: #1a2035;
}

.orbx {
  font-family: "Open Sans", sans-serif;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid lightgray;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.orbx .orbxingr {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

.orbx .ordcmt {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  margin-top: 10px;
}

.orbx .orbxtp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3em;
}

.orbx .orbxtp div {
  width: 100%;
}

.orbx .orbxtptp p {
  color: #1a2035;
  font-size: 0.9em;
  font-weight: 600;
}

.orbx .orbxtpmdl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6em;
}

.orbx .orbxtpmdl button {
  background-color: #f0f0f0;
  color: #1a2035;
  font-size: 0.9em;
  border: none;
  padding: 8px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.orbx .orbxtpmdl button:hover {
  background-color: #1a2035;
  color: #fff;
}

.orbx .orbxtpmdl .opmbl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #fff;
  width: 100px;
  border-radius: 40px;
}

.orbx .orbxtpmdl .opmbl2 input {
  width: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  background-color: transparent;
  outline: none;
  text-align: center;
}

.orbx .orbxtpmdl .opmbl2 .opmbliad2 {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  color: #1a2035;
  background-color: #f0f0f0;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  font-size: 0.9em;
}

.orbx .orbxtpmdl .opmbl2 .opmbliad2:hover {
  background-color: #cecaca;
}

.orbx .orbxtpbtm p {
  font-size: 0.9em;
  font-weight: 500;
  text-align: right;
}

.nbr {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top: none;
}

.opmbl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #fff;
  width: 90px;
  border-radius: 40px;
}

.opmbl2 input {
  width: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  background-color: transparent;
  outline: none;
  text-align: right;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.opmbl2 .opmbliad2 {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  color: #1a2035;
  background-color: #f0f0f0;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  font-size: 0.9em;
}

.opmbl2 .opmbliad2:hover {
  background-color: #cecaca;
}

.removeItem {
  margin-left: auto;
  color: #1a2035;
  background-color: transparent;
  border: none;
  font-size: 1.1em;
}

.removeItem i {
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.removeItem i:hover {
  color: #ff2e63;
}

.torx {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid lightgray;
  border-top: none;
  font-weight: 600;
  font-size: 0.9em;
  display: none;
}

/* Order Popup */
/* Checkout */
.checkoutContainer {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("/images/cbg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.checkoutContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

.checkoutForm {
  width: 500px;
  min-height: 300px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  z-index: 100;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.checkoutForm input {
  outline: none;
}

.bankDetails {
  width: 100%;
  height: 20vh;
  overflow-y: auto;
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bankNumber {
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info {
  font-size: 0.9em;
  color: #333;
  text-align: center;
}

.payBtn {
  width: 100%;
  background-color: #ff2e63;
  padding: 10px;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.payBtn:hover {
  background-color: #e22857;
}

.ci {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid lightgray;
  outline: none;
  border-radius: 5px;
}

/* Checkout */
/* Login */
.authContainer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.authContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

.loginForm {
  width: 500px;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 3px 7px 50px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 7px 50px 5px rgba(0, 0, 0, 0.05);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.loginForm p {
  font-size: 1.2em;
}

.loginForm .authbgGif {
  width: 50px;
  height: 50px;
}

.loginForm input {
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid lightgray;
  border-radius: 20px;
  width: 300px;
  outline: none;
}

.loginForm input:focus {
  border: 1px solid #ff2e63;
}

.registerForm {
  width: 500px;
  height: 600px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 3px 7px 50px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 7px 50px 5px rgba(0, 0, 0, 0.05);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.registerForm p {
  font-size: 1.2em;
}

.registerForm .authbgGif {
  width: 50px;
  height: 50px;
}

.registerForm input {
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid lightgray;
  border-radius: 20px;
  width: 300px;
  outline: none;
}

.registerForm input:focus {
  border: 1px solid #ff2e63;
}

.ff {
  width: 500px;
  height: 400px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 7px 50px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 7px 50px 5px rgba(0, 0, 0, 0.05);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.ff p {
  font-size: 1.2em;
}

.ff .authbgGif {
  width: 50px;
  height: 50px;
}

.ff input {
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid lightgray;
  border-radius: 20px;
  width: 300px;
  outline: none;
}

.ff input:focus {
  border: 1px solid #ff2e63;
}

.authBtn {
  background-color: #ff2e63;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.authBtn:hover {
  background-color: #e22857;
}

/* Login */
.orders {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.order {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  border: 1px solid #fff;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.order hr {
  height: 3px;
}

.order div {
  width: 100%;
}

.order .orderTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order .orderBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  gap: 0.3em;
}

.order .orderBottom p {
  font-style: italic;
}

.order button {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  color: #fff;
  border: none;
}

.order button i {
  font-size: 1.1em;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in;
  transition: 100ms all ease-in;
}

.order button i:hover {
  color: #000;
}

/* Home Section */
/* Orders */
.hcc {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hcc .hccTop {
  z-index: 2000;
  color: #fff;
}

.hcc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.467);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hccTop {
  width: 50%;
  min-width: 350px;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.hccTop div {
  width: 100%;
}

.hccOrdersHeading {
  text-align: left;
  font-size: 1.2em;
}

.hccoaoc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hccopoc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.po {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  box-sizing: border-box;
}

.po .pot {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.po .pot .potp {
  color: #fff;
  font-size: 1.1em;
}

.po .pob {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2em;
}

.ao {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ao p {
  width: 100%;
  text-align: left;
}

.ao .pagination {
  margin-top: 20px;
}

/* View Order */
.ods {
  color: #fff;
  margin-top: 60px;
  width: 400px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.3em;
  gap: 0.3em;
}

.ods .vob {
  font-size: 0.8em;
}

.od {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.so {
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}

/* View Order */
/* Orders */
/* Home Section */
/* Subscribe */
.subscribe {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subscribe input {
  padding: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid lightgray;
  border-radius: 20px;
  width: 300px;
  outline: none;
}

.subscribe input:focus {
  border: 1px solid #ff2e63;
}

.subscribe button {
  background-color: #ff2e63;
  color: #fff;
  padding: 10px 15px;
  border-radius: 1000px;
  border: none;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.subscribe button:hover {
  background-color: #e22857;
}

/* Subscribe */
/* Cookie Consent */
.cookieConsent {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5em;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 500px;
  height: 150px;
  background-color: #1a2035;
  z-index: 10000;
  top: 95%;
  left: 95%;
  -webkit-transform: translate(-95%, -95%);
          transform: translate(-95%, -95%);
  border-radius: 5px;
}

.cookieConsent p {
  color: #fff;
  font-size: 0.9em;
}

.cookieConsent button {
  background-color: #ff2e63;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.cookieConsent button:hover {
  background-color: #fff;
  color: #ff2e63;
}

.allndpContainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 140px;
  padding-bottom: 20px;
  background-color: #1a2035;
}

.allndpContainer .allndpContent {
  width: 50%;
  min-width: 300px;
  min-height: 700px;
  background-color: #fff;
  border-radius: 5px;
  z-index: 1;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}

.allndpContainer .allndpContent .allndpContentParas {
  width: 100%;
  height: 65%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}

.allndpContainer .allndpContent .backBtn {
  background-color: #ff2e63;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  max-width: 140px;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  font-size: 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3em;
  white-space: nowrap;
}

.allndpContainer .allndpContent .backBtn:hover {
  background-color: #e22857;
}

.cpo {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.282);
  z-index: 5000;
  display: none;
}

.cpc {
  position: fixed;
  width: 800px;
  height: 600px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5001;
  border-radius: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: none;
}

.cpc button {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #333;
  font-size: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  border-radius: 100%;
  position: absolute;
  top: -2%;
  left: 102%;
  -webkit-transform: translate(-100%, 2%);
          transform: translate(-100%, 2%);
  cursor: pointer;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

.cpc button:hover {
  background-color: #ff2e63;
  color: #fff;
}

.crtpopcon {
  position: fixed;
  top: 100%;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  display: none;
}

.crtpopcon div {
  width: 90%;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  background-color: #ff2e63;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  color: #fff;
  font-size: 1.2em;
  -webkit-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
  cursor: pointer;
}

.crtpopcon div:hover {
  background-color: #1a2035;
}

@media (max-width: 1000px) {
  .orderPopUp {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    border-radius: 0px;
  }
  .crtpopcon {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .crtpopcon .crtpopcont {
    width: 100%;
    border-radius: 0;
  }
  .orderPopUp .opmb button {
    padding: 8px 10px;
    font-size: 0.9em;
  }
  .hcc {
    padding-top: 80px;
  }
  .hcot th {
    word-break: break-all;
  }
  .hccTop {
    width: 100%;
  }
  .shopClosed {
    width: 300px;
  }
  .opmbl2 input {
    text-align: center;
  }
  .voc {
    padding-top: 150px;
  }
  .orbx .orbxtpmdl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em;
  }
  body .cpc {
    width: 95%;
    height: 400px;
  }
}

@media (max-width: 1300px) {
  .mainContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 20px;
  }
  .mainContent .mainContentctgs {
    display: none;
  }
  .mainContent .mainContentLeft {
    width: 100%;
  }
  .mainContent .mainContentRight {
    width: 100%;
  }
  .smcctgs {
    display: block;
  }
  footer {
    padding: 50px 20px 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .subscribe input {
    width: 200px;
  }
  .vot tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 96%;
  }
  .vot tr th {
    color: #ff2e63 !important;
  }
  .ods {
    width: 100%;
  }
}

@media (max-width: 660px) {
  .searchInput {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .searchInput:focus {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .searchInput2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .searchInput2:focus {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .headerSearch {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .headerSearch i {
    top: 62%;
    left: 93.8%;
    -webkit-transform: translate(-62%, -93.8%);
            transform: translate(-62%, -93.8%);
  }
  .cookieConsent {
    width: 300px;
  }
  .food {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em;
  }
  .food .foodLeft {
    gap: 0.5em;
  }
  .food .foodRight {
    font-size: 0.9em;
  }
  .food .foodDescription {
    font-size: 0.9em;
  }
  body .cpc {
    width: 95%;
    height: 400px;
  }
}

@media (max-width: 550px) {
  .headerSearch i {
    top: 62%;
    left: 92%;
    -webkit-transform: translate(-62%, -92%);
            transform: translate(-62%, -92%);
  }
}

@media (max-width: 450px) {
  .headerSearch i {
    top: 62%;
    left: 86%;
    -webkit-transform: translate(-62%, -86%);
            transform: translate(-62%, -86%);
  }
}
/*# sourceMappingURL=mainStyles.css.map */