@import url("https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap");
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@font-face {
  font-family: "Spartan";
  src: url("../../webfonts/Spartan.ttf");
  src: local("Spartan"), local("Spartan"), url("../../webfonts/Spartan.ttf") format("truetype");
}
@font-face {
  font-family: "ChakraPetch";
  src: url("../../webfonts/ChakraPetch.ttf");
  src: local("ChakraPetch"), local("ChakraPetch"), url("../../webfonts/ChakraPetch.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSansCondensed";
  src: url("../../webfonts/OpenSansCondensed.ttf");
  src: local("OpenSansCondensed"), local("OpenSansCondensed"), url("../../webfonts/OpenSansCondensed.ttf") format("truetype");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.clearList {
  list-style: none;
}

h2 {
  font-size: 1.3rem;
}

h5 {
  color: black;
  font-size: 1.5rem;
  margin: auto 15px;
}

h6 {
  color: #1f1f1f;
  font-size: 1.25rem;
  margin: auto 15px;
}

body {
  font-family: "Roboto", sans-serif;
  width: 100vw;
}

.mlAuto {
  margin-left: auto;
}

.mrAuto {
  margin-right: auto;
}

.mtAuto {
  margin-top: auto;
}

.margin0 {
  margin: 0;
}

.width100 {
  width: 100%;
}

.height100 {
  height: 100%;
}

.row,
.rowStatic {
  display: flex;
  flex-direction: row;
}

.col {
  padding: 20px;
  width: 50%;
}

.col2 {
  width: 100%;
}

.col75 {
  width: 75%;
}

.col25 {
  width: 25%;
}

.col20 {
  width: 20%;
}

.col40 {
  width: 40%;
}

.col90 {
  width: 90%;
}

.col10 {
  width: 10%;
}

.pad20 {
  padding: 20px;
}

.topbar {
  background-color: white;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
  z-index: 10;
}

.topbar img {
  line-height: 20px;
  max-height: 50px;
}

.topbar .topbarList {
  list-style: none;
  display: flex;
  flex-direction: row;
}

.topbar .topbarList .topbarItem {
  margin: 20px;
}

.topbarButton {
  color: #1f1f1f;
  text-decoration: none;
  font-family: "Spartan", sans-serif;
  font-size: 16px;
  border: none;
  background-color: transparent;
}

.topbarButton:hover {
  color: #9a0000;
  text-decoration: none;
  cursor: pointer;
}

.topbar ul li.shopCartListItem {
  width: 44px;
  height: 44px;
  margin: 8px;
}

.shopCartButton {
  width: 44px !important;
  height: 44px !important;
  border: none !important;
  background-color: transparent !important;
  color: #1f1f1f !important;
  font-size: 20px !important;
  position: relative !important;
}

.shopCartButtonCount {
  width: 20px;
  height: 20px;
  color: white;
  font-size: 12px;
  border-radius: 10px;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  background: #9a0000;
  line-height: 20px;
  text-align: center;
}

.baseContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  padding-top: 50px;
  align-items: center;
  background-color: #eceff1;
}

.container {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: white;
  padding: 20px;
}

.baseButton {
  background: none !important;
  background-color: #9a0000 !important;
  color: white;
  border: 1px solid transparent;
  font-size: 0.75rem;
  margin: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  border-radius: 2px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.baseButton:hover:not(.baseButton:disabled) {
  background: none !important;
  background-color: transparent;
  color: #4c4c47;
  border: 1px solid #9a0000 !important;
  transition: all 0.3s;
  cursor: pointer;
}

.baseButton:disabled {
  background-color: #d4bcbc !important;
}

.baseButtonLink:hover,
.baseButtonLinkSmaller:hover {
  background-color: rgba(0, 0, 0, 0.1254901961) !important;
  color: #9a0000 !important;
}

.baseLink {
  color: black;
  text-decoration: none;
  font-size: 16px;
}

.baseLink:hover {
  cursor: pointer;
  color: #4c4c47;
}

.transparent {
  background-color: transparent;
  border-color: transparent;
}

.contentTitle {
  color: black;
  font-size: 17px;
  font-weight: 700;
  margin: auto 15px;
}

.fullScreenInfo {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.fullScreenInfoText {
  font-size: 50px;
  color: #1f1f1f;
}

.notificationContainer {
  position: fixed;
  top: auto;
  bottom: 0;
  right: 5px;
  width: 350px;
  display: flex;
  flex-direction: column-reverse;
  z-index: 2003;
}

.sidebarNotification {
  -webkit-display: flex;
  display: flex;
  margin: 0 auto 10px auto;
  width: 350px;
  min-height: 70px;
}

.sidebarNotification .info {
  flex: 1;
  padding: 10px 10px 0 10px;
  background: #ecf0f1;
  border-radius: 3px 0 0 3px;
  border-bottom: 3px solid #c0cdd1;
}

.sidebarNotification .info h1 {
  margin: 0;
  padding: 0;
  font-family: arial, sans-serif;
  font-size: 16px;
  color: #111;
  font-weight: 600;
}

.sidebarNotification .info p {
  margin: 0;
  padding: 5px 0;
  font-family: arial, sans-serif;
  font-size: 12px;
  color: #666;
}

.sidebarNotification .icon {
  padding: 15px 0 0 0;
  width: 70px;
  border-radius: 0 3px 3px 0;
  text-align: center;
  font-size: 32px;
  color: #ecf0f1;
  border-bottom: 3px solid;
  background: #689F38;
  border-bottom-color: #558B2F;
}

.sidebarNotification.error .icon {
  background: #D32F2F;
  border-bottom-color: #C62828;
}

.sidebarNotification.warning .icon {
  background: #fbc02d;
  border-bottom-color: #f9a825;
}

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

.productGridLoading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  height: 200px;
  background-color: white;
}

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

.productGridRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.productGridItem {
  width: 20%;
  height: 320px;
  position: relative;
}

.productGridItemFront {
  color: black;
  margin: 10px;
  padding: 10px;
  border: 1px solid #f0f0f0;
}

.productGridItemBack {
  opacity: 0;
  background-color: rgba(220, 220, 220, 0.8);
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.5s linear;
}

.productGridItemBack:hover {
  opacity: 1;
}

.productGridImage {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productGridImage img {
  vertical-align: middle;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.productGridDescription {
  display: flex;
  flex-direction: column;
  height: 98px;
  justify-content: space-between;
}

.productGridName {
  font-size: 14px;
  font-weight: normal;
  margin: 10px;
}

.productGridPrice {
  font-size: 14px;
  font-weight: 500;
  margin: 10px;
  margin-bottom: 0;
  display: block;
}

.productGridItemButton {
  background: none !important;
  background-color: #9a0000 !important;
  color: white;
  border: 1px solid transparent;
  font-size: 0.75rem;
  margin: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  border-radius: 2px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productGridItemButton:hover {
  background: none !important;
  background-color: transparent;
  color: #4c4c47;
  border: 1px solid #9a0000 !important;
  transition: all 0.3s;
  cursor: pointer;
}

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

.contactBanner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  height: 150px;
  background-color: #1f1f1f;
  padding: 40px;
}

.contactBanner div {
  display: flex;
  flex-direction: row;
  width: 300px;
}

.contactBanner div em {
  font-size: 30px;
  color: white;
  margin: 20px 30px;
}

.contactBanner div .description {
  display: flex;
  flex-direction: column;
}

.contactBanner div .description h2 {
  font-size: 20px;
  color: white;
  font-weight: 500;
  padding-bottom: 10px;
}

.contactBanner div .description p {
  font-size: 16px;
  color: white;
  font-weight: normal;
}

.spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.circle-border {
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63, 249, 220);
  background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, rgb(13, 71, 161) 100%);
  animation: spin 0.8s linear 0s infinite;
}

.circle-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdownContent {
  display: none;
  position: absolute;
  right: 24px;
  top: 40px;
  background-color: white;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.dropdownContent.active,
.dropdownContentMiddle.active {
  display: block;
}

.profileDropdownTitle {
  font-size: 17px;
  margin-bottom: 10px;
}

.profileDropdown {
  padding: 10px;
}

.cartHeader {
  height: 38px;
  font-size: 16px;
  color: #1f1f1f;
  margin: 10px;
  vertical-align: middle;
}

.cartHeaderHighlight {
  font-weight: 600;
}

.cartList {
  list-style: none;
  width: 100%;
}

.cartList li {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 5px;
}

.cartList li .thumbnail {
  width: 64px;
  max-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartList li .thumbnail img {
  max-height: 64px;
  max-width: 64px;
}

.cartList li .description {
  display: flex;
  flex-direction: column;
  width: calc(100% - 74px);
}

.cartList li .description h5 {
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  margin: 5px;
}

.cartList li .description p {
  margin: 5px;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.cartList li .description p .price {
  font-weight: 600;
}

.productDetailsTitle {
  font-size: 28px;
  font-weight: 300;
}

.productDetailsPrice {
  font-size: 30px;
  font-weight: 400;
  padding-top: 20px;
  padding-bottom: 20px;
}

.productDetailsImageWidth {
  max-width: 100%;
  max-height: 600px;
}

.productCountContainer {
  display: flex;
  flex-direction: row;
  width: 300px;
  align-items: stretch;
  height: 64px;
  margin-top: 50px;
}

.productCountButton {
  flex: 1;
  background-color: transparent;
  border: 1px solid #9a0000;
}

.productCountInput {
  flex: 2;
  background-color: transparent;
  border: 1px solid #9a0000;
  text-align: center;
}

.productDetailsImageThumb {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100px;
  overflow-y: hidden;
  overflow-x: hidden;
  width: 100%;
}

.productDetailsImages {
  position: relative;
  width: 100%;
  height: 100%;
}

.productDetailsImage {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 1s;
}

.productDetailsImageOther {
  max-width: 100%;
  max-height: 100%;
}

.productDetailsImage.active {
  opacity: 1;
}

.productDetailsImageButtonLeft {
  width: 50px;
  height: 50px;
  background-color: rgba(32, 32, 32, 0.2);
  position: absolute;
  top: 35%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}

.productDetailsImageButtonRight {
  width: 50px;
  height: 50px;
  background-color: rgba(32, 32, 32, 0.2);
  position: absolute;
  top: 35%;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}

.productDetailsImages:hover .productDetailsImageButtonLeft,
.productDetailsImages:hover .productDetailsImageButtonRight {
  opacity: 1;
}

.productDetailsImageButtonLeft em,
.productDetailsImageButtonRight em {
  color: white;
  font-size: 24px;
}

.productCartItem {
  border-bottom: 1px solid #cfd8dc;
  height: 240px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px;
}

.productCartItemImage {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.productCartItem:last-child {
  border-bottom: none;
}

.productCartItemDescription {
  align-items: stretch;
  flex: 2;
}

.productCartItemPrice {
  flex: 1;
  text-align: center;
}

.productAttribute {
  margin: 5px;
}

.flexRowEnd {
  display: flex;
  flex-direction: row;
  justify-content: end;
}

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

.productPaymentItem {
  border-bottom: 1px solid #cfd8dc;
  height: 120px;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 5px;
}

.productPaymentItemImage {
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.orderListItem {
  border-bottom: 1px solid #cfd8dc;
  height: 120px;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 5px;
}

.orderListStatus {
  border-bottom: 1px solid #cfd8dc;
  height: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.orderListItem:last-child,
.orderListStatus:last-child {
  border-bottom: none;
}

.orderListItemImage {
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.orderDetailsDataTitle {
  color: black;
  font-size: 15px;
  font-weight: 700;
  margin: 0 !important;
}

.orderDetailsData {
  color: black;
  font-size: 15px;
  margin: 15px;
}

.footer {
  height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footerLogo {
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footerInfo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.footerMenu {
  display: flex;
  height: 80px;
  flex-direction: row;
  align-items: center;
}

.footerImage {
  height: 40px;
  margin: 20px;
}

.shopPaymentStatusContainer {
  min-height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.shopPaymentStatusTitle {
  font-size: 24px;
  font-weight: 700;
}

.shopPaymentStatusInfo {
  margin: 20px;
}

.shopPaymentStatusIcon {
  font-size: 100px;
  margin: 20px;
}

.shopPaymentStatusIcon.success {
  color: #689f38;
}

.shopPaymentStatusIcon.failed {
  color: #e64a19;
}

.baseControl.baseControlModal {
  box-shadow: none;
}

.modal {
  background-color: white;
  color: black;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 100%;
  transition: top 0.1s linear;
  z-index: 2001;
}

.modalBackground {
  color: black;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 100%;
  transition: top 0.1s linear;
  z-index: 2001;
}

.modalBackground.opened {
  background: rgba(180, 180, 180, 0.3);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  padding: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal.opened {
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
}

.modalContent {
  position: fixed;
  left: 0;
  right: 0;
  width: 90%;
  max-height: 90%;
  display: none;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top, opacity;
  margin: auto;
  background-color: white;
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

.modalSmallerContent {
  position: fixed;
  left: 0;
  right: 0;
  width: 55%;
  max-height: 70%;
  display: none;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top, opacity;
  margin: auto;
  background-color: white;
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

.modalMessageBox {
  width: 30%;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
  overflow-y: auto;
  margin: auto;
  margin-top: 20%;
  background-color: white;
  border-radius: 6px;
}

.modalWindowHeader {
  display: flex;
  flex-direction: row;
  height: 64px;
  margin: 0 0 0 20px;
}

.modalWindowButton {
  background-color: transparent;
  color: black;
  border: 1px solid transparent;
  width: 48px;
  height: 48px;
  font-size: 1rem;
  margin: 8px;
}

.modalWindowButton:hover {
  background-color: rgba(0, 0, 0, 0.1254901961);
  border-radius: 8px;
}

.modalWindowTitle {
  margin-bottom: auto;
  min-height: 46px;
  margin-top: 20px;
}

.modalWindowContent {
  padding: 20px;
}

.modalHelperInfo {
  padding: 20px;
}

.modalHeaderButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.modalWindowHeader.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
  border-bottom: solid 1px whitesmoke;
}

@media (max-width: 980px) {
  .topbar {
    height: 140px;
    flex-direction: column;
  }
  .topbar img {
    padding-top: 10px;
    max-height: 60px;
  }
  .row,
  .rowCenter {
    flex-direction: column;
  }
  .col {
    width: 100%;
  }
  .container {
    width: 90%;
  }
  .productGridRow {
    flex-direction: column;
  }
  .productGridItem {
    width: 100%;
  }
  .contactBanner {
    flex-direction: column;
    height: auto;
  }
  .contactBanner div {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footerInfo {
    flex-direction: column;
    height: auto;
  }
  .modalSmallerContent {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .dropdownContent {
    right: 24px !important;
    top: 40px !important;
    left: 24px !important;
  }
  .dropdown {
    position: static !important;
  }
  .productCartItem {
    padding: 0;
    flex-direction: column;
    height: auto;
  }
  .productCartDescription {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
  }
  .productCartItemImage {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .productCartItemPrice {
    padding: 5px;
  }
  .productCartItemRemove .baseButton {
    width: calc(100% - 16px);
  }
}
.margin5 {
  margin: 5px;
}/*# sourceMappingURL=styles.css.map */