/*noinspection CssUnknownTarget*/
@keyframes blinker {
  0% {
    opacity: 0;
    font-weight: 200;
  }
  25% {
    opacity: 0.25;
    font-weight: 300;
  }
  50% {
    opacity: 0.5;
    font-weight: 400;
  }
  75% {
    opacity: 0.75;
    font-weight: 500;
  }
  100% {
    opacity: 1;
    font-weight: 600;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.bg-gradient {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@-o-viewport {
  width: 320px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--backgroundLightColor);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: var(--backgroundLightColor);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primaryColor);
}

.fade-enter {
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}

.fade-appear {
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}

.fade-leave {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}

.fade-enter.fade-enter-active {
  animation-name: fadeIn;
  animation-play-state: running;
}

.fade-appear.fade-appear-active {
  animation-name: fadeIn;
  animation-play-state: running;
}

.fade-leave.fade-leave-active {
  animation-name: fadeOut;
  animation-play-state: running;
}

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

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

.sider {
  height: 100vh;
  -moz-box-shadow: inset 0 0 2px var(--textGreyColor3) !important;
  -webkit-box-shadow: inset 0 0 2px var(--textGreyColor3) !important;
  box-shadow: inset 0 0 2px var(--textGreyColor3) !important;
}

.logo {
  height: 32px;
  background: var(--backgroundLightWithOpacityColor);
  margin: 16px;
  background-image: url("/images/logo-text.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.logo-text {
  width: 100%;
  height: auto;
}

.site-layout .site-layout-background {
  background: #fff;
}

.site-layout-container .ant-layout-header.site-layout-background {
  padding: 0px !important;
}

.site-layout-container .site-layout-background.content {
  padding: 0px;
  min-height: 360px;
  margin-top: 0px;
  background-color: var(--backgroundColor);
}

.site-layout-background.header {
  padding: 0px;
  background-color: var(--backgroundDarkColor);
}

.site-layout-content {
  margin: 0px;
  padding: 0px;
}

.site-layout-content-dark-theme .ant-spin-nested-loading {
  height: 100%;
  background-color: #1c1c1c;
}

.site-layout-content-dark-theme .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}

.negishi-template-header-container .ant-menu-horizontal {
  border-bottom: 0px;
}

.footer {
  text-align: center;
}

.shake {
  animation: shake 2s infinite;
  transform: translate3d(0, 0, 0);
}

.page-not-found-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.link-go-to-home {
  margin-top: 20px;
}

.btn-toggle-sider {
  margin-left: 15px;
}

.main-logo {
  margin: 0px 10px;
  background-color: var(--backgroundLightColor);
  cursor: pointer;
}

.main-logo-circle {
  background-color: transparent !important;
}

.main-logo-invisible {
  width: 45px;
  height: 45px;
  margin: 0px 10px;
}

.drawer-items .ant-list-item {
  padding: 5px !important;
}

.main-logo-svg {
  width: 175px;
}

.d-none {
  display: none !important;
}

body,
main,
html {
  background-color: var(--backgroundColor) !important;
}

span,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased !important;
}

#menu .ant-menu-item {
  padding-left: 25px !important;
  background-color: red !important;
}

.shadow {
  text-shadow: 0.5px 0.5px var(--shadowColor);
}

.box-shadow {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15), 0 0 2px 0 rgba(0, 0, 0, 0.15);
}

/*noinspection CssInvalidPropertyValue*/

.break-word {
  word-break: break-all !important;
  white-space: break-spaces !important;
  height: auto !important;
}

::selection {
  background-color: var(--borderWithOpacityColor);
  color: var(--textDarkColor);
}

.ant-menu li {
  word-break: break-all !important;
  /*noinspection CssInvalidPropertyValue*/
  white-space: break-spaces !important;
  height: auto !important;
}

/*noinspection CssInvalidPropertyValue*/

.ant-menu-submenu-title {
  padding-left: 24px;
  word-break: break-all;
  white-space: break-spaces;
  height: auto !important;
  line-height: 1.6 !important;
}

.ant-menu-item:first-child {
  box-shadow: inset 0 0 0 1px var(--shadowColor);
}

.ant-menu-item {
  box-shadow: inset 1px -1px 0 0 var(--shadowColor);
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  padding-right: 5px !important;
}

.ant-menu-submenu-title {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  box-shadow: inset 1px -1px 0 0 var(--shadowColor) !important;
}

.ant-menu-submenu {
  background-color: var(--backgroundPrimaryWithOpacityColor);
}

.drawer-carts .ant-drawer-body .ant-list-items {
  max-height: 40vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.drawer-carts .ant-drawer-content .ant-drawer-body {
  padding: 10px 20px !important;
}

.booking-form .ant-row.ant-form-item {
  margin-bottom: 5px !important;
}

.booking-form .ant-col .ant-form-item-label {
  padding-bottom: 0px !important;
}

.site-layout-container .ant-layout-content.site-layout-content {
  padding-top: 0px !important;
}

.drawer-carts ul.ant-list-items li.ant-list-item {
  align-items: flex-start;
}

.categories-container-dark-theme .horizontal-menu {
  background-color: #1c1c1c;
}

.categories-container-negishi-template .horizontal-menu {
  background-color: #3c3c3c;
}

.categories-container-negishi-template .horizontal-sub-menu {
  background-color: #3c3c3c;
  height: var(--categoriesHeaderHeight);
}

.horizontal-menu {
  background-color: var(--backgroundMenuColor);
  height: var(--categoriesHeaderHeight);
}

.horizontal-sub-menu {
  background-color: var(--backgroundMenuColor2);
  height: var(--categoriesHeaderHeight);
}

.list-item-container ul.ant-card-actions li {
  margin-top: 5px;
  margin-bottom: 5px;
}

.list-item-container .ant-card-meta-title {
  margin-bottom: 0px !important;
}

#list-item-container .ant-card-hoverable:hover {
  background-color: var(--cardHoverBackgroundColor);
}

#list-item-container .ant-list-item:hover {
  box-shadow: 0.5px 0.5px 0.5px var(--textGreyColor);
  cursor: pointer;
  background-color: var(--cardHoverBackgroundColor);
}

html,
body {
  scroll-behavior: auto;
  overscroll-behavior: contain;
}

.input-quantity-container input.ant-input,
.input-quantity-container input.ant-input::-webkit-outer-spin-button,
.input-quantity-container input.ant-input::-webkit-inner-spin-button {
  font-size: 1.2rem;
  text-align: center;
  color: var(--secondaryTextColor);
}

.input-quantity-container input[type="number"].ant-input {
  -moz-appearance: textfield;
}

.input-quantity-container button {
  width: 70px;
  height: 30px;
}

.sider-carts .ant-list-footer {
  padding: 0px !important;
}

.sider-carts .ant-spin-nested-loading {
  overscroll-behavior: contain;
}

.modal-add-cart {
  padding-bottom: 0;
}

.modal-add-cart .ant-modal-footer button.ant-btn {
  margin: 5px 5px;
}

.modal-full-screen {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.modal-full-screen .ant-modal-content {
  height: 100%;
}

#list-item-container {
  background-color: var(--backgroundMenuColor);
}

#list-option-container {
  background-color: var(--backgroundColor);
}

.ant-layout-header {
  height: auto !important;
}

.ant-layout.site-layout {
  background-color: var(--backgroundColor);
}

.ant-back-top {
  z-index: 11;
  right: 10px !important;
}

#deny-cookie-consent-btn {
  background-color: var(--backgroundPrimaryWithOpacityColor) !important;
  color: var(--textDarkColor) !important;
}

#allow-cookie-consent-btn {
  background-color: var(--primaryColor) !important;
  color: var(--textColor) !important;
}

#list-item-container .ant-list-item {
  padding: 0px !important;
  border-bottom: 1px solid var(--borderOptionItemColor);
  align-items: flex-start;
}

.sider-carts .ant-list-item-action {
  margin-left: 5px !important;
}

.list-cart-onni-korean .ant-list-item {
  border-bottom: 5px solid #f0f0f0;
}

.blink-effect {
  animation: blinker 1s linear infinite;
}

.modal-order-success {
  padding-bottom: 0;
}

.modal-change-address {
  padding-bottom: 0;
}

.modal-change-delivery-method {
  padding-bottom: 0;
}

.enable-notice-when-enter-input-note {
  margin-top: 10px;
  padding: 10px 15px !important;
}

.thank-you-page-content {
  padding: 1.5rem 2rem;
}

.thank-you-page-content .ant-result-icon {
  margin-bottom: 0px;
}

.voucher-page .ant-collapse-content > .ant-collapse-content-box {
  padding: 0px;
}

.cursor-pointer {
  cursor: pointer;
}

.mwst {
  font-size: 13px;
  font-weight: 200;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-600 {
  font-weight: 600;
}

.text-xs {
  font-size: 0.8rem;
}

.text-sm {
  font-size: 0.9rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.1rem;
}

.text-xl {
  font-size: 1.2rem;
}

.text-2xl {
  font-size: 1.3rem;
}

.text-3xl {
  font-size: 1.4rem;
}

.text-size-075 {
  font-size: 0.75rem;
}

.text-uppercase {
  text-transform: uppercase;
}

.flex-1 {
  flex: 1;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-flow-row {
  flex-flow: row;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100% !important;
}

.h-100vh {
  height: 100vh !important;
}

.border-0 {
  border-width: 0 !important;
}

.border-top {
  border-top: 1px solid var(--borderOptionItemColor);
}

.m-10 {
  margin: 10px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.p-30 {
  padding: 30px;
}

.p-25 {
  padding: 25px !important;
}

.p-20 {
  padding: 20px;
}

.p-15 {
  padding: 15px;
}

.p-10 {
  padding: 10px;
}

.p-5 {
  padding: 5px;
}

.p-0 {
  padding: 0;
}

.pl-60 {
  padding-left: 60px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-20 {
  padding-right: 20px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-0 {
  padding-right: 0 !important;
}

.pt-30 {
  padding-top: 30px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-5 {
  padding-top: 5px;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.overflow-auto {
  overflow: auto;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-primary {
  border: 1px solid var(--primaryColor);
}

.border-radius-10 {
  border-radius: 10px;
}

.filter-categories-icon {
  fill: #ffffff;
  display: block;
  flex: 0 0 auto;
  height: 1.75rem;
  max-width: none;
  width: 1.75rem;
}

.filter-categories-desktop-icon {
  fill: #ffffff;
  display: block;
  flex: 0 0 auto;
  height: 2.5rem;
  max-width: none;
  width: 2.5rem;
}

.position-relative {
  position: relative;
}

.categories-negishi-desktop-container {
  width: 130px;
  height: 100vh;
}

.categories-negishi-desktop-wrapper {
  overflow-y: scroll;
  height: calc(100vh - 100px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories-negishi-desktop-wrapper::-webkit-scrollbar {
  display: none;
}

.image-with-preview img {
  object-fit: cover;
}

.affix-categories-negishi-desktop-container .ant-affix {
  z-index: 12;
}

.checkout-btn {
  border-radius: 0px;
  background: var(--backgroundCheckoutButtonColor);
  border-color: var(--backgroundCheckoutButtonColor);
}

.checkout-btn:hover {
  background: var(--backgroundCheckoutButtonHoverColor);
  border-color: var(--backgroundCheckoutButtonHoverColor);
}

.checkout-btn-mobile {
  height: 60px !important;
}

.text-decoration-underline {
  text-decoration: underline;
}
