.slick-slide {
  margin: 0 12px;
}
#template .pakiet__biznes{
  border-bottom: 4px solid var(--pakiet-biznes);
}
#template .pakiet__premium{
  border-bottom: 4px solid var(--pakiet-premium);
}
#template .pakiet__bazowy{
  border-bottom: 4px solid var(--pakiet-bazowy);
}
.card {
    box-shadow: 0 1px 2px #CCC;
    background: #fff;
    border: 1px solid #efefef;
    box-shadow: 2px 2px 14px 0 rgba(0,0,0,.1);
    text-align: center;
    border-radius: 12px;
    margin-bottom: 15px;
}
.card-body{
  padding-top: 0;
}
.item__image {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 18px;
    overflow: hidden;
    padding: 0 10%;
}
.item__image img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    display: block;
}
.item .item__title {
  margin-top: 15px;
  border-top: 1px solid #efefef;
  padding-top: 15px;
  text-align: center;
}
.item .item__title a {
  font-size: 15px;
  text-transform: uppercase;
  color: #333;
  font-weight: 700;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.item .item__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 22px;
  color: #5d5d5d;
  margin-bottom: 2%;
}
.item__actions{
  text-align: center;
  padding: 0.5rem 1rem 2rem;
}
#template .pakiet__biznes .item__actions .btn-more{
  background: var(--pakiet-biznes);
  box-shadow: var(--pakiet-biznes-shadow);
}
#template .pakiet__premium .item__actions .btn-more{
  background: var(--pakiet-premium);
  box-shadow: var(--pakiet-premium-shadow);
}
#template .pakiet__bazowy .item__actions .btn-more{
  background: var(--pakiet-bazowy);
  box-shadow: var(--pakiet-bazowy-shadow);
}
#template .pakiet__biznes .item__actions .btn-more:hover,
#template .pakiet__bazowy .item__actions .btn-more:hover{
  background: var(--theme-yellow);
  box-shadow: 0 0 0 3px rgba(243, 202, 120, .3);
}
#template .pakiet__premium .item__actions .btn-more:hover{
  background: var(--theme-blue);
  box-shadow: 0 0 0 3px rgba(135, 200, 249, .3);
}
/* Slick */
#template .slick-dots li.slick-active button:before{
  color: var(--theme-purple);
}
#template .slick-prev, #template .slick-next{
  color: var(--theme-purple);
  width: auto;
  height: auto;
}
#template .slick-prev:hover i, #template .slick-next:hover i{
  color: var(--theme-blue);
  border: 3px solid var(--theme-blue);
}
#template .slick-prev{
  left: -5rem;
}
#template .slick-next{
  right: -5rem;
}
#template .slick-prev::before, #template .slick-next::before{
  display: none!important;
}
#template .slick-prev i, #template .slick-next i{
  font-size: 1.8rem;
  line-height: 2.7rem;
  width: 3rem;
  height: 3rem;
  border: 3px solid var(--theme-purple);
  text-align: center;
  border-radius: 50%;
}
/* Badges */
.pakiet-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  text-align: center;
  border: 2px solid var(--pakiet-bazowy);
  border-radius: 10px;
  padding: 1px 8px 3px;
  background: #fff;
  z-index: 1;
}
.pakiet-badge:before {
    content: "\f1d8";
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    color: var(--pakiet-bazowy);
    font-weight: 600;
    vertical-align: bottom;
}
.pakiet-badge > span {
    font-size: 12px;
    font-weight: 700;
    color: var(--pakiet-bazowy);
    text-align: center;
}
.pakiet-badge.badge--biznes {
    border: 2px solid var(--pakiet-biznes);
}
.pakiet-badge.badge--biznes::before{
  content: "\f135";
  color: var(--pakiet-biznes);
}
.pakiet-badge.badge--biznes span{
  color: var(--pakiet-biznes);
}
.pakiet-badge.badge--premium {
    border: 2px solid var(--pakiet-premium);
}
.pakiet-badge.badge--premium::before{
  content: "\f0fb";
  color: var(--pakiet-premium);
}
.pakiet-badge.badge--premium span{
  color: var(--pakiet-premium);
}
.pakiet-badge.badge--bazowy {
    border: 2px solid var(--pakiet-bazowy);
}
.pakiet-badge.badge--bazowy::before{
  content: "\f1d8";
  color: var(--pakiet-bazowy);
}
.pakiet-badge.badge--bazowy span{
  color: var(--pakiet-bazowy);
}