.popular-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.popular-list>h5 {
    font-size: 24px;
    font-weight: 900;
    margin: 20px 10px 10px;
}

.popular-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 10px 40px;
  /*  -webkit-box-shadow: 2px 5px 15px #f2f2f2;
    box-shadow: 2px 5px 15px #f2f2f2;   */
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.popular-block:focus,
.popular-block *:focus {
    outline: none;
}

.popular-block:hover {
    -webkit-box-shadow: 0 10px 10px rgb(0 0 0 / 50%);
    box-shadow: 0 10px 10px rgb(0 0 0 / 50%);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.popular-img {
    overflow: hidden;
    width: 100%;
    height: 180px;
    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;
}

.popular-content {
    padding: 18px;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.popular-content h6 {
    font-size: 14px;
    font-weight: 900;
    margin: 0 0 10px;
}

.popular-content>p {
    font-size: 10px;
    font-weight: 300;
    margin: 3px 0 16px;
}

.popular-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.popular-btn a.btn {
    padding: 5px 10px;
    min-width: 110px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #747474;
    color: #343434;
    font-weight: 700;
    font-size: 13px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.popular-block:hover a.btn,
.popular-btn a.btn:hover {
    color: #ffffff;
    background: #343434;
    border: 1px solid#343434;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.popular-btn ul {
    font-size: 10px;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0 0 0 10px;
    margin: 0;
    text-transform: lowercase;
    color: #747474;
    position: relative;
    z-index: 99;
}

.popular-block a.full {
    position: absolute;
    top: 0;
    left: 0;
   /* width: 100%; */
    height: 100%;
    z-index: 1;
}

.popular-btn ul li {
    margin-right: 3px;
}

.popular-list .slick-arrow::before {
    font-family: "frankof";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.popular-list .slick-arrow::before {
    content: '\e814';
    font-size: 13px;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 26px;
    width: 26px;
    margin: auto;
    background: #252525;
    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;
    border-radius: 20px;
}

.popular-list .slick-arrow {
    position: absolute;
    padding: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    border: none;
    color: white;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}

.popular-list .slick-arrow.slick-next {
    right: -7px;
}

.popular-list .slick-arrow.slick-prev {
    left: -7px;
}

.popular-list .slick-arrow.slick-next::before {
    content: '\e815';
}

@media (max-width: 560px) {
    .popular-list {
        padding: 0 20px;
    }
    .popular-list>h5 {
        margin: 20px 10px 10px 0;
    }
    .popular-img {
        height: 240px;
    }
}