@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:700,400);
@import url("https://use.typekit.net/svh8znd.css");
body {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 70px;
  line-height: 84px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

.video-reference {
  margin-bottom: 1.5rem;
}
.video-reference .video-container {
  width: 100% !important;
  margin: 0;
}
.video-reference .video-container iframe {
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
}

.article {
  display: block;
  overflow: hidden;
}
.article .article-excerpt {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
  max-width: 320px;
  height: 66px; /* Adjust this value based on your font size and line-height */
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-box-align: center;
}
.article.article-video .img-article {
  position: relative;
}
.article.article-video .img-article::after {
  content: "\f04b";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 32px;
  width: 60px;
  height: 60px;
  color: white;
  background-color: #298C89;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.15s ease-in;
}
.article .img-article {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 66.67% 0 0 0; /* aspect ratio */
  border-radius: 15px;
}
.article .img-article img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.15s ease-in;
}
.article .img-article:hover img {
  transform: scale(1.05);
}
.article .img-article:hover::after {
  background-color: #0D3F5E;
}
.article .img-article .cat-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3px 15px;
  text-align: center;
  color: white;
  background-color: #298C89;
  transition: all 0.15s ease-in;
  text-decoration: none;
}
.article .img-article .cat-tag:hover {
  text-decoration: none;
  background-color: #0D3F5E;
}
.article.article-top .img-article {
  padding: 50% 0 0 0; /* aspect ratio */
}
.article .article-meta {
  margin-top: 20px;
  margin-bottom: 15px;
}
.article .article-summary {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 22px;
  max-width: 320px;
}
.article .article-summary a {
  text-decoration: none;
  transition: all 0.15s ease-in;
}
.article .article-summary a:hover {
  color: #298C89;
}
.article .meta-item {
  display: flex;
  flex: 1;
  align-items: center;
}
.article .meta-item:first-child {
  margin-left: 0;
}
.article .article-content {
  padding-top: 15px;
  flex: 1;
}
.article .article-content .article-title {
  font-size: 18px;
  margin-bottom: 15px;
  text-decoration: none;
  transition: all 0.15s ease-in;
}
.article .article-content .article-title:hover {
  color: #298C89;
  text-decoration: none;
}
.article .date-time {
  width: 100%;
  display: flex;
  gap: 30px;
}
.article .date-time > * {
  flex: 1;
}
.article .date-time img {
  object-fit: contain;
}
@media (max-width: 767px) {
  .article .date-time {
    gap: 15px;
    justify-content: space-between;
    align-items: initial;
  }
}

.articles-list .article {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.articles-list .article .article-content {
  margin-left: 20px;
  padding: 10px 0;
}
.articles-list .article .img-article {
  width: 150px;
  min-width: 150px;
  height: 150px;
  padding: 0;
}
.articles-list .article .article-title {
  font-size: 16px;
}
.articles-list .article:not(:last-child) {
  margin-bottom: 20px;
}
.articles-list .article:not(:last-child).video-article {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .articles-list .article:not(:last-child).video-article {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .articles-list .article {
    flex-direction: column;
  }
  .articles-list .article .article-content {
    margin-left: 0;
    margin-top: 15px;
  }
  .articles-list .article .article-img {
    width: 100%;
  }
}

.article .article-img {
  position: relative;
  width: 165px;
  height: 165px;
  min-width: 165px;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}
.article .article-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.15s ease-in;
}
.article .article-img:hover img {
  transform: scale(1.1);
}
.article.video-article .article-img {
  width: 115px;
  height: 115px;
  min-width: 115px;
}
@media (max-width: 767px) {
  .article.video-article .article-img {
    width: 100%;
  }
}

.pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 3px;
}
.pagination .page-item .page-link {
  background-color: #298C89;
  color: white;
  border-color: transparent;
  transition: all 0.15s ease-in;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link.active {
  background-color: #0D3F5E;
}
.pagination .page-item.disabled {
  opacity: 0.7;
}
.pagination .page-item:first-child {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.section-link {
  color: #0D3F5E;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.section-link i {
  margin-left: 20px;
  transition: all 0.15s ease-in;
}
.section-link:hover {
  color: #298C89;
}
.section-link:hover i {
  margin-left: 15px;
}

.border-blog {
  padding-right: 25px;
}

.border-start {
  padding-left: 25px;
  border: none;
}

.blog-text {
  font-size: 16px;
  line-height: 26px;
}

.btn {
  font-size: 14px;
  padding: 10px 20px;
  font-weight: 600;
}
.btn.btn-link {
  color: #298C89;
  transition: all 0.15s ease-in;
}
.btn.btn-link:hover {
  color: #0D3F5E;
}

.btn-pink {
  background-image: var(--btn-gradient);
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 25px;
}
.btn-pink:hover {
  color: white;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
  border-radius: 999px;
  transition: all 0.15s ease-in;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-primary {
  background-image: var(--btn-gradient);
}

.btn-primary, .btn-pink, .btn-outline {
  transition: all 0.15s ease-in;
  background-size: 100%;
  background-position: 0% 50%;
}

.btn-primary:not(:disabled):not(.disabled):hover, .show > .btn-primary.dropdown-toggle,
.btn-pink:not(:disabled):not(.disabled):hover, .show > .btn-pink.dropdown-toggle,
.btn-outline:not(:disabled):not(.disabled):hover, .show > .btn-outline.dropdown-toggle {
  background-size: 150%;
  /*box-shadow: 0 0 0 0.2rem rgba(12, 130, 127,.1);*/
  box-shadow: none;
  transform: scale(1.05);
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle,
.btn-pink:not(:disabled):not(.disabled).active, .btn-pink:not(:disabled):not(.disabled):active, .show > .btn-pink.dropdown-toggle {
  background-image: linear-gradient(to right, #0A817E 0%, #8BC28B 51%);
  background-size: 200%;
}

.btn-primary.focus, .btn-primary:focus,
.btn-pink.focus, .btn-pink:focus {
  /*box-shadow: 0 0 0 0.2rem rgba(12, 130, 127,.2)*/
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus,
.btn-pink:not(:disabled):not(.disabled).active:focus, .btn-pink:not(:disabled):not(.disabled):active:focus, .show > .btn-pink.dropdown-toggle:focus {
  /*box-shadow: 0 0 0 0.2rem rgba(12, 130, 127,.4);*/
  box-shadow: none;
}

.btn-strong {
  font-weight: 600;
  padding-left: 30px;
  padding-right: 30px;
}

.btn-outline {
  border: 1px solid #298C89;
}
.btn-outline:hover {
  background-color: rgba(41, 140, 137, 0.05);
  border-color: #0D3F5E;
}

.owl-carousel {
  position: relative;
}
.owl-carousel.owl-hide-overflow {
  overflow: hidden;
}

.owl-nav {
  color: #298C89;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  pointer-events: none;
}
.owl-nav button {
  pointer-events: auto;
  font-size: 32px !important;
}
.owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  top: 0;
}
.owl-nav button.owl-next {
  position: absolute;
  right: 0;
  top: 0;
}
.owl-nav button:focus {
  border: none;
  outline: 0;
}

.owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.owl-dots button.owl-dot {
  position: relative;
  border: 1px solid #298C89;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  outline: 0;
}
.owl-dots button.owl-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background-color: #298C89;
  border-radius: 999px;
  transition: all 0.15s ease-in;
}
.owl-dots button.owl-dot:hover::after {
  width: 4px;
  height: 4px;
}
.owl-dots button.owl-dot.active::after {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
}

.testimonial-carousel {
  margin: 40px auto;
  max-width: 780px;
}
.testimonial-carousel .author-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 999px;
}
.testimonial-carousel .author-info .author-name {
  line-height: 1.2;
}
.testimonial-carousel .author-info .author-name .name {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .testimonial-carousel .author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .testimonial-carousel .author-info .author-name {
    text-align: center;
  }
  .testimonial-carousel .author-info .author-name .name {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .testimonial-carousel .testimonial-caption {
    font-size: 16px;
  }
}
.testimonial-carousel .testimonial-caption img {
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 15px;
}
.testimonial-carousel .testimonial-item {
  padding: 0 30px;
  margin-bottom: 40px;
}
.testimonial-carousel .testimonial-item .testimonial-caption {
  margin-bottom: 40px;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: flex-start;
}

.owl-carousel.owl-centered .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item {
  float: none;
}

.company-carousel-main {
  margin-top: 30px;
}
.company-carousel-main .company-carousel-item img {
  width: 100%;
  height: auto;
}

.media-image {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 66.67% 0 0 0; /* 34.37% = 100 / (w / h) = 100 / (640 / 220) */
}
.media-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  min-height: 100%;
  padding: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: contain;
}

#bccs-slider {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2147483648;
  background-color: white;
  border-top: 2px solid #0D3F5E;
  padding-top: 15px;
  padding-bottom: 15px;
  max-height: calc(100% - 58px);
  overflow-y: auto;
}
#bccs-slider h3 {
  font-family: "urbane-rounded", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #298C89;
  font-size: 1.2rem;
}
#bccs-slider .bccs-body-text {
  text-align: left;
  padding-right: 30px;
}
#bccs-slider .bccs-body-text p {
  font-size: 0.95rem;
  font-family: "Roboto", "Helvetica Neue", "Arial", "sans-serif";
  font-weight: 600;
  line-height: 1.2;
}
#bccs-slider .bccs-body-text p a {
  transition: all 0.15s ease-in;
  color: #0D3F5E;
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}
#bccs-slider .bccs-body-text p a:hover {
  color: #298C89;
}

#bccs-modal .cookie-actions, #bccs-slider .cookie-actions {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #bccs-modal .cookie-actions, #bccs-slider .cookie-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
#bccs-modal .cookie-actions > *, #bccs-slider .cookie-actions > * {
  margin-right: 8px;
  margin-top: 4px;
  margin-top: 4px;
  white-space: nowrap;
}
#bccs-modal .cookie-actions > *:last-child, #bccs-slider .cookie-actions > *:last-child {
  margin-right: 0;
}
#bccs-modal .cookie-actions button, #bccs-modal .cookie-actions a, #bccs-slider .cookie-actions button, #bccs-slider .cookie-actions a {
  font-weight: 600;
}
#bccs-modal .cookie-actions button i, #bccs-modal .cookie-actions a i, #bccs-slider .cookie-actions button i, #bccs-slider .cookie-actions a i {
  margin-right: 3px;
  display: none;
}
#bccs-modal .cookie-actions button.collapsed i.icon-collapsed, #bccs-modal .cookie-actions a.collapsed i.icon-collapsed, #bccs-slider .cookie-actions button.collapsed i.icon-collapsed, #bccs-slider .cookie-actions a.collapsed i.icon-collapsed {
  display: inline;
}
#bccs-modal .cookie-actions button:not(.collapsed) i.icon-expanded, #bccs-modal .cookie-actions a:not(.collapsed) i.icon-expanded, #bccs-slider .cookie-actions button:not(.collapsed) i.icon-expanded, #bccs-slider .cookie-actions a:not(.collapsed) i.icon-expanded {
  display: inline;
}
#bccs-modal .cookie-actions button.btn, #bccs-modal .cookie-actions a.btn, #bccs-slider .cookie-actions button.btn, #bccs-slider .cookie-actions a.btn {
  padding: 0rem 0.75rem;
  font-size: 0.95rem;
}
#bccs-modal .cookie-actions button.btn i, #bccs-modal .cookie-actions a.btn i, #bccs-slider .cookie-actions button.btn i, #bccs-slider .cookie-actions a.btn i {
  font-size: 1rem;
}
#bccs-modal .bccs-option:not(:last-child), #bccs-slider .bccs-option:not(:last-child) {
  margin-bottom: 1rem;
}
#bccs-modal .bccs-option .form-check, #bccs-slider .bccs-option .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  margin-left: 0;
}
#bccs-modal .bccs-option .form-check label, #bccs-slider .bccs-option .form-check label {
  font-size: 18px;
  font-family: "urbane-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#bccs-modal .bccs-option p, #bccs-slider .bccs-option p {
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Roboto", "Helvetica Neue", "Arial", "sans-serif";
}

.bccs-body-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .bccs-body-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}

#bccs-options {
  padding-top: 15px;
}

.question {
  padding: 0;
}
.question .question-content {
  padding: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.question .question-content h4 {
  transition: all 0.15s ease-in;
  flex: 1;
  margin-right: 15px;
}
.question .question-content:hover h4 {
  color: #298C89;
}
.question .icon-container {
  transition: all 0.15s ease-in;
}
.question .answer {
  padding: 10px;
}
.question.active .answer {
  display: block;
}
.question.active .icon-container {
  transform: rotate(180deg);
}

.form-control {
  margin-bottom: 10px;
  border: 1px solid #488A88;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-height: 50px;
}
.form-control:focus {
  border-color: #0D3F5E;
  box-shadow: 0 0 0 0.2rem rgba(13, 63, 94, 0.25);
}

.form-checkbox {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}
.form-checkbox input {
  margin-right: 15px;
}
.form-checkbox a:hover {
  color: #298C89;
}

form button[type=submit] {
  min-height: 44px;
}

footer .checkbox-wrapper {
  display: flex;
  align-items: baseline;
}
footer .checkbox-wrapper input {
  margin-right: 5px;
}
footer .checkbox-wrapper a {
  color: white;
  text-decoration: underline;
}
footer .checkbox-wrapper a:hover {
  color: #0D3F5E;
}

.footer1 {
  position: relative;
}

.middle-footer {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -20%);
}
@media (max-width: 1199px) {
  .middle-footer {
    transform: translate(-50%, -70%);
  }
}
@media (max-width: 991px) {
  .middle-footer {
    transform: translate(-50%, -65%);
  }
}

.left-footer {
  margin-left: auto;
  padding: 50px 0;
}
@media (min-width: 1200px) {
  .left-footer {
    padding-right: 95px;
  }
}
@media (min-width: 1399px) {
  .left-footer {
    max-width: 660px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .left-footer {
    max-width: 570px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .left-footer {
    max-width: 960px;
    margin: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .left-footer {
    max-width: 720px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .left-footer {
    padding: 50px 0;
    max-width: 540px;
    margin: auto;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
}

.right-footer {
  overflow-x: hidden;
  padding: 30px 0 30px 150px;
  margin-right: auto;
  bottom: -1px;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
}
@media (min-width: 1399px) {
  .right-footer {
    max-width: 660px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .right-footer {
    max-width: 570px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .right-footer {
    max-width: 960px;
    margin: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .right-footer {
    max-width: 720px;
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .right-footer {
    padding: 95px 0;
  }
}
@media (max-width: 767px) {
  .right-footer {
    padding: 95px 0;
    max-width: 540px;
    margin: auto;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
}
.right-footer h3 {
  font-weight: 300;
  margin-bottom: 30px;
}

.right-footer-container {
  background-color: #298C89;
}

.footer2 .footer-links a {
  transition: all 0.15s ease-in;
}
.footer2 .footer-links a:hover {
  color: #8BC28B;
}
@media (max-width: 767px) {
  .footer2 .footer-links {
    display: flex;
    flex-direction: column;
  }
}

.info-footer1 a {
  transition: all 0.15s ease-in;
  text-decoration: none;
}
.info-footer1 a:hover {
  color: #298C89;
}

#newsletterForm {
  position: relative;
  z-index: 99;
}
#newsletterForm .button-wrapper #email {
  width: 100%;
  padding-right: 195px;
}
#newsletterForm .button-wrapper .submit-btn {
  position: absolute;
  border-radius: 10px;
  right: 0;
  top: 0;
  color: white;
  transition: all 0.15s ease-in;
}
#newsletterForm .button-wrapper .submit-btn:hover {
  background: #0D3F5E;
}

@media (max-width: 1199px) {
  .hero-row {
    flex-direction: column-reverse;
  }
}
.hero-row .img-wrapper {
  position: relative;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-row .img-wrapper {
    width: 50%;
    margin: auto;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-row .img-wrapper {
    width: 75%;
    margin: auto;
    display: block;
  }
}

@media (max-width: 1199px) {
  .hero-text {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hero-text {
    font-size: 24px;
    line-height: 32px;
  }
}

#cart-navbar {
  background: #0D3F5E;
}

.body-columns {
  min-height: 800px;
}

.body-img-wrapper {
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-body-section {
  opacity: 0;
  pointer-events: none;
  transition: all 0.15s ease-in;
}
@media (min-width: 992px) {
  .right-body-section {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .right-body-section {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.right-body-section.active {
  opacity: 1;
  pointer-events: all;
}
.right-body-section h4 {
  font-weight: 300;
  text-align: center;
  border-bottom: 1px solid #488A88;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.target-section {
  padding: 25px;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.target-section::-webkit-scrollbar {
  width: 5px;
}
.target-section::-webkit-scrollbar-track {
  background: transparent;
}
.target-section::-webkit-scrollbar-thumb {
  background: #298C89;
  border-radius: 5px;
}
.target-section::-webkit-scrollbar-thumb:hover {
  background: #0D3F5E;
}
@media (min-width: 992px) {
  .target-section {
    max-height: 790px;
    overflow-y: auto;
  }
}
@media (max-width: 991px) {
  .target-section {
    max-height: 750px;
    overflow-y: auto;
  }
}

.green_plus img.green {
  transition: all 0.15s ease-in;
  opacity: 1;
}
.green_plus img.red {
  transition: all 0.15s ease-in;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.green_plus.active img.green {
  opacity: 0;
}
.green_plus.active img.red {
  opacity: 1;
}

.recommended-heading .product-title {
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  display: block;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.recommended-heading .product-price {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  color: #298C89;
  display: block;
  font-weight: 700;
  margin: 0;
}

.cart-wrapper .cart-content .product-cart > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.cart-wrapper .cart-content .product-cart .product-info {
  flex: 1;
  margin-right: 15px;
}
.cart-wrapper .cart-content .product-cart .product-info .product-name {
  font-weight: 600;
}
.cart-wrapper .cart-content .product-cart .product-info .product-name:last-child {
  margin: 0;
}
.cart-wrapper .cart-content .btn-container {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-left: 30px;
  margin-right: 30px;
  gap: 10px;
}
.cart-wrapper .cart-content .btn-container a {
  line-height: 30px;
}

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

button.close {
  background-color: transparent;
  border: none;
  color: #298C89;
  font-size: 22px;
}
button.close:hover {
  color: #0D3F5E;
}

.navbar {
  padding-top: 0;
}

.navbar-nav {
  align-items: center;
}
@media (max-width: 1199px) {
  .navbar-nav li > a:not(.cart) {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navbar-nav li > a:not(.cart) {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .navbar-nav {
    margin-top: 0px;
    justify-content: space-between;
    width: 100%;
  }
}

.nav li {
  padding-top: 0;
}

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

.cart:hover {
  padding-bottom: 20px;
}

.navbar-expand-md .navbar-nav .nav-link.nav-link-main {
  background-color: #298C89;
  color: white;
}
.navbar-expand-md .navbar-nav .nav-link.nav-link-main:hover {
  background-color: #0D3F5E;
  color: white;
}
@media (max-width: 991px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

.navbar-brand img {
  max-width: 80px;
}
@media (max-width: 991px) {
  .navbar-brand img {
    padding-top: 0px;
    max-width: 62px;
  }
}

.mobile-imgs {
  position: relative;
  z-index: 9;
  height: 1px;
}

#mySidenav {
  z-index: 9999;
}

.mobile-imgs {
  position: relative;
  padding: 15px;
  height: 100px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .mobile-imgs {
    display: none;
  }
}
.mobile-imgs .navbar-brand-mobile-default {
  margin: 0;
  position: relative;
  top: initial;
  right: initial;
  flex: 1;
}
.mobile-imgs .navbar-brand-mobile-default img {
  width: 90px;
}
.mobile-imgs .cart-mobile-default {
  position: relative;
  top: initial;
  right: initial;
  margin-right: 30px;
}
.mobile-imgs .hamburger-menu {
  position: relative;
  top: initial;
  right: initial;
}

.navbar-brand-mobile img {
  width: 100px;
}

@media (min-width: 992px) {
  .container.page-container {
    max-width: 1100px;
  }
}

.page-content {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  margin-top: 0px;
  text-align: left;
  letter-spacing: 0px;
  color: #092543;
  opacity: 1;
}
.page-content.lh-sm {
  line-height: 1.4;
}
.page-content ol, .page-content ul {
  margin-left: 30px;
}
.page-content img {
  margin-bottom: 15px;
  margin-top: 15px;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  color: #0D3F5E;
}
.page-content h1:not(:first-child), .page-content h2:not(:first-child), .page-content h3:not(:first-child), .page-content h4:not(:first-child), .page-content h5:not(:first-child), .page-content h6:not(:first-child) {
  margin-top: 45px;
}
@media (max-width: 991px) {
  .page-content h1:not(:first-child), .page-content h2:not(:first-child), .page-content h3:not(:first-child), .page-content h4:not(:first-child), .page-content h5:not(:first-child), .page-content h6:not(:first-child) {
    margin-top: 30px;
  }
}
.page-content h1, .page-content h2, .page-content h3 {
  margin-bottom: 40px;
}
.page-content h4, .page-content h5, .page-content h6 {
  margin-bottom: 15px;
}
.page-content p, .page-content ul, .page-content ol {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
}
.page-content p:not(:last-child), .page-content ul:not(:last-child), .page-content ol:not(:last-child) {
  margin-bottom: 25px;
}
.page-content p li, .page-content ul li, .page-content ol li {
  margin-bottom: 0.5em;
}
.page-content a:not(.btn) {
  color: #298C89;
  text-decoration: underline;
}
.page-content a:not(.btn):hover {
  color: #0D3F5E;
}
.page-content a:not(.btn):hover img {
  opacity: 0.7;
}
.page-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.15s ease-in;
}
.page-content b, .page-content strong {
  font-weight: 700;
}
.page-content .btgrid .row {
  align-items: center;
}

h2.status-code {
  font-weight: 600;
}
h2.status-code span {
  color: #298C89;
  display: block;
  font-size: 60px;
}

.feature-item img {
  margin-bottom: 15px;
}

.product-buttons a, .product-buttons span {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 12px;
  padding: 5px 10px;
  margin-bottom: 5px;
  background-color: #C17A34;
  text-decoration: none;
  transition: all 0.15s ease-in;
}
.product-buttons a:last-child, .product-buttons span:last-child {
  margin-bottom: 0;
}
.product-buttons a:nth-of-type(1n+3), .product-buttons span:nth-of-type(1n+3) {
  display: none;
}
.product-buttons a:hover {
  transform: scale(1.1);
  text-decoration: none;
}
.product-buttons:hover a:nth-of-type(1n+3) {
  display: flex;
}

.product {
  padding: 15px 24px 24px;
}
.product .product-image {
  width: 200px !important;
  height: 200px;
  top: -100px;
}
.product .product-image:not(.product-image-png) {
  border-radius: 999px;
  object-fit: cover;
}
.product .product-image.product-image-png {
  width: 250px !important;
  object-fit: contain;
  filter: drop-shadow(10px 13px 16px rgba(0, 0, 0, 0.11));
}
.product .product-content {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 25px;
}
.product .product-content h3 {
  font-size: 24px;
  margin-bottom: 25px;
  line-height: 1.2; /* Adjust this value as needed */
  height: 2.4em; /* Adjust this value based on your font size and line-height */
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-box-align: center;
}
.product .product-content h3 a {
  text-decoration: none;
}
.product .product-content h3 a:hover {
  color: #298C89;
  text-decoration: none;
}
.product .product-content .desc {
  font-size: 14px;
  line-height: 1.2; /* Adjust this value as needed */
  height: 2.4em; /* Adjust this value based on your font size and line-height */
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-box-align: center;
}
.product .product-content .desc > *:first-child {
  /*font-size: 16px;*/
}
.product .product-content .desc ul, .product .product-content .desc ol {
  text-align: left;
  margin-left: 30px;
}
.product .product-content .desc ul li::marker, .product .product-content .desc ol li::marker {
  color: #298C89;
}
.product .product-icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 25px;
}
.product .product-icons > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  min-width: 70px;
}
.product .product-icons > * img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.product .product-price {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product .product-price .prices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 40px;
  font-size: 24px;
  color: #298C89;
}
.product .product-price .prices > * {
  display: block;
}
.product .product-price .prices del {
  font-size: 14px;
  color: grey;
  line-height: 14px;
}
.product .product-price .prices ins {
  text-decoration: none;
}
.product .product-price a {
  font-weight: 600;
}
.product .main-badge {
  position: absolute;
  left: -20px;
  top: -55px;
}

.products .product {
  height: calc(100% - 130px);
}

#products-carousel.owl-carousel .owl-stage {
  display: flex;
  align-items: unset;
}
#products-carousel .product {
  height: calc(100% - 130px);
}

.product {
  display: flex;
  flex-direction: column;
}
.product .products-icons, .product .products-icons-placeholder {
  flex: 1;
}

.image-link {
  transition: all 0.4s ease-in;
}
.image-link img {
  transition: all 0.4s ease-in;
}
.image-link:hover img {
  transform: translateX(-50%) scale(1.05);
}

.btn-price {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.btn-price .price {
  margin-top: 0;
}

.content-socials a {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.15s ease-in;
}
.content-socials a:hover {
  color: #0D3F5E;
}
.content-socials a:hover .social-media {
  color: #0D3F5E;
}
.content-socials a i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  margin-right: 20px;
  align-items: center;
  justify-content: center;
  background-color: #298C89;
  color: white;
  border-radius: 20px;
}

.right-column-consultation {
  position: relative;
}
.right-column-consultation img.slider-image {
  width: 140px;
  height: 140px;
  border-radius: 99px;
  object-fit: contain;
  overflow: hidden;
}

.container-consultation .description {
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 20px;
}
.container-consultation .bullet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background-color: #298C89;
  color: white;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: all 0.15s ease-in;
  text-decoration: none;
}
.socials a:hover {
  text-decoration: none;
  background-color: #0D3F5E;
}

.pretty-switch {
  position: relative;
  margin-left: 15px;
}
.pretty-switch [type=checkbox] {
  position: absolute;
  left: -9999px;
}
.pretty-switch [type=checkbox] + label {
  transition: all 0.15s ease-in;
  padding-left: 50px;
  width: 100%;
  color: #c5c8cf;
  cursor: pointer;
}
.pretty-switch [type=checkbox] + label::before, .pretty-switch [type=checkbox] + label::after {
  content: "";
  position: absolute;
}
.pretty-switch [type=checkbox] + label::before {
  transition: all 0.15s ease-in;
  left: 4px;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #c5c8cf;
  border-radius: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.pretty-switch [type=checkbox] + label::after {
  transition: all 0.15s ease-in;
  top: 50%;
  left: 0px;
  width: 48px;
  height: 24px;
  border-radius: 999px;
  transform: translateY(-50%);
  border: 2px solid #c5c8cf;
}
.pretty-switch [type=checkbox]:not(:disabled) + label:hover {
  color: #298C89;
}
.pretty-switch [type=checkbox]:not(:disabled) + label:hover::after {
  border: 2px solid #298C89;
}
.pretty-switch [type=checkbox]:checked + label {
  color: #141414;
}
.pretty-switch [type=checkbox]:checked + label::before {
  background: #298C89;
  transform: translate(22px, -50%);
}
.pretty-switch [type=checkbox]:checked + label::after {
  box-shadow: none;
  border: 2px solid #298C89;
}
.pretty-switch [type=checkbox][disabled] + label {
  cursor: not-allowed;
  opacity: 0.8;
}
.pretty-switch [type=checkbox][disabled] + label::before, .pretty-switch [type=checkbox][disabled] + label::after {
  opacity: 0.8;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-120 {
  margin-bottom: 120px;
}

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

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

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

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

@media (min-width: 1399px) {
  .container.container-xl {
    max-width: 1450px;
  }
}

p:last-child {
  margin-bottom: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 15px;
}

.section-header {
  margin-bottom: 30px;
}

.awaiting {
  position: relative;
}
.awaiting.awaiting-fixed {
  position: fixed;
}

.awaiting:not(tr)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 95;
  background-color: rgba(41, 140, 137, 0.25);
}

.awaiting:not(tr)::after {
  content: "\f185";
  font-family: "Font Awesome 6 Free";
  color: white;
  position: absolute;
  z-index: 96;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 52px;
  -webkit-animation-name: fa-spin;
  animation-name: fa-spin;
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
  animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
  animation-timing-function: var(--fa-animation-timing, linear);
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
}

.awaiting:is(tr) > td:first-child:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(41, 140, 137, 0.25);
}

.alert {
  border-radius: 10px;
}
.alert.alert-has-icon {
  display: flex;
  align-items: baseline;
  font-size: 14px;
}
.alert.alert-has-icon i {
  margin-right: 8px;
}

.row.sm-gutter {
  margin-right: -7.5px;
  margin-left: -7.5px;
}
.row.sm-gutter .col, .row.sm-gutter .col-1, .row.sm-gutter .col-10, .row.sm-gutter .col-11, .row.sm-gutter .col-12, .row.sm-gutter .col-2, .row.sm-gutter .col-3, .row.sm-gutter .col-4, .row.sm-gutter .col-5, .row.sm-gutter .col-6, .row.sm-gutter .col-7, .row.sm-gutter .col-8, .row.sm-gutter .col-9, .row.sm-gutter .col-auto, .row.sm-gutter .col-lg, .row.sm-gutter .col-lg-1, .row.sm-gutter .col-lg-10, .row.sm-gutter .col-lg-11, .row.sm-gutter .col-lg-12, .row.sm-gutter .col-lg-2, .row.sm-gutter .col-lg-3, .row.sm-gutter .col-lg-4, .row.sm-gutter .col-lg-5, .row.sm-gutter .col-lg-6, .row.sm-gutter .col-lg-7, .row.sm-gutter .col-lg-8, .row.sm-gutter .col-lg-9, .row.sm-gutter .col-lg-auto, .row.sm-gutter .col-md, .row.sm-gutter .col-md-1, .row.sm-gutter .col-md-10, .row.sm-gutter .col-md-11, .row.sm-gutter .col-md-12, .row.sm-gutter .col-md-2, .row.sm-gutter .col-md-3, .row.sm-gutter .col-md-4, .row.sm-gutter .col-md-5, .row.sm-gutter .col-md-6, .row.sm-gutter .col-md-7, .row.sm-gutter .col-md-8, .row.sm-gutter .col-md-9, .row.sm-gutter .col-md-auto, .row.sm-gutter .col-sm, .row.sm-gutter .col-sm-1, .row.sm-gutter .col-sm-10, .row.sm-gutter .col-sm-11, .row.sm-gutter .col-sm-12, .row.sm-gutter .col-sm-2, .row.sm-gutter .col-sm-3, .row.sm-gutter .col-sm-4, .row.sm-gutter .col-sm-5, .row.sm-gutter .col-sm-6, .row.sm-gutter .col-sm-7, .row.sm-gutter .col-sm-8, .row.sm-gutter .col-sm-9, .row.sm-gutter .col-sm-auto, .row.sm-gutter .col-xl, .row.sm-gutter .col-xl-1, .row.sm-gutter .col-xl-10, .row.sm-gutter .col-xl-11, .row.sm-gutter .col-xl-12, .row.sm-gutter .col-xl-2, .row.sm-gutter .col-xl-3, .row.sm-gutter .col-xl-4, .row.sm-gutter .col-xl-5, .row.sm-gutter .col-xl-6, .row.sm-gutter .col-xl-7, .row.sm-gutter .col-xl-8, .row.sm-gutter .col-xl-9, .row.sm-gutter .col-xl-auto {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

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

.table.table-striped td, .table.table-striped th {
  border: 0 !important;
}
.table.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(41, 140, 137, 0.05);
}
.table.table-striped thead tr {
  background-color: #298C89;
  color: white;
}
.table th[scope=row] {
  text-align: left;
}

section.timeline .timeline-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: auto;
}
section.timeline .timeline-main::-webkit-scrollbar {
  display: none;
}
section.timeline .timeline-main .timeline-item {
  cursor: pointer;
  min-width: 120px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  section.timeline .timeline-main .timeline-item {
    transform: translateX(calc(-50% + 30px));
  }
}
section.timeline .timeline-main .timeline-item span {
  transition: all 0.15s ease-in;
  display: block;
  font-family: "Montserrat";
  font-size: 24px;
  line-height: 32px;
  margin-top: 32px;
}
section.timeline .timeline-main .timeline-item img {
  margin-top: 5px;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.15s ease-in;
  filter: grayscale(1);
}
section.timeline .timeline-main .timeline-item::after {
  transition: all 0.15s ease-in;
  content: "";
  position: absolute;
  top: 19px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  border-bottom: 2px dashed #B7B7B7;
}
section.timeline .timeline-main .timeline-item:hover span {
  color: #8BC28B;
}
section.timeline .timeline-main .timeline-item:hover img {
  transform: scale(1.1);
}
section.timeline .timeline-main .timeline-item.before img {
  filter: grayscale(0);
}
section.timeline .timeline-main .timeline-item.before::after {
  border-bottom: 2px solid #8BC28B;
}
section.timeline .timeline-main .timeline-item.active span {
  font-weight: 700;
  color: #8BC28B;
}
section.timeline .timeline-main .timeline-item.active img {
  transform: scale(1.2);
  filter: grayscale(0);
}
section.timeline #timelineContent {
  margin-top: 50px;
  min-height: 300px;
}
section.timeline #timelineContent .timeline-title {
  font-size: 24px;
  line-height: 32px;
  font-family: "Montserrat";
  margin: 0;
}
section.timeline #timelineContent .timeline-title {
  font-family: "Montserrat";
}

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

.image-container img {
  border-radius: 15px;
}

a.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.container-shopping {
  margin-top: 120px;
}

.cart-table .no-items {
  margin: 50px 0;
  text-align: center;
  font-size: 24px;
}
.cart-table tbody .table-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.cart-table tbody .calculator .qty-button {
  transition: all 0.15s ease-in;
}
.cart-table tbody .calculator .qty-button:hover {
  color: white;
  background-color: #298C89;
}
.cart-table tbody .calculator .qty-button.plus {
  border-top-right-radius: 8px;
}
.cart-table tbody .calculator .qty-button.minus {
  border-bottom-right-radius: 8px;
}
.cart-table tbody .item-price {
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  padding-right: 15px;
}
.cart-table tbody .deleteItem {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.cart-table tbody .deleteItem:hover {
  color: #dc3545;
  background-color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.cart-table tbody .purchase-flex {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .cart-table .table-shopping-process {
    display: block;
  }
  .cart-table .table-shopping-process thead {
    display: none;
  }
  .cart-table .table-shopping-process tbody {
    display: block;
  }
  .cart-table .cartItem {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #7EB776;
    justify-content: space-between;
  }
  .cart-table .cartItem td {
    border: none;
  }
  .cart-table .cartItem td:nth-child(1) {
    width: 70%;
  }
  .cart-table .cartItem td:nth-child(2) {
    width: 30%;
  }
  .cart-table .cartItem td:nth-child(2) .calculator {
    margin-left: auto;
  }
  .cart-table .cartItem td:nth-child(3) {
    text-align: center;
  }
  .cart-table .cartItem td:nth-child(3)::before {
    display: block;
    content: "Cena za ks";
    font-size: 14px;
    font-weight: 500;
  }
  .cart-table .cartItem td:nth-child(4) {
    text-align: center;
  }
  .cart-table .cartItem td:nth-child(4)::before {
    display: block;
    content: "DPH";
    font-size: 14px;
    font-weight: 500;
  }
  .cart-table .cartItem td:nth-child(5) {
    text-align: center;
  }
  .cart-table .cartItem td:nth-child(5)::before {
    display: block;
    content: "Celkově";
    font-size: 14px;
    font-weight: 500;
  }
}

.cart-table .purchasename {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
}
.cart-table .table-shopping-process th, .cart-table td {
  border-bottom: 1px solid #8BC28B;
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
}
.cart-table .table-shopping-process th {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-align: left;
}

.prefinal-shopping-price {
  text-align: right;
  letter-spacing: 0px;
  color: #298C89;
  opacity: 1;
  margin: 5px 0;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.25;
}
.prefinal-shopping-price .fat-price {
  font-size: 1.1rem;
  line-height: 1.25;
}

.contact-white {
  background-color: #fff;
  display: flex;
  padding: 30px;
  border-radius: 15px;
}
.contact-white .contact-column {
  flex: 1;
  position: relative;
}
.contact-white .contact-column:not(:last-child) {
  margin-right: 60px;
}
.contact-white .contact-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  width: 1px;
  top: 0;
  height: 100%;
  background-color: #298C89;
}
.contact-white .contact-column .contact-item {
  color: #092543;
  min-width: 150px;
}
.contact-white .contact-column .contact-item:not(:last-child) {
  margin-bottom: 15px;
}
.contact-white .contact-column .contact-item h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}
.contact-white .contact-column .contact-item > span {
  display: block;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .contact-white {
    flex-direction: column;
    align-items: center;
  }
  .contact-white .contact-column:not(:last-child) {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .contact-white .contact-column .contact-item {
    text-align: center;
  }
  .contact-white .contact-column::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-title-kontakt {
    margin-top: 30px;
    text-align: center;
  }
}

.kontakt-section {
  margin-bottom: 40px;
}

.blog-tags {
  margin-bottom: 30px;
  gap: 5px;
}
.blog-tags .tag:hover {
  color: white;
  background-color: #298C89;
}

.video-article .article-img::after {
  content: "\f04b";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  width: 40px;
  height: 40px;
  color: white;
  background-color: #298C89;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.15s ease-in;
}
.video-article .article-img:hover::after {
  background-color: #0D3F5E;
}

.time-icon, .date-icon {
  display: flex;
}
.time-icon > i, .time-icon > img, .date-icon > i, .date-icon > img {
  margin-right: 10px;
}

.blog-header {
  margin: 20px 0;
}
.blog-header h3 {
  border-left: 3px solid #298C89;
  padding-left: 20px;
  font-size: 24px;
}
.blog-header:first-child {
  margin-top: 0;
}

hr.blog-divider {
  background-color: #dee2e6;
  margin-top: 40px;
  margin-bottom: 40px;
}

.blog-article .title-img {
  position: relative;
}
.blog-article .title-img img {
  width: 100%;
}
.blog-article .title-img .tag-article {
  position: absolute;
  top: 100%;
  left: 180px;
  background: #FFFFFF;
  border-radius: 0px 0px 5px 5px;
  padding: 2px 10px;
  transition: all 0.15s ease-in;
}
.blog-article .title-img .tag-article:hover {
  background-color: #0D3F5E;
  color: white;
  text-decoration: none;
}
@media (max-width: 991px) {
  .blog-article .title-img .tag-article {
    left: 50%;
    transform: translateX(-50%);
  }
}
.blog-article .blog-wrapper {
  position: relative;
  padding-left: 180px;
  padding-right: 180px;
  margin-top: 55px;
  margin-bottom: 60px;
}
.blog-article .blog-wrapper .author-block {
  position: absolute;
  width: 120px;
  left: 15px;
  top: -115px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-article .blog-wrapper .author-block .author-image {
  background-color: white;
  width: 120px;
  min-width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-bottom: 15px;
}
.blog-article .blog-wrapper .author-block .heading-name {
  margin-top: 0;
}
.blog-article .blog-wrapper .author-block > * {
  width: 100%;
}
.blog-article .blog-wrapper .author-block .info-text img, .blog-article .blog-wrapper .author-block .info-text i {
  margin-right: 10px;
}
@media (max-width: 1199px) {
  .blog-article .blog-wrapper {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .blog-article .blog-wrapper {
    padding-left: 0;
    margin-top: 45px;
  }
  .blog-article .blog-wrapper .author-block {
    flex-direction: row;
    position: relative;
    width: initial;
    left: initial;
    top: initial;
  }
  .blog-article .blog-wrapper .author-block .author-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .blog-article .blog-wrapper .author-block .blog-meta {
    display: flex;
  }
  .blog-article .blog-wrapper .author-block .blog-meta > *:not(:last-child) {
    margin-right: 30px;
    position: relative;
  }
  .blog-article .blog-wrapper .author-block .blog-meta > *:not(:last-child)::after {
    position: absolute;
    content: "";
    right: -15px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #dee2e6;
  }
}
.blog-article .blog-wrapper .blog-content {
  padding-top: 15px;
}

@media (max-width: 991px) {
  .blog-section {
    border-top: 1px solid #dee2e6;
    padding-top: 30px;
    margin-top: 30px;
  }
}

.blog-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.blog-top .blog-title {
  margin: 0;
}
.blog-top .blog-subtitle {
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}
.blog-top .page-info {
  margin-left: 15px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .video-wrapper {
    border-radius: 15px;
  }
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.next-articles a {
  transition: all 0.15s ease-in;
}
.next-articles a:hover {
  color: #298C89;
}

#orderForm .form-control {
  background-color: transparent;
  border: 1px solid #298C89;
}
#orderForm .form-control.error {
  border-color: #dc3545;
  background-color: rgba(248, 215, 218, 0.5);
  margin-bottom: 0;
}
#orderForm .form-control + label.error {
  color: #dc3545;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}
#orderForm .input-container {
  display: flex;
  align-items: baseline;
}
#orderForm .input-container label {
  margin: 0;
  padding: 10px 10px 10px 50px;
  flex-wrap: wrap;
}
#orderForm .input-container .label-name {
  flex: 1;
  line-height: normal;
}
#orderForm .input-container .price-delivery {
  width: 80px;
  text-align: right;
}
#orderForm .input-container i, #orderForm .input-container img {
  width: 60px;
  text-align: center;
  margin-right: 15px;
  color: #298C89;
}
@media (max-width: 767px) {
  #orderForm .input-container i, #orderForm .input-container img {
    display: none;
  }
}
#orderForm .input-container img {
  max-height: 35px;
  object-fit: contain;
}
#orderForm .input-container .description {
  width: 100%;
  margin-top: 0.5rem;
}
#orderForm .input-container:hover {
  background-color: rgba(41, 140, 137, 0.65);
}
#orderForm .input-container:hover .label-name, #orderForm .input-container:hover i, #orderForm .input-container:hover .price-delivery, #orderForm .input-container:hover .description {
  color: white;
}
#orderForm .input-container .custom-input-radio + label::before {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
#orderForm .input-container .custom-input-radio:checked + label::after {
  position: absolute;
  background-color: #298C89;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  z-index: 2;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  vertical-align: middle;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#orderForm .input-container.selected {
  background-color: #298C89;
}
#orderForm .input-container.selected label .label-name, #orderForm .input-container.selected label i, #orderForm .input-container.selected label .price-delivery, #orderForm .input-container.selected label .description {
  color: white;
}

.packeta, .dpd-parcelpoint {
  border: 1px solid #ba1b02;
  padding: 1rem;
  border-radius: 10px;
}
.packeta .packeta-selector-open, .packeta .dpd-selector-open, .dpd-parcelpoint .packeta-selector-open, .dpd-parcelpoint .dpd-selector-open {
  border-width: 3px;
  border-color: #ff4c3b;
  background-color: #ba1b02;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.15s ease-in;
  border-radius: 999px;
}
.packeta .packeta-selector-open:hover, .packeta .dpd-selector-open:hover, .dpd-parcelpoint .packeta-selector-open:hover, .dpd-parcelpoint .dpd-selector-open:hover {
  opacity: 0.7;
}
.packeta .packeta-selector-branch-name > div,
.packeta .dpd-selector-branch-name > div, .dpd-parcelpoint .packeta-selector-branch-name > div,
.dpd-parcelpoint .dpd-selector-branch-name > div {
  display: flex;
  align-items: center;
}
.packeta .packeta-selector-branch-name > div img,
.packeta .dpd-selector-branch-name > div img, .dpd-parcelpoint .packeta-selector-branch-name > div img,
.dpd-parcelpoint .dpd-selector-branch-name > div img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}
.packeta .packeta-selector-branch-name > div .pickup-point-content,
.packeta .dpd-selector-branch-name > div .pickup-point-content, .dpd-parcelpoint .packeta-selector-branch-name > div .pickup-point-content,
.dpd-parcelpoint .dpd-selector-branch-name > div .pickup-point-content {
  margin-left: 15px;
  text-align: left;
}
.packeta .packeta-selector-branch-name > div .pickup-point-content h5,
.packeta .dpd-selector-branch-name > div .pickup-point-content h5, .dpd-parcelpoint .packeta-selector-branch-name > div .pickup-point-content h5,
.dpd-parcelpoint .dpd-selector-branch-name > div .pickup-point-content h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}
.packeta .packeta-selector-branch-name > div .pickup-point-content h6,
.packeta .dpd-selector-branch-name > div .pickup-point-content h6, .dpd-parcelpoint .packeta-selector-branch-name > div .pickup-point-content h6,
.dpd-parcelpoint .dpd-selector-branch-name > div .pickup-point-content h6 {
  font-size: 16px;
  font-weight: 600;
}
.packeta .packeta-selector-branch-name > div .pickup-point-content p,
.packeta .dpd-selector-branch-name > div .pickup-point-content p, .dpd-parcelpoint .packeta-selector-branch-name > div .pickup-point-content p,
.dpd-parcelpoint .dpd-selector-branch-name > div .pickup-point-content p {
  font-size: 16px;
}

.dpd-parcelpoint {
  border-color: #e70025;
}
.dpd-parcelpoint .dpd-selector-open {
  border-color: #e70025;
  background-color: #bf0034;
}
.dpd-parcelpoint .dpd-selector-branch-name > div .pickup-point-content {
  margin-left: 0;
}

.order-sticky {
  position: sticky;
  top: 20px;
}

.order-column .order-products, .order-content .order-products {
  margin: 20px 0;
}
.order-column .order-product:not(:last-child), .order-content .order-product:not(:last-child) {
  margin-bottom: 30px;
}
.order-column .order-product > img, .order-content .order-product > img {
  width: 55px;
  min-width: 55px;
  height: 55px;
  object-fit: contain;
  margin-right: 15px;
}
.order-column .order-product .order-info, .order-content .order-product .order-info {
  flex: 1;
}
.order-column .order-product .product-name, .order-content .order-product .product-name {
  white-space: normal;
}
.order-column .order-product .order-price, .order-content .order-product .order-price {
  white-space: nowrap;
  line-height: 1;
}
.order-column .order-product .order-price .no-vat, .order-content .order-product .order-price .no-vat {
  font-size: 12px;
  text-align: right;
  display: block;
}
.order-column .unique-price-class, .order-content .unique-price-class {
  white-space: nowrap;
}
.order-column .total-price, .order-content .total-price {
  white-space: nowrap;
}
.order-column .total-item, .order-content .total-item {
  margin-left: 15px;
}
.order-column .total-item:not(:last-child), .order-content .total-item:not(:last-child) {
  margin-bottom: 5px;
}
.order-column .total-item .order-description .detail, .order-content .total-item .order-description .detail {
  display: flex;
  margin-top: 0.5rem;
  font-size: 14px;
}
.order-column .total-item .order-description .detail strong, .order-content .total-item .order-description .detail strong {
  font-weight: 600;
}
.order-column .total-item .order-description .detail .removeCode, .order-content .total-item .order-description .detail .removeCode {
  color: #298C89;
  margin-left: 15px;
  justify-content: baseline;
  position: relative;
}
.order-column .total-item .order-description .detail .removeCode::after, .order-content .total-item .order-description .detail .removeCode::after {
  content: "Odstrániť kupón";
  display: none;
  color: white;
  background-color: #0D3F5E;
  padding: 1px 5px;
  position: absolute;
  bottom: calc(100% + 3px);
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 5px;
}
.order-column .total-item .order-description .detail .removeCode:hover, .order-content .total-item .order-description .detail .removeCode:hover {
  color: #0D3F5E;
}
.order-column .total-item .order-description .detail .removeCode:hover::after, .order-content .total-item .order-description .detail .removeCode:hover::after {
  display: block;
}
.order-column .divider, .order-content .divider {
  background-color: #8BC28B;
  border-color: #8BC28B;
  opacity: 1;
}

@media (max-width: 991px) {
  .order-column {
    display: none;
  }
}

.fixed-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 999;
}
.fixed-summary .summary-bar {
  padding: 10px 20px;
}
.fixed-summary .summary-bar .show-text, .fixed-summary .summary-bar .hide-text {
  flex: 1;
}
.fixed-summary .summary-bar .hide-text {
  display: none;
}
.fixed-summary .summary-bar .summary-price {
  margin-left: 30px;
}
.fixed-summary .summary-bar .left-icon {
  margin-right: 30px;
}
.fixed-summary .summary-bar .dropdown-icon {
  transition: all 0.15s ease-in;
}
.fixed-summary .order-content {
  padding: 0px 20px 10px;
  max-height: calc(80vh - 60px);
  overflow-y: auto;
  position: relative;
}
.fixed-summary .order-content::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 2px;
  background-color: #0D3F5E;
}
.fixed-summary .order-content .order-products {
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #298C89;
}
.fixed-summary.show .show-text {
  display: none;
}
.fixed-summary.show .hide-text {
  display: block;
}
.fixed-summary.show .dropdown-icon {
  transform: rotate(180deg);
}
.fixed-summary.show .order-content {
  display: block;
}
@media (min-width: 768px) {
  .fixed-summary {
    display: none;
  }
}

#submitOrder {
  font-weight: 700;
  white-space: normal;
  text-transform: uppercase;
  padding: 20px 25px;
  flex: 1;
}

.promo-code-container {
  position: relative;
}
.promo-code-container input {
  margin: 0;
  padding-right: 120px;
}
.promo-code-container .promo-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.codeResult .alert {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .thanks-content {
    text-align: center;
  }
  .thanks-content table {
    margin: auto;
  }
  .thanks-content .img-thanks {
    margin-top: 60px;
    height: 200px;
  }
}

.order-heading {
  margin-top: 0;
  margin-bottom: 20px;
}

.inputs-subheading {
  margin-top: 40px;
  margin-bottom: 20px;
}

#dpdWidget .modal-content {
  border-radius: 0;
}
#dpdWidget .modal-content .modal-body {
  padding: 0;
}
#dpdWidget .modal-content iframe {
  width: 100%;
  height: 80vh;
  min-height: 500px;
}

.qr-wrapper {
  margin-bottom: 15px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .qr-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.qr-wrapper img {
  margin-left: 15px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .qr-wrapper img {
    margin-left: 0;
    margin-top: 15px;
  }
}

.recommended-prod img {
  width: 80px;
  margin-right: 15px;
  height: 80px;
  max-height: 100%;
  object-fit: contain;
}

.scroll-btn {
  display: block;
  z-index: 2;
  text-align: center;
  transition: all 0.15s ease-in;
}
.scroll-btn:hover {
  transform: translateY(-5px);
}
@media (max-width: 1199px) {
  .scroll-btn {
    margin-top: 30px;
  }
}

.green-targets a img {
  transition: all 0.15s ease-in;
  filter: contrast(80%);
}
.green-targets a:hover img {
  transform: scale(1.2);
  filter: contrast(100%);
}

.bg-body-img {
  display: inline-block;
  margin: auto;
}

.center-body {
  display: flex;
  justify-content: center;
}

.body-rel {
  position: relative;
}
.body-rel .hide-body {
  background-color: #298C89;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: none;
}
.body-rel .hide-body:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .body-rel {
    background-color: #F8F8F8;
    margin-top: 60px;
  }
  .body-rel::after, .body-rel::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: calc((100vw - 100%) / 2);
    background-color: #F8F8F8;
  }
  .body-rel::after {
    right: 100%;
  }
  .body-rel::before {
    left: 100%;
  }
  .body-rel .bg-body-img::after {
    background: linear-gradient(to top, rgb(248, 248, 248), rgba(248, 248, 248, 0));
  }
  .body-rel .right-body-section > h2 {
    margin-top: 15px;
  }
  .body-rel .hide-body {
    display: flex;
  }
}

.icon-column {
  margin-bottom: 30px;
}
.icon-column > img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
.icon-column .title-column {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.icon-column .text-column {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.icon-column .text-column b {
  font-weight: 600;
}

.target-section h2 {
  width: 100%;
}
.target-section .recommended-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.target-section .recommended-prod {
  transition: all 0.15s ease-in;
  text-decoration: none;
  display: flex;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .target-section .recommended-prod {
    width: 45%;
  }
}
.target-section .recommended-prod .details {
  flex: 1;
}
.target-section .recommended-prod:hover {
  background-color: #298C89;
  color: white;
  text-decoration: none;
}
.target-section .recommended-prod:hover p, .target-section .recommended-prod:hover span {
  color: white;
}
.target-section .recommended-prod img {
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.action-btn-btn svg #Ellipse_41 {
  transition: all 0.15s ease-in;
}
.action-btn-btn:hover svg #Ellipse_41 {
  fill: #0D3F5E;
}

.right-body-section h5 {
  font-size: 10px;
  text-transform: uppercase;
  padding: 0;
  padding-top: 20px;
  font-weight: 600;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section .action-btn {
    left: 50px;
    top: 5%;
  }
  .hero-section .action-btn svg {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .hero-section .action-btn {
    left: 50px;
    top: 5%;
  }
  .hero-section .action-btn svg {
    width: 150px;
  }
}

.sol-content-article {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sol-link {
  color: #298C89;
  display: block;
  text-align: center;
  padding: 2px 15px;
  margin: 15px auto 0;
}
.sol-link:hover {
  color: #0D3F5E;
}

#ctaModal .modal-body, #christmasModal .modal-body {
  position: relative;
  padding: 0;
  overflow: hidden;
}

#ctaModal .cta-modal-content {
  padding: 1rem;
}

#ctaModal .cta-modal-content p {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

#ctaModal .cta-modal-content *:last-child {
  margin-bottom: 0;
}

#ctaFormSection {
  padding: 1rem;
}

#ctaFormSection h3 {
  font-size: 1.5rem;
  color: #17A19E;
  text-align: center;
  margin-bottom: 0.5rem;
}

#ctaModal .modal-body .btn-close, #christmasModal .modal-body .btn-close {
  transition: all 0.05s linear !important;
  border: none;
  background-color: transparent;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 5px;
  right: 5px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  text-shadow: #000 1px 0 10px;
}

#ctaModal .modal-body .btn-close:hover, #christmasModal .modal-body .btn-close:hover {
  color: #17A19E;
  text-shadow: #17A19E 1px 0 10px;
}

#ctaModal .modal-body > img, #christmasModal .modal-body > img {
  width: 100%;
  height: auto !important;
}

#ctaModal .btn.btn-danger {
  background: linear-gradient(135deg, rgb(220, 53, 69) 0%, rgb(243, 118, 130) 100%);
}

#ctaModal .btn.btn-danger:hover {
  background: linear-gradient(135deg, rgb(220, 53, 69) 0%, rgb(220, 53, 69) 100%);
}

.category .category-header {
  max-width: 750px;
}
.category .products {
  margin-top: 50px;
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 15px;
  z-index: 999;
  background-color: white;
}
@media (max-width: 767px) {
  .back-to-top {
    display: none;
  }
}
.back-to-top .white-product img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.back-to-top .white-flex {
  justify-content: space-between;
  align-items: center;
}
.back-to-top .white-flex .prices {
  font-weight: 700;
  font-size: 18px;
  color: #298C89;
  margin-right: 20px;
}
.back-to-top .white-flex .prices del {
  color: grey;
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}
.back-to-top .white-flex .flex-item {
  display: flex;
  align-items: center;
}

.variant-select-wrapper .select2-container--default .select2-selection--single {
  border: 1px solid #BABABA;
  border-radius: 10px;
  background-color: white;
}

.select2-results .variant-option, .variant-select-wrapper .variant-option {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 15px 15px;
}
.select2-results .variant-option .title, .variant-select-wrapper .variant-option .title {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  color: #0D3F5E;
  margin-right: 15px;
}
.select2-results .variant-option .prices, .variant-select-wrapper .variant-option .prices {
  color: #298C89;
  font-weight: 700;
  white-space: nowrap;
  font-size: 18px;
}
.select2-results .variant-option .prices del, .variant-select-wrapper .variant-option .prices del {
  font-size: 16px;
  color: grey;
  margin-right: 5px;
}
.select2-results .variant-option .prices ins, .variant-select-wrapper .variant-option .prices ins {
  text-decoration: none;
}

.select2-selection--single {
  height: 100% !important;
}

.select2-selection__rendered {
  word-wrap: break-word !important;
  text-overflow: inherit !important;
  white-space: normal !important;
}

.buuble-reviews {
  text-decoration: none;
  margin-left: 16px;
  margin-top: 0;
}
.buuble-reviews .bubble {
  margin-left: 0;
}
.buuble-reviews:hover {
  color: #298C89;
  text-decoration: none;
}

@media (max-width: 991px) {
  .product-detail {
    margin-top: 0px;
  }
}
.product-detail .price-section .prices {
  display: flex;
  align-items: center;
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #298C89;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .product-detail .price-section .prices {
    justify-content: center;
  }
}
.product-detail .price-section .prices del {
  color: grey;
  font-size: 18px;
  font-weight: 500;
  order: 2;
}
.product-detail .price-section .prices ins {
  text-decoration: none;
  order: 1;
}
.product-detail .price-section > * {
  margin-bottom: 15px;
}
.product-detail .image-wrapper {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 100% 0 0 0; /* 34.37% = 100 / (w / h) = 100 / (640 / 220) */
}
.product-detail .image-wrapper > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-detail .image-wrapper.image-png {
  object-fit: contain;
  z-index: 1;
}
.product-detail .image-wrapper.image-png > img {
  object-fit: contain;
}
.product-detail .image-wrapper.image-png::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 999px;
}
.product-detail .image-wrapper .badges {
  position: absolute;
  left: 5px;
  top: 5px;
}
.product-detail .image-wrapper .badges .product-buttons {
  left: 0;
  top: 95px;
}
.product-detail .image-wrapper .badges .product-buttons a, .product-detail .image-wrapper .badges .product-buttons span {
  text-decoration: none;
  white-space: nowrap;
}
.product-detail .image-wrapper .badges .product-buttons a:nth-of-type(1n+3), .product-detail .image-wrapper .badges .product-buttons span:nth-of-type(1n+3) {
  display: flex;
}
.product-detail .image-wrapper .badges .img-badge {
  position: relative;
  top: initial;
  left: initial;
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.product-detail .product-detail-content > *:not(:last-child) {
  margin-bottom: 30px;
}
.product-detail .product-icons {
  display: inline-flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.product-detail .product-icons .product-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100px;
  flex: 1;
}
.product-detail .product-icons .product-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 5px;
}
.product-detail .main-product {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .product-detail .main-product {
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
  }
  .product-detail .main-product .product-detail-img {
    margin-bottom: 50px;
  }
}

.text-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  background-color: #D09000;
  border-radius: 999px;
  line-height: 1.1;
  font-size: 14px;
}
.text-badge.text-badge-discount {
  background-color: #209B20;
  flex-direction: column;
}
.text-badge.text-badge-discount .discount-title {
  font-weight: 500;
}
.text-badge.text-badge-discount .discount-perc {
  font-size: 28px;
}
.text-badge::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px dashed white;
  border-radius: 999px;
}

.no-review {
  margin: 50px 0;
  font-size: 24px;
  text-align: center;
}

.review.hidden {
  display: none;
}
.review .review-text h5 {
  font-weight: 700;
}

.product-page h3.title-product {
  margin-bottom: 20px;
}
.product-page > *:not(:last-child) {
  margin-bottom: 100px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-right: 30px;
}
.filter-group .filter {
  font-size: 16px;
  border-radius: 5px;
  padding: 2px 8px;
}
.filter-group .filter:hover {
  background-color: #298C89;
  color: white;
}
.filter-group .filter.active {
  background-color: #0D3F5E !important;
  color: white !important;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 450px !important;
}

.main-content .row {
  margin-bottom: 60px;
}
.main-content .row h1, .main-content .row h2 {
  background-color: #298C89;
  color: white;
  padding: 15px 30px;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .main-content .row > :first-child h1, .main-content .row > :first-child h2 {
    margin-right: -60px;
  }
}
@media (min-width: 992px) {
  .main-content .row > :last-child h1, .main-content .row > :last-child h2 {
    margin-left: -60px;
  }
}
.main-content img {
  margin: 15px 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 58px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 8px 6px 0 6px !important;
  margin-left: -8px !important;
  margin-top: -4px !important;
}

.subtitle-product {
  font-size: 16px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
}

.products-wrapper.owl-carousel .owl-nav {
  opacity: 0;
  pointer-events: none;
  transition: all 0.15s ease-in;
}
.products-wrapper.owl-carousel:hover .owl-nav {
  opacity: 1;
  pointer-events: initial;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent;
  color: #0D3F5E;
}

.product-variant-list .product-variant {
  transition: all 0.15s ease-in;
  display: flex;
  cursor: pointer;
  margin-bottom: 5px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  outline-offset: 2px;
}
.product-variant-list .product-variant .product-variant-desc {
  flex: 3;
  padding: 15px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
}
.product-variant-list .product-variant .product-variant-desc input {
  margin-right: 10px;
}
.product-variant-list .product-variant .product-variant-desc h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .product-variant-list .product-variant .product-variant-desc h3 {
    font-size: 15px;
  }
}
.product-variant-list .product-variant .product-variant-desc .discount-badge {
  display: inline-block;
  background-color: #298C89;
  color: white;
  font-weight: 600;
  border-radius: 3px;
  font-size: 13px;
  padding: 1px 10px;
  background: linear-gradient(135deg, rgb(23, 161, 158) 0%, rgb(125, 199, 144) 100%);
}
@media (max-width: 767px) {
  .product-variant-list .product-variant .product-variant-desc .discount-badge {
    padding: 0px 5px;
    font-size: 12px;
  }
}
.product-variant-list .product-variant .product-variant-price {
  flex: 1;
  padding: 15px;
  background-color: #298C89;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .product-variant-list .product-variant .product-variant-price {
    flex: 2;
  }
}
.product-variant-list .product-variant .product-variant-price span {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .product-variant-list .product-variant .product-variant-price span {
    font-size: 18px;
  }
}
.product-variant-list .product-variant .product-variant-price span.old-price-var {
  font-size: 15px;
  font-weight: 500;
  text-decoration: line-through;
  color: white;
  margin-top: 0;
}
.product-variant-list .product-variant::before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  position: absolute;
  border-left: 0px solid #298C89;
}
.product-variant-list .product-variant.selected {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.product-variant-list .product-variant.selected::before {
  border-left: 5px solid #298C89;
}
.product-variant-list .product-variant.selected .product-variant-desc {
  background: linear-gradient(135deg, rgba(23, 161, 158, 0.3) 0%, #f8f8f8 90%);
}
.product-variant-list .product-variant:hover {
  outline: 1px solid #0D3F5E !important;
}

.btn-buuble input.quantity {
  width: 80px;
  margin: 0;
  margin-right: 15px;
}

.navy-blue-section .table-responsive:not(:last-child) {
  margin-bottom: 15px;
}
.navy-blue-section table {
  border-left: 0;
  border-right: 0;
  max-width: 100%;
}
.navy-blue-section table tr td, .navy-blue-section table tr th {
  background-color: transparent;
  color: white;
}

.comment-container.hidden {
  display: none;
}
.comment-container .comment-top {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 25px;
}
.comment-container .comment-top .comment-left {
  flex: 1;
  margin-right: 30px;
}
.comment-container .comment-top .comment-left img {
  object-fit: cover;
}
.comment-container .comment-top .comment-left .comment-author {
  margin: 0;
}
.comment-container .comment-hidden-text {
  display: none;
}
.comment-container .dropdown-icon {
  transition: all 0.15s ease-in;
}
.comment-container.active .dropdown-icon {
  transform: rotate(180deg);
}

.comments-section .load-more {
  text-align: center;
}

.load-more-link {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.load-more-link:active {
  outline: none;
}

.download-doc {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: white;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.15s ease-in;
}
.download-doc .desc {
  margin-right: 15px;
  flex: 1;
}
.download-doc .desc h3 {
  font-size: 16px;
  font-weight: 600;
}
.download-doc:hover {
  text-decoration: none;
  background-color: #298C89;
  color: white;
}/*# sourceMappingURL=style.css.map */