@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Krub:wght@300;400;500;600;700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, mark {
  font-size: inherit;
  font-weight: inherit;
}

mark {
  color: inherit;
  background-color: transparent;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active,
textarea:focus {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --bs-dropdown-min-width: none;
}

h1 {
  font-family: "Epilogue", Arial, sans-serif;
  font-style: normal;
  font-size: 5rem;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
h1.h1-sub {
  text-transform: none;
  font-size: 2.8rem;
  font-weight: 300;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
  h1.h1-sub {
    font-size: 2rem;
  }
}

h2 {
  font-family: "Epilogue", Arial, sans-serif;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 1.2em;
  font-weight: 700;
}
h2.h2-sub {
  font-family: "Krub", Arial, sans-serif;
  text-transform: none;
  font-size: 1.4rem;
  font-weight: 300;
}

h3 {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.2em;
  font-weight: 600;
}

h4 {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
}

p, a, li, td, .plane-text {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 400;
}

a {
  cursor: pointer;
  transition: color 0.5s;
  color: #0B68BF;
}
a:hover {
  color: #002f65;
  transition: color 0.5s;
}

a.in-text-href, .in-text-href {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 400;
  text-decoration: underline;
}

button, .styled-button {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.2em;
  font-weight: 600;
  user-select: none;
  color: #ffffff;
  background-color: #0B68BF;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2rem;
  transition: background-color 0.5s;
}
button svg, .styled-button svg {
  margin-left: 0.5rem;
}
button:hover, .styled-button:hover {
  background-color: #064a8a;
  transition: background-color 0.5s;
}
button:disabled, button:disabled:hover, button:disabled:focus, .styled-button:disabled, .styled-button:disabled:hover, .styled-button:disabled:focus {
  filter: saturate(0.5) opacity(0.6);
  pointer-events: none;
  cursor: not-allowed;
}

.button-accent {
  color: #2D2D2D;
  background-color: #F7B234;
}
.button-accent:hover {
  background-color: #dc9d2b;
}

.button-bordered {
  background: none;
  color: #0B68BF;
  border: 2px solid #0B68BF;
  transition: background 0.5s, color 0.5s;
}
.button-bordered:hover {
  background: none;
  color: #ffffff;
  background: #0B68BF;
  transition: background 0.5s, color 0.5s;
}

.button-bordered-accent {
  background: none;
  color: #2D2D2D;
  border: 2px solid #F7B234;
  transition: background 0.5s, color 0.5s;
}
.button-bordered-accent:hover {
  background: none;
  color: #2D2D2D;
  background: #F7B234;
  transition: background 0.5s, color 0.5s;
}

.button-transparent {
  background: none;
  color: #0B68BF;
  opacity: 0.7;
  border: none;
  transition: background 0.5s, color 0.5s;
}
.button-transparent:hover {
  background: none;
  opacity: 1;
  color: #064a8a;
  transition: background 0.5s, color 0.5s;
}

.loader {
  --uib-size: 40px;
  --uib-color: black;
  --uib-speed: 1.75s;
  position: relative;
  height: var(--uib-size);
  width: var(--uib-size);
}
.loader::before, .loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: var(--uib-color);
  animation: pulse var(--uib-speed) ease-in-out infinite;
  transform: scale(0);
  transition: background-color 0.3s ease;
}
.loader::after {
  animation-delay: calc(var(--uib-speed) / -2);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 0.25;
  }
}
.text-right {
  text-align: end;
}

.pagination li {
  margin-right: 0.5rem;
}

.custom-select-wrapper {
  position: relative;
  overflow: visible !important;
  align-items: center;
}
.custom-select-wrapper .custom-select {
  cursor: pointer;
  position: relative;
  user-select: none;
  height: auto;
  padding-right: 3rem !important;
}
.custom-select-wrapper .custom-select .select-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: solid #999;
  border-width: 0 2px 2px 0;
  padding: 4px;
  pointer-events: none;
  transition: transform 0.3s;
}
.custom-select-wrapper .custom-select .select-options {
  display: none;
  position: absolute;
  top: 150%;
  left: 0;
  right: 0;
  background: #f2f2f2;
  border-radius: 30px;
  box-shadow: 0 -2px 15px 0 rgba(69, 68, 68, 0.3);
  max-height: 50vh;
  overflow-y: auto;
  z-index: 10;
  list-style: none;
  padding: 0;
}
.custom-select-wrapper .custom-select .select-options li:first-child {
  padding-top: 1rem !important;
}
.custom-select-wrapper .custom-select .select-options li:last-child {
  padding-bottom: 1rem !important;
}
.custom-select-wrapper .custom-select.open .select-arrow {
  transform: translateY(-50%) rotate(-135deg);
}
.custom-select-wrapper .custom-select.open .select-options {
  display: block;
}
.custom-select-wrapper .custom-select.open .select-options li {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}
.custom-select-wrapper .custom-select.open .select-options li:hover {
  background-color: #ddd;
}

.search-row-wrapper {
  display: flex;
  justify-content: center;
}

.search-row {
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  overflow: hidden;
  margin: 2rem 0;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 -2px 15px 0 rgba(69, 68, 68, 0.3);
}
.search-row .search-query {
  width: 100%;
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.2em;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: none;
}
.search-row .search-button {
  margin: 2px;
  padding: 1.1rem 2rem;
}

.card.product-card {
  border: none;
  position: relative;
  background: none;
}
.card.product-card .card-discount-stamp {
  position: absolute;
  z-index: 20;
  background: #F7B234;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  top: -0.8rem;
  left: -0.3rem;
}
@media screen and (max-width: 992px) {
  .card.product-card .card-discount-stamp {
    top: -0.4rem;
    left: calc(var(--bs-gutter-x) * 0.5 - 0.4rem);
  }
}
.card.product-card .card-discount-stamp .discount-text {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.2em;
  font-weight: 600;
  color: #2D2D2D;
  margin: 0;
}
.card.product-card .product-card-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 -2px 15px 0 rgba(69, 68, 68, 0.3);
  background: #ffffff;
}
.card.product-card .product-card-wrapper .card-img-top {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.card.product-card .product-card-wrapper .card-body {
  position: relative;
  width: 100%;
  margin-top: auto;
}
.card.product-card .product-card-wrapper .card-rating {
  display: inline-block;
  font-size: 1.8rem;
  position: absolute;
  top: 0.5rem;
}
.card.product-card .product-card-wrapper .card-rating .stars {
  font-family: "Krub", sans-serif;
  font-size: inherit;
  display: block;
  letter-spacing: 0;
  position: relative;
  width: fit-content;
  color: #9a9a9a;
}
.card.product-card .product-card-wrapper .card-rating .stars::before {
  content: "★★★★★";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  color: #F7B234;
  white-space: nowrap;
}
.card.product-card .product-card-wrapper .card-title {
  margin-top: 2rem;
}
.card.product-card .product-card-wrapper .card-title-link {
  color: #000000;
}
.card.product-card .product-card-wrapper .card-title-link:hover {
  color: #0B68BF;
  text-decoration: underline;
}
.card.product-card .product-card-wrapper .card-tags {
  margin-bottom: 0.25rem;
}
.card.product-card .product-card-wrapper .card-tags a {
  color: #000000;
  display: inline-block;
  margin-right: 0.65rem;
  position: relative;
}
.card.product-card .product-card-wrapper .card-tags a::after {
  content: "+";
  position: absolute;
  right: -0.75rem;
}
.card.product-card .product-card-wrapper .card-tags a:hover {
  color: #000000;
  text-decoration: underline;
}
.card.product-card .product-card-wrapper .card-tags a:last-child {
  margin-right: 0;
}
.card.product-card .product-card-wrapper .card-tags a:last-child::after {
  content: none;
}
.card.product-card .product-card-wrapper .card-link {
  font-weight: 500;
  text-decoration: underline;
}
.card.product-card .product-card-wrapper .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  margin-top: auto;
}
.card.product-card .product-card-wrapper .prices-wrapper {
  position: relative;
  margin-top: 1rem;
}
.card.product-card .product-card-wrapper .prices-wrapper .price {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.2em;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}
.card.product-card .product-card-wrapper .prices-wrapper .price-new {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.2em;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}
.card.product-card .product-card-wrapper .prices-wrapper .price-old {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.2em;
  font-weight: 700;
  color: #9a9a9a;
  white-space: nowrap;
  position: relative;
  width: fit-content;
  margin: 0;
}
.card.product-card .product-card-wrapper .prices-wrapper .price-old::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #9a9a9a;
  transform: rotate(-10deg);
}
.card.product-card .product-card-wrapper .card-button {
  width: fit-content;
  white-space: nowrap;
  padding: 0.5rem 0.7rem;
  margin: auto 0 0 0;
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.2em;
  font-weight: 600;
}
.card.product-card .product-card-wrapper .card-button:hover {
  color: #ffffff;
}

.card.product-card.promo-card .product-card-wrapper .card-body .card-bottom .card-button {
  color: #2D2D2D;
  background: #F7B234;
}
.card.product-card.promo-card .product-card-wrapper .card-body .card-bottom .card-button:hover {
  background: #dc9d2b;
}

.section-cards-4 .card:nth-child(n+5) {
  display: none !important;
}

.section-cards-8 .card:nth-child(n+9) {
  display: none !important;
}

.section-cards-12 .card:nth-child(n+13) {
  display: none !important;
}

.section-cards-16 .card:nth-child(n+17) {
  display: none !important;
}

.card.category-card {
  border: none;
  position: relative;
  background: none;
}
.card.category-card .product-card-wrapper {
  border: 1px solid #0B68BF;
  transition: border 0.5s;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
}
.card.category-card .product-card-wrapper .card-left {
  width: 80%;
}
@media screen and (max-width: 991px) {
  .card.category-card .product-card-wrapper .card-left {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .card.category-card .product-card-wrapper .card-left .card-img-category {
    height: 100px;
  }
}
.card.category-card .product-card-wrapper .card-left .card-bottom .card-title-link {
  color: #000000;
  transition: color 0.5s;
}
.card.category-card .product-card-wrapper .card-left .card-bottom .card-text {
  font-weight: 400;
  transition: color 0.5s;
}
.card.category-card .product-card-wrapper .card-center .card-text {
  color: #0B68BF;
  font-weight: 600;
  transition: color 0.5s;
}
.card.category-card .product-card-wrapper .card-right {
  width: 20%;
}
@media screen and (max-width: 991px) {
  .card.category-card .product-card-wrapper .card-right {
    width: 100%;
  }
}
.card.category-card .product-card-wrapper .card-right .category-link svg {
  stroke: #0B68BF;
  transition: stroke 0.5s;
}
@media screen and (max-width: 991px) {
  .card.category-card .product-card-wrapper .card-right .category-link svg {
    transform: rotate(90deg);
  }
}
.card.category-card .product-card-wrapper .card-right .category-link:hover svg {
  stroke: #F7B234;
  transition: stroke 0.5s;
}
.card.category-card .product-card-wrapper:hover {
  border: 1px solid #F7B234;
  transition: border 0.5s;
}
.card.category-card .product-card-wrapper:hover .card-left .card-bottom .card-title, .card.category-card .product-card-wrapper:hover .card-left .card-bottom .card-text {
  color: #F7B234;
  transition: color 0.5s;
}
.card.category-card .product-card-wrapper:hover .card-center .card-title, .card.category-card .product-card-wrapper:hover .card-center .card-text {
  color: #F7B234;
  transition: color 0.5s;
}
.card.category-card .product-card-wrapper:hover .card-right .category-link svg {
  stroke: #F7B234;
  transition: stroke 0.5s;
}

a.product-card-wrapper:hover .category-link svg {
  stroke: #F7B234;
  transition: stroke 0.5s;
}

.card.blog-card {
  border: none;
  position: relative;
  background: none;
}
.card.blog-card .blog-card-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 -2px 15px 0 rgba(69, 68, 68, 0.3);
  background: #ffffff;
}
.card.blog-card .blog-card-wrapper .card-img-top {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.card.blog-card .blog-card-wrapper .card-body .card-top .card-title-link .card-title {
  color: #000000;
  transition: color 0.5s;
}
.card.blog-card .blog-card-wrapper .card-body .card-top .card-title-link:hover .card-title {
  color: #0B68BF;
  transition: color 0.5s;
}
.card.blog-card .blog-card-wrapper .card-body .card-bottom .card-button {
  fill: #F7B234;
  transition: fill 0.5s;
}
.card.blog-card .blog-card-wrapper .card-body .card-bottom .card-button:hover {
  fill: #0B68BF;
  transition: fill 0.5s;
}

input.form-control, input, textarea.form-control, textarea, select.form-control {
  border: 1px solid #0B68BF;
}
input.form-control::placeholder, input::placeholder, textarea.form-control::placeholder, textarea::placeholder, select.form-control::placeholder {
  opacity: 0.5;
}

select.form-control {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16"><path fill="%23000000" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1.5rem;
  height: fit-content;
  white-space: break-spaces;
}

.form-check-group .group-wrapper {
  border-left: 2px solid #0B68BF;
  padding-left: 0.5rem;
}

.form-check .form-check-input:checked {
  background-color: #0B68BF;
  border-color: #0B68BF;
}

.textarea-counter {
  font-size: 0.8rem;
  opacity: 0.5;
}

.number-input {
  width: 10rem;
}
.number-input .number-input-btn {
  padding: 0.2rem 0.8rem;
}
.number-input input {
  -moz-appearance: textfield;
}
.number-input input::-webkit-outer-spin-button, .number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@keyframes loading-bar {
  0% {
    background-size: 0% 10%;
  }
  70% {
    background-size: 100% 10%;
  }
  100% {
    background-size: 100% 10%;
  }
}
input.loading, select.loading {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #0B68BF 0%, #0B68BF 100%);
  background-repeat: no-repeat;
  background-size: 0% 10%;
  animation: loading-bar 2s infinite ease-in-out;
}

.modal .modal-dialog .modal-content {
  border-radius: 30px;
}

.star-rating {
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: center;
}
.star-rating .star {
  position: relative;
  top: -0.45rem;
  color: #ccc;
  transition: color 0.2s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #F7B234;
}

.alert-message, .success-message, .info-message {
  display: none;
}
.alert-message .product-card-wrapper, .success-message .product-card-wrapper, .info-message .product-card-wrapper {
  background-color: rgba(0, 111, 255, 0.1) !important;
  box-shadow: none !important;
}
.alert-message.show, .success-message.show, .info-message.show {
  display: block;
}

.success-message .product-card-wrapper p {
  color: var(--bs-success) !important;
}

.alert-message .product-card-wrapper p {
  color: var(--bs-danger) !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: #ffffff;
}

.container {
  padding-bottom: 3rem;
}

.block-title-container {
  padding: 100px 10px 50px 10px;
}

.page-base {
  padding-top: 8rem;
}

header .navbar {
  background-color: #ffffff;
  transition: background-color 0.25s, padding-top 0.25s;
  color: #000000;
  padding: 16px 32px;
}
@media screen and (max-width: 768px) {
  header .navbar {
    padding: 8px 16px;
  }
}
header .navbar .choose_button {
  font-size: 0.93rem;
  line-height: 1.5em;
  padding: 0.6em 20px;
  margin-left: 20px;
}
header .navbar .dropdown {
  margin-right: 0.5rem;
}
header .navbar .dropdown .dropdown-toggler {
  display: flex;
  align-items: center;
  margin-right: 0 !important;
}
header .navbar .dropdown .dropdown-toggler svg {
  margin-top: auto;
}
header .navbar .dropdown .dropdown-toggler.show {
  color: #000000;
  background: #0B68BF;
  transition: color 0.5s, background-color 0.5s;
}
header .navbar .dropdown .dropdown-menu {
  --bs-dropdown-min-width: 100%;
  background-color: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 0;
}
header .navbar .dropdown .dropdown-menu li:first-child .dropdown-item {
  padding-top: 0.5rem;
}
header .navbar .dropdown .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 0.5rem;
}
header .navbar .dropdown .dropdown-menu .dropdown-item {
  font-size: 0.93rem;
}
header .navbar .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000;
  background: #F7B234;
  transition: color 0.5s, background-color 0.5s;
}
header .navbar .dropdown svg {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 0;
  height: 1.1em;
  position: relative;
}
header .navbar .show {
  color: #ffffff !important;
  transition: color 0.5s, background-color 0.5s;
}
header .navbar .navbar-toggler {
  border: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 0;
  position: relative;
}
header .navbar .navbar-toggler .navbar-toggler-icon {
  stroke: #0B68BF;
  display: block;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .navbar-toggler:hover {
  background: none;
}
@media screen and (min-width: 992px) {
  header .navbar .navbar-toggler:hover .navbar-toggler-icon {
    stroke: #F7B234;
  }
}
header .navbar .navbar-brand {
  padding: 0;
  height: 100%;
  width: auto;
}
header .navbar .navbar-brand img {
  height: 45px;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-brand img {
    height: 25px;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-text, header .navbar .navbar-collapse .navbar-nav .nav-item .nav-text.text-link {
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 0.5rem;
  color: #0B68BF;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 0.5rem;
  color: #0B68BF;
  transition: color 0.5s;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #002f65;
  transition: color 0.5s;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.styled-button {
  color: #0B68BF;
  padding: 0.7rem 1rem;
  flex-shrink: 0;
  min-width: fit-content;
  transition: color 0s;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.styled-button svg {
  flex-shrink: 0;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.styled-button:hover {
  color: #ffffff;
  transition: color 0s;
}
header .navbar .navbar-collapse .navbar-nav .toggler-block {
  margin-right: 0.5rem;
}
header .navbar .navbar-collapse .navbar-nav .toggler-block .nav-item {
  margin-right: 0;
}
header .navbar .navbar-collapse .navbar-nav .toggler-block .nav-item .nav-link {
  border-radius: 0;
  padding: 0.7rem;
}
header .navbar .navbar-collapse .navbar-nav .toggler-block .nav-item:first-child .nav-link {
  padding-right: 0.4rem;
}
header .navbar .navbar-collapse .navbar-nav .toggler-block .nav-item:last-child .nav-link {
  border-left: none;
  padding-left: 0.4rem;
}
header .navbar .navbar-collapse .navbar-nav .toggler-block .nav-item .dropdown-item {
  padding-left: 0.7rem;
}
header .navbar .navbar-collapse .navbar-nav .nav-inline-select {
  display: inline;
}
header .navbar .navbar-collapse .navbar-nav .nav-inline-select .text-link {
  margin-right: 0 !important;
  text-decoration: underline;
}
header .navbar .navbar-collapse .navbar-nav .nav-inline-select .text-link:not(:last-child)::after {
  content: "|";
  margin: 0 0.2rem;
  font-weight: 400;
}
header .navbar .navbar-collapse.show .choose_button {
  margin: 10px 0;
}
header .navbar .nav-external {
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  max-height: 46.5px;
}
header .navbar .nav-external svg {
  height: 100%;
  flex-shrink: 0;
}
header .navbar .nav-external:hover {
  color: #ffffff;
}
header .navbar .nav-external .cart-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 1.2rem;
  right: -0.2rem;
  top: -0.2rem;
  color: #000000;
  background: #F7B234;
  height: 2rem;
  width: 2rem;
  padding-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  header .navbar .nav-external .cart-counter {
    font-size: 1.15rem;
    right: -0.2rem;
    top: -0.2rem;
    height: 1.5rem;
    width: 1.5rem;
    padding-bottom: 0.1rem;
  }
}
header .no-background {
  background: none;
  padding-top: 30px;
  transition: background-color 0.25s, padding-top 0.25s;
}
header .no-background .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  header .no-background .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #0B68BF;
  }
}
header .no-background .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #9cc5ff;
}
@media screen and (max-width: 991px) {
  header .no-background .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #002f65;
  }
}
header .no-background .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggler {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  header .no-background {
    padding-top: 16px;
  }
}
header .no-background.light-bg-navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #0B68BF;
}
header .no-background.light-bg-navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #002f65;
}
header .navbar-show {
  background-color: #ffffff;
}

.welcome-hero {
  height: 100vh;
  background: #ffffff;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.welcome-hero .back-img {
  position: absolute;
  top: -7.5px;
  left: -7.5px;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
}
.welcome-hero .back-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: blur(5px);
}
.welcome-hero .container {
  padding-top: 12vh;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .welcome-hero .container {
    padding-top: 6vh;
  }
}
.welcome-hero .container .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Roboto, sans-serif;
  width: auto;
}

.cols-3-section {
  padding-bottom: 7rem;
}
.cols-3-section .single-card .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cols-3-section .single-card .card-wrapper .card-title {
  padding-bottom: 1rem;
}
.cols-3-section .single-card .card-wrapper .card-text {
  text-align: center;
}

.double-areas-section .single-sub-block {
  display: flex;
  flex-direction: column;
}

.promo-section {
  background: #f2f2f2;
}
.promo-section .card.product-card .product-card-wrapper .card-body .card-bottom .card-button {
  color: #2D2D2D;
  background: #F7B234;
}
.promo-section .card.product-card .product-card-wrapper .card-body .card-bottom .card-button:hover {
  background: #dc9d2b;
}
.promo-section .section-bottom {
  display: none;
}

#how-it-works {
  scroll-margin-top: 80px;
}
#how-it-works .card {
  border: none;
  position: relative;
  background: none;
}
#how-it-works .card .card-wrapper {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(0, 111, 255, 0.1);
}
#how-it-works .card .card-wrapper .text-bordered-words {
  line-height: 1.7em;
}
#how-it-works .card .card-wrapper .next-arrow {
  top: 50%;
  right: calc(var(--bs-gutter-x) * 0.25 * -1);
}
@media (max-width: 991px) {
  #how-it-works .card .card-wrapper .next-arrow {
    right: calc(var(--bs-gutter-x) * 1.25 * -1);
  }
}
@media (max-width: 767px) {
  #how-it-works .card .card-wrapper .next-arrow {
    top: auto;
    right: auto;
    bottom: calc(var(--bs-gutter-y) * 0.85 * -1);
    left: 50%;
  }
  #how-it-works .card .card-wrapper .next-arrow img {
    transform: rotate(90deg);
  }
}

.product-section .about-product {
  overflow: hidden;
}
.product-section .book-product .book-block-wrapper {
  position: sticky;
  top: 6.3rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 -2px 15px 0 rgba(69, 68, 68, 0.3);
  background: #ffffff;
  padding: 1.5rem;
}
.product-section .book-product .book-block-wrapper .book-block-price {
  background: rgba(0, 111, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-section .book-product .book-block-wrapper .book-block-price .price {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.2em;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}
.product-section .book-product .book-block-wrapper .book-block-price .price-new {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.2em;
  font-weight: 700;
  color: #0B68BF;
  white-space: nowrap;
  margin: 0;
}
.product-section .book-product .book-block-wrapper .book-block-price .price-old {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.2em;
  font-weight: 700;
  color: #9a9a9a;
  height: fit-content;
  white-space: nowrap;
  position: relative;
  width: fit-content;
  margin: 0;
}
.product-section .book-product .book-block-wrapper .book-block-price .price-old::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #9a9a9a;
  transform: rotate(-10deg);
}

.respond-info {
  max-height: 0;
  overflow: hidden;
  border-radius: 8px;
  transition: max-height 0.25s;
}
.respond-info p {
  padding: 0.5rem;
  margin: 0;
  background: rgba(0, 111, 255, 0.1);
  color: var(--bs-danger);
}
.respond-info.show {
  max-height: 5rem;
  transition: max-height 0.25s;
}

.success-info p {
  background: rgba(0, 111, 255, 0.1);
  color: var(--bs-success);
}

.reviews-section {
  background: #f2f2f2;
}
.reviews-section .card.review-card.rating-card {
  position: sticky;
  top: 6.3rem;
}
.reviews-section .card.review-card.rating-card .review-card-wrapper {
  background: rgba(0, 111, 255, 0.1);
}
.reviews-section .card.review-card.rating-card .review-card-wrapper .review-rate {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.reviews-section .card.review-card.rating-card .review-card-wrapper .review-rate .card-rating {
  font-size: 2rem;
  height: 2.5rem;
  top: -0.3rem;
}
.reviews-section .card.review-card.rating-card .review-card-wrapper .review-rate .card-rating-digit {
  height: auto;
  margin-bottom: 0;
  margin-left: 0.5rem;
}
.reviews-section .card.review-card {
  border: none;
  background: none;
}
.reviews-section .card.review-card .review-card-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 -2px 15px 0 rgba(69, 68, 68, 0.3);
  background: #ffffff;
  padding: 1.5rem;
}
.reviews-section .card.review-card .review-card-wrapper .card-rating {
  display: inline-block;
  font-size: 1.8rem;
  position: relative;
  top: -0.5rem;
  height: 2rem;
  overflow: hidden;
}
.reviews-section .card.review-card .review-card-wrapper .card-rating .stars {
  font-family: "Krub", sans-serif;
  font-size: inherit;
  display: block;
  letter-spacing: 0;
  position: relative;
  width: fit-content;
  color: #9a9a9a;
}
.reviews-section .card.review-card .review-card-wrapper .card-rating .stars::before {
  content: "★★★★★";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  color: #F7B234;
  white-space: nowrap;
}
.reviews-section .card.review-card .review-card-wrapper .review-username {
  margin-bottom: 0.8rem;
}
.reviews-section .card.review-card .review-card-wrapper .review-date {
  margin-bottom: 0;
  color: #9a9a9a;
  text-align: end;
}

#main_footer {
  background: #f2f2f2;
}
#main_footer .footer-text, #main_footer .nav-link, #main_footer .nav-item {
  font-family: "Krub", Arial, sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.2em;
  font-weight: 400;
  color: #000000;
}
#main_footer .footer-text i, #main_footer .nav-link i, #main_footer .nav-item i {
  margin-right: 0.5rem;
  color: #0B68BF;
  transition: color 0.5s;
}
#main_footer .footer-text a:hover, #main_footer .nav-link a:hover, #main_footer .nav-item a:hover {
  color: #0B68BF;
}
#main_footer .footer-text a:hover i, #main_footer .nav-link a:hover i, #main_footer .nav-item a:hover i {
  color: #F7B234;
  transition: color 0.5s;
}
#main_footer .footer-switcher a {
  text-decoration: underline;
}
#main_footer .footer-switcher a:not(:last-child)::after {
  content: "|";
  margin: 0 0.2rem;
  font-weight: 400;
}
#main_footer .footer-switcher a.selected {
  font-weight: 700;
  text-decoration: none;
  pointer-events: none;
}
#main_footer #footer_youtube i {
  transition: all 0.5s;
}
#main_footer #footer_youtube i:hover {
  color: #FF0000;
  transition: all 0.5s;
}
#main_footer #footer_facebook i {
  transition: all 0.5s;
}
#main_footer #footer_facebook i:hover {
  color: #1877F2;
  transition: all 0.5s;
}

#product-section h1 {
  text-align: start;
  color: #000000;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.float-section {
  position: fixed;
  bottom: 0;
  transition: bottom 0.25s;
  background: #F7B234;
  border-top: 1px solid #F7B234;
  width: 100%;
}
.float-section.hidden {
  bottom: -100%;
  transition: bottom 0.25s;
}

.gallery-section {
  --swiper-pagination-bottom: 2rem;
  --swiper-pagination-color: rgb(0, 84, 148);
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 5000;
}
.gallery-section .swiper {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 600;
  background: rgba(0, 0, 0, 0.85);
}
.gallery-section .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-section .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: contain;
  padding: 1rem;
}
.gallery-section .swiper .swiper-button-next, .gallery-section .swiper .swiper-button-prev {
  text-shadow: 0 0 16px black;
  color: #F7B234;
  margin: 0 20px 0 20px;
}
.gallery-section .swiper-collapse-button {
  color: #F7B234;
  fill: #F7B234;
  background: none;
  font-size: 1.5rem;
  position: absolute;
  z-index: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1rem;
  right: 26px;
  height: 3rem;
  width: 3rem;
  margin: 0;
  padding: 0;
}

.gallery-visible {
  display: block;
}

.gallery-thumb-section .photo-grid {
  display: grid;
  gap: 1rem;
  max-width: 100%;
  max-height: 70vh;
  overflow: hidden;
  grid-template: "aa" 1fr/1fr;
}
.gallery-thumb-section .photo-grid .photo-grid-item {
  position: relative;
  cursor: pointer;
}
.gallery-thumb-section .photo-grid .photo-grid-item img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb-section .photo-grid .photo-grid-item .more-items {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.gallery-thumb-section .photo-grid .photo-grid-item .more-items svg {
  height: 40px;
  fill: #ffffff;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(1) {
  grid-area: aa;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(2) {
  grid-area: bb;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(3) {
  grid-area: cc;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(4) {
  grid-area: dd;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(5) {
  grid-area: ee;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(6) {
  grid-area: ff;
}
.gallery-thumb-section .photo-grid .photo-grid-item:nth-child(7) {
  grid-area: gg;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) {
  grid-template: "aa bb" 1fr/2fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n+3) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) {
  grid-template: "aa bb" 1fr "aa cc" 1fr/2fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n+4) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) {
  grid-template: "aa bb bb" 1fr "aa bb bb" 1fr "aa cc dd" 1fr/3fr 1fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n+5) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(4) img {
  filter: brightness(0.5) blur(1.2px);
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(4) .more-items {
  display: flex;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) {
  grid-template: "aa bb bb ee" 1fr "aa bb bb ff" 1fr "aa cc dd gg" 1fr/2fr 1fr 1fr 1fr;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) {
  display: block;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n+8) {
  display: none;
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(7) img {
  filter: brightness(0.5) blur(1.2px);
}
.gallery-thumb-section .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(7) .more-items {
  display: flex;
}

.cart-section h1 {
  text-align: start;
  color: #000000;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.cart-section .card-img-top {
  border-radius: 8px !important;
}
.cart-section .card-close-button {
  top: 0;
  right: 0;
}
.cart-section .card-icon-text i {
  margin-right: 0.5rem;
  color: #0B68BF;
}
.cart-section .product-card .product-card-wrapper .card-body .card-title {
  margin-right: 2rem;
}

#checkout-section .book-block-wrapper {
  position: relative;
  top: 0;
}
#checkout-section h1 {
  text-align: start;
  color: #000000;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
#checkout-section .book-block-blue {
  background: rgba(0, 111, 255, 0.1);
}
#checkout-section .book-block-accent {
  background: #F7B234;
}
#checkout-section .composite-field {
  position: relative;
}
#checkout-section .composite-field button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  text-transform: uppercase;
}
#checkout-section .composite-field input {
  padding-right: 8rem;
}
#checkout-section .about-product {
  overflow: visible;
}
#checkout-section label[for]:has(+ input[required])::before, #checkout-section label[for]:has(+ select[required])::before, #checkout-section .required-star::before {
  content: "*";
  color: var(--bs-danger);
  margin-right: 5px;
  font-weight: bold;
}
#checkout-section .payment-system .payment-group {
  overflow: visible;
}
#checkout-section .payment-system .payment-group .payment-radio:checked + .payment-card {
  box-shadow: 0 -2px 15px 0 rgba(11, 104, 191, 0.3);
  background-color: rgba(0, 111, 255, 0.1);
  border: 1px solid #0B68BF;
  filter: none;
  opacity: 100%;
}
#checkout-section .payment-system .payment-group .payment-card {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 -2px 15px 0 rgba(69, 68, 68, 0.3);
  filter: grayscale(40%) brightness(1);
  opacity: 0.6;
}
#checkout-section .payment-system .payment-group .payment-card img {
  height: 100%;
}
#checkout-section .payment-system .payment-group .payment-card:hover {
  filter: none !important;
  opacity: 100% !important;
}
#checkout-section .error-string {
  display: none;
  height: fit-content;
  overflow: hidden;
  padding: 0.5rem 0.8rem 0;
}
#checkout-section .error-string p {
  margin: 0;
}
#checkout-section .has-error .form-control {
  border: 1px solid var(--bs-danger);
  box-shadow: 0 0 6px 0 var(--bs-danger);
}
#checkout-section .has-error .error-string {
  color: var(--bs-danger);
  display: block;
}

.information-section h1 {
  font-size: 3rem;
  color: #000000;
  margin-bottom: 2rem;
}
.information-section .post-description h2, .information-section .post-description img, .information-section .post-description p {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.information-section .post-description img {
  width: 100%;
}
.information-section .post-description h2 {
  text-align: start;
  font-size: 2rem;
  font-weight: normal;
}

#search_section {
  height: fit-content;
  overflow: visible;
}
#search_section .back-img {
  overflow: hidden;
}
#search_section .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#search_section .hero-title h1 {
  font-size: 3rem;
}
#search_section .search-row {
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  #search_section .search-row {
    height: 3em;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 991px) {
  #search_section .search-switch-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 575px) {
  #search_section .search-switch-wrapper {
    justify-content: center;
  }
}
#search_section .search-switch-wrapper .search-switch {
  color: #ffffff;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  #search_section .search-switch-wrapper .search-switch {
    margin-bottom: 0;
  }
  #search_section .search-switch-wrapper .search-switch .form-check-label {
    line-height: 1.1em;
  }
}
@media screen and (max-width: 575px) {
  #search_section .search-switch-wrapper .search-switch {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  #search_section .category-select-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    height: 3rem;
  }
}
#search_section .category-select-wrapper .category-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px 10px;
}

.search-result-section #input-sort {
  border: 1px solid gray;
  border-radius: 8px;
}

#category_view_section {
  height: fit-content;
  overflow: visible;
}
#category_view_section .back-img {
  overflow: hidden;
}
#category_view_section .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
}
#category_view_section .hero-title h1 {
  font-size: 3rem;
}

#error-section svg {
  height: 200px !important;
  margin-bottom: 3rem;
}
#error-section h1 {
  font-size: 6rem;
  color: #000000;
}
#error-section h2 {
  font-size: 1.8rem;
}

#info-section svg {
  height: 200px !important;
  margin-bottom: 3rem;
}
#info-section h1 {
  color: #000000;
}
#info-section h2 {
  font-size: 1.8rem;
}

.top-banner {
  width: 100%;
  background: #F7B234;
}
.top-banner p {
  text-align: center;
  color: #000000;
  padding: 0.1rem;
  margin: 0;
}

/*# sourceMappingURL=style_v1_1.css.map */
