#offer-page-title {
  display: none;
}

#main_slideout_panel {
  background-image: url("../../../images/oferty/bg.jpg");
  background-attachment: fixed;
  background-size: 100vw 100vh;
}
@media (max-width: 1366px) {
  #main_slideout_panel {
    background-image: url("../../../images/oferty/bg_mobile_sm.jpg");
  }
}

body.oferty {
  margin: unset;
  width: unset;
}

.oferty {
  margin: 60px auto 100px auto;
  width: 70vw;
}
.oferty::before {
  content: unset;
}
@media (max-width: 1510px) {
  .oferty {
    width: 80vw;
  }
}
@media (max-width: 1360px) {
  .oferty {
    width: 90vw;
  }
}
@media (max-width: 768px) {
  .oferty {
    margin-bottom: 200px;
  }
}
.oferty h1 {
  margin-bottom: 16px;
}
.oferty__top {
  padding: 2px 0 0 12px;
  margin-bottom: 8px;
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1023px) {
  .oferty__top {
    background-color: transparent;
    padding: 0;
  }
}
.oferty__top__text {
  font-size: 1.5rem;
  font-weight: 400;
}
.oferty__top__text--short {
  display: none;
}
@media (max-width: 1157px) {
  .oferty__top__text--short {
    display: unset;
  }
  .oferty__top__text--long {
    display: none;
  }
}
.oferty__top__check {
  display: flex;
  align-items: center;
  gap: 2px;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.oferty__top__check .glyphicon {
  font-size: 16px;
  top: 0;
  font-weight: 400;
  margin-right: 3px;
}
.oferty__top__check .glyphicon-check {
  display: none;
}
.oferty__top__check.active .glyphicon-check {
  display: unset;
}
.oferty__top__check.active .glyphicon-unchecked {
  display: none;
}
.oferty__top__icon-btn {
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: transparent;
  outline: none;
  font-size: 16px;
  border: black solid 1px;
  border-radius: 3px;
}
@media (max-width: 1023px) {
  .oferty__top__icon-btn {
    display: flex;
  }
}
.oferty__top__icon-btn .glyphicon {
  transition: all 100ms;
}
.oferty__top__icon-btn:active .glyphicon {
  transform: scale(0.8);
}
.oferty__top__icon-btn--filter {
  margin-right: auto;
}
.oferty__top__mobile-select .oferty__top__icon-btn {
  position: absolute;
  z-index: -1;
}
@media (max-width: 1023px) {
  .oferty__top__mobile-select {
    position: relative;
    width: 32px;
    height: 32px;
    overflow: hidden;
  }
  .oferty__top__mobile-select select {
    top: 0;
    left: 0;
    appearance: none;
    padding-left: 32px;
    height: 32px;
  }
}
.oferty__top__select {
  background-color: transparent;
  border: none;
  outline: none;
  text-align: right;
}
.oferty__top__search {
  display: flex;
  color: black;
  font-weight: 400;
  border-bottom: solid black 2px;
}
.oferty__top__search__clear {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.oferty__top__search__clear.active {
  opacity: 1;
  height: auto;
}
.oferty__top__search input {
  border: none;
  background-color: transparent;
  border: none;
  outline: none;
}
.oferty__top__search input::placeholder {
  color: black;
  text-transform: uppercase;
  font-size: 13px;
}
.oferty__top__search button {
  background-color: transparent;
  border: none;
  outline: none;
  padding-top: 0;
  padding-bottom: 0;
}
.oferty__top__head .oferty__top__check {
  margin-right: 10px;
}
@media (max-width: 1090px) {
  .oferty__top__head .oferty__top__check {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .oferty__top__head .oferty__top__check {
    display: none;
    margin-right: 0;
  }
  .oferty__top__head .oferty__top__select--miasto {
    display: none;
  }
}
.oferty__top__head {
  display: flex;
  align-items: center;
  gap: 6px;
}
.oferty__top__mobile-filters .oferty__top__select--miasto {
  float: right;
}
.oferty__top__mobile-filters {
  max-height: 0;
  margin-bottom: 8px;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
}
.oferty__top__mobile-filters.active {
  max-height: 100vh;
}
.oferty__top__mobile-filters__checks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 12px 0;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.oferty__loading__loader {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-top: 40px;
  border: 8px solid #f10000;
  border-top: 8px solid transparent;
  border-radius: 50%;
  animation: spin 1500ms linear infinite;
}
.oferty__loading__error {
  display: none;
  font-size: 1.5rem;
}
.oferty__loading__error.active {
  display: block;
}
.oferty__loading__error b {
  font-weight: bold !important;
}
.oferty__loading__error a {
  color: inherit;
  text-decoration: underline;
}
.oferty__brak-ofert {
  display: none;
}
.oferty__brak-ofert.active {
  display: block;
}
.oferty__wrapper {
  --items-in-row: 4;
  display: grid;
  grid-template-columns: repeat(var(--items-in-row), 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .oferty__wrapper {
    --items-in-row: 3;
  }
}
@media (max-width: 720px) {
  .oferty__wrapper {
    --items-in-row: 2;
  }
}
@media (max-width: 480px) {
  .oferty__wrapper {
    --items-in-row: 1;
  }
}
.oferty__oferta {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) 40%);
  color: white;
}
.oferty__oferta__polub {
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  transition: all 50ms;
}
.oferty__oferta__polub:active {
  transform: scale(0.8);
}
.oferty__oferta__polub span {
  font-size: 16px;
  display: block;
}
.oferty__oferta__polub .glyphicon-heart {
  display: none;
}
.oferty__oferta__polub.active .glyphicon-heart {
  display: block;
}
.oferty__oferta__polub.active .glyphicon-heart-empty {
  display: none;
}
.oferty__oferta__detale, .oferty__oferta__kabina {
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.oferty__oferta__detale *, .oferty__oferta__kabina * {
  color: white !important;
}
.oferty__oferta__detale {
  margin-top: 12px;
  font-weight: bold;
}
.oferty__oferta__data-dostawy {
  text-align: center;
  margin-top: 10px;
}
.oferty__oferta__info-row {
  display: flex;
  padding: 0 13px;
}
.oferty__oferta__info-row > *:nth-child(2) {
  font-weight: bold;
  margin-left: auto;
}
.oferty__oferta__miasto {
  margin-bottom: 16px;
}
.oferty__oferta__cena {
  margin-right: 0.5ch;
  letter-spacing: 1px;
}
.oferty__oferta__cena--netto {
  transform: scale(1.5) translateY(8%);
  transform-origin: bottom right;
}
.oferty__oferta__cena--brutto {
  margin-bottom: 12px;
}
.oferty__oferta__zobacz {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin: auto;
  margin-top: 12px;
  padding: 6px 0;
  background-color: #eaeaea;
  color: black;
  transition: all 200ms;
}
.oferty__oferta__zobacz:focus {
  color: black;
  text-decoration: none;
}
.oferty__oferta__zobacz:hover {
  background-color: #f10000;
  color: white;
}

.oferty__oferta img{
  width: 256.55px;
  height: 167.86px;
  margin-bottom: 16px;
  object-fit: cover;
}

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