.body-event {
  padding-top: 0px !important;
}
#cart-content {
  padding: 20px 0 60px;
}
html {
  scroll-behavior: smooth;
  font-size: 18px;
  line-height: 26px;
}
header .top-bar {
  display: none;
}
header .navbar-default .navbar-nav > li > a:after {
  content: "";
  position: absolute;
  color: #555 !important;
  right: 0;
}
.menu {
  display: none;
}
header .navbar-default .navbar-nav > li > a {
  text-transform: uppercase;
  color: #555;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 8px;
}
a.wezudzial {
  color: #af5184 !important;
  font-size: 20px !important;
}
a.wezudzial:link,
visited {
  color: #af5184 !important;
  font-size: 20px !important;
}
a.wezudzial:hover,
active {
  color: #af5184 !important;
  font-size: 20px !important;
}
.footer {
  font-family: Noto Sans;
}
.footer h3 {
  margin: 0;
}
.footer .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .description {
  flex-basis: 65%;
  max-width: 100%;
}
.footer .description p {
  line-height: 2em;
}
.footer .tags {
  flex-basis: 25%;
  white-space: nowrap !important;
}
.footer .social {
  flex-basis: 10%;
  display: flex;
  align-items: center;
  min-height: 100px;
}
@media (max-width: 787px) {
  .footer .description {
    flex-basis: 100%;
  }
  .footer .description p {
    line-height: 1.5em;
  }
  .footer .tags {
    flex-basis: 50%;
    margin: 20px auto 0;
  }
  .footer .social {
    flex-basis: 50%;
    margin: 20px auto 0;
    justify-content: center;
  }
}
@media (max-width: 442px) {
  .footer .tags {
    flex-basis: 100%;
  }
  .footer .social {
    flex-basis: 100%;
  }
}
.collapse:not(.show) {
  display: none !important;
}
/* przycisk pomocy BOK */
button.customer-service-entry-button {
  background: none;
  border: none;
  transform: scale(0.85);
  transition: all ease-out 0.2s;
}
@media (max-width: 767px) {
  button.customer-service-entry-button {
    right: auto;
    left: 30px;
  }
}
button.customer-service-entry-button:hover {
  transform: scale(1);
}
button.customer-service-entry-button svg {
  margin: auto;
  background-color: rgba(128, 128, 128, 0.5);
  border-radius: 50%;
  transition: all ease-out 0.2s;
}
button.customer-service-entry-button span {
  color: #ffffff;
  padding: 0 2px;
  border-radius: 3px;
  font-weight: 700;
  box-shadow: inset 0 0 20px -2px rgba(128, 128, 128, 0.9);
  position: relative;
  top: -10px;
  transition: all ease-out 0.2s;
}
button.customer-service-entry-button:hover svg {
  background-color: rgba(255, 0, 0, 0.7);
}
button.customer-service-entry-button:hover span {
  box-shadow: inset 0 0 20px 2px #ff0000;
}
/* END --- przycisk pomocy BOK --- END */
/* =========================================
           KOD PASKA POWIADOMIEŃ
           ========================================= */
#custom-alert-bar {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  border-bottom: 3px solid #9a0007;
  position: relative;
  z-index: 99999;
  animation: alertSlideDown 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.custom-alert-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 50px 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.custom-alert-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #ffcdd2;
  margin-top: 2px;
}
.custom-alert-content {
  flex-grow: 1;
}
#custom-alert-bar h4 {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffcdd2;
  display: flex;
  align-items: center;
  gap: 8px;
}
#custom-alert-bar h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff5252;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff5252;
}
.custom-alert-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-alert-event {
  background: rgba(0, 0, 0, 0.15);
  border-left: 3px solid #ff5252;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
}
.custom-alert-event strong {
  color: #ffffff;
  font-weight: 600;
}
.custom-alert-time {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #ffebee;
}
@media (min-width: 768px) {
  .custom-alert-event {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .custom-alert-time {
    margin-top: 0;
    margin-left: 12px;
    flex-shrink: 0;
  }
}
#custom-alert-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #ffcdd2;
  font-size: 26px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
#custom-alert-close:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}
@keyframes alertSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body {
  font-family: "Dosis", 'Ubuntu', sans-serif;
  font-weight: 300;
}
.swal2-modal {
  font-family: "Dosis", 'Ubuntu', sans-serif !important;
}
table.simple,
.subscription .price {
  font-family: "Dosis", 'Ubuntu', sans-serif;
}
article .tags-review a:hover {
  color: #333399;
}
.expand-release-description {
  border-bottom: 1px solid #333399;
  color: #333399;
}
.btn-1 {
  background-color: #333399;
}
.block .article .tags .tag {
  background: #333399;
}
.block .article .text .lead:before {
  background: #333399;
}
.block .block-title span {
  border-bottom: 1px solid #333399;
}
header .promo-text {
  color: #333399;
}
header .btn-border {
  border: 2px solid #333399;
  color: #333399;
}
header .btn-border:hover {
  background: #333399;
}
header .navbar-default .navbar-nav > li > a:hover {
  color: #333399;
}
header .search-form input[type="text"] {
  border-bottom: 2px solid #333399;
}
header .search-form .btn {
  color: #333399;
}
.get-in {
  color: #333399;
}
.text-primary {
  color: #333399;
}
.btn.btn-default {
  border: 2px solid #333399;
  color: #333399;
}
.btn-primary {
  border: 2px solid #333399;
  background-color: #333399;
}
.pay-wall-box .year-price,
.pay-wall-box .month-price {
  color: #333399;
}
.pay-wall-box .plan {
  color: #333399;
}
.search-elem .section {
  background: #333399;
}
.search-elem .details .author {
  color: #333399;
}
.filter-name {
  border-bottom: 2px solid #333399;
}
.filters li .order i.active {
  color: #333399;
}
.filters li.active > i {
  color: #333399;
}
.post-listing__read-more-btn {
  background: #333399;
}
.btn-load-more {
  background: #333399;
}
.block .article.separated .text .details .author {
  color: #333399;
}
#submit-filters input[type="submit"] {
  background: #333399;
}
article .post-title {
  font-family: "Rubik";
}
article.article .article-content h1,
article.article .article-content h2:not(.simplebox-title),
article.article .article-content h3,
article.article .article-content h4,
article.article .article-content h5,
article.article .article-content h6 {
  font-family: "Rubik";
}
article .content blockquote::before {
  color: #333399;
}
article .content blockquote::after {
  color: #333399;
}
.breadcrumbs__link:hover {
  color: #333399;
}
.testimonial .content {
  font-family: "Rubik";
}
.number-slider .item {
  font-family: "Rubik";
}
.releases .details {
  font-family: "Rubik";
}
.releases .contents-header {
  font-family: "Rubik";
}
.search-elem .title {
  font-family: "Rubik";
}
.block .new-release-block .release-title {
  font-family: "Rubik";
}
.search-elem .content .highlight {
  color: #333399;
}
article.article .details-on-image p.section {
  color: #333399;
}
article .content a.footnote {
  color: #333399;
}
article .content aside .ref-mark {
  color: #333399;
}
#filters .multiple.active {
  color: #333399;
}
header .navbar-default .navbar-nav > li a.active {
  color: #333399 !important;
}
#related-posts-menu li .active {
  border-bottom: 1px solid #333399;
}
a {
  color: #333399;
}
.text-primary {
  color: #333399;
}
.bg-primary {
  background-color: #333399;
}
.btn-primary {
  background-color: #333399;
  border-color: #333399;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #333399;
  border-color: #333399;
}
.btn-primary .badge {
  color: #333399;
}
.btn-link {
  color: #333399;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background-color: #333399;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  border-color: #333399;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  background-color: #333399;
}
.pagination > li > a,
.pagination > li > span {
  color: #333399;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #333399;
  border-color: #333399;
}
.label-primary {
  background-color: #333399;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #333399;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #333399;
}
.progress-bar {
  background-color: #333399;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  background-color: #333399;
  border-color: #333399;
}
.panel-primary {
  border-color: #333399;
}
.panel-primary > .panel-heading {
  background-color: #333399;
  border-color: #333399;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #333399;
}
.panel-primary > .panel-heading .badge {
  color: #333399;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #333399;
}
#nav-main > ul > li a.active {
  color: #333399 !important;
}
.release-menu__link {
  color: #333399;
}
.release-menu__link:hover i {
  color: #333399;
}
.releases .download-section .info-text .blue {
  color: #333399;
}
.new-filters__listing-name {
  color: #333399;
}
.new-filters__listing-details {
  color: #333399;
}
.new-filters__breadcrumbs-container:before {
  background: #333399;
}
.new-filters__mark-all span {
  color: #333399;
}
.file-page__download-button {
  color: #333399 !important;
}
.file-page__cover {
  border: 1px solid #333399;
}
label input[type="radio"]:checked ~ i.fa.fa-dot-circle-o {
  color: #333399;
}
label:hover input[type="radio"] ~ i.fa {
  color: #333399;
}
div[data-toggle="buttons"] label:hover {
  color: #333399;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  text-decoration: none;
  background-color: #333399;
  color: #FFF;
}
.navbar-nav li a {
  font-family: "Rubik";
}
.release-listing__img-outer img {
  border: 1px solid #333399;
}
.release-listing__btn {
  background: #333399;
}
