*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --white: #fff;
  --grey-3: #333;
  --grey-6: #666;
  --greyish: #f8f9fa;
  --red: #e31e24;
  --tr-red: #bd1117;
  --yellow: #ffd700;
  --yellow-hover: #fce66e;
  --green: #28a745;
  --green-hover: #3cbb5a;
  --shadow: #000000;
  --width-800: 50rem;
  --width-1200: 75rem;
  --px-rem-250: 15.625rem;
  --px-rem-300: 18.75rem;
  --px-rem-215: 13.438rem;
  --px-rem-170: 10.625rem;
  --px-rem-40: 2.5rem;

}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--grey-3);
  background: var(--grey-3);
}
a {
  text-decoration: none;
}
p a {
  color: var(--red);
}

.container {
  max-width: var(--width-1200);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  background: var(--white);
}

.nav-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  background: radial-gradient(#00000045, transparent), var(--red);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 0 0 25% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.logo-svg-elblag {
  background-image: url('../img25/elblag_logo.svg');
  width: 50px;
  height: 50px;

}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--grey-3);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 3px;
}
/* Submenu */
nav ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--grey-3);
    transition: background-color 0.3s;
}

nav ul li ul {
    display: none;
    position: absolute;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
    margin: 0 0 0 10px;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    display: block;
    white-space: nowrap;
}

nav ul li ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--grey-3);
    transition: background-color 0.3s;
}

.hamburger {
  background: linear-gradient(transparent, #00000040), var(--red);
  width: 100px;
  height: 100px;
  border-radius: 0 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-direction: column;
  opacity: 0;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
  opacity: .4;
}

.sub-nav {
  background: var(--white);
  padding: 0.5rem 0;
  border-top: 1px solid #eee;
}

.sub-nav-container {
  max-width: var(--width-1200);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: .5rem 2rem;
}

.sub-nav-link {
  text-decoration: none;
  color: var(--grey-6);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.sub-nav-link:hover {
  color: var(--red);
}

/* Hero Section */
.hero {
  background: transparent;
  min-height: 655px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  margin-top: 120px;
  transition: opacity 1s ease-in-out;
}

/* Slider */

  .mySlides {
    display: none;
    position: fixed;
    z-index: -1;
    margin-top: -8rem;
  }
  
  .mySlides img {
    
    object-fit: cover;
    vertical-align: middle;
  }

  /* Fading animation Slider*/

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  max-width: var(--width-800);
  text-shadow: var(--shadow) 0 0 5px;
}

.overlay {
  border-image: url('./../img25/slider_elblag_2.jpg') fill 1;
}

.cta-button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 30px;
  cursor: pointer;
}

.cta-button:hover {
  background: #e6e6e6;
  color: var(--red);
}

.cta-hero-button {
  background: var(--white);
  color: rgb(0, 0, 0);
  border: none;
  padding: .6rem 1.6rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 30px;
  cursor: pointer;
}

.cta-hero-button:hover {
  background: #eaeaea;
}

a.cta-hero-button:hover {
  color: var(--red);
}

.hero-cards {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-card {
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  max-width: 342px;
  max-height: 250px;
  text-align: center;

  display: flex;
  flex-direction: column;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.8s;
}

.hero-card h3 {
  font-size: 1rem;
  margin: 1rem 0;
  color: var(--white);
  text-shadow: var(--shadow) 0 0 5px;
}

.hero-card-elblag {
  background-image: linear-gradient(#000000a8, #00000036), url(./../img25/2z3_elblag.jpg);
}
.hero-card-portel {
  background-image: linear-gradient(#000000a8, #00000036), url(./../img25/1z3_elblag.jpg);
}
.hero-card-nawynos {
  background-image: linear-gradient(#000000a8, #00000036), url(./../img25/3z3_elblag.jpg);
}

.hero-card-elblag, .hero-card-nawynos, .hero-card-portel {
    background-size: cover;
}

.hero-card:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);

}

/* Fotka Section */
.featured {
  padding: 4rem 0;
  background: var(--greyish);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--grey-3);
}

.featured-text p {
  margin-bottom: 2rem;
  color: var(--grey-6);
  line-height: 1.8;
}

.cointainer-h1 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--red);
  margin: 0 0 3rem 0;
}

.btn-secondary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--tr-red);
}

.featured-image img {
  width: calc(100% - 13rem);
  border-radius: 10px;
}
#art-img_4 img, #art-img_5 img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 9 / 12;
}

/* News Grid */
.news-grid {
  background: var(--white);
  padding: 4rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  max-width: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--grey-3);
  text-wrap: balance;
}

.card-content p {
  color: var(--grey-6);
  margin-bottom: 1.5em;
  line-height: 1.6;
  overflow: hidden; 
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.card-content a {
  font-size: 1rem;
} 
.btn-yellow {
  background: var(--yellow);
  color: var(--grey-3);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
}

.btn-yellow:hover {
  background: #ffed4e;
}

/* Calender */

.calendar-widget {
  background: var(--yellow);
  color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.calendar-header {
  text-align: center;
  background: var(--red);
}

.calendar-day {
  font-size: 3rem;
  font-weight: bold;
  display: block;
}

.calendar-month {
  font-size: 1.2rem;
}

.calendar-content {
  padding: .5em;
  background: var(--yellow);
}

.calendar-content h4 {
  margin-bottom: 1rem;
}

.calendar-content ul {
  list-style: none;
}

.calendar-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

#cal_title {
    padding-top: .1em;
    margin: 0 0 -0.3em 0;
    font-size: 6em;
  }
#wybraneDiv{
  font-size: 1.2rem;
  background: var(--yellow);
  border-radius: .5rem .5rem 0 0;
  padding-top: .1em;
  margin-top: .6em;
  color: var(--white);
}
.komkal0 {
  background: var(--yellow);
  border-radius: .5rem;
  color: var(--tr-red);
}

.imprlist {
  margin: 0 .5em 0 .5em;
}

.imprlist a {
  color: var(--red);
  font-size: 1rem;
  font-weight: 600;
  margin: .1em 0 .1em 0;
}
.imprlist a:hover {
  color: var(--tr-red);
}
.list-start {
  margin: 1em 0 0 0;
  text-shadow: 0px 0px 2px #333;
}
.list-end {
  margin: 1em 0 0 0;
  font-size: .9rem;
  color: var(--grey-3);

}

tr:hover:nth-child(n + 2) {
  background: var(--tr-red);
}

tr:nth-child(1) {
  font-weight: 700;
  font-size: 1.8rem;
}

table {
  border-collapse: collapse;
  width: 100%;
  cursor: pointer;
}

table th, table td {
  padding: 0.5em;
  text-align: center;
}

@media (max-width: 380px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* --------------------- */

.news-card.special {
  background: var(--white);
  color: var(--white);
}

.news-card.special img {
  height: 100%;
}

.news-card.special .card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  text-align: center;
}

/* Acordeon */

.accordion {
  background: var(--yellow);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red);
  padding: 1rem 1rem 1rem 0;
  max-width: var(--width-800);
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  width: -webkit-fill-available;
}

.accordion:focus {
  outline: 0;
}

.active, .accordion:hover {
  background: var(--yellow);
}

.accordion:after {
  content: '\002B';
  color: var(--red);
  font-weight: bold;
  font-size: large;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
    text-align: left;
    background: transparent;
    display: flex;
    max-height: 0;
    margin: 1rem auto 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    gap: 3rem;
    width: 100%;
    flex-direction: row;
}

.panel a {
  font-size: 1rem;
  color: var(--red);
}

.panel a:hover {
  color:var(--grey-3);
}

.panel ul {
  list-style: none;
}
/* Katalog Firm Section */
.cta-section {
  background: var(--yellow);
  padding: 3rem 0 2rem 0;
}

.cta-content {
  max-width: var(--width-800);
  text-align: center;
  margin: 0 auto;

}

.cta-content h2 {
  margin-bottom: 2rem;
  color: var(--grey-3);
  font-size: 2.5rem;
  text-wrap: balance;
}

.cta-cat {
  display:grid;
  grid-template-columns: 6fr 2fr;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
}
.cta-cat a h3 {
  color: var(--red);
  font-size: 1.2rem;
  text-align: left;
}

.cta-cat a h3:hover {
  color: var(--grey-3);
}

.cta-cat span {
  text-align: right;
}

.btn-cta-cat {
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  padding: .5rem;
  border-radius: 2rem;
  cursor: pointer;
}

.btn-cta-cat:hover {
  background: var(--green-hover);
  color: var(--grey-3);
}

.btn-cta-cat:after {
  content: '\002B';
  color: var(--white);
  font-weight: bold;
  font-size: 1rem;
  margin-left: .5rem;
}

.btn-cta-cat:hover:after {
  color: var(--grey-3);
}

.search-container form {
  display: flex;
  gap: 1rem;
  max-width: var(--width-800);
  margin: 0 auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.search-container form input[type=text],
.search-container form select {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  flex: 1;
  min-width: 200px;
}

.search-container form input[type=text]:focus-visible {
  border: 2px solid var(--grey-6);
  outline: -webkit-focus-ring-color 0;
}

input[type=submit], .btn-search {
  background: var(--red);
  color: var(--white);
  border: none !important;
  padding: 0.8rem 2rem !important;
  border-radius: 30px !important;
  cursor: pointer;
  font-size: 1rem;
}

input[type=submit]:hover, form .btn-search:hover {
  background: var(--tr-red);
}

/* NaWynos Section */
.restaurant-section {
  padding: 4rem 0;
  background: var(--greyish);
}

.restaurant-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--grey-3);
}

.restaurant-section > p {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--grey-6);
  max-width: var(--width-800);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  margin: 2rem 0 3rem 0;
}

.restaurant-promo {
  background: var(--tr-red);
  color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.promo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow);
  color: var(--grey-3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
}

.restaurant-promo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.promo-content {
  padding: 2rem;
}

.promo-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.promo-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.restaurant-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;

}

.restaurant-promo-grid img {
  height: auto;
   scale: .8;
}

.btn-red {
  background: var(--white);
  color: var(--red);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-red:hover {
  background: #f0f0f0;
}

.restaurant-info,
.chef-section {
  overflow: hidden;
}

.restaurant-info h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
}

.restaurant-info img,
.chef-section img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.info-content {
  padding: 1.5rem;
}

.info-content h4 {
  margin-bottom: 1rem;
  color: var(--grey-3);
}

.info-content p {
  color: var(--grey-6);
  line-height: 1.6;
}

.chef-content {
  padding: 1.5rem;
}

.chef-content h4 {
  margin-bottom: 1rem;
  color: var(--grey-3);
}

.chef-content p {
  color: var(--grey-6);
  line-height: 1.6;
}

.restaurant-section .btn-red {
  background: var(--yellow);
  color: var(--red);
  font-size: .9rem;
  display: block;
  margin: 0 auto;
}

.btn-restaurant-yellow {
  background: var(--yellow);
  color: var(--grey-3);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
}

.btn-restaurant-yellow:hover {
  background: #ffed4e;
}

.restaurant-section .btn-red:hover {
  background: var(--yellow-hover);
}


/* Footer */
.footer {
  background: var(--grey-3);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-contact p, a {
  font-size: .8rem;
}



.footer-logo {
  color: var(--white);
  width: 5em;
  height: 5em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-logo-svg-elblag {
    background-image: url('../img25/um_elblag_logo.svg');
    width: 2.7rem;
    height: 2.7rem;
    padding-right: 9.6rem;
    scale: 1.5;
}

.footer-nav {
  display: grid;
  gap: .2rem .8rem;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: .8rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--red);
}

.footer-contact p {
  margin-bottom: 1rem;
}

.footer-contact .btn-red {
  background: var(--red);
  color: var(--white);
}

.footer-contact .btn-red:hover {
  background: var(--tr-red);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #999;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
  .hero {
    margin-top: var(--px-rem-170);
    padding: var(--px-rem-40) 0;
  }
}

@media (max-width: 660px){
.hero {
    margin-top: var(--px-rem-170);
    padding: 2rem;
    display: flex;
    flex-shrink: 1;
  }
}  

@media (max-width: 513px){
   .hero {
    margin-top: var(--px-rem-215);
    padding: 2rem;
    display: flex;
    flex-shrink: 1;
  }
}

@media (max-width: 396px){
   .hero {
    margin-top: var(--px-rem-250);
    padding: 2rem;
    display: flex;
    flex-shrink: 1;
  }
}

@media (max-width: 660px) {
  .submenu {
    display:none !important;
  }

  .active-submenu {
    display: block !important;
    background: var(--greyish);
    border: 1px solid var(--red);
  }

  nav ul li ul {
    position:unset;
    display: none !important;
    margin:0 .2rem;
}

  .hamburger {
    display: flex;
    opacity: 1;
  }

  .bar {
  opacity: 1;
  cursor: pointer;
}

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active-burger {
    left: 0;
  }

  .sub-nav-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .hero-cards {
    flex-direction: column;
    align-items: center;
  }

  .featured-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-text h2 {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
  .search-container {
    flex-direction: column;
    align-items: center;
  }
  .search-container form {
    flex-direction: column;
    align-items: center;
  }

  .search-container input[type=text],
  .search-container select {
    width: 100%;
    max-width: 400px;
  }
   .search-container form input[type=text],
  .search-container form select {
    width: 100%;
    max-width: 400px;
  }

  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  #art-img_4 img, #art-img_5 img {
    max-width: 100%;
    height: auto;
    aspect-ratio: unset;
}
}

@media (max-width: 500px) {
    nav ul li ul {
    position:unset;
}
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-card {
    max-width: 100%;
  }

  .featured-text h2 {
    font-size: 1.8rem;
  }

  .restaurant-section h2 {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0;
  }

  .sub-nav-container {
    padding: 0 15px;
  }

  .cta-cat {
    grid-template-columns: 5fr 2fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card {
  animation: fadeInUp 0.6s ease-out;
}

.hero-card {
  animation: fadeInUp 0.8s ease-out;
}

html {
  scroll-behavior: smooth;
}


/*///////////////////   Na Wynos    ///////////////*/
.shops_list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .75em;
  border-radius: .6rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.shops_list::after {
  margin: 0 0 1rem 0;
}

.shops_list li .restCont {
  position: relative;
  cursor: pointer;
  margin: 0 0 1rem;
  background-color: var(--white);
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  padding: 15px;
  color: var(--grey-3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.shops_list li .restCont:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.shops_list li .rest0 {
  display: inline-block;
  padding: 0;
  margin-inline-start: -46px;
}

.shops_list li .rest1 {
  padding: 0 5px;
  width: calc(100% - 170px);
  position: absolute;
  bottom: 15px;
  left: 103px;
  line-height: .8rem;
}

.lewymarg .shops_list li .rest1 {
  width: calc(100% - 160px);
}

.shops_list li .rest1 div {
  display: inline-block;
  font-size: 1rem;
}

.shops_list li .list_img {
  float: left;
  display: inline-block;
  padding: 0;
  width: 80px;
}

.shops_list li .list_img img {
  display: flex;
  border-radius: .3rem;
  -moz-border-radius: .3rem;
  -webkit-border-radius: .3rem;
  width: 80px;
  height: 80px;
}

.shops_list li strong {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 500;
  margin-bottom: .2rem;
}

.shops_list li .restCont.lipolecany {
  border: 0 solid var(--tr-red);
}

.shops_list li h3 {
  margin: 5px 0;
  font-weight: 500;
  font-size: 1.2rem;
}

span.stars,
span.stars span {
  display: block;
  background: url('https://www.nawynos.elblag.pl/img/stars44.svg') 0 -15px repeat-x;
  background-size: 24px;
  margin: 1px 0;
  width: 120px;
  height: 15px;
}

span.stars span {
  background-position: 0 0;
}

.shops_list .rabat {
  display: inline-block;
  background-color: var(--tr-red);
  color: var(--white);
  width: 55px;
  border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
}

.shops_list .rabat {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.shops_list .lipolecany .rabat {
  border-left: 2px solid #fff2ea;
}

.shops_list .rabat div {
  display: block;
  font-size: 1.8rem;
  line-height: 1rem;
  font-weight: 600;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin: 18px 100%;
  text-align: center;
}

.shops_list .rabat div {
  width: 110px;
}

.shops_list .rabat div span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
}

.shops_list .rabat div p {
  display: inline;
  padding-right: .1rem;
  font-size: 2rem;
  font-weight: 600;
}

.flexcont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: space-around;
}

.iconlist {
  background-repeat: no-repeat;
  background-position: left 2px;
  background-size: 1rem 1rem;
  width: 1.5rem;
  height: 1rem;
  display: inline-block;
}

.clock {
  background-image: url('https://www.nawynos.elblag.pl/img/clock.svg');
}

.truck {
  background-image: url('https://www.nawynos.elblag.pl/img/truck.svg');
}