
/* general */

[x-cloak] { display: none !important; }

body{
    margin-top: 64px;
    color: #000000;
}

h1{
  font-size: 40px;
}

h2{
  font-size: 35px;
}

h3{
  font-size: 30px;
}

h4{
  font-size: 20px;
}

/* header  */

#navigation{
  position: fixed;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 64px;
  color: white;
  top: 0px;
  z-index: 4;
  box-shadow: 0px 0px 17px -1px rgba(0, 0, 0, 0.66);
}

.logged-in #navigation{
    margin-top: 32px;
}

#navigation .nav-left img{
    height: 50px;
    width: auto;
}

.menu-main-container ul{
  display: flex;
  gap: 10px;
}

.menu-main-container ul li{
  float: left;
  margin-right: 10px;
  text-transform: uppercase;
}

#navigation .nav-center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cart-icon {
    background: url(data/img/cart.png);
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    display: inline-block;
    vertical-align: bottom;
    background-size: contain;
    margin-right: 10px;
}

.cart-items-count {
    position: absolute;
    padding: 5px;
    font-size: 12px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 30px;
    top: 0px;
    color: white;
    font-weight: bold;
}

.menu-icon
{
    background: url(data/img/menu.png);
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    display: inline-block;
    vertical-align: bottom;
    background-size: contain;
    margin-right: 10px;
}

.sidebar {
    width: 100%;
}

.sidebar ul{
  display: flex;
  flex-direction: column;
}

/* home-page */

.banner{
  height: 50vh;
  width: 100%;
  display: flex;
  position: relative;
}

.banner img{
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.banner h1{
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px 30px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
}

.bannerSwiper{
  height: calc(100vh - 64px);
  width: 100%;
}

.logged-in .bannerSwiper{
  height: calc(100vh - 96px);
}

.bannerSwiper img{
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.banner-slide-info{
  height: 300px;
  width: 400px;
  background-color: white;
  position: absolute;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-slide-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner-slide-content {
  min-height: 200px;
  padding: 40px;
  width: 500px;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.037);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .banner-slide-content {
    width: 100%;
  }
} 

.banner-slide-content.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.banner-slide-content a{
  padding: 10px 40px;
  border-radius: 5px;
  color: white;
}

/* Woocommerce  */

.woocommerce .product-shop-img{
  height: 200px;
}

.woocommerce div.product div.images img{
  height: 300px;
  width: auto;
}

.woocommerce div.product form.cart div.quantity{
  border: 1px solid black;
    height: 34px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.woocommerce-Price-amount{
  color: #000000;
}

.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button {
  background-color: #001e45;
  color: white;
}

#order_review button{
  background-color: #001e45;
  color: white;
}

.entry-content {
  white-space: break-spaces;
}

.entry-content ul{
  list-style: disc;
  padding-left: 20px;
  white-space: normal;
}

.woocommerce div.product .woocommerce-tabs ul.tabs{
  margin: 0px !important;
}