@charset "UTF-8";
@-webkit-keyframes showDiv {
  0% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes showDiv {
  0% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-webkit-keyframes show_message {
  0% {
    right: -100%;
  }
  10% {
    right: 0%;
  }
  90% {
    right: 0%;
  }
  100% {
    right: -100%;
  }
}
@keyframes show_message {
  0% {
    right: -100%;
  }
  10% {
    right: 0%;
  }
  90% {
    right: 0%;
  }
  100% {
    right: -100%;
  }
}
@-webkit-keyframes pulse {
  40% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-box-shadow: 0 0 0 20px rgba(199, 153, 8, 0.3);
            box-shadow: 0 0 0 20px rgba(199, 153, 8, 0.3);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 40px rgba(199, 153, 8, 0);
            box-shadow: 0 0 0 40px rgba(199, 153, 8, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(199, 153, 8, 0);
            box-shadow: 0 0 0 0 rgba(199, 153, 8, 0);
  }
}
@keyframes pulse {
  40% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-box-shadow: 0 0 0 20px rgba(199, 153, 8, 0.3);
            box-shadow: 0 0 0 20px rgba(199, 153, 8, 0.3);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 40px rgba(199, 153, 8, 0);
            box-shadow: 0 0 0 40px rgba(199, 153, 8, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(199, 153, 8, 0);
            box-shadow: 0 0 0 0 rgba(199, 153, 8, 0);
  }
}
@font-face {
  font-family: "Spartan";
  src: url("/wp-content/themes/cejrowski/fonts/Spartan-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Spartan";
  src: url("/wp-content/themes/cejrowski/fonts/Spartan-Medium.ttf");
}
* {
  font-family: "Spartan";
}

@media (min-width: 1500px) {
  .container {
    max-width: 1384px !important;
  }
}
h1 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 24px;
    line-height: 30px;
  }
}

h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
}

h4 {
  font-size: 18px;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  h5 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  h5 {
    font-size: 12px;
  }
}

#page {
  overflow: hidden;
}

p.form-submit {
  margin-bottom: 0;
}

.container .container {
  padding: 0;
}

a {
  color: #00344c;
}

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

* {
  --bs-gutter-x: 10px !important;
}

form input, form textarea {
  padding: 5px 10px;
  border: none;
}
form input:focus, form textarea:focus {
  outline: none !important;
}
form select option {
  padding: 5px 10px;
}

input:focus, .btn:focus, button:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn_default {
  color: #00344c;
  font-weight: 700;
  padding: 15px 0;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  max-width: 250px;
}
.btn_default:hover {
  color: #00344c;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}

p {
  color: #5c390e;
  font-size: 16px;
  line-height: 30px;
}

#page h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #5c390e;
}
@media (max-width: 1199px) {
  #page h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  #page h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

.wp-block-button__link {
  font-size: 12px;
  line-height: 14px;
}

ul {
  list-style-type: square;
  padding-left: 18px;
}
ul li {
  color: #5c390e;
}
ul li::marker {
  color: #00344c;
}

.wp-block-columns {
  margin: 0;
}

.baner {
  padding-top: 220px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.baner .sec_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}
.baner .sec_left img {
  margin-left: -50px;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
@media (max-width: 1199px) {
  .baner .sec_left img {
    margin-left: -20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .baner .sec_left img {
    max-width: none;
    max-height: none;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    position: relative;
    left: -180px;
  }
}
.baner .sec_right {
  z-index: 2;
}
.baner .title {
  color: white;
  margin-top: 70px;
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .baner .title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .baner .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1399px) {
  .baner .title {
    margin-top: 50px;
  }
}
@media (max-width: 1250px) {
  .baner .title {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .baner .title {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .baner .title {
    margin-top: 0px;
  }
}
.baner .description {
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  line-height: 36px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1199px) {
  .baner .description {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .baner .description {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1199px) {
  .baner .description {
    line-height: 30px;
  }
}
.baner a {
  text-decoration: none;
}
.baner .btns {
  padding-top: 70px;
  font-family: "Mulish", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1250px) {
  .baner .btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .baner .btns {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .baner .btns {
    position: absolute;
    bottom: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.baner .btns .btn_left {
  color: #00344c;
  font-weight: 700;
  padding: 20px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  margin-right: 25px;
  height: 100%;
  font-size: 14px;
  padding: 24px 20px 18px 20px;
}
@media (max-width: 767px) {
  .baner .btns .btn_left {
    margin-right: 0;
  }
}
.baner .btns .btn_left:hover {
  color: white;
  background: #e9aa0a;
}
@media (max-width: 1199px) {
  .baner .btns .btn_left {
    margin-top: 20px;
    font-size: 14px;
    width: 230px;
    height: 60px;
    padding: 0;
    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;
  }
}
.baner .btns .btn_right {
  color: white;
  font-weight: 700;
  padding: 20px;
  height: 100%;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, right top, from(#fbcd3f), to(#fbcd3f)), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, left bottom, from(#fbcd3f), to(#e9aa0a)), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, right top, left top, from(#e9aa0a), to(#e9aa0a)), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, left bottom, left top, from(#e9aa0a), to(#fbcd3f));
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to right, #fbcd3f, #fbcd3f), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to bottom, #fbcd3f, #e9aa0a), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to left, #e9aa0a, #e9aa0a), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to top, #e9aa0a, #fbcd3f);
  background-size: 4px 4px, calc(100% - 8px) 2px, 4px 4px, 2px calc(100% - 8px);
  background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
  background-repeat: no-repeat;
  font-size: 14px;
  padding: 24px 20px 18px 20px;
}
.baner .btns .btn_right:hover {
  background: #e9aa0a;
}
@media (max-width: 1199px) {
  .baner .btns .btn_right {
    margin-top: 20px;
    font-size: 14px;
    width: 230px;
    height: 60px;
    padding: 0;
    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;
  }
}
@media (max-width: 767px) {
  .baner .btns .btn_right {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width) {
  .baner .btns .btn_right {
    margin-top: 10px;
  }
}
.baner .baner_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 3;
}
.baner .img_bottom_right {
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: translateY(-65%) scale(0.8);
          transform: translateY(-65%) scale(0.8);
  -webkit-transform-origin: right;
          transform-origin: right;
  z-index: 10;
}
@media (max-width: 991px) {
  .baner .img_bottom_right {
    -webkit-transform: translateY(-65%) scale(0.7);
            transform: translateY(-65%) scale(0.7);
  }
}
@media (max-width: 575px) {
  .baner .img_bottom_right {
    -webkit-transform: translateY(-80%) scale(1);
            transform: translateY(-80%) scale(1);
    width: auto;
    height: auto;
  }
}
.baner .shadow_top {
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
}
@media (max-width: 1199px) {
  .baner .shadow_top {
    display: none;
  }
}
.baner .shadow_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
}
@media (max-width: 1199px) {
  .baner .shadow_bottom {
    display: none;
  }
}
.baner .shadow_tablet {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .baner .shadow_tablet {
    display: block;
  }
}
.baner .shadow_mobile {
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .baner .shadow_mobile {
    display: none;
  }
}
.baner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

.menu_first .container {
  max-width: 1150px !important;
}
@media (max-width: 1499px) {
  .menu_first .container {
    max-width: 1050px !important;
  }
}

.menu_first {
  background-color: #00232a;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
}
.menu_first .top_cart {
  position: relative;
  cursor: pointer;
  color: white;
  padding: 0 15px;
}
.menu_first .top_cart:hover {
  color: #fec027;
}
.menu_first .top_cart img {
  position: relative;
  top: -4px;
}
.menu_first .top_cart .total {
  width: 20px;
  height: 20px;
  background: #fec027;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #005145;
  border-radius: 50%;
  font-size: 10px;
  line-height: 10px;
  position: absolute;
  bottom: -6px;
  right: 3px;
  padding: 6px 5px;
}
.menu_first .img_top_left {
  display: none;
}
.menu_first .big1 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.menu_first .big1 p {
  margin: 0;
}
.menu_first .big1 .logo_menu {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .menu_first .big1 .logo_menu {
    -webkit-transform: translateX(-50%) scale(0.8);
            transform: translateX(-50%) scale(0.8);
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .menu_first .big1 .first_left {
    padding-left: 80px;
  }
}
@media (max-width: 480px) {
  .menu_first .big1 .first_left:first-child {
    padding-left: 0;
  }
}
.menu_first .big1 .first_right a {
  color: white;
  text-decoration: none;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu_first .big1 .first_right a:hover {
  color: #fec027;
}
@media (max-width: 767px) {
  .menu_first .big1 .first_right a span {
    display: none;
  }
}
@media (max-width: 767px) {
  .menu_first .big1 .first_right a {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .menu_first .big1 .first_right a {
    padding: 0 5px;
  }
}
@media (max-width: 360px) {
  .menu_first .big1 .first_right a {
    padding: 0 3px;
  }
}
.menu_first .big1 .first_right a img {
  padding: 0 5px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: -3px;
}
.menu_first .big1 .first_right a .nav_right_arrow {
  color: #fec027;
  font-size: 14px;
  padding: 0;
}
@media (max-width: 767px) {
  .menu_first .big1 .first_right a .nav_right_arrow {
    margin-left: 0;
  }
}
.menu_first .big1 .first_right .my_account_custom {
  position: relative;
}
.menu_first .big1 .first_right .my_account_custom ul {
  margin: 0;
  list-style-type: none;
  position: absolute;
  background: #fec027;
  color: black;
  padding: 0px;
  border-radius: 4px;
  width: 100%;
  right: 0;
  top: 33px;
  display: none;
}
.menu_first .big1 .first_right .my_account_custom ul:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 20px;
  top: -20px;
}
.menu_first .big1 .first_right .my_account_custom ul:before {
  content: " ";
  background: #fec027;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 10px;
  top: -7px;
  z-index: -1;
}
.menu_first .big1 .first_right .my_account_custom ul li a {
  color: #005145;
  padding: 5px 8px;
  border-radius: 4px;
}
.menu_first .big1 .first_right .my_account_custom ul li a:hover {
  background: #ffb603;
}
.menu_first .big1 .first_right .my_account_custom:hover ul {
  display: block;
}
.menu_first .big1 .first_right .nav_right_call img {
  display: none;
}
@media (max-width: 767px) {
  .menu_first .big1 .first_right .nav_right_call img {
    display: block;
  }
}
.menu_first .big1 .media_txt {
  color: white;
}
@media (max-width: 767px) {
  .menu_first .big1 .media_txt {
    display: none;
  }
}
.menu_first .big1 .media {
  color: #fec027;
  padding: 0 15px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.menu_first .big1 .media:hover {
  color: white;
}
@media (max-width: 767px) {
  .menu_first .big1 .media {
    padding: 0 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .menu_second .container {
    max-width: 100%;
  }
}

.menu_second {
  font-weight: bold;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 99999;
  position: relative;
}
.menu_second .big2 {
  position: relative;
}
.menu_second .big2 .menu_second_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 70px;
  padding-bottom: 80px;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .menu_second .big2 .menu_second_container .menu-menu-second-container ul .home_txt {
    display: none;
  }
}
@media (max-width: 767px) {
  .menu_second .big2 .menu_second_container .menu-menu-second-container ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .menu_second .big2 .menu_second_container .menu-menu-second-container ul li {
    padding: 0 9px;
  }
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li a {
  text-decoration: none;
  color: white;
  font-size: 13px;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li a:hover {
  color: #fec027;
}
@media (max-width: 991px) {
  .menu_second .big2 .menu_second_container .menu-menu-second-container ul li a {
    font-size: 12px;
  }
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li.current_page_item a {
  color: #fec027;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li ul {
  position: absolute;
  width: 200px;
  background: #00232a;
  top: calc(100% + 10px);
  display: none;
  z-index: 9999;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li ul:before {
  content: " ";
  width: 100%;
  height: 10px;
  top: -10px;
  position: absolute;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li ul:after {
  content: " ";
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #00232a;
  position: absolute;
  top: -8px;
  left: 4px;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li ul li {
  padding: 0;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li ul li a {
  padding: 10px 10px;
  display: block;
}
.menu_second .big2 .menu_second_container .menu-menu-second-container ul li:hover ul {
  display: block;
}
.menu_second .big2 .menu_second_container .home_icon {
  color: white;
  margin: 0;
  font-size: 20px;
}
@media (min-width: 992px) {
  .menu_second .big2 .menu_second_container .home_icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .menu_second .big2 .menu_second_container .home_icon {
    font-size: 25px;
  }
}
.menu_second .big2 .menu_second_container .bar {
  color: #fec027;
  font-size: 12px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.menu_second .big2 .menu_second_container .bar img {
  margin: 0 10px 0 10px;
}
@media (max-width: 767px) {
  .menu_second .big2 .menu_second_container .bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu_second .big2 .menu_second_container .bar:hover {
  cursor: pointer;
}
.menu_second .big2 .menu_second_container .search {
  margin-bottom: 0;
  cursor: pointer;
}
.menu_second .big2 .menu_second_container .search img {
  color: #fec027;
  padding: 0 10px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .menu_second .big2 .menu_second_container .search img {
    font-size: 25px;
  }
}

body.no_scroll {
  overflow: hidden;
}

.menu_mobile {
  height: 100vh;
  display: none;
  background-color: #002333;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu_mobile.active_mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu_mobile .logo_menu {
  padding-top: 50px;
}
.menu_mobile #menu-menu-second-1 {
  margin: 0;
  padding: 0;
  padding-top: 50px;
}
@media (max-width: 480px) {
  .menu_mobile #menu-menu-second-1 {
    padding-top: 30px;
  }
}
.menu_mobile #menu-menu-second-1 li {
  padding: 10px 0;
  list-style: none;
}
@media (max-width: 480px) {
  .menu_mobile #menu-menu-second-1 li {
    padding: 7px 0;
  }
}
.menu_mobile #menu-menu-second-1 li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu_mobile #menu-menu-second-1 li a:hover {
  color: #fec027;
  text-decoration: underline;
}
.menu_mobile #menu-menu-second-1 li ul {
  display: none;
}
.menu_mobile a {
  text-decoration: none;
  color: white;
  text-align: center;
}
.menu_mobile a:hover {
  color: #fec027;
}
.menu_mobile .close_bar {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
}
.menu_mobile .close_bar:hover {
  cursor: pointer;
  color: #fec027;
}
.menu_mobile .first_left {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.menu_mobile .first_left a {
  color: #fec027;
  padding: 0 20px;
}
.menu_mobile .first_left a:hover {
  color: white;
}
@media (max-width: 480px) {
  .menu_mobile .first_left {
    bottom: 40px;
  }
}

.gdzie .title-main {
  margin-top: 100px;
  color: #00344c;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .gdzie .title-main {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .gdzie .title-main {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .gdzie .title-main {
    margin-top: 50px;
  }
}
.gdzie .all-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 0px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.gdzie .all-box > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.gdzie .all-box > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.gdzie .all-box > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.gdzie .all-box > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.gdzie .all-box .box {
  background-color: #fbe7cf;
  padding: 25px;
}
.gdzie .all-box .box .titles {
  padding-left: 15px;
}
.gdzie .all-box .box .titles .title {
  color: #5c390e;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .gdzie .all-box .box .titles .title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .gdzie .all-box .box .titles .title {
    font-size: 18px;
    line-height: 22px;
  }
}
.gdzie .all-box .box .titles .sign {
  color: #00344c;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .gdzie .all-box .box .titles .sign {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .gdzie .all-box .box .titles .sign {
    font-size: 12px;
  }
}
.gdzie .all-box .box .desc {
  padding-top: 10px;
  color: #5c390e;
  font-size: 16px;
}
.gdzie .all-box .box .btn {
  color: #00344c;
  padding: 10px 20px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  margin-top: 20px;
  border: 0;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 25px;
}
.gdzie .all-box .box .btn:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
.gdzie .all-box .box .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.gdzie .all-box .box:first-child {
  margin-right: 2px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/4/2;
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .gdzie .all-box .box:first-child {
    margin-right: 0;
    margin-bottom: 4px;
  }
}
.gdzie .all-box .box:first-child .title {
  color: #5c390e;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .gdzie .all-box .box:first-child .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .gdzie .all-box .box:first-child .title {
    font-size: 20px;
    line-height: 26px;
  }
}
.gdzie .all-box .box:first-child .desc {
  padding-top: 20px;
}
.gdzie .all-box .box:first-child .btn {
  margin-top: 0px;
  position: absolute;
  left: 25px;
  bottom: 25px;
}
.gdzie .all-box .box:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  margin-left: 2px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .gdzie .all-box .box:nth-child(2) {
    margin-left: 0;
    margin-bottom: 4px;
  }
}
.gdzie .all-box .box:last-child {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
  margin-left: 2px;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .gdzie .all-box .box:last-child {
    margin: 0;
  }
}
.gdzie .all-box .box p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .gdzie .all-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.gdzie .social-media {
  margin-top: 50px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .gdzie .social-media {
    margin-bottom: 110px;
  }
}
.gdzie .social-media .media_title_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #5c390e;
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .gdzie .social-media .media_title_con {
    font-size: 23px;
  }
}
@media (max-width: 1199px) {
  .gdzie .social-media .media_title_con {
    font-size: 28px;
  }
}
.gdzie .social-media .all_media {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gdzie .social-media .all_media .btn_media {
  min-width: 17%;
  height: 55px;
  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;
  margin: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .gdzie .social-media .all_media .btn_media:nth-child(n+11) {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .gdzie .social-media .all_media .btn_media:nth-child(n+13) {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .gdzie .social-media .all_media .btn_media:nth-child(n+10) {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .gdzie .social-media .all_media .btn_media:nth-child(n+9) {
    display: none !important;
  }
}
.gdzie .social-media .all_media .btn_media a {
  width: 190px;
  text-decoration: none;
  padding: 15px 20px;
  color: #fbe7cf;
  font-weight: 700;
  display: block;
  outline: 1px solid #0095da;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  border-radius: 2px;
  margin: 10px 0;
  width: 100%;
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
}
@media (max-width: 767px) {
  .gdzie .social-media .all_media .btn_media a {
    padding: 15px 10px 15px 15px;
  }
}
@media (max-width: 360px) {
  .gdzie .social-media .all_media .btn_media a {
    padding: 15px 5px 15px 10px;
  }
}
@media (max-width: 1399px) {
  .gdzie .social-media .all_media .btn_media a {
    width: 180px;
  }
}
@media (max-width: 991px) {
  .gdzie .social-media .all_media .btn_media a {
    width: 170px;
  }
}
@media (max-width: 767px) {
  .gdzie .social-media .all_media .btn_media a {
    width: 160px;
  }
}
@media (max-width: 575px) {
  .gdzie .social-media .all_media .btn_media a {
    width: 145px;
  }
}
@media (max-width: 360px) {
  .gdzie .social-media .all_media .btn_media a {
    width: 140px;
  }
}
.gdzie .social-media .all_media .btn_media a:hover {
  color: #fec027;
  outline: 3px solid #0095da;
}
.gdzie .social-media .all_media .btn_media a i {
  color: #fec027;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .gdzie .social-media .all_media .btn_media a i {
    padding-right: 10px;
  }
}

.shop {
  background-position: center;
  position: relative;
  padding-top: 50px;
  padding-bottom: 125px;
}
@media (max-width: 1199px) {
  .shop {
    padding-bottom: 175px;
  }
}
@media (max-width: 767px) {
  .shop {
    padding-bottom: 150px;
  }
}
@media (max-width: 575px) {
  .shop {
    padding-bottom: 125px;
  }
}
.shop .shadow_top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  mix-blend-mode: multiply;
  max-width: 100%;
}
.shop .shadow_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  mix-blend-mode: multiply;
  max-width: 100%;
}
.shop .shop_logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -65%) scale(0.8);
          transform: translate(-50%, -65%) scale(0.8);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.shop .shop_top {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .shop .shop_top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .shop .shop_top p {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .shop .shop_top a {
    margin: 0 auto;
    height: 60px;
    margin-top: 5px;
    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;
  }
}
.shop .title-main {
  font-size: 36px;
  color: white;
  font-weight: 700;
  margin-bottom: 0;
}
.shop .shop_top .btn_top {
  color: #00344c;
  font-weight: 700;
  padding: 17px 10px 15px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
}
.shop .shop_top .btn_top:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (max-width: 1199px) {
  .shop .all_product_day {
    margin: 10px 0;
  }
}
.shop .all_product_day .product_day {
  position: relative;
}
@media (min-width: 1200px) {
  .shop .all_product_day .product_day {
    width: 100%;
  }
}
.shop .all_product_day .product_day .con_image {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
	background: white;
}
/* .shop .all_product_day .product_day .con_image img {
  max-width: 100%;
  height: calc(100% - 24px);
} */
@media (min-width: 1200px) {
  .shop .all_product_day .product_day .con_image img {
    width: 100%;
		max-width: 21vw;
		height: auto;
  }
}
.shop .all_product_day .product_day .con_image .img_left {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: auto;
  height: auto;
  margin-top: -74px;
}
@media (max-width: 1199px) {
  .shop .all_product_day .product_day .con_image .img_left {
    display: none;
  }
}
.shop .all_product_day .product_day .con_image .img_top {
  position: absolute;
  top: 40px;
  right: 25px;
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .shop .all_product_day .product_day .con_image .img_top {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: top right;
            transform-origin: top right;
    top: 20px;
  }
}
.shop .all_product_day .product_day .product_day_desc {
	position: absolute;
	top: 50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-decoration: none;
	width: 90%;
	color: white;
	font-weight: 700;
	font-size: 36px;
	line-height: 50px;
	text-align: center;
	font-family: "Spartan";
	text-shadow: 5px black;
	text-shadow: 0px 0px 6px rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .shop .all_product_day .product_day .product_day_desc {
    font-size: 36px;
    line-height: 42px;
    bottom: 190px;
  }
}
@media (max-width: 575px) {
  .shop .all_product_day .product_day .product_day_desc {
    font-size: 20px;
    line-height: 30px;
    bottom: 180px;
  }
}
.shop .all_product_day .product_day .price_product_day {
  position: absolute;
  bottom: 135px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 36px;
  font-weight: 700;
  color: #fec027;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .shop .all_product_day .product_day .price_product_day {
    font-size: 34px;
    line-height: 38px;
  }
}
@media (max-width: 575px) {
  .shop .all_product_day .product_day .price_product_day {
    font-size: 30px;
    line-height: 36px;
  }
}
.shop .all_product_day .product_day .btn_product_day {
  color: #00344c;
  font-weight: 700;
  padding: 15px 50px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
  border: 0;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  bottom: 75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .shop .all_product_day .product_day .btn_product_day {
    width: 290px;
    height: 60px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .shop .all_product_day .product_day .btn_product_day {
    max-width: calc(100% - 40px);
  }
}
.shop .all_product_day .product_day .btn_product_day:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
.shop .products {
  z-index: 2;
}

.shop .products .products_single .home_product {
  background-color: white;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-height: 100%;
  justify-content: space-between;
}
.shop .products .products_single .home_product a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      /* min-height: 221px; */
}
.shop .products .products_single .home_product a img {
  max-width: 100%;
  max-height: 230px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.shop .products .products_single .home_product .desc {
  text-decoration: none;
  font-weight: 700;
  color: #5c390e;
  font-size: 16px;
  padding-top: 20px;
}
.shop .products .products_single .home_product .price_products {
  padding-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #004649;
  margin-bottom: 0;
}
.shop .products .products_single .home_product .price_products ins {
  text-decoration: none;
}
.shop .products .products_single .home_product .price_products del {
  font-size: 14px;
  display: none;
}
.shop .products .products_single .home_product .btn_products {
  color: #00344c;
  font-weight: 700;
  padding: 22px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 18px;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  line-height: 14px;
  width: 100%;
}
.shop .products .products_single .home_product .btn_products:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shop .products .products_single .home_product .desc {
    font-size: 14px;
  }
  .shop .products .products_single .home_product .price_products {
    font-size: 18px;
  }
  .shop .products .products_single .home_product .btn_products {
    font-size: 12px;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .shop .products .products_single .home_product .btn_products {
    padding: 15px 40px;
  }
}
.shop .img_bottom {
  position: absolute;
  bottom: -50px;
  right: 5%;
  max-width: 100%;
  z-index: 11;
}
@media (max-width: 1799px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 3%;
  }
}
@media (max-width: 1699px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 1%;
  }
}
@media (max-width: 1599px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 0%;
  }
}
@media (max-width: 1499px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: -1.5%;
  }
}
@media (max-width: 1399px) {
  .shop .img_bottom {
    right: 0%;
  }
}
@media (max-width: 1299px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -3%;
  }
}
@media (max-width: 1199px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 7%;
    bottom: -100px;
  }
}
@media (max-width: 991px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 3%;
  }
}
@media (max-width: 767px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 575px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: -2%;
    bottom: -110px;
  }
}
@media (max-width: 480px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.45);
            transform: scale(0.45);
    right: -5%;
  }
}
@media (max-width: 360px) {
  .shop .img_bottom {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    right: -10%;
  }
}
@media (max-width: 320px) {
  .shop .img_bottom {
    right: -15%;
  }
}
.shop .baner_bottom {
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.woocommerce-product-attributes-item__value p {
  margin: 0;
}

.opinions {
  padding-top: 50px;
  padding-bottom: 50px;
}
.opinions .title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #00344c;
  font-size: 30px;
}
@media (max-width: 1199px) {
  .opinions .title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .opinions .title {
    font-size: 24px;
    line-height: 30px;
  }
}
.opinions .section_opinions {
  position: relative;
  overflow: hidden;
}
.opinions .section_opinions .opinion_single {
  padding: 0 10px 40px 10px;
  width: 60%;
}
.opinions .section_opinions.slide .opinion_single {
  visibility: hidden;
  position: absolute;
  left: 100%;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: -1;
  overflow: hidden;
  padding-bottom: 0px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 10%;
}
.opinions .section_opinions.slide .opinion_single .comment {
  opacity: 0;
  margin: auto;
  position: absolute;
  color: #5c390e;
  font-size: 16px;
  line-height: 36px;
}
.opinions .section_opinions.slide .opinion_single .signature {
  margin: 0;
  color: #5c390e;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.25;
  text-align: center;
}
.opinions .section_opinions.slide .opinion_single .signature svg {
  margin: auto;
  display: block;
  width: 50px;
}
.opinions .section_opinions.slide .opinion_single .signature svg path {
  fill: #5c390e;
}
@media (max-width: 600px) {
  .opinions .section_opinions.slide .opinion_single.prev_prev, .opinions .section_opinions.slide .opinion_single.prev {
    left: -100% !important;
  }
}
@media (max-width: 600px) {
  .opinions .section_opinions.slide .opinion_single.next_next, .opinions .section_opinions.slide .opinion_single.next {
    left: 100% !important;
  }
}
.opinions .section_opinions.slide .opinion_single.current {
  visibility: visible;
  width: 60%;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 600px) {
  .opinions .section_opinions.slide .opinion_single.current {
    left: 0 !important;
    width: 100%;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.opinions .section_opinions.slide .opinion_single.current .comment {
  opacity: 1;
}
@media (max-width: 600px) {
  .opinions .section_opinions.slide .opinion_single.current .comment {
    width: 100% !important;
    position: relative;
    padding-bottom: 70px;
  }
}
.opinions .section_opinions.slide .opinion_single.current .signature {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0;
  bottom: 0;
  color: #5c390e;
  font-size: 18px;
  font-weight: bold;
  opacity: 1;
}
.opinions .section_opinions.slide .opinion_single.current .signature svg {
  margin: initial;
  display: block;
  width: 75px;
  position: absolute;
  top: -30px;
  right: 0;
}
.opinions .section_opinions.slide .opinion_single.current .signature svg path {
  fill: rgb(0, 52, 76);
}
.opinions .section_opinions.slide .opinion_single.prev, .opinions .section_opinions.slide .opinion_single.prev_prev, .opinions .section_opinions.slide .opinion_single.next, .opinions .section_opinions.slide .opinion_single.next_next {
  visibility: visible;
  width: 10%;
  z-index: 9;
}
.opinions .section_opinions.slide .opinion_single.prev .signature, .opinions .section_opinions.slide .opinion_single.prev_prev .signature, .opinions .section_opinions.slide .opinion_single.next .signature, .opinions .section_opinions.slide .opinion_single.next_next .signature {
  color: #5c390e;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.5;
}
.opinions .section_opinions.slide .opinion_single.prev_prev .signature, .opinions .section_opinions.slide .opinion_single.next_next .signature {
  color: #5c390e;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.25;
}
.opinions .section_opinions.slide .opinion_single.hide_slide {
  opacity: 0;
}
.opinions .arrow_op {
  margin: 40px 0 0px 0;
  font-weight: bold;
  font-size: 18px;
  color: #5c390e;
}
.opinions .arrow_op .count {
  padding: 0 20px;
}
.opinions .arrow_op .slick-prev, .opinions .arrow_op .slick-next {
  cursor: pointer;
}

.newsletter {
  position: relative;
  text-align: center;
}
.newsletter .baner_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 11;
}
.newsletter .baner_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 11;
}
.newsletter .img_left {
  position: absolute;
  bottom: -50px;
  left: 100px;
  max-width: 100%;
  z-index: 12;
}
@media (max-width: 1199px) {
  .newsletter .img_left {
    left: 80px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media (max-width: 991px) {
  .newsletter .img_left {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    bottom: -70px;
    left: 50px;
  }
}
@media (max-width: 767px) {
  .newsletter .img_left {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    left: 20px;
  }
}
@media (max-width: 575px) {
  .newsletter .img_left {
    left: -20px;
  }
}
.newsletter .news {
  max-width: 70%;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 140px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  .newsletter .news {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .newsletter .news {
    max-width: 100%;
    padding-top: 110px;
    padding-bottom: 190px;
  }
}
.newsletter .news .title {
  color: white;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .newsletter .news .title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .newsletter .news .title {
    font-size: 24px;
    line-height: 30px;
  }
}
.newsletter .news .description {
  color: white;
  font-size: 18px;
  padding-bottom: 20px;
}
.newsletter .news .btns {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .newsletter .news .btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.newsletter .news .btns input {
  height: 100%;
  border: none;
  width: 450px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .newsletter .news .btns input {
    width: 70%;
    margin-bottom: 10px;
    text-align: center;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .newsletter .news .btns input {
    width: 100%;
    height: 50px;
  }
}
.newsletter .news .btns input::-webkit-input-placeholder {
  color: #5c390e;
}
.newsletter .news .btns input:-moz-placeholder {
  color: #5c390e;
}
.newsletter .news .btns input::-moz-placeholder {
  color: #5c390e;
}
.newsletter .news .btns input:-ms-input-placeholder {
  color: #5c390e;
}
.newsletter .news .btns .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: #00232a;
  padding: 0 20px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  border: 0;
  margin-left: 10px;
  width: 180px;
  font-size: 14px;
  font-weight: 700;
}
.newsletter .news .btns .btn img {
  margin-left: 5px;
  position: relative;
  top: -2px;
}
@media (max-width: 767px) {
  .newsletter .news .btns .btn {
    width: 70%;
    margin: 0;
  }
}
@media (max-width: 575px) {
  .newsletter .news .btns .btn {
    width: 100%;
    height: 50px;
  }
}
.newsletter .news .btns .btn:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
.newsletter .news .img_right {
  position: absolute;
  bottom: -60px;
  right: -140px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  z-index: 12;
}
@media (max-width: 1199px) {
  .newsletter .news .img_right {
    bottom: 0;
    -webkit-transform: translateY(30%) scale(0.8);
            transform: translateY(30%) scale(0.8);
    right: -160px;
  }
}
@media (max-width: 991px) {
  .newsletter .news .img_right {
    bottom: 0;
    -webkit-transform: translateY(40%) scale(0.5);
            transform: translateY(40%) scale(0.5);
    right: -100px;
  }
}
@media (max-width: 767px) {
  .newsletter .news .img_right {
    bottom: 0;
    -webkit-transform: translateY(45%) scale(0.4);
            transform: translateY(45%) scale(0.4);
    right: -20px;
  }
}

.footer {
  position: relative;
  padding-top: 50px;
}
.footer .img_footer_top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .footer .img_footer_top {
    width: 100px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .footer .img_footer_top {
    width: 80px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .footer .img_footer_top {
    width: 50px;
    height: auto;
  }
}
.footer .logo_footer img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
  z-index: 15;
}
@media (max-width: 767px) {
  .footer .logo_footer img {
    -webkit-transform: translate(-50%, -70%) scale(0.8);
            transform: translate(-50%, -70%) scale(0.8);
  }
}
.footer .title_main {
  color: #feedd8;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.footer .f_top {
  padding-top: 20px;
  padding-bottom: 45px;
  border-bottom: 1px solid #feedd8;
}
.footer .f_top .f_sec_1 p,
.footer .f_top .f_sec_2 p,
.footer .f_top .f_sec_3 p,
.footer .f_top .f_sec_4 p {
  color: #feedd8;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  padding-bottom: 5px;
}
.footer .f_top .f_sec_1 ul,
.footer .f_top .f_sec_2 ul,
.footer .f_top .f_sec_3 ul,
.footer .f_top .f_sec_4 ul {
  padding: 0;
  margin: 0;
}
.footer .f_top .f_sec_1 ul li,
.footer .f_top .f_sec_2 ul li,
.footer .f_top .f_sec_3 ul li,
.footer .f_top .f_sec_4 ul li {
  list-style: none;
}
.footer .f_top .f_sec_1 ul li a,
.footer .f_top .f_sec_2 ul li a,
.footer .f_top .f_sec_3 ul li a,
.footer .f_top .f_sec_4 ul li a {
  text-decoration: none;
  color: #fec027;
  font-size: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  position: relative;
}
.footer .f_top .f_sec_1 ul li a:hover,
.footer .f_top .f_sec_2 ul li a:hover,
.footer .f_top .f_sec_3 ul li a:hover,
.footer .f_top .f_sec_4 ul li a:hover {
  left: 5px;
}
.footer .f_top .f_sec_1 ul li a span,
.footer .f_top .f_sec_2 ul li a span,
.footer .f_top .f_sec_3 ul li a span,
.footer .f_top .f_sec_4 ul li a span {
  padding-right: 3px;
  position: relative;
  top: -2px;
}
.footer .f_top .f_sec_1 ul li a span i,
.footer .f_top .f_sec_2 ul li a span i,
.footer .f_top .f_sec_3 ul li a span i,
.footer .f_top .f_sec_4 ul li a span i {
  font-size: 8px;
}
@media (max-width: 991px) {
  .footer .f_top .f_sec_1,
  .footer .f_top .f_sec_2,
  .footer .f_top .f_sec_3,
  .footer .f_top .f_sec_4 {
    margin-bottom: 20px;
  }
}
.footer .f_bottom {
  padding: 40px 0;
}
.footer .f_bottom .copy {
  text-align: center;
}
.footer .f_bottom p {
  color: white;
  font-size: 12px;
  margin: 0;
}
.footer .f_bottom a {
  color: #fec027;
  padding-left: 3px;
}

.article_dziennik_pokladowy {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .article_dziennik_pokladowy {
    padding-bottom: 30px;
  }
  .article_dziennik_pokladowy .artykul {
    margin-bottom: 20px;
  }
}
.article_dziennik_pokladowy .title {
  color: #00344c;
  text-align: center;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .article_dziennik_pokladowy .title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .article_dziennik_pokladowy .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .article_dziennik_pokladowy .title {
    font-size: 24px;
  }
}
.article_dziennik_pokladowy img {
  width: 100%;
  cursor: pointer;
}
.article_dziennik_pokladowy .artykul a {
  text-decoration: none;
  color: #5c390e;
  padding-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .article_dziennik_pokladowy .artykul a {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .article_dziennik_pokladowy .artykul a {
    font-size: 18px;
    line-height: 22px;
  }
}
.article_dziennik_pokladowy .artykul i {
  margin: 0 4px;
}
.article_dziennik_pokladowy .artykul p {
  font-size: 14px;
  line-height: 36px;
  color: #5c390e;
}
.article_dziennik_pokladowy .artykul .desc-img {
  color: #00344c;
  font-weight: 700;
  font-size: 14px;
}
.article_dziennik_pokladowy .artykul .btn_products {
  color: #00344c;
  font-weight: 700;
  padding: 15px 0;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 230px;
}
.article_dziennik_pokladowy .artykul .btn_products:hover {
  color: #00344c;
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, right top, from(#fbcd3f), to(#fbcd3f)), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, left bottom, from(#fbcd3f), to(#e9aa0a)), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, right top, left top, from(#e9aa0a), to(#e9aa0a)), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, left bottom, left top, from(#e9aa0a), to(#fbcd3f));
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to right, #fbcd3f, #fbcd3f), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to bottom, #fbcd3f, #e9aa0a), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to left, #e9aa0a, #e9aa0a), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to top, #e9aa0a, #fbcd3f);
  background-size: 4px 4px, calc(100% - 8px) 2px, 4px 4px, 2px calc(100% - 8px);
  background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
  background-repeat: no-repeat;
}

.icons {
  padding-bottom: 125px;
}
.icons .title_main {
  text-align: center;
  color: #00344c;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .icons .title_main {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .icons .title_main {
    font-size: 24px;
    line-height: 30px;
  }
}
.icons .con_ico {
  max-width: 1000px;
  margin: 0 auto;
}
.icons .con_ico .icon_single {
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .icons .con_ico .icon_single:nth-child(n+4) {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .icons .con_ico .icon_single:nth-child(n+5) {
    display: none !important;
  }
}
.icons .con_ico .icon_single img {
  max-width: 100%;
}

.contact {
  overflow: hidden;
}
.contact .p1 {
  font-size: 30px;
  font-weight: bold;
}
.contact .p2 {
  font-size: 24px;
  font-weight: bold;
}
.contact .p3 {
  font-size: 20px;
  font-weight: normal;
}
.contact .p4 {
  font-size: 18px;
  font-weight: bold;
}
.contact .p5 {
  font-size: 18px;
  font-weight: normal;
}
.contact .p6 {
  font-size: 14px;
  font-weight: normal;
}
.contact .p7 {
  font-size: 18px;
  font-weight: bold;
  color: #5c390e;
}
@media (max-width: 767px) {
  .contact .p1 {
    font-size: 24px;
  }
  .contact .p2 {
    font-size: 18px;
  }
  .contact .p3 {
    font-size: 16px;
  }
  .contact .p4 {
    font-size: 14px;
  }
  .contact .p5 {
    font-size: 14px;
  }
  .contact .p6 {
    font-size: 12px;
  }
  .contact .p7 {
    font-size: 14px;
  }
}
.contact .title {
  padding-top: 50px;
  font-size: 36px;
  color: #5c390e;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact .title {
    font-size: 30px;
  }
}
.contact .title_form {
  text-align: center;
  font-size: 30px;
  color: #00344c;
  font-weight: bold;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .contact .title_form {
    font-size: 26px;
  }
}
.contact .form_content {
  position: relative;
  max-width: 650px;
  width: 100%;
  background-color: #00344c;
  overflow: hidden;
  margin-bottom: 120px;
}
.contact .form_content .wpcf7-form {
  padding: 30px;
}
.contact .form_content .wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  font-weight: normal;
  display: block;
}
.contact .form_content .wpcf7-form label {
  width: 100%;
  color: white;
  font-size: 14px;
}
.contact .form_content .wpcf7-form .form_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact .form_content .wpcf7-form .form_top input {
  background-color: #fbe7cf;
  width: 100%;
  height: 50px;
}
.contact .form_content .wpcf7-form .form_top p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  width: 50%;
  margin-bottom: 20px;
}
.contact .form_content .wpcf7-form .form_top p:nth-child(1) {
  padding-right: 10px;
}
.contact .form_content .wpcf7-form .form_top p:nth-child(3) {
  padding-right: 10px;
}
.contact .form_content .wpcf7-form .form_top p:nth-child(2) {
  padding-left: 10px;
}
.contact .form_content .wpcf7-form .form_top p:nth-child(4) {
  padding-left: 10px;
}
@media (max-width: 575px) {
  .contact .form_content .wpcf7-form .form_top p {
    width: 100%;
  }
  .contact .form_content .wpcf7-form .form_top p:nth-child(1), .contact .form_content .wpcf7-form .form_top p:nth-child(2), .contact .form_content .wpcf7-form .form_top p:nth-child(3), .contact .form_content .wpcf7-form .form_top p:nth-child(4) {
    padding: 0;
  }
}
.contact .form_content .wpcf7-form .form_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .form_content .wpcf7-form .form_bottom select {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background-color: #fbe7cf;
  font-weight: 700;
  color: #412510;
}
.contact .form_content .wpcf7-form .form_bottom textarea {
  width: 100%;
  background-color: #fbe7cf;
}
.contact .form_content .wpcf7-form .form_bottom input {
  height: 50px;
}
.contact .form_content .wpcf7-form .form_bottom .btn {
  color: #00344c;
  font-weight: 700;
  padding: 15px 40px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  margin-right: 25px;
  height: 100%;
}
.contact .form_content .wpcf7-form .form_bottom .btn:hover {
  color: white;
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, right top, from(#fbcd3f), to(#fbcd3f)), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, left bottom, from(#fbcd3f), to(#e9aa0a)), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, right top, left top, from(#e9aa0a), to(#e9aa0a)), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, left bottom, left top, from(#e9aa0a), to(#fbcd3f));
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to right, #fbcd3f, #fbcd3f), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to bottom, #fbcd3f, #e9aa0a), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to left, #e9aa0a, #e9aa0a), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to top, #e9aa0a, #fbcd3f);
  background-size: 4px 4px, calc(100% - 8px) 2px, 4px 4px, 2px calc(100% - 8px);
  background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
  background-repeat: no-repeat;
}
.contact .form_content .wpcf7-form .form_bottom .wpcf7-list-item {
  margin: 0;
}
.contact .form_content .wpcf7-form .form_bottom .accept p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.contact .form_content .wpcf7-form .form_bottom .accept p .wpcf7-not-valid-tip {
  position: absolute;
  width: 100%;
  bottom: -15px;
}
.contact .form_content .wpcf7-form .form_bottom .accept p .wpcf7-form-control-wrap {
  position: initial;
}
.contact .form_content .wpcf7-form .form_bottom .accept p input {
  height: 20px;
  margin-right: 10px;
}
.contact .form_content .wpcf7-form .form_bottom .accept p label {
  font-size: 11px;
}
.contact .form_content .wpcf7-form .form_bottom .accept p label a {
  color: white;
}
.contact .form_content .bgc_form {
  position: absolute;
  bottom: 0;
  left: 0;
}
.contact .form_content .wpcf7-response-output {
  color: #dc3232;
  text-align: center;
}

.complaints {
  padding-bottom: 140px;
}
.complaints .bgc_nav {
  max-width: 100%;
}
.complaints .title-top {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #5c390e;
  text-align: center;
  padding-top: 70px;
}
@media (max-width: 1199px) {
  .complaints .title-top {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .complaints .title-top {
    font-size: 24px;
    line-height: 30px;
  }
}
.complaints .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0 0 30px 0;
}
@media (max-width: 767px) {
  .complaints .icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.complaints .icons .icon {
  width: 100%;
  font-size: 30px;
  color: #00344c;
}
.complaints .icons .icon i {
  padding-top: 20px;
  padding-bottom: 30px;
}
.complaints .icons .arrow {
  width: 30px;
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .complaints .icons .arrow {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .complaints .icons .arrow .arrow_right {
    display: none;
  }
}
@media (min-width: 768px) {
  .complaints .icons .arrow .arrow_down {
    display: none;
  }
}
.complaints .icons .sign {
  font-size: 24px;
  color: #5c390e;
}
@media (max-width: 991px) {
  .complaints .icons .sign {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .complaints .icons .sign {
    font-size: 20px;
  }
}
.complaints .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}
.complaints .button .btn {
  color: #00344c;
  font-weight: 700;
  padding: 20px;
  border: 1px solid #e7b657;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  height: 100%;
  text-align: center;
}
.complaints .button .btn:hover {
  color: white;
}
.complaints .button .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1199px) {
  .complaints .button .btn {
    margin-top: 20px;
    font-size: 14px;
    width: 230px;
    height: 60px;
    padding: 0;
    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;
  }
}
.complaints .title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #5c390e;
  text-align: center;
}
@media (max-width: 1199px) {
  .complaints .title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .complaints .title {
    font-size: 24px;
    line-height: 30px;
  }
}
.complaints .art {
  max-width: 960px;
}
.complaints .art ol {
  counter-reset: item;
  list-style-type: none;
  padding: 0;
}
.complaints .art ol li {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  padding-left: 30px;
  padding-bottom: 30px;
  color: #5c390e;
}
.complaints .art ol li:before {
  content: counter(item) ") ";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
}
.complaints .faq-bottom .faq-questions {
  max-width: 960px;
  margin: 0 auto;
}
.complaints .faq-bottom .faq-questions .title-faq {
  padding: 30px 0;
  text-align: center;
  font-weight: 800;
  font-size: 25px;
  line-height: 26px;
  color: #5c390e;
}
@media (max-width: 991px) {
  .complaints .faq-bottom .faq-questions .title-faq {
    padding: 20px 0;
  }
}
.complaints .faq-bottom .faq-questions .que-single {
  padding: 0 20px;
  color: #5c390e;
}
.complaints .faq-bottom .faq-questions .que-single:nth-child(odd) {
  background-color: #fff0dd;
}
.complaints .faq-bottom .faq-questions .que-single:nth-child(even) {
  background-color: #fbe7cf;
}
.complaints .faq-bottom .faq-questions .que-single p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 700;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .complaints .faq-bottom .faq-questions .que-single p {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .complaints .faq-bottom .faq-questions .que-single p {
    font-size: 15px;
    line-height: 22px;
  }
}
.complaints .faq-bottom .faq-questions .que-single p span {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  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;
  display: none;
}
.complaints .faq-bottom .faq-questions .que-single p span.plus {
  display: block;
}
.complaints .faq-bottom .faq-questions .que-single p span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 16px;
}
.complaints .faq-bottom .faq-questions .que-single p span i:hover {
  cursor: pointer;
}
.complaints .faq-bottom .faq-questions .que-single .answer {
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 20px;
  display: none;
}
@media (max-width: 1199px) {
  .complaints .faq-bottom .faq-questions .que-single .answer {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .complaints .faq-bottom .faq-questions .que-single .answer {
    font-size: 13px;
    line-height: 22px;
  }
}
.complaints .faq-bottom .faq-questions .que-single.active .answer {
  display: block;
}
.complaints .faq-bottom .faq-questions .que-single.active .minus {
  display: block;
}
.complaints .faq-bottom .faq-questions .que-single.active .plus {
  display: none;
}

.header {
  background-repeat: no-repeat;
  background-size: cover;
}

.home .header {
  position: absolute;
  width: 100%;
  z-index: 11;
  background: transparent !important;
  background-repeat: no-repeat;
}
.home .header .menu_first .img_top_left {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
@media (max-width: 1399px) {
  .home .header .menu_first .img_top_left {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 1199px) {
  .home .header .menu_first .img_top_left {
    display: none;
  }
}

.shipping_cart_top_background {
  background-color: rgba(0, 0, 0, 0.58);
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.shipping_cart_top_background.active {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.shipping_cart_top {
  position: fixed;
  top: 0;
  right: -150%;
  height: 100%;
  overflow: hidden;
  padding: 20px 20px;
  z-index: 99999;
  width: 400px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 90%;
  background: #eeead7;
}
.shipping_cart_top.active {
  right: 0;
}
.shipping_cart_top .close {
  position: absolute;
  top: 14px;
  right: 14px;
  cursor: pointer;
}
.shipping_cart_top .close svg {
  width: 15px;
}
.shipping_cart_top .close svg path {
  fill: #e65703;
}
.shipping_cart_top .title {
  color: #412510;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  border-bottom: 1px solid #cbc3af;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.shipping_cart_top .empty {
  text-align: center;
}
.shipping_cart_top .shipping_cart_top_producs {
  max-height: calc(100% - 200px);
  overflow: hidden;
  overflow-y: auto;
}
.shipping_cart_top .products_count .cart_product {
  background: #e3decb;
  padding: 10px;
}
.shipping_cart_top .products_count > div {
  margin-bottom: 20px;
}
.shipping_cart_top .products_count > div:last-child {
  margin: 0;
}
.shipping_cart_top .products_count .remove {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shipping_cart_top .products_count .remove svg {
  width: 15px;
}
.shipping_cart_top .products_count .remove svg path {
  fill: #e65703;
}
.shipping_cart_top .products_count .image img {
  width: 100px;
}
.shipping_cart_top .products_count .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shipping_cart_top .products_count .content .name {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #412510;
  margin-bottom: 10px;
}
.shipping_cart_top .products_count .content .quanity {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: black;
  margin-bottom: 10px;
}
.shipping_cart_top .products_count .content .price {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #e60348;
  margin-bottom: 0;
}
.shipping_cart_top .bottom_content {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 0;
  padding-bottom: 20px;
}
.shipping_cart_top .bottom_content .kontynuuj {
  margin-top: 20px;
  display: block;
  text-decoration: underline;
  cursor: pointer;
  color: #412510;
  font-weight: bold;
  font-size: 12px;
}
.shipping_cart_top .bottom_content .total {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 0 15px 0;
  color: #412510;
  font-weight: bold;
}
.shipping_cart_top .bottom_content .total .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #000000;
}
.shipping_cart_top .bottom_content .total .price {
  color: #040404;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
}
.shipping_cart_top .bottom_content .view_cart {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: white;
  border: 1px solid #412510;
  background: #412510;
  display: -ms-grid;
  display: grid;
  text-decoration: none;
  height: 50px;
  place-items: center;
}
.shipping_cart_top .bottom_content .view_cart:hover {
  background-color: transparent;
  color: #412510;
}
.shipping_cart_top .bottom_content .view_order {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: white;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  display: -ms-grid;
  display: grid;
  text-decoration: none;
  height: 50px;
  place-items: center;
}
.shipping_cart_top .bottom_content .view_order:hover {
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, right top, from(#fbcd3f), to(#fbcd3f)), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, left bottom, from(#fbcd3f), to(#e9aa0a)), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, right top, left top, from(#e9aa0a), to(#e9aa0a)), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, left bottom, left top, from(#e9aa0a), to(#fbcd3f));
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to right, #fbcd3f, #fbcd3f), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to bottom, #fbcd3f, #e9aa0a), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to left, #e9aa0a, #e9aa0a), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to top, #e9aa0a, #fbcd3f);
  background-size: 4px 4px, calc(100% - 8px) 2px, 4px 4px, 2px calc(100% - 8px);
  background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
  background-repeat: no-repeat;
  color: rgb(233, 170, 10);
}
.shipping_cart_top .bottom_content .btn {
  margin-top: 18px;
  padding: 10px 14px;
  background: black;
  border-radius: 4px;
  height: 40px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  color: black;
}
.shipping_cart_top .bottom_content .btn:hover {
  background: transparent;
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, right top, from(#fbcd3f), to(#fbcd3f)), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, left bottom, from(#fbcd3f), to(#e9aa0a)), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, right top, left top, from(#e9aa0a), to(#e9aa0a)), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, left bottom, left top, from(#e9aa0a), to(#fbcd3f));
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to right, #fbcd3f, #fbcd3f), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to bottom, #fbcd3f, #e9aa0a), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to left, #e9aa0a, #e9aa0a), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to top, #e9aa0a, #fbcd3f);
  background-size: 4px 4px, calc(100% - 8px) 2px, 4px 4px, 2px calc(100% - 8px);
  background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
  background-repeat: no-repeat;
}

.cart_loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}
.cart_loader .pulse-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.cart_loader .pulse-wrapper .pulse {
  height: 50px;
  width: 50px;
  background-color: #e9aa0a;
  border-radius: 50%;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}

/* Pasek przewijania */
::-webkit-scrollbar {
  width: 5px; /* Szerokość paska przewijania */
  background-color: #e0e0e0; /* Tło paska przewijania */
}

/* "Kciuk" paska przewijania (główny element do przeciągania) */
::-webkit-scrollbar-thumb {
  background-color: #00232a; /* Kolor paska przewijania */
  border-radius: 5px; /* Zaokrąglenie rogów */
}

/* Tło paska przewijania (poza "kciukiem") */
::-webkit-scrollbar-track {
  background-color: #e0e0e0; /* Tło paska przewijania poza "kciukiem" */
}

.cooperation {
  padding-top: 50px;
}
.cooperation .title_main {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .cooperation .title_main {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .cooperation .title_main {
    font-size: 24px;
    line-height: 30px;
  }
}
.cooperation .title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #00344c;
}
@media (max-width: 1199px) {
  .cooperation .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .cooperation .title {
    font-size: 20px;
    line-height: 26px;
  }
}
.cooperation .sign {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  font-weight: 400;
  color: #5c390e;
  font-family: "Mulish";
}
@media (max-width: 1199px) {
  .cooperation .sign {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .cooperation .sign {
    font-size: 18px;
    line-height: 22px;
  }
}
.cooperation .desc {
  font-size: 18px;
  color: #5c390e;
  padding-bottom: 50px;
  font-family: "Mulish";
}
@media (max-width: 1199px) {
  .cooperation .desc {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .cooperation .desc {
    font-size: 14px;
  }
}
.cooperation .title_sec_top, .cooperation .title_sec_bottom {
  color: #5c390e;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .cooperation .title_sec_top, .cooperation .title_sec_bottom {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .cooperation .title_sec_top, .cooperation .title_sec_bottom {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .cooperation .title_sec_top, .cooperation .title_sec_bottom {
    margin-top: 20px;
  }
}
.cooperation .desc_sec_top, .cooperation .desc_sec_bottom {
  color: #5c390e;
  font-size: 18px;
  font-family: "Mulish";
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .cooperation .desc_sec_top, .cooperation .desc_sec_bottom {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .cooperation .desc_sec_top, .cooperation .desc_sec_bottom {
    font-size: 14px;
  }
}
.cooperation .link_txt_sec_top, .cooperation .link_txt_sec_bottom {
  width: 190px;
  text-decoration: none;
  text-align: center;
  padding: 15px 20px;
  color: white;
  font-weight: 700;
  display: block;
  outline: 1px solid #0095da;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  border-radius: 2px;
  margin: 10px 0;
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
  font-size: 12px;
}
@media (max-width: 991px) {
  .cooperation .link_txt_sec_top, .cooperation .link_txt_sec_bottom {
    width: 150px;
    padding: 12px 20px;
  }
}
.cooperation .link_txt_sec_top:hover, .cooperation .link_txt_sec_bottom:hover {
  color: #fec027;
  outline: 3px solid #0095da;
}
.cooperation a img {
  max-width: 100%;
  height: auto;
}

.site-main {
  background-image: url("/wp-content/uploads/2023/01/tlo_post-1.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.site-main .bgc_posts .wpis {
  padding-bottom: 50px;
}
.site-main .bgc_posts .wpis img {
  width: 100%;
  cursor: pointer;
}
.site-main .bgc_posts .wpis a {
  text-decoration: none;
  color: #5c390e;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  font-size: 20px;
}
@media (max-width: 1199px) {
  .site-main .bgc_posts .wpis a {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .site-main .bgc_posts .wpis a {
    font-size: 18px;
    line-height: 22px;
  }
}
.site-main .bgc_posts .wpis i {
  margin: 0 4px;
}
.site-main .bgc_posts .wpis p {
  font-size: 14px;
  line-height: 36px;
  color: #5c390e;
}
.site-main .bgc_posts .wpis .desc-img {
  color: #00344c;
  font-weight: 700;
  font-size: 14px;
}
.site-main .navigation {
  padding-bottom: 100px;
  text-align: center;
}
.site-main .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}
.site-main .navigation ul li {
  list-style: none;
  margin: 0;
  width: 50px;
  height: 50px;
  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;
  margin: 0 5px;
}
.site-main .navigation ul li a {
  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;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: rgb(0, 42, 53);
  font-weight: 700;
  outline: 1px solid rgb(0, 42, 53);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  border-radius: 2px;
  margin: 10px 0;
  width: 100%;
}
.site-main .navigation ul li a:hover {
  color: #fbe7cf;
  outline: 1px solid #0095da;
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
}
.site-main .navigation ul li.active a {
  color: #fbe7cf;
  outline: 1px solid #0095da;
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
}

.comment_form {
  border-top: 1px solid #5c390e;
  border-bottom: 1px solid #5c390e;
  padding-bottom: 50px;
  margin-top: 50px;
}

@media (min-width: 993px) {
  .single .big_left {
    padding-right: 30px;
  }
}
.single .default_content p {
  color: #5c390e;
  font-size: 18px;
  line-height: 36px;
}
.single .wpis_big .big_left .desc p {
  font-family: "Spartan";
}

.title-img {
  text-decoration: none;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .title-img {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .title-img {
    font-size: 24px;
    line-height: 30px;
  }
}

.wpis_big {
  padding: 50px 0;
}
.wpis_big .more {
  color: #00344c;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 20px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
}
.wpis_big .big_left .title-img {
  text-decoration: none;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .wpis_big .big_left .title-img {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .wpis_big .big_left .title-img {
    font-size: 24px;
    line-height: 30px;
  }
}
.wpis_big .big_left .author_date {
  color: #00344c;
  font-size: 14px;
  font-family: "Mulish";
}
.wpis_big .big_left .sign-img {
  color: #00344c;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
}
@media (max-width: 991px) {
  .wpis_big .big_left .more {
    display: none;
  }
}
.wpis_big .big_left .photo {
  width: 100%;
}
@media (min-width: 992px) {
  .wpis_big .big_left .photo {
    display: none;
  }
}
.wpis_big .big_left .desc {
  font-size: 18px;
  color: #5c390e;
  line-height: 36px;
  font-family: "Mulish";
}
@media (max-width: 1199px) {
  .wpis_big .big_left .desc {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .wpis_big .big_left .desc {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .wpis_big .big_left .desc {
    padding-top: 20px;
  }
}
.wpis_big .big_left .desc p {
  font-size: 18px;
  color: #5c390e;
  line-height: 36px;
  font-family: "Mulish";
}
@media (max-width: 1199px) {
  .wpis_big .big_left .desc p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .wpis_big .big_left .desc p {
    font-size: 14px;
  }
}
.wpis_big .big_right img {
  width: 100%;
  cursor: pointer;
}
.wpis_big .big_right .more {
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (min-width: 992px) {
  .wpis_big .big_right .more {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpis_big .big_right .photo {
    display: none;
  }
}

.payments {
  padding-bottom: 140px;
}
.payments .container {
  max-width: 960px !important;
}
.payments .bgc_nav {
  max-width: 100%;
}
.payments .title-top {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #5c390e;
  padding-top: 70px;
}
@media (max-width: 1199px) {
  .payments .title-top {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .payments .title-top {
    font-size: 24px;
    line-height: 30px;
  }
}
.payments .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0 0 30px 0;
}
@media (max-width: 767px) {
  .payments .icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.payments .icons .icon {
  width: 100%;
  font-size: 30px;
  color: #00344c;
}
.payments .icons .icon i {
  padding-top: 20px;
  padding-bottom: 30px;
}
.payments .icons .arrow {
  width: 30px;
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .payments .icons .arrow {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .payments .icons .arrow .arrow_right {
    display: none;
  }
}
@media (min-width: 768px) {
  .payments .icons .arrow .arrow_down {
    display: none;
  }
}
.payments .icons .sign {
  font-size: 24px;
  color: #5c390e;
}
@media (max-width: 991px) {
  .payments .icons .sign {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .payments .icons .sign {
    font-size: 20px;
  }
}
.payments .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 50px;
}
.payments .button .btn {
  color: #00344c;
  font-weight: 700;
  padding: 20px;
  border: 1px solid #e7b657;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  height: 100%;
  text-align: center;
}
.payments .button .btn:hover {
  color: white;
}
.payments .button .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1199px) {
  .payments .button .btn {
    margin-top: 20px;
    font-size: 14px;
    width: 230px;
    height: 60px;
    padding: 0;
    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;
  }
}
.payments .title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #00344c;
}
@media (max-width: 1199px) {
  .payments .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .payments .title {
    font-size: 20px;
    line-height: 26px;
  }
}
.payments .art ol {
  counter-reset: item;
  list-style-type: none;
  padding: 0;
}
.payments .art ol li {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  padding-left: 30px;
  padding-bottom: 30px;
  color: #5c390e;
}
.payments .art ol li:before {
  content: counter(item) ") ";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
}
.payments .faq-bottom .delivery {
  margin: 0 auto;
}
.payments .faq-bottom .delivery .box {
  padding: 0 20px;
}
.payments .faq-bottom .delivery .box:nth-child(even) {
  background-color: #fff0dd;
}
.payments .faq-bottom .delivery .box:nth-child(odd) {
  background-color: #fbe7cf;
}
.payments .faq-bottom .delivery .box p {
  margin: 0;
  padding: 20px 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}
.payments .faq-bottom .delivery .box .box_txt {
  color: #5c390e;
}
.payments .faq-bottom .delivery .box .box_price {
  color: #00344c;
}
.payments .faq-bottom .delivery .box_other {
  padding: 20px 0;
  color: #5c390e;
}
.payments .faq-bottom .title-art {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #00344c;
  padding-top: 20px;
}
@media (max-width: 1199px) {
  .payments .faq-bottom .title-art {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .payments .faq-bottom .title-art {
    font-size: 18px;
    line-height: 22px;
  }
}
.payments .faq-bottom .desc-art {
  color: #5c390e;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}
.payments .faq-bottom .faq-questions {
  margin: 0 auto;
}
.payments .faq-bottom .faq-questions .title-faq {
  padding: 30px 0;
  font-weight: 700;
  color: #00344c;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .payments .faq-bottom .faq-questions .title-faq {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .payments .faq-bottom .faq-questions .title-faq {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .payments .faq-bottom .faq-questions .title-faq {
    padding: 20px 0;
  }
}
.payments .faq-bottom .faq-questions .que-single {
  padding: 0 20px;
  color: #5c390e;
}
.payments .faq-bottom .faq-questions .que-single:nth-child(odd) {
  background-color: #fff0dd;
}
.payments .faq-bottom .faq-questions .que-single:nth-child(even) {
  background-color: #fbe7cf;
}
.payments .faq-bottom .faq-questions .que-single .payment_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.payments .faq-bottom .faq-questions .que-single .payment_line .payment_line_left {
  width: 80px;
  text-align: left;
}
.payments .faq-bottom .faq-questions .que-single .payment_line .payment_line_right {
  width: calc(100% - 80px);
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .payments .faq-bottom .faq-questions .que-single .payment_line .payment_line_right {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .payments .faq-bottom .faq-questions .que-single .payment_line .payment_line_right {
    font-size: 12px;
  }
}
.payments .faq-bottom .faq-questions .que-single .icon_payment {
  margin-right: 10px;
}
.payments .faq-bottom .faq-questions .que-single p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 700;
  padding: 20px 0;
  position: relative;
  width: 100%;
}
@media (max-width: 1199px) {
  .payments .faq-bottom .faq-questions .que-single p {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .payments .faq-bottom .faq-questions .que-single p {
    font-size: 15px;
    line-height: 22px;
  }
}
.payments .faq-bottom .faq-questions .que-single p span {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  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;
  display: none;
}
.payments .faq-bottom .faq-questions .que-single p span.arrow_up {
  display: block;
}
.payments .faq-bottom .faq-questions .que-single p span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 16px;
}
.payments .faq-bottom .faq-questions .que-single p span i:hover {
  cursor: pointer;
}
.payments .faq-bottom .faq-questions .que-single .answer {
  font-size: 14px;
  line-height: 26px;
  padding-bottom: 20px;
  padding-top: 0;
  padding: 0;
  display: none;
}
.payments .faq-bottom .faq-questions .que-single .answer:last-child {
  padding-bottom: 10px;
}
@media (max-width: 1199px) {
  .payments .faq-bottom .faq-questions .que-single .answer {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .payments .faq-bottom .faq-questions .que-single .answer {
    font-size: 13px;
    line-height: 22px;
  }
}
.payments .faq-bottom .faq-questions .que-single .answer .short_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.payments .faq-bottom .faq-questions .que-single .answer .short_desc .square {
  height: 5px;
  width: 5px;
  background-color: #00344c;
  display: block;
  margin-right: 7px;
}
.payments .faq-bottom .faq-questions .que-single .answer .short_desc p {
  padding: 0;
  line-height: 36px;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .payments .faq-bottom .faq-questions .que-single .answer .short_desc p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .payments .faq-bottom .faq-questions .que-single .answer .short_desc p {
    font-size: 11px;
  }
}
.payments .faq-bottom .faq-questions .que-single .answer .long_desc {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .payments .faq-bottom .faq-questions .que-single .answer .long_desc {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .payments .faq-bottom .faq-questions .que-single .answer .long_desc {
    font-size: 11px;
  }
}
.payments .faq-bottom .faq-questions .que-single.active .answer {
  display: block;
}
.payments .faq-bottom .faq-questions .que-single.active .arrow_down {
  display: block;
}
.payments .faq-bottom .faq-questions .que-single.active .arrow_up {
  display: none;
}

.page-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #5c390e;
  text-transform: uppercase;
  line-height: 48px;
  padding-top: 50px;
  font-family: "Mulish";
}
@media (max-width: 1199px) {
  .page-title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .page-title {
    font-size: 24px;
    line-height: 30px;
  }
}

.title_posts {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #00344c;
  line-height: 42px;
}
@media (max-width: 1199px) {
  .title_posts {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .title_posts {
    font-size: 20px;
    line-height: 26px;
  }
}

.bookmarks_all {
  border-bottom: 1px solid #00344c;
}
.bookmarks_all .bookmarks a {
  text-decoration: none;
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 15px;
  color: white;
  font-weight: 700;
  outline: 1px solid #0095da;
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
  border: 0;
  margin-right: 20px;
  border-radius: 2px;
}
.bookmarks_all .bookmarks a.active, .bookmarks_all .bookmarks a:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#facb3d), to(#e9aa0a));
  background: linear-gradient(0deg, #facb3d 0%, #e9aa0a 100%);
  color: rgb(0, 42, 53);
  outline: 1px solid #e7b657;
}
@media (max-width: 992px) {
  .bookmarks_all .bookmarks a {
    margin: 0 0 10px 0;
  }
}
.bookmarks_all .bookmarks_search {
  background-color: #5c390e;
  padding: 0 10px;
  outline: 1px solid #5c390e;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 44px;
}
.bookmarks_all .bookmarks_search input {
  height: 100%;
  background-color: #5c390e;
  border: none;
  outline: none;
  color: white;
}
.bookmarks_all .bookmarks_search input:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.bookmarks_all .bookmarks_search input::-webkit-input-placeholder {
  color: white;
  opacity: 0.8;
}
.bookmarks_all .bookmarks_search input:-moz-placeholder {
  color: white;
  opacity: 0.8;
}
.bookmarks_all .bookmarks_search input::-moz-placeholder {
  color: white;
  opacity: 0.8;
}
.bookmarks_all .bookmarks_search input:-ms-input-placeholder {
  color: white;
  opacity: 0.8;
}
.bookmarks_all .bookmarks_search button {
  background: transparent;
  border: none;
}
.bookmarks_all .bookmarks_search button i {
  color: #fec027;
}

.shop-ads {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 70px;
}
@media (max-width: 1199px) {
  .shop-ads {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .shop-ads {
    padding-bottom: 0;
  }
}
.shop-ads .shop_logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -65%) scale(0.8);
          transform: translate(-50%, -65%) scale(0.8);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.shop-ads .shop_top {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .shop-ads .shop_top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .shop-ads .shop_top p {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .shop-ads .shop_top a {
    margin: 0 auto;
    height: 60px;
    margin-top: 5px;
    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;
  }
}
.shop-ads .title-main {
  font-size: 36px;
  color: #00344c;
  font-weight: 700;
  margin-bottom: 20px;
}
.shop-ads .shop_top .btn_top {
  color: #00344c;
  font-weight: 700;
  padding: 17px 10px 15px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
}
.shop-ads .shop_top .btn_top:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
.shop-ads .all_product_day {
  position: relative;
}
@media (min-width: 1200px) {
  .shop-ads .all_product_day {
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .shop-ads .all_product_day {
    margin: 50px 0;
  }
}
.shop-ads .all_product_day .product_day {
  position: relative;
  width: 100%;
}
.shop-ads .all_product_day .product_day .con_image {
  position: relative;
  width: 100%;
  height: 100%;
}
.shop-ads .all_product_day .product_day .con_image img {
  max-width: 100%;
  height: 100%;
  width: 100%;
}
@media (min-width: 1200px) {
  .shop-ads .all_product_day .product_day .con_image img {
    width: 100%;
  }
}
.shop-ads .all_product_day .product_day .con_image .img_left {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: auto;
  height: auto;
}
@media (max-width: 1199px) {
  .shop-ads .all_product_day .product_day .con_image .img_left {
    display: none;
  }
}
.shop-ads .all_product_day .product_day .con_image .img_top {
  position: absolute;
  top: 40px;
  right: 25px;
  width: auto;
  height: auto;
}
.shop-ads .all_product_day .product_day .product_day_desc {
  position: absolute;
  top: 40%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-decoration: none;
  width: 60%;
  color: white;
  font-size: 34px;
  line-height: 60px;
  text-align: left;
  font-family: "Spartan";
  text-shadow: 5px black;
  text-shadow: 0px 0px 6px rgb(0, 0, 0);
}
.shop-ads .all_product_day .product_day .price_product_day {
  position: absolute;
  top: 60%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 36px;
  font-weight: 700;
  color: white;
}
.shop-ads .all_product_day .product_day .btn_product_day {
  color: #00344c;
  font-weight: 700;
  padding: 23px 50px 20px 50px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
  border: 0;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  bottom: 40px;
  left: 20px;
  font-size: 24px;
  min-width: 200px;
  width: 100%;
  max-width: 290px;
  text-align: center;
}
.shop-ads .all_product_day .product_day .btn_product_day:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shop-ads .all_product_day .product_day .img_shop_top {
    top: 50px;
  }
  .shop-ads .all_product_day .product_day .product_day_desc {
    font-size: 36px;
    width: 50%;
  }
}
@media (max-width: 600px) {
  .shop-ads .all_product_day .product_day .product_day_desc {
    font-size: 20px;
    line-height: 30px;
    width: 75%;
    top: 25%;
  }
  .shop-ads .all_product_day .product_day .price_product_day {
    font-size: 28px;
    top: 50%;
  }
  .shop-ads .all_product_day .product_day .btn_product_day {
    font-size: 14px;
    line-height: 14px;
  }
}
.shop-ads .all_product_day .img_shop_top {
  position: absolute;
  top: 30px;
  left: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shop-ads .all_product_day .img_shop_top {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .shop-ads .all_product_day .img_shop_top {
    display: none;
  }
}
.shop-ads .all_product_day .img_shop_right {
  position: absolute;
  bottom: -30px;
  right: 45px;
}
@media (max-width: 767px) {
  .shop-ads .all_product_day .img_shop_right {
    display: none;
  }
}
.shop-ads .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.shop-ads .products .products_single .home_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-height: 100%;
  position: relative;
  width: 100%;
}
.shop-ads .products .products_single .home_product a {
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.shop-ads .products .products_single .home_product a img {
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.shop-ads .products .products_single .home_product .desc {
  text-decoration: none;
  font-weight: 700;
  color: #00232a;
  font-size: 16px;
  padding-top: 20px;
  display: none;
}
.shop-ads .products .products_single .home_product .price_products {
  padding-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 0;
  position: absolute;
  top: 10px;
  right: 20px;
}
.shop-ads .products .products_single .home_product .btn_products {
  bottom: 20px;
  left: 50%;
  color: #00344c;
  font-weight: 700;
  padding: 23px 10px 20px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
  border: 0;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 230px;
}
.shop-ads .products .products_single .home_product .btn_products:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (max-width: 1399px) {
  .shop-ads .products .products_single .home_product .btn_products {
    width: 210px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shop-ads .products .products_single .home_product .desc {
    font-size: 14px;
  }
  .shop-ads .products .products_single .home_product .price_products {
    font-size: 18px;
  }
  .shop-ads .products .products_single .home_product .btn_products {
    font-size: 12px;
  }
}
.shop-ads .products .products_single:nth-child(1) {
  width: 100% !important;
}
@media (min-width: 1200px) {
  .shop-ads .products .products_single:nth-child(1) {
    margin-bottom: 20px;
  }
}
.shop-ads .products .products_single:nth-child(1) .price_products {
  padding-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #00232a;
  margin-bottom: 0;
  position: absolute;
  top: 100px;
  left: 20px;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .shop-ads .products .products_single:nth-child(1) .price_products {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .shop-ads .products .products_single:nth-child(1) .price_products {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1399px) {
  .shop-ads .products .products_single:nth-child(1) .price_products {
    top: 60px;
  }
}
.shop-ads .products .products_single:nth-child(1) .desc {
  display: block;
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .shop-ads .products .products_single:nth-child(1) .desc {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .shop-ads .products .products_single:nth-child(1) .desc {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1399px) {
  .shop-ads .products .products_single:nth-child(1) .desc {
    top: 0px;
  }
}
.shop-ads .products .products_single:nth-child(1) .btn_products {
  left: 20px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 767px) {
  .shop-ads .products .products_single:nth-child(1) .btn_products {
    position: relative;
    left: 0;
    right: auto;
    margin: 40px auto 0;
    -webkit-transform: initial;
            transform: initial;
  }
}
@media (max-width: 1199px) {
  .shop-ads .products .products_single {
    margin-bottom: 50px;
  }
}
.shop-ads .img_bottom {
  position: absolute;
  bottom: -50px;
  right: 100px;
  max-width: 100%;
  z-index: 11;
}
.shop-ads .baner_bottom {
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.similar-posts {
  padding: 70px 0;
}
.similar-posts .title {
  color: #00344c;
  text-align: center;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .similar-posts .title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .similar-posts .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .similar-posts .title {
    font-size: 24px;
  }
}
.similar-posts img {
  width: 100%;
}
.similar-posts ul:nth-child(1n) {
  padding-right: 4px;
  height: auto;
  max-width: 100%;
}
.similar-posts ul:nth-child(2n) {
  padding-left: 8px;
  padding-right: 8px;
  height: auto;
  max-width: 100%;
}
.similar-posts ul:nth-child(3n+3) {
  padding-left: 4px;
  padding-right: 12px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .similar-posts ul:nth-child(1n) {
    padding: 12px;
  }
  .similar-posts ul:nth-child(2n) {
    padding: 12px;
  }
  .similar-posts ul:nth-child(3n+3) {
    padding: 12px;
  }
}
.similar-posts ul a {
  text-decoration: none;
  color: #5c390e;
  padding-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .similar-posts ul a {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .similar-posts ul a {
    font-size: 18px;
    line-height: 22px;
  }
}
.similar-posts ul i {
  margin: 0 4px;
}
.similar-posts ul p {
  font-size: 14px;
  line-height: 36px;
  color: #5c390e;
}
.similar-posts ul .desc-img {
  color: #00344c;
  font-weight: 700;
  margin-bottom: 20px;
}
.similar-posts ul .btn_products {
  color: #00344c;
  font-weight: 700;
  padding: 17px 20px 15px 20px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.similar-posts ul .btn_products:hover {
  color: #00344c;
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, right top, from(#fbcd3f), to(#fbcd3f)), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), -webkit-gradient(linear, left top, left bottom, from(#fbcd3f), to(#e9aa0a)), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, right top, left top, from(#e9aa0a), to(#e9aa0a)), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), -webkit-gradient(linear, left bottom, left top, from(#e9aa0a), to(#fbcd3f));
  background-image: radial-gradient(circle at 100% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to right, #fbcd3f, #fbcd3f), radial-gradient(circle at 0% 100%, transparent 2px, #fbcd3f 2px, #fbcd3f 4px, transparent 4px), linear-gradient(to bottom, #fbcd3f, #e9aa0a), radial-gradient(circle at 0% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to left, #e9aa0a, #e9aa0a), radial-gradient(circle at 100% 0%, transparent 2px, #e9aa0a 2px, #e9aa0a 4px, transparent 4px), linear-gradient(to top, #e9aa0a, #fbcd3f);
  background-size: 4px 4px, calc(100% - 8px) 2px, 4px 4px, 2px calc(100% - 8px);
  background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
  background-repeat: no-repeat;
}

.bestseller {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 50px;
  padding-bottom: 70px;
}
@media (max-width: 1199px) {
  .bestseller {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .bestseller {
    padding-bottom: 0px;
  }
}
.bestseller .shop_top {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .bestseller .shop_top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .bestseller .shop_top p {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .bestseller .shop_top a {
    margin: 0 auto;
    height: 60px;
    margin-top: 5px;
    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;
  }
}
.bestseller .title-main {
  font-size: 36px;
  color: #00344c;
  font-weight: 700;
  margin-bottom: 0;
}
.bestseller .shop_top .btn_top {
  color: #00344c;
  font-weight: 700;
  padding: 17px 10px 15px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .bestseller .shop_top .btn_top {
    font-size: 13px;
  }
}
.bestseller .shop_top .btn_top:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
.bestseller .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bestseller .products .products_single {
  margin-bottom: 24px;
}
.bestseller .products .products_single .home_product {
  background-color: white;
  padding: 20px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-height: 100%;
  position: relative;
}
.bestseller .products .products_single .home_product a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.bestseller .products .products_single .home_product img {
  max-width: 100%;
  max-height: 230px;
  height: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.bestseller .products .products_single .home_product .desc {
  text-decoration: none;
  font-weight: 700;
  color: #5c390e;
  font-size: 16px;
  padding-top: 20px;
  width: 100%;
}
.bestseller .products .products_single .home_product .price_products {
  padding-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #004649;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
.bestseller .products .products_single .home_product .btn_products {
  color: #00344c;
  font-weight: 700;
  padding: 23px 10px 20px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 200px;
  width: calc(100% - 40px);
  margin: 0 0px;
}
.bestseller .products .products_single .home_product .btn_products:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .bestseller .products .products_single .home_product .desc {
    font-size: 14px;
  }
  .bestseller .products .products_single .home_product .price_products {
    font-size: 18px;
  }
  .bestseller .products .products_single .home_product .btn_products {
    font-size: 12px;
    min-width: 180px;
  }
}
@media (max-width: 1199px) {
  .bestseller .products .products_single .home_product .btn_products {
    padding: 15px 10px;
    font-size: 13px;
    min-width: 175px;
  }
}
.bestseller .img_bottom {
  position: absolute;
  bottom: -50px;
  right: 5%;
  max-width: 100%;
  z-index: 11;
}
@media (max-width: 1799px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 3%;
  }
}
@media (max-width: 1699px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 1%;
  }
}
@media (max-width: 1599px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 0%;
  }
}
@media (max-width: 1499px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: -1.5%;
  }
}
@media (max-width: 1399px) {
  .bestseller .img_bottom {
    right: 0%;
  }
}
@media (max-width: 1299px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -3%;
  }
}
@media (max-width: 1199px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 7%;
    bottom: -100px;
  }
}
@media (max-width: 991px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 3%;
  }
}
@media (max-width: 767px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 575px) {
  .bestseller .img_bottom {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: 3%;
    bottom: -110px;
  }
}
.bestseller .baner_bottom {
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.price_products del {
  font-size: 14px;
}

.zestawy {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 50px;
  padding-bottom: 125px;
}
@media (max-width: 1199px) {
  .zestawy {
    padding-bottom: 175px;
  }
}
@media (max-width: 575px) {
  .zestawy {
    padding-bottom: 150px;
  }
}
.zestawy .shop_top {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .zestawy .shop_top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .zestawy .shop_top p {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .zestawy .shop_top a {
    margin: 0 auto;
    height: 60px;
    margin-top: 5px;
    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;
  }
}
.zestawy .title-main {
  font-size: 36px;
  color: #00344c;
  font-weight: 700;
  margin-bottom: 0;
}
.zestawy .shop_top .btn_top {
  color: #00344c;
  font-weight: 700;
  padding: 23px 10px 20px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0;
  border: 0;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  width: 230px;
  text-align: center;
}
@media (max-width: 1199px) {
  .zestawy .shop_top .btn_top {
    font-size: 13px;
  }
}
.zestawy .shop_top .btn_top:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
.zestawy .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.zestawy .products .products_single {
  margin-bottom: 24px;
}
.zestawy .products .products_single .home_product {
  background-color: white;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-height: 100%;
  text-align: center;
}
.zestawy .products .products_single .home_product a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.zestawy .products .products_single .home_product a img {
  max-width: 100%;
  max-height: 230px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.zestawy .products .products_single .home_product .desc {
  text-decoration: none;
  font-weight: 700;
  color: #5c390e;
  font-size: 16px;
  padding-top: 20px;
}
.zestawy .products .products_single .home_product .price_products {
  padding-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #004649;
  margin-bottom: 0;
}
.zestawy .products .products_single .home_product .btn_products {
  bottom: 20px;
  left: 50%;
  color: #00344c;
  font-weight: 700;
  padding: 23px 10px 20px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
  border: 0;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  text-align: center;
  max-width: 230px;
  width: 100%;
}
.zestawy .products .products_single .home_product .btn_products:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .zestawy .products .products_single .home_product .desc {
    font-size: 14px;
  }
  .zestawy .products .products_single .home_product .price_products {
    font-size: 18px;
  }
  .zestawy .products .products_single .home_product .btn_products {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .zestawy .products .products_single .home_product .btn_products {
    padding: 15px 10px;
  }
}
.zestawy .img_bottom {
  position: absolute;
  bottom: -50px;
  right: 5%;
  max-width: 100%;
  z-index: 11;
}
@media (max-width: 1799px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 3%;
  }
}
@media (max-width: 1699px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 1%;
  }
}
@media (max-width: 1599px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 0%;
  }
}
@media (max-width: 1499px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: -1.5%;
  }
}
@media (max-width: 1399px) {
  .zestawy .img_bottom {
    right: 0%;
  }
}
@media (max-width: 1299px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -3%;
  }
}
@media (max-width: 1199px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 7%;
    bottom: -100px;
  }
}
@media (max-width: 991px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 3%;
  }
}
@media (max-width: 767px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 575px) {
  .zestawy .img_bottom {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: 3%;
    bottom: -110px;
  }
}
.zestawy .baner_bottom {
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.bgc_shadow {
  position: absolute;
  top: 0;
  right: 0;
}

.woocommerce-breadcrumb {
  padding-top: 20px;
  color: #5c390e;
  font-size: 14px;
}
.woocommerce-breadcrumb a {
  color: #00344c;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.woocommerce-breadcrumb .arrow {
  font-size: 12px;
  color: #5c390e;
  padding: 0 10px;
}

.product-cat {
  padding-bottom: 100px;
}
.product-cat .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-cat .products .products_single {
  margin-bottom: 24px;
}
.product-cat .products .products_single .home_product {
  background-color: white;
  padding: 20px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-height: 100%;
  position: relative;
}
.product-cat .products .products_single .home_product a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.product-cat .products .products_single .home_product img {
  max-width: 100%;
  max-height: 230px;
  height: auto;
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.product-cat .products .products_single .home_product .desc {
  text-decoration: none;
  font-weight: 700;
  color: #5c390e;
  font-size: 16px;
  padding-top: 20px;
  width: 100%;
}
.product-cat .products .products_single .home_product .price_products {
  padding-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #004649;
  margin-bottom: 0;
}
.product-cat .products .products_single .home_product .btn_products {
  color: #00344c;
  font-weight: 700;
  padding: 15px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 40px);
}
.product-cat .products .products_single .home_product .btn_products:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .product-cat .products .products_single .home_product .desc {
    font-size: 14px;
  }
  .product-cat .products .products_single .home_product .price_products {
    font-size: 18px;
  }
  .product-cat .products .products_single .home_product .btn_products {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .product-cat .products .products_single .home_product .btn_products {
    padding: 15px 10px;
    font-size: 13px;
  }
}
.product-cat .img_bottom {
  position: absolute;
  bottom: -50px;
  right: 5%;
  max-width: 100%;
  z-index: 11;
}
@media (max-width: 1799px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 3%;
  }
}
@media (max-width: 1699px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 1%;
  }
}
@media (max-width: 1599px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 0%;
  }
}
@media (max-width: 1499px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: -1.5%;
  }
}
@media (max-width: 1399px) {
  .product-cat .img_bottom {
    right: 0%;
  }
}
@media (max-width: 1299px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -3%;
  }
}
@media (max-width: 1199px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 7%;
    bottom: -100px;
  }
}
@media (max-width: 991px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 3%;
  }
}
@media (max-width: 767px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 575px) {
  .product-cat .img_bottom {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: 3%;
    bottom: -110px;
  }
}
.product-cat .baner_bottom {
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.page-description {
  padding-bottom: 20px;
}
.page-description p {
  font-size: 18px;
  font-weight: 400 !important;
  margin-bottom: 10px;
  color: #5c390e;
  line-height: 36px;
  font-family: "Mulish";
}
@media (max-width: 1199px) {
  .page-description p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .page-description p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .page-description p {
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .page-description p {
    line-height: 26px;
  }
}
.page-description div:first-child p {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .page-description div:first-child p {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .page-description div:first-child p {
    font-size: 18px;
    line-height: 22px;
  }
}

.product_cats {
  padding: 20px 0;
  background: #00232a;
  border-top: 2px solid #123a49;
  position: relative;
  z-index: 99;
}
.product_cats .title {
  color: #fec027;
  font-size: 13px;
  line-height: 16px;
}
.product_cats .product_cat_switcher {
  color: white;
  margin-left: 10px;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .product_cats .cat_cont {
    position: absolute;
    top: calc(100% + 20px);
    z-index: 9;
    background: #00232a;
    left: 100px;
    display: none;
  }
}
.product_cats .cat {
  padding: 0 10px;
  position: relative;
}
.product_cats .cat a {
  color: white;
  font-size: 13px;
  line-height: 16px;
  text-decoration: none;
  position: relative;
}
.product_cats .cat a i {
  color: #fec027;
  font-size: 14px;
  line-height: 14px;
  position: relative;
  top: 5px;
  padding-left: 5px;
}
.product_cats .cat a:before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  right: -10px;
  background: white;
}
@media (max-width: 1199px) {
  .product_cats .cat a:before {
    display: none;
  }
}
.product_cats .cat a:hover {
  color: #fec027;
}
.product_cats .cat:last-child a::before {
  display: none;
}
.product_cats .cat .sub_cats {
  position: absolute;
  padding: 21px 0px 0px 0px;
  background: #00232a;
  z-index: 99;
  top: 23px;
  display: none;
  left: 0;
  min-width: 100%;
}
@media (max-width: 1199px) {
  .product_cats .cat .sub_cats {
    padding: 0;
    position: initial;
    background: #113745;
  }
}
.product_cats .cat .sub_cats .cat {
  padding: 0;
}
.product_cats .cat .sub_cats .cat a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 5px 10px;
}
.product_cats .cat .sub_cats .cat a:before {
  display: none;
}
.product_cats .cat .sub_cats .cat a:hover {
  background: #0f3440;
}
.product_cats .cat:hover .sub_cats {
  display: block;
}

.podobne-produkty, .promo_in_cart, .search_products {
  padding-top: 20px;
  padding-bottom: 100px;
}
.podobne-produkty .products, .promo_in_cart .products, .search_products .products {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.podobne-produkty .products .products_single, .promo_in_cart .products .products_single, .search_products .products .products_single {
  margin-bottom: 24px;
  height: 100%;
}
.podobne-produkty .products .products_single .home_product, .promo_in_cart .products .products_single .home_product, .search_products .products .products_single .home_product {
  background-color: white;
  padding: 20px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 20px;
}
.podobne-produkty .products .products_single .home_product a, .promo_in_cart .products .products_single .home_product a, .search_products .products .products_single .home_product a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.podobne-produkty .products .products_single .home_product img, .promo_in_cart .products .products_single .home_product img, .search_products .products .products_single .home_product img {
  max-width: 100%;
  max-height: 230px;
  height: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.podobne-produkty .products .products_single .home_product .desc, .promo_in_cart .products .products_single .home_product .desc, .search_products .products .products_single .home_product .desc {
  text-decoration: none;
  font-weight: 700;
  color: #5c390e;
  font-size: 16px;
  padding-top: 20px;
  width: 100%;
}
.podobne-produkty .products .products_single .home_product .price_products, .promo_in_cart .products .products_single .home_product .price_products, .search_products .products .products_single .home_product .price_products {
  padding-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #004649;
  margin-bottom: 0;
}
.podobne-produkty .products .products_single .home_product .btn_products, .promo_in_cart .products .products_single .home_product .btn_products, .search_products .products .products_single .home_product .btn_products {
  color: #00344c;
  font-weight: 700;
  padding: 17px 10px 15px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 40px);
}
.podobne-produkty .products .products_single .home_product .btn_products:hover, .promo_in_cart .products .products_single .home_product .btn_products:hover, .search_products .products .products_single .home_product .btn_products:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .podobne-produkty .products .products_single .home_product .desc, .promo_in_cart .products .products_single .home_product .desc, .search_products .products .products_single .home_product .desc {
    font-size: 14px;
  }
  .podobne-produkty .products .products_single .home_product .price_products, .promo_in_cart .products .products_single .home_product .price_products, .search_products .products .products_single .home_product .price_products {
    font-size: 18px;
  }
  .podobne-produkty .products .products_single .home_product .btn_products, .promo_in_cart .products .products_single .home_product .btn_products, .search_products .products .products_single .home_product .btn_products {
    font-size: 12px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 1199px) {
  .podobne-produkty .products .products_single .home_product .btn_products, .promo_in_cart .products .products_single .home_product .btn_products, .search_products .products .products_single .home_product .btn_products {
    padding: 15px 10px;
    font-size: 13px;
  }
}
.podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
  position: absolute;
  bottom: -50px;
  right: 5%;
  max-width: 100%;
  z-index: 11;
}
@media (max-width: 1799px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 3%;
  }
}
@media (max-width: 1699px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 1%;
  }
}
@media (max-width: 1599px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    right: 0%;
  }
}
@media (max-width: 1499px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: -1.5%;
  }
}
@media (max-width: 1399px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    right: 0%;
  }
}
@media (max-width: 1299px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -3%;
  }
}
@media (max-width: 1199px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 7%;
    bottom: -100px;
  }
}
@media (max-width: 991px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    right: 3%;
  }
}
@media (max-width: 767px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 575px) {
  .podobne-produkty .img_bottom, .promo_in_cart .img_bottom, .search_products .img_bottom {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: 3%;
    bottom: -110px;
  }
}
.podobne-produkty .baner_bottom, .promo_in_cart .baner_bottom, .search_products .baner_bottom {
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.page-description {
  padding-bottom: 20px;
}
.page-description p {
  font-size: 18px;
  font-weight: 400 !important;
  margin-bottom: 10px;
  color: #5c390e;
  line-height: 36px;
}
@media (max-width: 1199px) {
  .page-description p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .page-description p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .page-description p {
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .page-description p {
    line-height: 26px;
  }
}
.page-description div:first-child p {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .page-description div:first-child p {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .page-description div:first-child p {
    font-size: 18px;
    line-height: 22px;
  }
}

.content-area {
  position: relative;
}
.content-area .bgc_shadow {
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
}

.woocommerce-product-gallery {
  margin-bottom: 50px;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image a {
  display: block;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image a img {
  width: 100%;
  height: auto;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image .wp-post-image {
  margin-bottom: 24px;
}

@media (min-width: 1200px) {
  .summary {
    padding-left: 50px;
  }
}
.summary .product_title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .summary .product_title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .summary .product_title {
    font-size: 20px;
    line-height: 26px;
  }
}
.summary .product_title + p {
  color: #5c390e;
}

.woocommerce-Tabs-panel--description {
  overflow: hidden;
  padding-top: 30px;
}
.woocommerce-Tabs-panel--description p img {
  float: left;
  margin-right: 20px;
}

.onsale {
  position: absolute;
  z-index: 9;
  top: 0px;
  left: calc(var(--bs-gutter-x) * 0.5);
  font-weight: 600;
  font-size: 14px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  color: #00344c;
  padding: 10px;
}

.line {
  display: block;
  width: 100%;
  background-color: #002834;
  height: 1px;
  margin: 50px 0;
  position: relative;
}
.line img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.single_add_to_cart_button {
  color: #00344c;
  font-weight: 700;
  padding: 22px 10px 20px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: 20px;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  width: 250px;
  text-transform: uppercase;
}
.single_add_to_cart_button:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}

.wc-tabs {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 50px;
}
.wc-tabs li {
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
  font-weight: 700;
  border-radius: 2px;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
}
.wc-tabs li a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: white;
  text-decoration: none;
  height: 100%;
  width: 100%;
  padding: 15px 20px;
}
.wc-tabs li a:hover {
  color: #fec027;
}
.wc-tabs li.active {
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
}
.wc-tabs li.active a {
  color: #00344c;
}
.wc-tabs li.active a:hover {
  color: white;
}
.wc-tabs .yellow_line {
  height: 10px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(44, 89%, 49%)), color-stop(8%, hsl(44, 87%, 51%)), color-stop(17%, hsl(44, 89%, 53%)), color-stop(25%, hsl(45, 91%, 55%)), color-stop(33%, hsl(45, 93%, 58%)), color-stop(42%, hsl(45, 96%, 61%)), color-stop(50%, hsl(46, 99%, 64%)), color-stop(58%, hsl(46, 99%, 66%)), color-stop(67%, hsl(45, 99%, 68%)), color-stop(75%, hsl(45, 99%, 71%)), color-stop(83%, hsl(44, 98%, 73%)), color-stop(92%, hsl(43, 96%, 75%)), to(hsl(42, 93%, 78%)));
  background-image: linear-gradient(180deg, hsl(44, 89%, 49%) 0%, hsl(44, 87%, 51%) 8%, hsl(44, 89%, 53%) 17%, hsl(45, 91%, 55%) 25%, hsl(45, 93%, 58%) 33%, hsl(45, 96%, 61%) 42%, hsl(46, 99%, 64%) 50%, hsl(46, 99%, 66%) 58%, hsl(45, 99%, 68%) 67%, hsl(45, 99%, 71%) 75%, hsl(44, 98%, 73%) 83%, hsl(43, 96%, 75%) 92%, hsl(42, 93%, 78%) 100%);
}
.wc-tabs .yellow_line img {
  position: absolute;
  top: 0;
  right: 5%;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.title_related {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #00344c;
}
@media (max-width: 1199px) {
  .title_related {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .title_related {
    font-size: 24px;
    line-height: 30px;
  }
}

.woocommerce-Tabs-panel--reviews {
  margin-top: 30px;
}
.woocommerce-Tabs-panel--reviews .commentlist {
  padding: 0;
}
.woocommerce-Tabs-panel--reviews .commentlist .custom_comment_container {
  background-color: #fbe7cf;
  padding: 30px;
  margin-bottom: 20px;
}
.woocommerce-Tabs-panel--reviews .commentlist .custom_comment_container .custom_comment_container_text {
  font-style: italic;
  color: #5c390e;
  margin-bottom: 20px;
}
.woocommerce-Tabs-panel--reviews .commentlist .custom_comment_container .custom_comment_container_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-Tabs-panel--reviews .commentlist .custom_comment_container .custom_comment_container_meta .custom_comment_container_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00344c;
  font-weight: 700;
  margin: 0;
  padding-right: 20px;
}
.woocommerce-Tabs-panel--reviews .commentlist .custom_comment_container .custom_comment_container_meta .custom_comment_container_gwiazdki {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-Tabs-panel--reviews .commentlist .custom_comment_container .custom_comment_container_meta .custom_comment_container_gwiazdki i {
  color: #C5C5C5;
}
.woocommerce-Tabs-panel--reviews .commentlist .custom_comment_container .custom_comment_container_meta .custom_comment_container_gwiazdki i.active {
  color: #ebae10;
}

.logged-in .comment-respond .comment-form .comment-form-rating {
  top: 0;
}
@media (max-width: 600px) {
  .logged-in .comment-respond .comment-form .comment-form-rating {
    float: none;
    margin-bottom: 20px;
  }
}

.comment-respond {
  margin-top: 50px;
}
.comment-respond .comment-reply-title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 1199px) {
  .comment-respond .comment-reply-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .comment-respond .comment-reply-title {
    font-size: 20px;
    line-height: 26px;
  }
}
.comment-respond .comment-form {
  position: relative;
  width: 60%;
}
@media (max-width: 767px) {
  .comment-respond .comment-form {
    width: 100%;
  }
}
.comment-respond .comment-form .comment-form-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  height: 20px;
  position: relative;
  right: 0;
  top: 0;
  color: #00344c;
  float: right;
  margin-bottom: -20px;
}
.comment-respond .comment-form .comment-form-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
  color: #00344c;
  clear: both;
  margin-bottom: 15px;
}
.comment-respond .comment-form .comment-form-comment textarea {
  padding: 10px;
  margin-top: 10px;
  background-color: #fbf6f1;
  color: #00344c;
}
.comment-respond .comment-form .comment-form-comment label {
  margin: 0;
}
.comment-respond .comment-form .comment-form-author label, .comment-respond .comment-form .comment-form-email label {
  margin-right: 10px;
}
.comment-respond .comment-form .comment-form-cookies-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.comment-respond .comment-form .comment-form-cookies-consent input {
  margin: 3px 10px 0 0;
  font-size: 16px;
  height: 20px;
  width: 20px;
}
.comment-respond .form-submit input {
  color: #00344c;
  font-weight: 700;
  padding: 15px 30px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: 20px;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
}
.comment-respond .form-submit input:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}

.stars_cont {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 -4px 20px -4px;
}

.stars_cont path {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.stars_cont input:checked ~ label svg path {
  fill: #ebae10;
}

.stars_cont input:hover ~ label svg path {
  fill: #ebae10;
}

.stars_cont label {
  margin: 0 4px 4px 4px;
  cursor: pointer;
}

.single-product #reviews .comment-form-rating .stars_cont input {
  display: none;
}

.stars_cont label svg path {
  fill: #C5C5C5;
}

.single-product .container {
  position: relative;
  z-index: 9;
}
.single-product .container h1 {
  font-size: 30px;
  line-height: 34px;
  margin: 0 0 15px 0;
  font-weight: bold;
}
.single-product .container .woocommerce-product-details__short-description p {
  color: #412510;
  font-size: 20px;
  line-height: 30px;
}
.single-product .container .price {
  font-size: 30px;
  line-height: 34px;
  color: #e60303;
  font-weight: bold;
  text-decoration: none;
}
.single-product .container .price ins {
  text-decoration: none;
}
.single-product .container .price ins bdi {
  font-size: 30px;
  line-height: 34px;
  color: #e60303;
  font-weight: bold;
  text-decoration: none;
}
.single-product .container .price del {
  color: #00344c;
  font-size: 24px;
  line-height: 30px;
}
.single-product .container .price del bdi {
  font-size: 24px;
  line-height: 30px;
  color: #00344c;
  font-weight: 300;
  text-decoration: none;
}
.single-product .container .price small {
  font-size: 30px;
  line-height: 34px;
  color: #e60303;
  font-weight: bold;
  text-decoration: none;
}
.single-product .container .stock_review .stock {
  height: 45px;
  padding: 0 20px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .single-product .container .stock_review .stock {
    margin: 0 0 10px 0;
  }
}
.single-product .container .stock_review .stock.instock {
  background: #388321;
}
.single-product .container .stock_review .stock.out {
  background: #e60303;
}
.single-product .container .stock_review .review {
  height: 45px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #00344c;
  padding: 0 20px;
}
.single-product .container .stock_review .review i {
  color: white;
}
.single-product .container .stock_review .review i.active {
  color: #fec027;
}
.single-product .container .stock_review .review span {
  color: white;
  font-size: 14px;
  line-height: 14px;
  margin-left: 15px;
  font-weight: 400;
}
.single-product .container .price_title {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  color: #5c390e;
}
.single-product .container .price_price {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #00344c;
}
.single-product .container .price_wysylka {
  margin: 0;
  font-size: 14px;
  color: #5c390e;
}
.single-product .container .quantity_cont {
  margin-top: 30px;
}
.single-product .container .quantity_cont .ilosc {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #5c390e;
  line-height: 20px;
  margin-right: 10px;
}
.single-product .container .quantity_cont .minus, .single-product .container .quantity_cont .plus {
  border: 1px solid #00344c;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #fff0dd;
  height: 50px;
  width: 30px;
  cursor: pointer;
}
.single-product .container .quantity_cont .quantity {
  height: 50px;
}
.single-product .container .quantity_cont .quantity input {
  height: 50px;
  background: #fff0dd;
  border-top: 1px solid #00344c;
  border-bottom: 1px solid #00344c;
  width: 70px;
  text-align: center;
  font-weight: bold;
  -moz-appearance: textfield;
}
.single-product .container .quantity_cont .quantity input::-webkit-outer-spin-button, .single-product .container .quantity_cont .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product .cwginstock-subscribe-form {
  max-width: 380px;
  margin-top: 25px;
}
.single-product .cwginstock-subscribe-form .panel-primary {
  border-color: #00344c;
}
.single-product .cwginstock-subscribe-form .panel-primary > .panel-heading {
  background-color: #00344c;
  border-color: #00344c;
}
.single-product .cwginstock-subscribe-form .panel-primary > .panel-heading h4 {
  line-height: 20px;
  margin: 0;
}
.single-product .cwginstock-subscribe-form .panel-primary input {
  padding: 10px;
}
.single-product .cwginstock-subscribe-form .panel-primary .cwgstock_button {
  color: #00344c;
  font-weight: 700;
  padding: 15px 0;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  max-width: 100%;
}
.single-product .cwginstock-subscribe-form .panel-primary .cwgstock_button:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}

.variations_form {
  margin-top: 30px;
}
.variations_form .variations th {
  display: table-cell !important;
  padding-bottom: 25px;
}
.variations_form .variations th .woo-selected-variation-item-name {
  display: none !important;
}
.variations_form .variations td {
  padding-bottom: 25px;
}
.variations_form .variations td .variable-items-wrapper li {
  background: #fff0dd !important;
  height: 40px !important;
  padding: 10px 10px !important;
  border: 1px solid transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.variations_form .variations td .variable-items-wrapper li.selected, .variations_form .variations td .variable-items-wrapper li:hover {
  border-color: #00344c !important;
}

.custom_variable_select {
  position: relative;
  margin-top: 25px;
}
.custom_variable_select .selected, .custom_variable_select .variable {
  background: #fff0dd;
  height: 70px;
  cursor: pointer;
}
.custom_variable_select .selected .image, .custom_variable_select .variable .image {
  width: 70px;
  background: white;
  height: 70px;
  margin-right: 20px;
}
.custom_variable_select .selected .image img, .custom_variable_select .variable .image img {
  max-width: 100%;
  height: auto;
}
.custom_variable_select .selected label, .custom_variable_select .variable label {
  cursor: pointer;
}
.custom_variable_select .selected .info, .custom_variable_select .variable .info {
  padding: 15px 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.custom_variable_select .selected .info .name, .custom_variable_select .variable .info .name {
  margin: 0;
  color: #5c390e;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
}
.custom_variable_select .selected .info .price_stock, .custom_variable_select .variable .info .price_stock {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.custom_variable_select .selected .info .price_stock .price, .custom_variable_select .variable .info .price_stock .price {
  margin: 0 20px 0 0 !important;
  font-size: 20px !important;
  color: #00344c !important;
  line-height: 24px !important;
}
.custom_variable_select .selected .info .price_stock .price bdi, .custom_variable_select .variable .info .price_stock .price bdi {
  font-size: 20px !important;
  color: #00344c !important;
  line-height: 24px !important;
}
.custom_variable_select .selected .info .price_stock .stock, .custom_variable_select .variable .info .price_stock .stock {
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
}
.custom_variable_select .selected .info .price_stock .stock.instock, .custom_variable_select .variable .info .price_stock .stock.instock {
  color: #388321;
}
.custom_variable_select .selected .cont, .custom_variable_select .variable .cont {
  position: relative;
  z-index: 9;
}
.custom_variable_select .selected .arrow, .custom_variable_select .variable .arrow {
  position: absolute;
  height: 70px;
  top: 0;
  right: 0;
  width: 50px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #00344c;
}
.custom_variable_select .back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.custom_variable_select .variable_select {
  position: absolute;
  top: 70px;
  z-index: 99;
  background: white;
  width: 100%;
  border: 1px solid #5c390e;
  display: none;
}
.custom_variable_select .variable_select .variable {
  background: #fff0dd;
  height: 71px;
  cursor: pointer;
  border-bottom: 1px solid #ded7cf;
}
.custom_variable_select .variable_select .variable:last-child {
  border: none;
}
.custom_variable_select .variable_select .variable label {
  cursor: pointer;
  width: 100%;
  height: 70px;
  background: white;
}
.custom_variable_select .variable_select .variable:hover label {
  background-color: #f7f7f7;
}
.custom_variable_select.active .back {
  display: block;
}
.custom_variable_select.active .variable_select {
  display: block;
}
.custom_variable_select.active .variable_select:before {
  content: " ";
  width: 48px;
  height: 1px;
  background: white;
  top: -1px;
  right: 0;
  position: absolute;
}
.custom_variable_select.active .selected .arrow {
  position: absolute;
  height: 70px;
  top: 0;
  right: 0;
  width: 50px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #00344c;
  border: 1px solid #5c390e;
  border-bottom: 0;
  background: white;
}
.custom_variable_select.active .selected .arrow i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.custom_variable_select_podpis {
  font-size: 14px;
  color: #5c390e;
  margin: 20px 0 0 0;
}

.woocommerce-product-gallery__wrapper .product_gallery_image img {
  width: 100%;
}
.woocommerce-product-gallery__wrapper .product_thumb {
  margin: 0 -10px;
}
.woocommerce-product-gallery__wrapper .product_thumb > div {
  padding: 20px 10px;
}

.wooco_component_type_products {
  border: none;
  padding: 0 !important;
  margin-top: 25px;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select {
  border: none;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-selected {
  padding: 0;
  text-decoration: none;
  background: #fff0dd;
  border: none;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-selected .dd-selected-image {
  max-width: 70px;
  border-radius: 0;
  margin-right: 20px;
  background: white;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-selected .dd-selected-text {
  margin: 0;
  color: #5c390e;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  margin-top: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 50px;
}
@media (max-width: 600px) {
  .wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-selected .dd-selected-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-selected .dd-desc .woocommerce-Price-amount {
  margin: 0 20px 0 0 !important;
  font-size: 20px !important;
  color: #00344c !important;
  line-height: 24px !important;
  font-weight: bold;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-selected .dd-desc .woocommerce-Price-amount bdi {
  font-size: 20px !important;
  color: #00344c !important;
  line-height: 24px !important;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-pointer {
  margin-top: 0;
  position: absolute;
  height: 70px;
  top: 0px;
  right: 0;
  width: 50px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #00344c;
  border: none;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-pointer:before {
  content: "\f107";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-pointer.dd-pointer-up {
  border: 1px solid #5c390e !important;
  border-bottom: 0 !important;
  background: white;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-select .dd-pointer.dd-pointer-up:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options {
  border: 1px solid black;
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options:after {
  content: " ";
  position: absolute;
  width: calc(100% - 48px);
  height: 1px;
  background: black;
  left: 0;
  top: 0;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a {
  text-decoration: none;
  background: white;
  height: 70px;
  cursor: pointer;
  border-bottom: 1px solid #ded7cf;
  padding: 0;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a .dd-option-image {
  max-width: 70px;
  border-radius: 0;
  margin-right: 20px;
  background: white;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a .dd-option-text {
  margin: 0;
  color: #5c390e;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  margin-top: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a .dd-option-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a .dd-desc > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a .dd-desc .woocommerce-Price-amount {
  margin: 0 20px 0 0 !important;
  font-size: 20px !important;
  color: #00344c !important;
  line-height: 24px !important;
  font-weight: bold;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a .dd-desc .woocommerce-Price-amount bdi {
  font-size: 20px !important;
  color: #00344c !important;
  line-height: 24px !important;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li a:hover {
  background-color: #f7f7f7;
}
.wooco_component_type_products .wooco_component_product .wooco_component_product_selection .dd-options li:last-child a {
  border: none;
}

.wooco_total {
  display: none !important;
}

.woocommerce-message {
  position: fixed;
  top: 100px;
  right: -100%;
  z-index: 999999;
  max-width: 500px;
  min-width: 400px;
  color: #00344c;
  font-weight: 400;
  padding: 15px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  width: 200px;
  margin: 20px 20px 20px 0;
  -webkit-animation-name: show_message;
          animation-name: show_message;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.woocommerce-notices-wrapper .woocommerce-error {
  position: fixed;
  top: 100px;
  right: -100%;
  z-index: 999999;
  max-width: 500px;
  min-width: 400px;
  color: #00344c;
  font-weight: 400;
  padding: 15px 10px;
  background: rgb(207, 0, 0);
  background: -webkit-gradient(linear, left bottom, left top, from(#f81100), to(rgb(207, 0, 0)));
  background: linear-gradient(0deg, #f81100 0%, rgb(207, 0, 0) 100%);
  border-radius: 2px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  width: 200px;
  margin: 20px 20px 20px 0;
  -webkit-animation-name: show_message;
          animation-name: show_message;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
.woocommerce-notices-wrapper .woocommerce-error li {
  color: white;
}
.woocommerce-notices-wrapper .woocommerce-error li:nth-child(2) {
  display: none;
}

.site {
  background-image: url("/wp-content/uploads/2023/01/tlo_post-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.woocommerce-error {
  list-style: none;
  color: #e60303;
  font-weight: 700;
  margin-top: 50px;
  padding: 0;
  text-align: center;
}
.woocommerce-error li {
  color: #e60303;
}

.woocommerce .process {
  margin: 50px 0;
}
.woocommerce .process .arrows {
  width: 5%;
  padding: 25px 0;
  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;
}
.woocommerce .process .info {
  border: 1px solid grey;
  background-color: #fbe7cf;
  width: 30%;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .woocommerce .process .info {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .woocommerce .process .info {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .woocommerce .process .info {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .woocommerce .process .info {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.woocommerce .process .info a {
  padding: 25px 20px;
  text-decoration: none;
  color: grey;
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .woocommerce .process .info a {
    padding: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.woocommerce .process .info i {
  margin-right: 20px;
  color: grey;
  position: relative;
  top: -3px;
}
@media (max-width: 767px) {
  .woocommerce .process .info i {
    font-size: 30px;
    text-align: center;
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .woocommerce .process .info span {
    display: none;
  }
}
.woocommerce .process .info .not_a {
  padding: 25px 20px;
  color: grey;
  width: 100%;
}
.woocommerce .process .info.active {
  border-color: #00344c;
}
.woocommerce .process .info.active a {
  color: #00344c;
}
.woocommerce .process .info.active .not_a {
  color: #00344c;
}
.woocommerce .process .info.active i {
  color: #fec027;
}
.woocommerce .woocommerce-checkout {
  margin-bottom: 100px;
}
.woocommerce .woocommerce-checkout .sec_bottom {
  margin-top: 40px;
}
.woocommerce .woocommerce-checkout .sec_bottom .woocommerce-input-wrapper textarea {
  width: 100%;
  border: 1px solid #00344c;
  background-color: #fbe7cf;
  min-height: 200px;
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper input, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper input {
  width: 100%;
  background-color: #fbe7cf;
  padding: 12px 20px;
  border: 1px solid #00344c;
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2 .select2-selection, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .select2 .select2-selection {
  border: 0;
  height: 100%;
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2 .select2-selection .select2-selection__rendered, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .select2 .select2-selection .select2-selection__rendered {
  background-color: #fbe7cf;
  padding: 12px 20px;
  border: 1px solid #00344c;
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit !important;
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper select, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper select {
  width: 100%;
  background-color: #fbe7cf;
  padding: 17px 20px;
  border: 1px solid #00344c;
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .wooccm-field-wooccm11, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .wooccm-field-wooccm11 {
  margin-top: 40px;
}
.woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .woocommerce-invalid-required-field input, .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .woocommerce-invalid-required-field input {
  border-color: #e60303;
}
.woocommerce .woocommerce-checkout .button {
  color: #00344c;
  font-weight: 700;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: 0;
  margin: 20px 20px 20px 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  width: 200px;
  padding: 0 15px;
  height: 50px;
}
.woocommerce .woocommerce-checkout .button:hover {
  color: white;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}
.woocommerce .shopping_custom {
  margin-top: 50px;
  margin-bottom: 100px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table {
  width: 100%;
}
@media (max-width: 1199px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table thead {
    display: none;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table thead tr {
  background-color: #5c390e;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table thead tr th {
  color: #fbe7cf;
  padding: 20px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table thead tr th .screen-reader-text {
  color: #fbe7cf;
  position: inherit;
  overflow: visible;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody {
  color: #00344c;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr {
  border-bottom: 1em solid red;
  border-bottom: 10px;
  position: relative;
  z-index: 1;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr::after {
  content: "";
  background-color: #fbe7cf;
  width: 100%;
  height: calc(100% - 4px);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr td, .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr th {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr th {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr th {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr th {
    font-size: 12px;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr.wooco-cart-child .quantity_cont {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr.wooco-cart-child .quantity_cont .minus, .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody tr.wooco-cart-child .quantity_cont .plus {
  display: none !important;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item td {
  padding: 20px;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-remove {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 10%;
  }
}
@media (max-width: 575) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-remove {
    width: 20%;
  }
}
@media (max-width: 360px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-remove {
    width: 10%;
    padding: 0;
    padding-right: 10px;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-remove a {
  text-decoration: none;
  color: red;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-remove a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-thumbnail {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 30%;
    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;
  }
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-thumbnail {
    width: 40%;
    padding: 20px 10px;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-thumbnail img {
  width: 100px;
  height: 100px;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-name {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 70%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-name {
    width: 60%;
    padding: 20px 10px;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-name a {
  text-decoration: none;
  color: #00344c;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-name .variation-Produkt p {
  margin: 0;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-price {
    display: none;
  }
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 30%;
    margin-left: 30%;
  }
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity {
    width: 25%;
    margin-left: 0;
    width: 40%;
  }
}
@media (max-width: 360px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity {
    width: 45%;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
}
@media (max-width: 767px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont {
    width: 120px;
  }
}
@media (max-width: 400px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont {
    width: 100px;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont .plus {
  border: 1px solid #5c390e;
  width: 35px;
  color: #5c390e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 14px 5px 10px 5px;
  font-size: 16px;
  line-height: 16px;
  height: 40px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont .minus {
  border: 1px solid #5c390e;
  width: 35px;
  color: #5c390e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 14px 5px 10px 5px;
  /* font-weight: bold; */
  font-size: 16px;
  line-height: 16px;
  height: 40px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont .quantity {
  border-top: 1px solid #5c390e;
  border-bottom: 1px solid #5c390e;
  width: 70px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont .quantity input {
  color: #5c390e;
  width: 100%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 100%;
  background: transparent;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont .quantity input::-webkit-outer-spin-button,
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity_cont .quantity input[type=number] {
  -moz-appearance: textfield;
}
.woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-subtotal .tax_label {
  display: block;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-subtotal {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-subtotal .woocommerce-Price-amount {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-subtotal {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 30%;
  }
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-subtotal {
    width: 40%;
  }
}
@media (max-width: 360px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .shop_table tbody .cart_item .product-subtotal {
    width: 45%;
    padding: 0;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .actions {
  width: 100%;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_title {
  color: #5c390e;
  font-weight: 700;
  padding: 0 20px;
  margin-top: 20px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container {
  padding: 20px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 1px solid #f1d6b6;
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .input-text {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  margin: 20px 0 20px 20px;
  padding: 15px 10px;
  border: 1px solid #5c390e;
  background-color: transparent;
  color: #5c390e;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .input-text::-webkit-input-placeholder {
  color: #5c390e;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .input-text:-moz-placeholder {
  color: #5c390e;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .input-text::-moz-placeholder {
  color: #5c390e;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .input-text:-ms-input-placeholder {
  color: #5c390e;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .input-text {
    width: calc(100% - 170px);
  }
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .input-text {
    width: calc(100% - 40px);
    margin: 20px;
  }
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .button {
  color: #00344c;
  font-weight: 700;
  background: #5c390e;
  border-radius: 0px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  width: 250px;
  margin: 20px 20px 20px 0;
  padding: 15px 20px;
  color: white;
  border: 1px solid #5c390e;
  border-left: none;
  height: 50px;
}
.woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .button:hover {
  color: #5c390e;
  background-color: transparent;
}
@media (max-width: 991px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .button {
    width: 170px;
  }
}
@media (max-width: 575px) {
  .woocommerce .shopping_custom .woocommerce-cart-form .coupon_container .coupon .button {
    width: calc(100% - 40px);
    margin: 0;
    margin-bottom: 20px;
  }
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .title_cart_totals {
  background-color: #5c390e;
  color: #fbe7cf;
  padding: 20px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .woocommerce .shopping_custom .cart-collaterals .cart_totals .title_cart_totals {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .woocommerce .shopping_custom .cart-collaterals .cart_totals .title_cart_totals {
    font-size: 12px;
  }
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .title_cart_totals td {
  width: 100%;
  padding: 20px;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .shop_table {
  width: 100%;
  background-color: #fbe7cf;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .shop_table .cart-subtotal td {
  text-align: right;
  padding: 20px;
  border-bottom: 1px solid #f3ddc3;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .shop_table .cart-subtotal th {
  padding: 20px;
  color: #5c390e;
  border-bottom: 1px solid #f3ddc3;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .shop_table .order-total td {
  text-align: right;
  padding: 20px;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .shop_table .order-total td .includes_tax {
  display: block;
  font-size: 12px;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .shop_table .order-total th {
  padding: 20px;
  color: #5c390e;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  background-color: #fbe7cf;
  height: 90px;
  padding: 20px;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
  color: #00344c;
  font-weight: 700;
  padding: 15px 10px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  display: block;
}
.woocommerce .shopping_custom .cart-collaterals .cart_totals .wc-proceed-to-checkout a:hover {
  color: white;
}

.woocommerce-order {
  margin: 50px auto 100px auto;
}
@media (min-width: 1400px) {
  .woocommerce-order {
    max-width: 75%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .woocommerce-order {
    max-width: 80%;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  font-weight: 700;
  color: #5c390e;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 20px;
    line-height: 26px;
  }
}
.woocommerce-order .woocommerce-thankyou-order-details {
  background-color: #fbe7cf;
  padding: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .woocommerce-order .woocommerce-thankyou-order-details li {
    margin-bottom: 15px;
  }
}
.woocommerce-order .woocommerce-order-details {
  background-color: #fbe7cf;
  padding: 30px;
  margin-bottom: 20px;
}
.woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}
.woocommerce-order .woocommerce-order-details .product-name a {
  color: #5c390e;
}
.woocommerce-order .woocommerce-order-details .product-name .wc-item-meta {
  list-style-type: none;
  padding: 0;
}
.woocommerce-order .woocommerce-order-details .product-name .wc-item-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-order .woocommerce-order-details .product-name .wc-item-meta li p {
  margin: 0;
}
.woocommerce-order .shop_table .woocommerce-Price-amount {
  font-weight: 700;
}
@media (max-width: 767px) {
  .woocommerce-order .shop_table thead {
    display: none;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .shop_table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .woocommerce-order .shop_table tbody tr td:first-child {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .shop_table tbody tr td:first-child {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .shop_table tfoot tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}
.woocommerce-order .shop_table tfoot tr:last-child {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .woocommerce-order .shop_table tfoot tr:last-child {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .shop_table tfoot tr:last-child {
    font-size: 18px;
    line-height: 22px;
  }
}
.woocommerce-order .woocommerce-customer-details {
  background-color: #fbe7cf;
  padding: 30px;
  width: 100%;
  margin-bottom: 20px;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.woocommerce-order .addresses .woocommerce-column--billing-address {
  width: 100%;
}
.woocommerce-order .addresses .woocommerce-column--billing-address .woocommerce-column__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .woocommerce-order .addresses .woocommerce-column--billing-address .woocommerce-column__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .addresses .woocommerce-column--billing-address .woocommerce-column__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.woocommerce-order .addresses .woocommerce-column--shipping-address {
  width: 100%;
}
.woocommerce-order .addresses .woocommerce-column--shipping-address .woocommerce-column__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .woocommerce-order .addresses .woocommerce-column--shipping-address .woocommerce-column__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .woocommerce-order .addresses .woocommerce-column--shipping-address .woocommerce-column__title {
    font-size: 18px;
    line-height: 22px;
  }
}

.single-product .woocommerce-notices-wrapper {
  margin: 0;
}
.single-product .woocommerce-notices-wrapper .woocommerce-error {
  background: #e60303;
  margin: 20px 0;
  padding: 10px;
}
.single-product .woocommerce-notices-wrapper .woocommerce-error li {
  color: white;
}

.woocommerce-notices-wrapper {
  margin-top: 50px;
}

.return-to-shop {
  margin-top: 50px;
  margin-bottom: 120px;
}
.return-to-shop .wc-backward {
  margin-top: 50px;
  color: #00344c;
  text-decoration: none;
  font-weight: 700;
  padding: 20px;
  height: 100%;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
}
.return-to-shop .wc-backward:hover {
  color: white;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
}

#order_review {
  background-color: #fbe7cf;
  margin-left: 20px;
}
@media (max-width: 767px) {
  #order_review {
    margin: 0;
  }
}
#order_review .title {
  background-color: #5c390e;
  color: #fbe7cf;
  padding: 20px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
#order_review .cart-subtotal {
  padding: 0 20px;
}
#order_review .cart-subtotal .info {
  padding: 20px 0;
  color: #5c390e;
  font-size: 16px;
  border-bottom: 1px solid #f3ddc3;
  font-weight: bold;
}
#order_review .cart-subtotal .koszt {
  text-align: right;
  font-size: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f3ddc3;
}
#order_review .cart-subtotal .suma {
  padding: 20px 0;
  color: #5c390e;
  font-size: 18px;
  font-weight: bold;
}
#order_review .cart-subtotal .total {
  text-align: right;
  font-size: 16px;
  padding: 20px 0;
}
#order_review .cart-subtotal .total .woocommerce-Price-amount {
  color: #5c390e;
  font-weight: bold;
}
#order_review .cart-subtotal .total .includes_tax {
  display: block;
}
#order_review .place-order {
  padding: 0 20px;
}
#order_review .place-order .woocommerce-terms-and-conditions-wrapper {
  font-size: 14px;
  line-height: 18px;
}
#order_review .place-order button {
  width: 100%;
}

#customer_details #payment .wc_payment_methods {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#customer_details #payment .wc_payment_methods li input, #customer_details #payment .wc_payment_methods li label {
  display: none;
}

.checkout h3 {
  font-size: 18px;
  font-weight: 600;
  color: #5c390e;
}

.custom_payment_select, .custom_shipping_select {
  position: relative;
  margin-bottom: 25px;
}
.custom_payment_select .selected, .custom_shipping_select .selected {
  background-color: #fbe7cf;
  padding: 12px 20px;
  border: 1px solid #00344c;
  margin: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.custom_payment_select .selected i, .custom_shipping_select .selected i {
  position: absolute;
  right: 20px;
}
.custom_payment_select ul, .custom_shipping_select ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
  position: absolute;
  top: 49px;
  z-index: 99;
  border: 1px solid #00344c;
  background-color: #fbe7cf;
  width: 100%;
  display: none;
}
.custom_payment_select ul li, .custom_shipping_select ul li {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #00344c;
  cursor: pointer;
}
.custom_payment_select ul li input, .custom_shipping_select ul li input {
  display: none;
}
.custom_payment_select ul li label, .custom_shipping_select ul li label {
  cursor: pointer;
  width: 100%;
  display: block;
  padding: 10px 20px;
}
.custom_payment_select ul li:hover, .custom_shipping_select ul li:hover {
  background-color: #fec027;
}
.custom_payment_select ul li:last-child, .custom_shipping_select ul li:last-child {
  border: none;
}
.custom_payment_select:hover ul, .custom_shipping_select:hover ul {
  display: block;
}

.woocommerce-table--order-details .product-total {
  text-align: right;
}
.woocommerce-table--order-details .product-total .includes_tax {
  display: block;
}
.woocommerce-table--order-details tfoot tr td {
  text-align: right;
}
.woocommerce-table--order-details tfoot tr td .includes_tax {
  display: block;
  font-size: 14px;
}

del {
  margin-right: 10px;
}

.woocommerce-privacy-policy-text a, .woocommerce-form__label-for-checkbox a {
  color: #5c390e;
}

.woocommerce-invalid-required-field .woocommerce-form__label-for-checkbox {
  color: #e60303;
}

.woocommerce-MyAccount-navigation {
  margin: 50px 0;
  background-color: #5c390e;
}
.woocommerce-MyAccount-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0;
  background-color: #5c390e;
  text-align: center;
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.woocommerce-MyAccount-navigation ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #fbe7cf;
  text-decoration: none;
  display: block;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .woocommerce-MyAccount-navigation ul li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation ul li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 20px;
  }
}
.woocommerce-MyAccount-navigation ul li:first-child a {
  padding-top: 20px;
}
.woocommerce-MyAccount-navigation ul li:last-child a {
  padding-bottom: 20px;
}

.woocommerce-MyAccount-content {
  overflow: auto;
  margin-bottom: 120px;
}
.woocommerce-MyAccount-content p {
  font-size: 18px;
  color: #00344c;
}
@media (max-width: 1199px) {
  .woocommerce-MyAccount-content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-content p {
    font-size: 14px;
  }
}
.woocommerce-MyAccount-content p a {
  text-decoration: none;
  color: #00344c;
  font-weight: 700;
}
.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  margin: 0;
}
.woocommerce-MyAccount-content .woocommerce-Address {
  margin-top: 50px;
}
.woocommerce-MyAccount-content .woocommerce-Address header .title_adress {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1199px) {
  .woocommerce-MyAccount-content .woocommerce-Address header .title_adress {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-content .woocommerce-Address header .title_adress {
    font-size: 14px;
  }
}
.woocommerce-MyAccount-content .woocommerce-Address header a {
  color: #00344c;
  font-weight: 700;
  padding: 5px 15px;
  border: 1px solid #e7b657;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  height: 100%;
  text-align: center;
  margin-left: 30px;
  text-decoration: none;
}
.woocommerce-MyAccount-content .woocommerce-Address header a:hover {
  color: white;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p {
  width: 50%;
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-content .woocommerce-address-fields p {
    width: 100%;
  }
}
.woocommerce-MyAccount-content .woocommerce-address-fields p .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p .woocommerce-input-wrapper input {
  width: 100%;
  background-color: #fbe7cf;
  padding: 10px 20px;
  border: 1px solid #00344c;
  border-radius: 4px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p .woocommerce-input-wrapper .select2-selection {
  border: 0;
  height: 100%;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p .woocommerce-input-wrapper .select2-selection .select2-selection__rendered {
  background-color: #fbe7cf;
  padding: 10px 20px;
  border: 1px solid #00344c;
}
.woocommerce-MyAccount-content .woocommerce-address-fields p .woocommerce-input-wrapper .select2 .select2-selection--single .select2-selection__arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button {
  color: #00344c;
  font-weight: 700;
  padding: 15px 20px;
  border: 1px solid #e7b657;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  height: 100%;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button:hover {
  color: white;
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  width: 50%;
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    width: 100%;
  }
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm input {
  width: 100%;
  background-color: #fbe7cf;
  padding: 10px 20px;
  border: 1px solid #00344c;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-content .woocommerce-EditAccountForm input {
    width: 100%;
  }
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .button {
  color: #00344c;
  font-weight: 700;
  padding: 15px 20px;
  border: 1px solid #e7b657;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  height: 100%;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .button:hover {
  color: white;
}
.woocommerce-MyAccount-content .woocommerce-Message {
  font-size: 18px;
  color: #00344c;
}
@media (max-width: 1199px) {
  .woocommerce-MyAccount-content .woocommerce-Message {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-content .woocommerce-Message {
    font-size: 14px;
  }
}
.woocommerce-MyAccount-content .woocommerce-Message a {
  text-decoration: none;
  color: #00344c;
  font-weight: 700;
  display: block;
  padding: 20px 0;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders {
  width: 100%;
  background-color: #fbe7cf;
  border-collapse: separate;
  border-spacing: 0 20px;
  border-collapse: collapse;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders thead {
  background-color: #5c390e;
  color: #fbe7cf;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders thead tr th {
  padding: 5px 20px;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody tr:nth-child(even) {
  background-color: #e9cfae;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody tr td {
  padding: 20px;
  color: #00344c;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody tr .woocommerce-orders-table__cell-order-number a {
  text-decoration: none;
  color: #00344c;
  font-weight: 700;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody tr .woocommerce-orders-table__cell-order-date {
  min-width: 150px;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody tr .woocommerce-orders-table__cell-order-status {
  min-width: 280px;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody tr .wp-element-button {
  text-decoration: none;
  color: #00344c;
  font-weight: 700;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-content {
  margin-bottom: 100px;
}

#customer_login h2 {
  text-align: center;
  font-size: 30px;
  color: #00344c;
  font-weight: bold;
  padding-top: 50px;
}
@media (max-width: 767px) {
  #customer_login h2 {
    font-size: 26px;
  }
}
#customer_login form {
  background-color: #00344c;
  padding: 30px;
  margin: 0 25px;
  height: 100%;
}
#customer_login form label {
  width: 100%;
  color: white;
  font-size: 14px;
}
#customer_login form input {
  background-color: #fbe7cf;
  width: 100%;
  height: 50px;
}
#customer_login form input[type=checkbox] {
  width: 15px;
  height: 15px;
  display: inline;
}
#customer_login form p {
  font-size: 12px;
  color: white;
}
#customer_login form a {
  color: white;
  text-decoration: underline;
}
#customer_login form button {
  color: #00344c;
  font-weight: 700;
  padding: 15px 40px;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 4px;
  height: 100%;
  margin-top: 20px;
  font-size: 16px;
  line-height: 16px;
}
#customer_login form button:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}

.podtytul_audycja_radiowa {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  font-weight: 400;
  color: #5c390e;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .podtytul_audycja_radiowa {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .podtytul_audycja_radiowa {
    font-size: 18px;
    line-height: 22px;
  }
}

.content_audycja_radiowa {
  font-size: 18px;
  font-weight: 400 !important;
  margin-bottom: 10px;
  color: #5c390e;
  line-height: 36px;
}

.audycje_radiowe_loop {
  margin-bottom: 100px;
}
.audycje_radiowe_loop .audycja_radiowa {
  border: 1px solid #00344c;
  margin-bottom: 25px;
}
.audycje_radiowe_loop .audycja_radiowa .title_cont {
  padding: 20px;
}
.audycje_radiowe_loop .audycja_radiowa .title_cont .naglowek {
  color: #00344c;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 20px;
}
.audycje_radiowe_loop .audycja_radiowa .title_cont .title {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #00344c;
}
.audycje_radiowe_loop .audycja_radiowa .content {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 30px;
  color: #00344c;
}
.audycje_radiowe_loop .audycja_radiowa .content p:last-child {
  margin: 0;
}

.filtracja_galerii {
  border-bottom: 1px solid #00344c;
  margin: 50px 0;
}
.filtracja_galerii .title {
  font-weight: 700;
  color: #5c390e;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .filtracja_galerii .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .filtracja_galerii .title {
    font-size: 20px;
    line-height: 26px;
  }
}
.filtracja_galerii ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .filtracja_galerii ul {
    display: block;
  }
}
.filtracja_galerii ul li {
  position: relative;
}
.filtracja_galerii ul li a, .filtracja_galerii ul li span {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  color: white;
  font-weight: 700;
  outline: 1px solid #0095da;
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
  border: 0;
  margin-right: 20px;
  border-radius: 2px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .filtracja_galerii ul li a, .filtracja_galerii ul li span {
    margin: 0 0 10px 0;
  }
}
.filtracja_galerii ul li a.active, .filtracja_galerii ul li a:hover, .filtracja_galerii ul li span.active, .filtracja_galerii ul li span:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#facb3d), to(#e9aa0a));
  background: linear-gradient(0deg, #facb3d 0%, #e9aa0a 100%);
  color: #00344c;
  outline: 1px solid #e7b657;
}
.filtracja_galerii ul li a.active i, .filtracja_galerii ul li a:hover i, .filtracja_galerii ul li span.active i, .filtracja_galerii ul li span:hover i {
  color: #00344c;
}
.filtracja_galerii ul li.kraj span i {
  color: #fec027;
}
.filtracja_galerii ul li.kraj span.active i {
  color: #00344c;
}
.filtracja_galerii ul li.kraj ul {
  position: absolute;
  display: none;
  background: #fec027;
  min-width: 100%;
  z-index: 99;
}
.filtracja_galerii ul li.kraj ul li a {
  color: #00344c;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 5px 10px;
  background: #fec027;
  outline: none;
  margin: 0;
  white-space: nowrap;
}
.filtracja_galerii ul li.kraj ul li a:hover {
  background: #00344c;
  color: white;
}
.filtracja_galerii ul li.kraj:hover span {
  background: -webkit-gradient(linear, left bottom, left top, from(#facb3d), to(#e9aa0a));
  background: linear-gradient(0deg, #facb3d 0%, #e9aa0a 100%);
  color: #00344c;
  outline: 1px solid #e7b657;
}
.filtracja_galerii ul li.kraj:hover span i {
  color: #00344c;
}
.filtracja_galerii ul li.kraj:hover ul {
  display: block;
}

.fotografia_loop_cont {
  margin-bottom: 100px;
}
.fotografia_loop_cont .fotografia_loop {
  border: 1px solid rgba(92, 57, 14, 0.1607843137);
  margin-bottom: 25px;
}
.fotografia_loop_cont .fotografia_loop img {
  width: 100%;
  display: block;
}
.fotografia_loop_cont .fotografia_loop .content {
  /* border-top: 1px solid #5c390e; */
  padding-top: 20px;
  /* margin-top: 20px; */
  text-align: center;
  padding-bottom: 20px;
}
.fotografia_loop_cont .fotografia_loop .content a {
  color: #00344c;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
  display: block;
  line-height: 24px;
}
.fotografia_loop_cont .fotografia_loop .content .podpis {
  margin: 0;
  font-size: 16px;
  color: #00344c;
  font-weight: 700;
  margin-bottom: 5px;
}
.fotografia_loop_cont .fotografia_loop .content .cat {
  margin: 0;
  font-size: 14px;
  color: #5c390e;
  font-weight: 400;
}

.single_fotografia .header_cont {
  margin-bottom: 50px;
}
.single_fotografia .header_cont .fotografia_cat {
  color: #00344c;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 5px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
}
.single_fotografia .header_cont .fotografia_cat span {
  font-weight: 400;
}

.block_books {
  margin-bottom: 100px;
}
.block_books .ksiazka {
  background-color: #fbe7cf;
  padding: 20px;
  margin-bottom: 20px;
}
.block_books .ksiazka .title {
  color: #5c390e;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
  padding: 0 0 0 10px;
}
.block_books .ksiazka .price {
  color: #fec027;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 18px;
  padding: 0 0 0 10px;
}
.block_books .ksiazka .podpis {
  color: #00344c;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 30px;
  padding: 0 0 0 10px;
}
.block_books .ksiazka .content {
  margin-top: 25px;
  font-family: "Mulish";
  color: #5c390e;
  font-size: 16px;
  line-height: 30px;
}
.block_books .ksiazka .btn_default {
  margin-top: 15px;
  padding: 22px 15px;
}

.block_produkcje_paginacja .column {
  display: none;
}
.block_produkcje_paginacja .column.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block_produkcje_paginacja .column .produkcja {
  border: 1px solid rgba(92, 57, 14, 0.1607843137);
  margin-bottom: 25px;
}
.block_produkcje_paginacja .column .produkcja img {
  width: 100%;
}
.block_produkcje_paginacja .column .produkcja .title {
  color: #00344c;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 20px 10px;
  display: block;
  line-height: 24px;
  display: block;
}
.block_produkcje_paginacja .navigation {
  padding-bottom: 100px;
  text-align: center;
}
.block_produkcje_paginacja .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}
.block_produkcje_paginacja .navigation ul li {
  list-style: none;
  margin: 0;
  width: 50px;
  height: 50px;
  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;
  margin: 0 5px;
  cursor: pointer;
}
.block_produkcje_paginacja .navigation ul li.prev {
  display: none;
}
.block_produkcje_paginacja .navigation ul li.active span, .block_produkcje_paginacja .navigation ul li:hover span {
  color: #fbe7cf;
  outline: 1px solid #0095da;
  background: rgb(0, 42, 53);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 42, 53)), to(rgb(0, 70, 100)));
  background: linear-gradient(0deg, rgb(0, 42, 53) 0%, rgb(0, 70, 100) 100%);
}
.block_produkcje_paginacja .navigation ul li span {
  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;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: rgb(0, 42, 53);
  font-weight: 700;
  outline: 1px solid rgb(0, 42, 53);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  border-radius: 2px;
  margin: 10px 0;
  width: 100%;
}

.block_projekty {
  margin: 50px 0 100px 0;
}
.block_projekty .projekt {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(92, 57, 14, 0.1607843137);
}
.block_projekty .projekt:last-child {
  border: none;
}
.block_projekty .projekt .title {
  margin-top: 20px;
  color: #5c390e;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
  padding: 0 0 0 10px;
}
.block_projekty .projekt .content {
  color: #00344c;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 30px;
  padding: 0 0 0 10px;
}
.block_projekty .projekt .btn_default {
  padding-left: 20px;
  padding-right: 20px;
}

.sidebar {
  padding: 110px 0 0 20px;
}
@media (max-width: 767px) {
  .sidebar {
    padding: 0px 0 0 0;
  }
}
.sidebar .blog_posts {
  margin-bottom: 50px;
}
.sidebar .blog_posts .title {
  margin-top: 20px;
  color: #5c390e;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
}
.sidebar .blog_posts .sidebar_post {
  margin-bottom: 20px;
}
.sidebar .blog_posts .sidebar_post .naglowek {
  margin: 0;
}
.sidebar .blog_posts .sidebar_post .naglowek a {
  color: #5c390e;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}
.sidebar .blog_posts .sidebar_post .read_more {
  color: #fec027;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}
.sidebar .blog_posts .sidebar_post .read_more:hover {
  color: #00344c;
}
.sidebar .blog_posts .read_all {
  color: #00344c;
  font-weight: 700;
  padding: 15px 0;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  display: block;
}
.sidebar .blog_posts .read_all:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}

.wystepy {
  margin: 50px 0 100px 0;
}
.wystepy .loop_wystep {
  border: 1px solid #00344c;
  margin-top: 20px;
}
.wystepy .loop_wystep .content {
  padding: 20px;
}
.wystepy .loop_wystep .content .text_cont {
  padding-left: 30px;
}
.wystepy .loop_wystep .content .text_cont .time {
  margin-bottom: 15px;
}
.wystepy .loop_wystep .content .text_cont .time p {
  margin-right: 20px;
  color: #00344c;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .wystepy .loop_wystep .content .text_cont .time p {
    font-size: 14px;
  }
}
.wystepy .loop_wystep .content .text_cont .time p i {
  color: #5c390e;
  margin-right: 10px;
}
.wystepy .loop_wystep .content .text_cont .title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #00344c;
  margin-bottom: 5px;
}
.wystepy .loop_wystep .content .text_cont .title i {
  color: #5c390e;
  margin-right: 10px;
}
.wystepy .loop_wystep .content .text_cont .text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: Mulish;
  color: #00344c;
}
.wystepy .loop_wystep .content .text_cont .info {
  font-size: 16px;
  font-weight: 400;
  color: #00344c;
  font-family: Mulish;
}
.wystepy .loop_wystep .content .text_cont .info span {
  font-weight: 600;
}
.wystepy .loop_wystep .bilety {
  border-left: 1px solid #c4bbbb;
  height: 100%;
}
.wystepy .loop_wystep .bilety .alert {
  text-align: center;
  font-size: 14px;
  padding: 10px 10px;
  line-height: 14px;
  border-radius: 0;
}
.wystepy .loop_wystep .bilety .bilety_title {
  padding: 20px 0px 0 30px;
  color: #00344c;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.wystepy .loop_wystep .bilety .lista_biletow {
  padding: 0 0px 20px 30px;
  font-weight: 300;
  color: #00344c;
}
.wystepy .loop_wystep .bilety .lista_biletow a {
  font-weight: 600;
  color: #5c390e;
}

.single_wystep .text_cont .time {
  margin-bottom: 15px;
}
.single_wystep .text_cont .time p {
  margin-right: 20px;
  color: #00344c;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .single_wystep .text_cont .time p {
    font-size: 14px;
  }
}
.single_wystep .text_cont .time p i {
  color: #5c390e;
  margin-right: 10px;
}
.single_wystep .text_cont .title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #00344c;
  margin-bottom: 5px;
}
.single_wystep .text_cont .title i {
  color: #5c390e;
  margin-right: 10px;
}
.single_wystep .text_cont .text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: Mulish;
  color: #00344c;
}
.single_wystep .text_cont .info {
  font-size: 16px;
  font-weight: 400;
  color: #00344c;
  font-family: Mulish;
}
.single_wystep .text_cont .info span {
  font-weight: 600;
}

.wystepy_slup {
  margin-bottom: 50px;
}
.wystepy_slup .naglowek {
  margin-bottom: 40px;
}
.wystepy_slup .naglowek .title {
  font-size: 30px;
  font-weight: 700;
  color: #5c390e;
  line-height: 42px;
  margin: 0;
}
.wystepy_slup .naglowek .btn_default {
  padding-left: 15px;
  padding-right: 15px;
}
.wystepy_slup .loop .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
  color: #5c390e;
}
.wystepy_slup .loop .title.active {
  color: #00344c;
}
.wystepy_slup .loop .naglowek {
  margin: 0;
}
.wystepy_slup .loop .naglowek .arrows {
  font-size: 20px;
  color: #5c390e;
}
.wystepy_slup .loop .naglowek .arrows .prev {
  margin-right: 10px;
}
.wystepy_slup .loop .naglowek .arrows i {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.wystepy_slup .loop .naglowek .arrows i:hover {
  opacity: 1;
}
.wystepy_slup .loop .wystepy_cont {
  margin-right: calc(var(--bs-gutter-x) * 0.5 * -1);
  margin-left: calc(var(--bs-gutter-x) * 0.5 * -1);
}
.wystepy_slup .loop .wystepy_cont .wystep {
  margin-right: calc(var(--bs-gutter-x) * 0.5);
  margin-left: calc(var(--bs-gutter-x) * 0.5);
}
.wystepy_slup .loop .wystep {
  border: 1px solid #5c390e;
  padding: 15px;
}
.wystepy_slup .loop .wystep .subtitle {
  color: #5c390e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 22px;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.wystepy_slup .loop .wystep .subtitle i {
  margin-right: 5px;
  margin-top: 2px;
  color: #00344c;
}
.wystepy_slup .loop .wystep .info {
  color: #5c390e;
  font-size: 16px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #5c390e;
}
.wystepy_slup .loop .wystep .info span {
  display: block;
  font-size: 22px;
  font-weight: 600;
}
.wystepy_slup .loop .wystep .bilety_title {
  color: #5c390e;
  margin-bottom: 5px;
}
.wystepy_slup .loop .wystep .lista_biletow {
  color: #5c390e;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #5c390e;
}
.wystepy_slup .loop .wystep .lista_biletow a {
  color: #00344c;
  font-weight: 600;
}
.wystepy_slup .loop .wystep .more {
  font-size: 14px;
  text-decoration: none;
  color: white;
  background: #5c390e;
  display: inline-block;
  padding: 15px 15px;
  border: 1px solid #5c390e;
  font-weight: 600;
}
.wystepy_slup .loop .wystep .more:hover {
  background: transparent;
  color: #5c390e;
}
.wystepy_slup .loop .wystep.active {
  background: #00344c;
  border-color: #00344c;
}
.wystepy_slup .loop .wystep.active .subtitle {
  color: white;
}
.wystepy_slup .loop .wystep.active .subtitle i {
  color: #fec027;
}
.wystepy_slup .loop .wystep.active .info {
  color: white;
  border-color: white;
}
.wystepy_slup .loop .wystep.active .bilety_title {
  color: white;
}
.wystepy_slup .loop .wystep.active .lista_biletow {
  color: white;
  border-color: white;
}
.wystepy_slup .loop .wystep.active .lista_biletow a {
  color: #fec027;
}
.wystepy_slup .loop .wystep.active .more {
  color: #00344c;
  background-color: white;
  border-color: white;
}
.wystepy_slup .loop .wystep.active .more:hover {
  color: white;
  background-color: transparent;
}

.category .audycje {
  margin-bottom: 100px;
}
.category .audycje .title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .category .audycje .title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .category .audycje .title {
    font-size: 20px;
    line-height: 26px;
  }
}
.category .audycje .audycja {
  border: 1px solid #5c390e;
  margin-bottom: 20px;
}
.category .audycje .audycja .image_cont {
  border-right: 1px solid #5c390e;
  padding: 10px;
}
.category .audycje .audycja .naglowek {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #5c390e;
}
@media (max-width: 1199px) {
  .category .audycje .audycja .naglowek {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .category .audycje .audycja .naglowek {
    font-size: 12px;
  }
}
.category .audycje .audycja .content {
  font-size: 18px;
  color: #5c390e;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .category .audycje .audycja .content {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .category .audycje .audycja .content {
    font-size: 14px;
  }
}
.category .audycje .audycja .time {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #00344c;
}
@media (max-width: 1199px) {
  .category .audycje .audycja .time {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .category .audycje .audycja .time {
    font-size: 12px;
  }
}
.category .audycje .audycja .time i {
  margin-right: 10px;
}
.category .audycje .subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #5c390e;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .category .audycje .subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .category .audycje .subtitle {
    font-size: 18px;
    line-height: 22px;
  }
}
.category .audycje .btn_default {
  padding-left: 15px;
  padding-right: 15px;
}

.search_tabs {
  padding: 0;
  list-style-type: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #fec027;
  margin-bottom: 14px;
  margin-top: 30px;
}
.search_tabs li {
  margin-right: 100px;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
  color: #5c390e;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 15px;
  cursor: pointer;
}
.search_tabs li.active {
  border-color: #e9aa0a;
}
.search_tabs li:last-child {
  margin-right: 0;
}

.search_cont {
  display: none;
}
.search_cont.active {
  display: block;
}
.search_cont .single_content {
  margin-bottom: 25px;
}
.search_cont .single_content a {
  font-weight: 400;
  font-size: 23px;
  line-height: 27px;
  color: #000000;
  text-decoration: none;
}
.search_cont .single_content .content {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-top: 20px;
}

.form_cont {
  background: #F8F8F8;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 992px) {
  .form_cont {
    display: block;
    height: calc(100% - 123px);
  }
}
.form_cont.active {
  top: 0;
}
@media (max-width: 992px) {
  .form_cont.active {
    top: 123px;
    height: calc(100% - 123px);
  }
}
.form_cont .close_form_cont {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .form_cont .close_form_cont svg {
    width: 15px;
  }
}
.form_cont .container {
  max-width: 600px;
  padding: 15px;
}
.form_cont .container form {
  position: relative;
  margin-bottom: 15px;
}
.form_cont .container form input {
  color: #898989;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #898989;
}
@media (max-width: 992px) {
  .form_cont .container form input {
    font-weight: 400;
    font-size: 9px;
    line-height: 11px;
    max-width: 80%;
    margin: auto;
  }
}
.form_cont .container form input::-webkit-input-placeholder {
  color: #898989;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
}
@media (max-width: 992px) {
  .form_cont .container form input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 9px;
    line-height: 11px;
  }
}
.form_cont .container form input:-moz-placeholder {
  color: #898989;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
}
@media (max-width: 992px) {
  .form_cont .container form input:-moz-placeholder {
    font-weight: 400;
    font-size: 9px;
    line-height: 11px;
  }
}
.form_cont .container form input::-moz-placeholder {
  color: #898989;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
}
@media (max-width: 992px) {
  .form_cont .container form input::-moz-placeholder {
    font-weight: 400;
    font-size: 9px;
    line-height: 11px;
  }
}
.form_cont .container form input:-ms-input-placeholder {
  color: #898989;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
}
@media (max-width: 992px) {
  .form_cont .container form input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 9px;
    line-height: 11px;
  }
}
.form_cont .container form input:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.form_cont .container form .search_button {
  position: absolute;
  top: 8px;
  border: none;
  background: #F8F8F8;
  right: 0;
}
@media (max-width: 992px) {
  .form_cont .container form .search_button {
    right: initial;
    top: 0;
  }
  .form_cont .container form .search_button svg {
    width: 15px;
  }
}
.form_cont .container .form_results {
  margin-top: 6px;
}
.form_cont .container .form_results .product {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #CCCCCC;
}
.form_cont .container .form_results .product .name {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  text-decoration: none;
  padding: 10px 0px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .form_cont .container .form_results .product .name {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    padding: 0;
  }
}
.form_cont .container .form_results .product .woocommerce-Price-amount {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.form_cont .container .form_results .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #000000;
  padding: 16px 0;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 16px;
}
.form_cont .container .form_results .post {
  margin-bottom: 10px;
}
.form_cont .container .form_results .post a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}
.form_cont .container .form_results button {
  color: #00344c;
  font-weight: 700;
  padding: 15px 0;
  background: rgb(233, 170, 10);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(233, 170, 10)), to(rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 0%, rgb(251, 205, 63) 100%);
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  margin: 20px auto 0;
  display: block;
  max-width: 400px;
  width: 100%;
}
.form_cont .container .form_results button:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgb(233, 170, 10)), color-stop(0%, rgb(251, 205, 63)));
  background: linear-gradient(0deg, rgb(233, 170, 10) 100%, rgb(251, 205, 63) 0%);
}