
.detail-price-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 6px 15px;
  padding-left: 40px;
  /* margin-top: -15px; */
  line-height: 1.4;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  /* background-color: var(--color-primary); */
  cursor: pointer;
  transition: background-color 250ms ease-out;
  position: relative;
}

.detail-price-btn.detail-price-btn--card {
  padding: 3px 15px;
  padding-left: 40px;
}

.detail-price-btn:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  display: block;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/user/documents/upload/icons/thumbs-up.png);
}

.detail-price-btn-img {
  max-width: 60px;
  margin-left: 10px;
}

.detail-price-btn--card:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  display: block;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/user/documents/upload/icons/credit-card.png);
}

.detail-price-btn--link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .detail-price-btn {
    font-size: 16px;
  }
}

.detail-price-btn-block {
  border: 1px solid var(--color-primary);
  padding: 3px 5px;
  border-radius: 5px;
  margin-top: 10px;
}

/* Modal */
/* Modal block */
.modal__overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.modal__overlay.is-active {
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}

.modal {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  width: auto;
  height: 0;
  padding: 3rem 0 2rem;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

@media (min-width: 771px) {
  .modal {
    padding: 6rem 0 4rem;
  }
}

.modal.is-active {
  visibility: visible;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.modal.is-active .modal__box {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal.modal__hidden .modal__close,
.modal.modal__hidden .modal__scroll {
  display: none;
}

.modal__scroll {
  width: 100%;
  margin: auto 1rem;
}

.modal__box {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

@media (min-width: 576px) {
  .modal__box {
    width: 600px;
  }
}

.modal__close {
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__close:after {
  font-family: "apollo" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  font-size: 20px;
  text-indent: 0;
  left: 50%;
  top: 50%;
  color: #c4cad5;
  transform: translate(-50%, -50%);
  content: "\e921";
}

.modal__close:focus:after,
.modal__close:hover:after {
  color: var(--color-primary);
}

.modal__body {
  padding: 6rem 3rem 5rem;
  background-color: white;
  border-radius: 8px;
}

.modal__body .txt-c {
  text-align: center;
}

.modal__body .txt-c #formContact fieldset .submit-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.modal-title {
  display: inline-block;
  position: relative;
  color: #0f0f0f;
  font-weight: 700;
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}

.modal-title:after,
.modal-title:before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 30px;
  height: 30px;
}

.modal-title:after {
  right: -18px;
  top: -5px;
  background-image: url("https://www.comfyhome.cz/user/documents/upload/fotozolo-right-shape.png");
}

.modal-title:before {
  left: -18px;
  bottom: -5px;
  background-image: url("https://www.comfyhome.cz/user/documents/upload/fotozolo-left-shape.png");
}

.modal-subtitle {
  color: #7c7e8f;
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .modal-subtitle {
    font-size: 16px;
  }
  .modal-title {
    font-size: 32px;
  }
  .product .p {
    padding: 30px 20px 85px;
  }
}

@media (max-width: 480px) {
  .variant-table .table-row .table-col.variant-name-wrapper {
    flex-wrap: wrap;
  }
  .variant-table .table-row .table-col.variant-name-wrapper > div:nth-child(2) {
    flex: 1;
  }
  .apollo-mehub .mehub-bonus-product-detail-container {
    margin-left: 15px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (min-width: 480px) {
  .banners-top-block .banner-wrapper {
    width: 33.33%;
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }
}

@media (min-width: 768px) {
  #header .site-name {
    display: flex;
    align-items: center;
  }

  #header .site-name a img {
    max-height: 120px;
    max-width: 200px;
  }
  .is-header-fixed.is-header-hidden #header .site-name a img {
    max-height: 60px;
  }
}

@media (max-width: 767px) {
  .top-navigation-bar .site-name a img {
    max-height: 40px;
  }
}

@media (min-width: 992px) {
  .header-top {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .popup-widget.login-widget {
    top: 130px;
  }

  .popup-widget.cart-widget {
    top: 130px;
  }

  .admin-logged .popup-widget.login-widget {
    top: 155px;
  }

  .admin-logged .popup-widget.cart-widget {
    top: 155px;
  }
}

@media (min-width: 768px) {
  .top-navigation-bar .container > div.top-navigation-contacts {
    top: 0;
    height: 49px;
  }
  .top-category-block .menu-level-2 > li {
    flex: 0 0 33.33%;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .top-category-block .menu-level-2 > li {
    flex: 0 0 25%;
    margin-bottom: 20px;
  }
}

body {
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .products-block .p .flags-default {
    left: -15px;
    top: -25px;
  }
}

.recapitulation-single > strong span,
.cart-table tr .p-availability span,
.cart-table tr .p-availability strong,
.variant-table .table-row .table-col.variant-name-wrapper span {
  text-transform: none;
}

.category-header input[type="radio"] + label,
.products-block .availability {
  text-transform: none;
}

.h1,
.h2,
.h3,
.h4 {
  font-family: "Urbanist", sans-serif !important;
}
.welcome h1 {
  font-family: "Urbanist", sans-serif !important;
}

.h5,
.h6,
.p {
  font-family: "Urbanist", sans-serif !important;
}

.p {
  font-family: "Urbanist", sans-serif !important;
}

.name {
  font-family: "Urbanist", sans-serif !important;
}

.h4.homepage-group-title {
  font-family: "Urbanist", sans-serif !important;
}

.extended-banner-title {
  font-family: "Urbanist", sans-serif !important;
}

.btn.btn-cart {
  font-family: "Urbanist", sans-serif !important;
}

.flag.flag-action {
  font-family: "Urbanist", sans-serif;
}
.flag.flag-tip {
  font-family: "Urbanist", sans-serif;
}
.flag.flag-new {
  font-family: "Urbanist", sans-serif;
}
.flag.flag-gift {
  font-family: "Urbanist", sans-serif;
}
.flag.flag-custom1 {
  font-family: "Urbanist", sans-serif;
}
.flag.flag-discount {
  font-family: "Urbanist", sans-serif;
}

#footer {
  font-family: "Urbanist", sans-serif;
}

h5,
h6,
.h5,
.h6,
.navigation-in a,
.price strong,
.products-block.products .p .price span,
.btn:not(.cart-count),
a.btn:not(.cart-count),
.fav-cat li a,
.user-action-tabs li a,
.cart-widget .popup-widget-inner::before,
.cart-widget-product-name a,
.cart-widget-product > span,
.search-whisperer ul::before,
.search-whisperer .p-info span,
.search-whisperer .price,
.search-box::before,
.search-whisperer-documents a,
.box-bg-variant .categories a,
.box-filters::before,
.param-filter-top::before,
.subcategories.with-image li a .text,
.name,
.category-header label,
.pagination > a,
.pagination > strong,
.search-results-groups
  #search-group-categories
  .search-results-group-list
  ul
  li
  a,
.availability-value,
.price-final,
.p-gifts-heading,
.p-gift-name,
.shp-tabs-holder ul.shp-tabs li a,
.all-param span,
#productsAlternative::before,
.rate-average,
.vote-form::before,
#variants::before,
.var-dostupnost,
.variant-name,
.vote-title,
ol.cart-header li a,
ol.cart-header li strong,
.cart-table tr td.p-name a,
.price-wrapper,
a.cart-related-name,
.empty-cart-boxes ul li a,
.payment-info,
.payment-shipping-price,
.cart-item-name,
.cart-item-price,
.order-summary-item.helper,
.recapitulation-single,
.reca-number,
.id--15 .cart-table .p-name,
.id--15 .cart-table .p-price,
#register-form > fieldset .form-group:not(.consents) label,
a.login-btn.facebook,
a.login-btn.google,
ul.manufacturers ul li,
.search-whisperer-empty,
.menu-helper > ul > li a,
.filtrovat,
.tab-mobil,
.free-gift-name,
.id--9 .free-product-gifts-wrapper::before,
.vote-form > form::before,
#footer .contact-box::before {
  font-family: "Urbanist", sans-serif !important;
}

.external-fonts-loaded,
.blank-mode,
body,
html,
.external-fonts-loaded body,
body.blank-mode,
.category-appendix,
.empty-content-404 h1,
.dropdown-menu > li > a,
.header-top .btn.cart-count .cart-price,
.news-item-widget h5 {
  font-family: "Urbanist", sans-serif !important;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  font-family: "Urbanist", sans-serif !important;
}

.btn:not(.cart-count) {
  font-family: "Urbanist", sans-serif !important;
}

.flag.flag-new {
  background-color: #e1e8d8;
  color: #0a263d;
}

.row-filter.multiple-columns-body
  .filters-wrapper
  .filters
  .filter-sections
  .filter-section
  h4,
.row-filter.one-column-body
  .filters-wrapper
  .filters
  .filter-sections
  .filter-section
  h4,
.row-filter.multiple-columns-body .filters-wrapper .filters .slider-wrapper h4,
.row-filter.one-column-body .filters-wrapper .filters .slider-wrapper h4 {
  text-transform: none;
}

.flag {
  text-transform: none;
}

.flags-extra {
  display: none;
}

.category-perex blockquote {
  margin: 0;
}

.widget-parameter-wrapper {
  overflow: visible;
}

/* .widget-parameter-wrapper .widget-parameter-more.visible {
  display: none;
} */

.widget-parameter-wrapper .widget-parameter-list {
  padding: 0;
}

.widget-parameter-wrapper .widget-parameter-list {
  width: 100%;
  /* margin: 0 -25px; */
}

.widget-parameter-wrapper {
  position: relative;
  left: auto;
  width: 100%;
  bottom: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

.products-block .widget-parameter-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.products-block .p-bottom > div {
  /* justify-content: center; */
}

.widget-parameter-wrapper .widget-parameter-list {
  width: auto;
}

.widget-parameter-wrapper .widget-parameter-value a {
  background-color: white;
  /* color: var(--color-secondary); */
  border: 1px solid #d5e0e8;
}

.widget-parameter-wrapper .widget-parameter-value span,
.widget-parameter-wrapper .widget-parameter-value a {
  min-height: 35px;
  border-radius: 8px;
}

.product .p {
  box-shadow: none;
  border: 1px solid #d5e0e8;
  border-radius: 10px;
}

.flag {
  border-radius: 8px;
}

.product .p-bottom {
  margin-bottom: 15px;
}

.footer-item.footer-item-newsletter {
  background: #efefef;
  border: 1px solid #d5e0e8;
}

.footer-item.footer-item-newsletter:after {
  display: none;
}

.footer-item.footer-item-newsletter .form-group.consents label a,
.footer-item.footer-item-newsletter .form-group.consents label,
.footer-item.footer-item-newsletter h4 span {
  color: #0a263d;
}

.support .contact-box ul li a {
  font-size: 18px;
}

.sidebar-inner .box-rating,
.sidebar-inner .box-support {
  box-shadow: none;
  background-color: white;
  border: 1px solid #d5e0e8 !important;
}

.support .contact-box ul li a,
.support .contact-box ul li > span:before,
.support .contact-box ul li,
.support__title {
  color: #0a263d;
}

.btn.btn-primary,
a.btn.btn-primary,
.btn.btn-primary,
a.btn.btn-primary {
  background-color: white;
  border: 1px solid #d5e0e8;
  color: #0a263d;
}

.btn.btn-primary:hover,
a.btn.btn-primary:hover,
.btn.btn-primary:hover,
a.btn.btn-primary:hover {
  color: white;
  border: 1px solid #256a52;
  background-color: #256a52;
}

#content .btn.unveil-button:before {
  color: #0a263d;
}

.btn.btn-default,
a.btn.btn-default {
  color: #0a263d;
}

.btn.btn-secondary,
a.btn.btn-secondary {
  background-color: white;
  border: 1px solid #d5e0e8;
  color: #0a263d;
}

.btn.btn-secondary:hover,
a.btn.btn-secondary:hover {
  color: white;
  border: 1px solid #256a52;
  background-color: #256a52;
}

.btn.btn-default,
a.btn.btn-default {
  background-color: white;
  border: 1px solid #d5e0e8;
  color: #0a263d;
}

.btn.btn-default:hover,
a.btn.btn-default:hover {
  color: white;
  border: 1px solid #256a52;
  background-color: #256a52;
}

.instagram-follow-btn span a {
  box-shadow: none;
  color: #0a263d;
  border: 1px solid #d5e0e8;
  background-color: white;
}

.instagram-follow-btn span a:hover {
  color: white;
  border: 1px solid #256a52;
  background-color: #256a52;
}

.footer-item.footer-item-newsletter .compact-form .btn {
  box-shadow: none;
  color: white;
}

#footer .contact-box a.btn {
  color: #0a263d;
}

#footer .contact-box a.btn:hover {
  color: white;
}

.widget-parameter-wrapper .widget-parameter-value {
  margin-right: 6px;
  margin-bottom: 6px;
}

.btn,
a.btn {
  box-shadow: none;
}

.p-info-grid .detail-grid-title {
  display: none;
}

.p-info-wrapper .p-final-price-wrapper .price-final {
  display: block;
}

.variant-image .flags {
  left: -15px;
  top: -15px;
}

.p-info-wrapper .availability-value {
  text-transform: none;
  font-weight: 700;
}

.p-info-grid .detail-grid-item {
  width: 100%;
}

.delivery-time-block .shipping-options {
  display: block;
  margin-top: 5px;
}

.p-info-grid .detail-grid-item {
  margin-bottom: 25px;
}

.extras-wrap .price-range {
  background-color: white;
  /* border: 1px solid var(--color-tertiary); */
}

.p-info-wrapper .availability-value,
.p-info-wrapper .detail-parameters {
  margin-bottom: 10px;
}

.order-summary-bottom,
.order-summary-top,
.extras-wrap .extra-content,
.extras-wrap .extra-item.is-free-shipping .extra-content,
.checkout-box-wrapper,
.summary-wrapper,
.discount-coupon {
  background-color: white;
  border: 1px solid var(--color-tertiary);
}

.extras-wrap .price-range > div {
  border-radius: 10px;
  background-color: #f5f6f8;
}

.middle-banners-wrapper .extended-banner-title:not(:empty),
.body-banners .extended-banner-title:not(:empty) {
  font-size: 26px;
}

.vote-product-name,
.vote-title,
.vote-name {
  font-size: 18px;
}

.row-filter.multiple-columns-body .filters-wrapper .filters .filter-headline,
.row-filter.one-column-body .filters-wrapper .filters .filter-headline {
  font-size: 15px;
}

.row-filter.multiple-columns-body
  .filters-wrapper
  .filters
  .filter-sections
  .filter-section
  h4,
.row-filter.one-column-body
  .filters-wrapper
  .filters
  .filter-sections
  .filter-section
  h4,
.row-filter.multiple-columns-body .filters-wrapper .filters .slider-wrapper h4,
.row-filter.one-column-body .filters-wrapper .filters .slider-wrapper h4 {
  font-size: 14px;
}

ol.cart-header li a span::before,
ol.cart-header li strong span::before {
  font-size: 16px;
}

@media (min-width: 480px) {
  .order-summary-top h4 {
    font-size: 20px;
  }
  .footer-banners .extended-banner-title:not(:empty) {
    font-size: 18px;
  }
  .p-short-description p {
    font-size: 14px;
  }
  .p-info-wrapper .btn.btn-conversion,
  .p-info-wrapper a.btn.btn-conversion {
    font-size: 18px;
    min-width: 210px;
  }
  .p-info-wrapper .quantity input {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .payment-shipping-price {
    font-size: 14px;
  }

  .co-box.co-delivery-method h4::before {
    font-size: 32px;
  }
  .co-box h4 {
    font-size: 20px;
  }
  .cart-header__headline .h4 {
    font-size: 32px;
  }
  .p-info-wrapper .p-final-price-wrapper .price-final {
    font-size: 24px;
    margin: 8px 0;
  }
  .p-info-wrapper .p-final-price-wrapper .price-additional {
    font-size: 14px;
  }
  .category-header input[type="radio"] + label {
    font-size: 14px;
  }

  .p-info-headline h1 {
    font-size: 32px;
  }

  .category-header div {
    font-size: 14px;
  }

  .category-title {
    font-size: 32px;
  }

  .welcome h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .welcome p {
    font-size: 18px;
  }

  #footer h4 {
    font-size: 18px;
  }

  h4.homepage-group-title,
  .h4.homepage-group-title {
    font-size: 32px;
  }
  .products-block.products .p .name {
    font-size: 18px;
  }
  .navigation-in ul li a {
    padding-left: 20px;
  }
  body .hodnoceni:before {
    font-size: 32px;
  }
  body .dkLabVisitedProductsBox h2,
  .products-related-block h2,
  .products-alternative-block h2 {
    font-size: 32px;
  }
  .custom-footer .custom-footer-left-panel .footer-item {
    width: 80%;
    flex: 0 0 80%;
  }
}

@media (min-width: 992px) {
  ol.cart-header li {
    font-size: 18px;
  }
  .welcome {
    padding: 40px 60px 40px 60px;
  }
  .custom-footer .custom-footer-left-panel .footer-item {
    width: 70%;
    flex: 0 0 70%;
  }
}

@media (min-width: 1200px) {
  .custom-footer .custom-footer-left-panel .footer-item {
    width: 60%;
    flex: 0 0 60%;
  }
  .btn.btn-conversion,
  a.btn.btn-conversion {
    font-size: 18px;
  }
  .shp-tabs-holder ul.shp-tabs li a {
    font-size: 18px;
  }
  .footer-item.footer-item-newsletter h4 span {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .partners__item {
    width: calc(100% / 4);
  }
}

.subcategories li a,
.partners__content,
.news-item,
.votes-wrap .slider-group-reviews,
.in-index .rate-wrapper.unveil-wrapper .rate-wrap,
.top-category-block .menu-content {
  box-shadow: none;
  border: 1px solid #d5e0e8;
}

.subcategories.with-image li a .text {
  font-weight: 700;
}

.products-block.products .p .name {
  font-weight: 400;
}

.products-block .availability {
  font-size: 10px;
  font-weight: 700;
}

@media (min-width: 480px) {
  .products-block .availability {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .products-block .availability {
    font-size: 14px;
  }
}

.flag {
  font-weight: 700;
}

body .hodnoceni {
  margin: 20px auto 20px;
}

.search .btn.btn-default,
.search a.btn.btn-default {
  border: 0;
  background-color: #f5f6f8 !important;
  color: #f5f6f8 !important;
}

.navigation-in ul li a {
  text-transform: none;
}

#footer .contact-box p {
  line-height: 2;
  color: #7c7e8f;
  margin-bottom: 5px;
}

.top-navigation-contacts a.project-email {
  /* display: none; */
}

.top-navigation-contacts .support-block {
  text-align: center;
  padding: 0 5px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.top-navigation-contacts .support-block strong {
  display: block;
  color: var(--color-primary);
  font-family: "Roboto";
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

.top-navigation-contacts .support-block .support-time {
  color: #7c7e8f;
  font-size: 12px;
  margin-top: 2px;
}

.top-navigation-contacts a:not(.project-email) {
  flex-wrap: wrap;
  max-width: 180px;
}

.top-navigation-contacts a:not(.project-email) span.support-time {
  display: block;
  width: 100%;
  margin-left: 27px;
  font-size: 12px;
}

.top-navigation-contacts a:not(.project-phone) {
  color: #7c7e8f;
  display: inline-flex;
  align-items: center;
  padding: 1rem 5px;
}

.top-navigation-contacts a:not(.project-phone) span {
  display: inline;
  color: #7c7e8f;
  margin-left: 8px;
}

.is-header-scrolling .top-navigation-contacts a:not(.project-phone) {
  padding: 1rem 0;
}

.is-header-scrolling .top-navigation-contacts a:not(.project-phone) span {
  font-size: 12px;
}

@media (min-width: 992px) {
  .top-navigation-contacts .support-block strong {
    font-size: 14px;
  }
  .top-navigation-contacts .support-block .support-time {
    font-size: 12px;
  }
}

.is-visible-header-contact .navigation-buttons .top-navigation-contacts {
  display: none;
}

.is-header-scrolling .navigation-buttons .top-navigation-contacts {
  display: flex;
  top: calc(100% + 10px) !important;
}

.navigation-buttons .top-navigation-contacts {
  position: absolute;
  right: 0;
  height: 30px;
  align-items: center;
  background-color: #f5f6f8;
  flex-basis: 100%;
  padding: 0 30px;
  z-index: 99;
  text-align: left;
  display: none;
  top: calc(100% + 10px);
  border-radius: 15px 15px;
  right: 0;
}

@media (max-width: 992px) {
  .navigation-buttons .top-navigation-contacts {
    display: none !important;
  }
  .top-navigation-bar .container > div.top-navigation-contacts {
    height: 50px;
  }
}
@media (min-width: 992px) {
  .navigation-buttons .top-navigation-contacts {
    right: 15px;
    height: 45px;
    padding: 0 10px;
  }
}

.top-navigation-bar .container > div.top-navigation-contacts {
  /* top: 50px; */
}

.top-navigation-contacts a:not(.project-email) {
  color: #7c7e8f;
  display: inline-flex;
  align-items: center;
  padding: 1rem 10px;
}

.top-navigation-contacts a:not(.project-email) span {
  display: inline;
  font-size: 12px;
  color: #7c7e8f;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .top-navigation-contacts a:not(.project-email) span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .top-navigation-contacts .support-block strong {
    margin-bottom: 5px;
    margin-top: 10px;
  }
  #footer .site-name {
    display: none;
  }
  .footer-icons .footer-icon {
    max-height: 40px;
  }
  .footer-icons .footer-icon img {
    max-height: 40px;
  }
}

@media (min-width: 768px) {
  #footer.no-newsletter .site-name {
    left: 0;
  }
  .top-navigation-bar .container > div {
    flex: 1 1 55%;
  }
  .cart-table tr.related {
    /* display: table-row; */
  }
  #footer .custom-footer__articles .accordion__content ul {
    column-count: 2;
  }
}

.cart-table tr .p-name .main-link.show-related,
.cart-table tr .p-name a.show-related {
  display: none;
}

.footer-flag {
}

.footer-flag__text {
  margin-left: 10px;
  color: #0a263d;
  display: inline-block;
  padding: 5px 0;
  line-height: 1.4;
  color: #7c7e8f;
}

.footer-flag a {
}

.footer-flag a:hover .footer-flag__text {
  color: #0a263d;
}

.footer-flag img {
}

.p-image-wrapper .flag.flag-freeshipping,
.flag.flag-freeshipping {
  background-color: #009901;
}

body:not(.after-load) .order-summary-inner {
  background-color: white;
  border: 1px solid var(--color-tertiary);
  border-radius: 20px;
}

@media (min-width: 480px) {
  .order-summary h4 {
    font-size: 20px;
  }
}

.next-step {
  background-color: white;
  padding-top: 20px;
}

.order-summary-bottom {
  border-radius: 20px;
}

.id--16 .cart-inner .consents,
.id--17 .cart-inner .consents {
  background-color: white;
}

@media (max-width: 767px) {
  .carousel .extended-banner-text:not(:empty) {
    font-size: 18px;
  }
  .carousel-inner > .item.carousel-item-banner--has-text img {
    height: auto;
    object-fit: cover;
  }

  .one-column-body .carousel .extended-banner-texts {
    text-align: center;
    min-width: 100%;
  }

  .order-summary-bottom {
    margin-bottom: 15px;
  }
  .top-navigation-contacts a:not(.project-email) span.support-time {
    margin-left: 37px;
  }
  .carousel-inner a {
    position: relative;
  }
  .carousel-inner .carousel-overlay {
    display: none;
  }
  .carousel {
    background-color: #0a263d;
    margin: 0 -20px 30px;
  }
  .banners-row .col-sm-8 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .carousel-inner a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
  }
}

.carousel-inner a {
  display: block;
}

@media (min-width: 768px) {
  .cart-header-block {
    margin-bottom: 10px;
  }
  .order-summary-bottom {
    padding: 20px 15px 10px;
    margin-bottom: 15px;
  }
  body:not(.after-load) .order-summary-inner {
    margin-bottom: 15px;
  }
  .welcome h1 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .welcome p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .welcome {
    padding: 40px 40px 40px 40px;
  }
}

.navigation-in ul.menu-level-2 a,
input[type="checkbox"] + label,
input[type="radio"] + label,
.recapitulation-single > strong,
.checkout-box-wrapper h4,
.cart-item-price,
.cart-item-name a,
.co-box h4,
.cart-table tr .p-total .price-final,
.cart-table tr .p-name .main-link,
.cart-table tr .p-name a,
.cart-header__headline .h4,
.popup-widget-inner,
.cart-widget-title,
.categories a,
.box-bg-variant .categories a,
.box.box-categories > h4,
body ol.top-products.dkLabVisitedProducts li a,
ol.top-products li a,
.p-info-grid .detail-grid-title,
.p-info-wrapper .p-final-price-wrapper .price-final,
.welcome p,
.p .name,
.benefitBanner__data,
#footer ul a,
.p-detail-info a,
.breadcrumbs,
.breadcrumbs a,
.row-filter.multiple-columns-body
  .filters-wrapper
  .filters
  .filter-sections
  .filter-section
  h4,
.row-filter.one-column-body
  .filters-wrapper
  .filters
  .filter-sections
  .filter-section
  h4,
.row-filter.multiple-columns-body .filters-wrapper .filters .slider-wrapper h4,
.row-filter.one-column-body .filters-wrapper .filters .slider-wrapper h4,
ol.cart-header li a,
ol.cart-header li strong,
.subcategories li a .text,
.menu-helper > ul > li a,
.menu-helper > span,
.filters-wrapper .slider-wrapper h4:after,
.mobile .filters-wrapper .slider-wrapper h4:after,
.subcategories li a,
.row-filter.multiple-columns-body .filters-wrapper .filters .filter-headline,
.row-filter.one-column-body .filters-wrapper .filters .filter-headline,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.category-header input[type="radio"] + label,
.link-icon,
a.link-icon,
#cboxClose:before,
.p-code,
.widget-parameter-wrapper .widget-parameter-value span,
.widget-parameter-wrapper .widget-parameter-value a,
.navigation-in > ul > li > a,
.back-shopping-link .next-step-back,
.extras-wrap .extra span,
.cart-table tr .p-price .price-final,
.checkout-box-wrapper .contact-box ul li a,
.back-shopping-link .next-step-back::before,
.price-wrapper .price.price-secondary,
.price-wrapper .price-label,
.payment-info b,
.price-wrapper .price-label.price-primary,
.cart-table tr.removeable .remove-item:before,
.cart-item-amount .unit-value,
.filter-total-count,
.in-registration-login
  .content-inner
  .box-bg-transparent.co-box.co-registration:first-of-type
  input[type="radio"]
  + label,
.form-group.consents label,
.radio-wrapper
  input[type="radio"]
  + label
  .sublabel
  a
  ol.cart-header
  li.completed
  a,
ol.cart-header li.completed strong,
body {
  color: #0a263d;
}

ol.cart-header li a span:before,
ol.cart-header li strong span:before {
  background-color: #0a263d;
}

#cboxClose.cboxClose--shipping,
.shipping-options-popup h1:not(.advanced-order-suggestion),
.shipping-options-popup .h1:not(.advanced-order-suggestion),
.advanced-order .h1:not(.advanced-order-suggestion) {
  background-color: #256a52 !important;
}

/* #footer .site-name a img {
  display: none;
}

.after-load #footer .site-name a img {
  display: block;
} */

.detail-price-btn {
  /* background-color: #1e5d90; */
}

.detail-price-btn:hover {
  /* background-color: #1e5d90; */
}

.top-navigation-bar .container > div.top-navigation-contacts {
  background-color: transparent;
}

.search .btn.btn-default,
.search a.btn.btn-default,
.search input[type="search"].form-control {
  background-color: #fdfbf8 !important;
}

.search .btn.btn-default,
.search a.btn.btn-default {
  color: #fdfbf8 !important;
}

body #footer.no-newsletter,
.top-navigation-bar,
#header {
  background-color: #fdfbf8;
}

.flag.flag-custom3 {
  background-color: #256a52 !important;
  color: #fff;
}

.flag.flag-custom2 {
  background-color: #fcf0da !important;
  color: #0a263d;
}

.flag.flag-action {
  background-color: #e14239;
}

@media (min-width: 992px) {
  body:not(.multiple-columns-body) .p-image-wrapper {
    width: 55%;
    padding-right: 0;
  }

  body:not(.multiple-columns-body) .p-info-wrapper {
    width: 45%;
  }
}

@media (min-width: 1200px) {
  .p-image #wrap img {
    width: 100%;
  }
  body:not(.multiple-columns-body) .p-image-wrapper {
    width: 60%;
    padding-right: 30px;
  }

  body:not(.multiple-columns-body) .p-info-wrapper {
    width: 40%;
  }
}

@media (min-width: 1600px) {
  body:not(.multiple-columns-body) .p-image-wrapper {
    width: 60%;
  }
  body:not(.multiple-columns-body) .p-info-wrapper {
    width: 40%;
  }
  /* .container {
    width: 100%;
  } */
}

@media (min-width: 1800px) {
  .container {
    width: 1680px;
  }
  .popup-widget {
    margin-left: 480px;
  }
  .popup-widget.login-widget {
    margin-left: 340px;
  }
}

@media (min-width: 2000px) {
  .container {
    width: 1880px;
  }
  .top-category-block .menu-level-2 > li {
    flex: 0 0 calc(100% / 8);
    margin-bottom: 20px;
  }
  .popup-widget {
    margin-left: 580px;
  }
  .popup-widget.login-widget {
    margin-left: 430px;
  }
}

@media (min-width: 2200px) {
  .container {
    width: 2080px;
  }
  .popup-widget {
    margin-left: 680px;
  }
  .popup-widget.login-widget {
    margin-left: 530px;
  }
}

/* @media (min-width: 2400px) {
  .container {
    width: 2380px;
  }
  .popup-widget {
    margin-left: 830px;
  }
  .popup-widget.login-widget {
    margin-left: 690px;
  }
}

@media (min-width: 2800px) {
  .container {
    width: 2680px;
  }
  .popup-widget {
    margin-left: 830px;
  }
  .popup-widget.login-widget {
    margin-left: 680px;
  }
} */

/* detail update */

.p-info-grid .detail-availability-block .delivery-time-label {
  position: relative;
  text-transform: lowercase;
  margin-right: 0;
  letter-spacing: 0;
  font-size: 14px;
}

.p-info-grid .detail-availability-block .availability-label:after {
  content: ",";
}

.p-info-grid .detail-availability-block .delivery-time {
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .p-info-grid .detail-availability-block .delivery-time-label {
    font-size: 16px;
  }
}

.p-info-wrapper .availability-value,
.p-info-wrapper .detail-parameters {
  margin-bottom: 0;
}

.tursky-apollo .p-info-grid .detail-grid-item {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .p-info-headline {
    margin-bottom: 15px;
    display: block;
  }
}

p[data-testid="productCardDescr"] {
  margin-top: 15px;
}

.p-info-wrapper .add-to-cart {
  margin-bottom: 20px;
}

.tursky-apollo .p-info-grid .detail-grid-item.detail-availability-block {
  margin-bottom: 15px;
}

.p-info-wrapper .p-final-price-wrapper .price-final {
  font-size: 24px;
}

@media (min-width: 768px) {
  .p-info-wrapper .p-final-price-wrapper .price-final {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .detail-price-btn-block {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .news-item .image {
    height: auto;
  }

  .news-block .news-item:last-child {
    border: 1px solid #d5e0e8;
  }

  .news-item .text .title {
    min-height: 55px;
  }

  .news-item .image img {
    aspect-ratio: 1 / 1;
  }

  .news-item .image + .text {
    padding: 20px 15px 100px;
    height: auto;
  }
}
