@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
html,
body {
  height: 100%;
  margin: 0;
}

main {
  flex: 1;
}

body {
  background-color: #F8F8F8;
  color: rgb(22, 47, 63);
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
}

footer {
  background-color: #BD434B;
  width: 100%;
  padding: 15px 0;
  align-items: center;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

table {
  color: black;
  font-weight: bold;
  width: 100%;
}
table th {
  text-align: left;
  background-color: rgb(155, 31, 42);
  color: white;
  padding: 10px;
}
table td {
  padding: 5px;
}

a {
  text-decoration: none;
  color: black;
}

img {
  width: 100%;
}
img.img-small {
  width: 25%;
}

header {
  padding: 17px 250px;
  color: #BD434B;
  display: flex;
  justify-content: space-between;
}
header .menu .menu-button {
  color: #BD434B;
  font-size: 21px;
}
header .menu .menu-button.current {
  font-weight: 600;
}
header .menu .menu-button.current.underline-when-current {
  border-bottom: 1px solid #BD434B;
}
header .menu .menu-button:hover {
  font-weight: 600;
}
header .menu .menu-button:hover.underline-when-current {
  border-bottom: 1px solid #BD434B;
}
header .in-cart-number {
  aspect-ratio: 1/1;
  height: 14px;
  font-size: 12px;
  border-radius: 50%;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
header #menuItems {
  display: none;
  position: absolute;
  top: 60px;
  width: 95%;
  left: 0;
  padding: 25px 15px;
  background-color: white;
}
header #menuItems a {
  color: #BD434B;
  font-size: 21px;
}
header #menuItems a.current {
  font-weight: 600;
  border-bottom: 1px solid #BD434B;
  margin-right: 50px;
}
header .mobile-menu a {
  font-size: 25px;
  padding-right: 25px;
  color: #BD434B;
}
header .logo {
  max-height: 75px;
  max-width: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  height: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.pagination div {
  font-weight: bold;
}
.pagination .btn {
  padding: 5px 10px;
  background-color: rgb(155, 31, 42);
  color: white;
  margin: 0 10px;
}
.pagination .btn:hover {
  background-color: white;
  color: rgb(155, 31, 42);
}

.flex {
  display: flex;
}
.flex.row {
  flex-direction: row;
}
.flex.column {
  flex-direction: column;
}
.flex.column-forced {
  flex-direction: column;
}
.flex.center {
  align-items: center;
}
.flex.center-forced {
  align-items: center;
}
.flex.justify-content-end {
  justify-content: end;
}
.flex.justify-content-center {
  justify-content: center;
}
.flex.justify-content-space-between {
  justify-content: space-between;
}
.flex.justify-content-space-around {
  justify-content: space-around;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grow-one {
  flex-grow: 1;
}

.grow-two {
  flex-grow: 2;
}

.grow-three {
  flex-grow: 3;
}

.flex-grid {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 50px;
}

.flex-card.medium {
  min-width: 10%;
  max-width: 15%;
  max-height: 15%;
  margin: 15px;
  padding: 15px;
}
.flex-card.big {
  width: 35%;
  max-height: 25%;
  margin: 25px;
  padding: 25px;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

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

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

.text-white {
  color: white;
}

.text-red {
  color: red;
}

.text-green {
  color: rgb(17, 182, 17);
}

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

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

.width-full {
  width: 100%;
}

.sidebar {
  padding: 25px;
}

.sidebar-left {
  margin-right: 15px;
}

.button {
  border-radius: 23px;
  font-size: 18px;
  text-decoration: none;
  padding: 12px 30px;
  text-align: center;
  vertical-align: middle;
}
.button.disabled {
  cursor: unset !important;
  opacity: 0.5 !important;
}
.button.square {
  border-radius: 5px;
}
.button.small {
  padding: 6px 30px;
}
.button.big {
  padding: 24px 60px;
  font-size: 26px;
}
.button.main-color {
  background-color: rgb(22, 47, 63);
  border-color: rgb(22, 47, 63);
  color: white;
}
.button.main-color:hover {
  background-color: rgb(155, 31, 42);
  border-color: rgb(155, 31, 42);
}
.button.second-color {
  background-color: rgb(155, 31, 42);
  border-color: rgb(155, 31, 42);
  color: white;
}
.button.second-color:hover {
  background-color: #BD434B;
  border-color: #BD434B;
}
.button.third-color {
  background-color: #BD434B;
  border-color: #BD434B;
  color: white;
}
.button.third-color:hover {
  background-color: rgb(155, 31, 42);
  border-color: rgb(155, 31, 42);
}
.button.white {
  background-color: white;
  border: 1px solid rgba(22, 52, 178, 0.5019607843);
  box-shadow: 0px 3px 0px rgba(22, 52, 178, 0.5019607843);
}
.button.white:hover {
  background-color: #33658a;
  color: white;
}
.button.orange {
  background-color: #BD434B;
  border: 1px solid #BD434B;
  box-shadow: 0px 3px 0px rgba(22, 52, 178, 0.5019607843);
  color: white;
}
.button.orange:hover {
  background-color: #33658a;
  color: white;
}
.button:hover {
  cursor: pointer;
}

/* Landscape phone to portrait tablet */
@media only screen and (max-width: 767px) {
  h2 {
    margin: 15px 0;
  }
  p {
    margin: 15px 0;
  }
  footer {
    font-size: 12px;
  }
  .flex.column {
    flex-direction: row;
  }
  .flex.row {
    flex-direction: column;
  }
  .flex.center {
    align-items: unset;
  }
}
/* Portrait tablet to landscape */
@media only screen and (min-width: 768px) and (max-width: 1255px) {
  body header {
    padding: 0 5px;
  }
  body .flex .column {
    flex-direction: row;
  }
  body .flex .row {
    flex-direction: column;
  }
}
/* Small desktop / laptop */
@media (min-width: 700px) and (max-width: 1600px) {
  body {
    font-size: 16px;
  }
  body header {
    padding: 0 75px;
  }
  body p {
    font-size: 16px;
  }
  body h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  body p {
    font-size: 14px;
  }
  body header {
    padding: 0 5px;
  }
  body header .menu {
    flex-grow: 2;
  }
  body header .menu .menu-button {
    font-size: 18px;
  }
  body .container {
    margin: 25px 5px;
  }
  body .container .banner {
    padding-top: 0;
  }
  body .container .banner .text-block {
    width: 100%;
    text-align: center;
  }
  body .container .banner .text-block .title {
    font-size: 18px;
  }
  body .container .banner .img_holder {
    display: none;
  }
  body .container h1 {
    font-size: 28px;
  }
}