.rest-block {
    position: relative;
}
.rest-block .action-head {
    text-align: center;
}
.rest-item {
    display: flex;
    flex-direction: column;
    flex: 1 33%;
    text-align: center;
    max-width: 360px;
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
}
.rest-item .card {
    background-color: #371d10;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 30%);
    overflow: hidden;
    position: relative;
    height: 100%;
}
.rest-list-block.karaoke-block .rest-item .card {
    background-color: #FFF;
}
.rest-item .card .is-new-label {
    position: absolute;
    right: 10px;
    top: 10px;

    color: #000000;
    background-color: #fcc508;

    font-weight: 400;
    font-size: 12px;
    display: table-cell;
    width: 50px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50px;
    background-color: #111;
    color: #fff;
    box-sizing: border-box;
    padding: 0 10px;
}

.rest-item .card .slides {
    position: relative;
    height: 300px;
}
.rest-item .card .slides .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-size: cover;
}
/*
.rest-item .card .slides:hover .slide-item:nth-child(2) {
    display: none;
}
*/
.rest-item .card .slides:hover .slide-item.first {
    display: none;
}
.rest-item .card .rest-info a {
    color: #FFF;
    text-decoration: none;
}
.rest-item .card .rest-info {
    padding: 18px 20px;
    font-weight: 700;
}
.rest-item .card .rest-info .title {
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}
.rest-item .card .controls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto 2px 20px;
    padding: 5px;
    row-gap: .5em;
    column-gap: .5em;
}
.rest-item .card .controls .btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    color: #fcf9f9;
    border: 4px solid #f8d582;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    height: 45px;
    font-size: 14px;
    padding: 0 30px;
    font-weight: 700;
    flex: 1;
    justify-content: center;
}

.rest-list-block.karaoke-block .rest-item .card .rest-info .address {
    font-weight: 300;
    font-size: 14px;
}
.rest-list-block.karaoke-block .rest-item .card .rest-info a,
.rest-list-block.karaoke-block .rest-item .card .controls .btn {
    color: #000
}

.popup.rest-phones {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
}
.popup.rest-phones:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    opacity: .7;
    z-index: -1;
}
.popup.rest-phones .popup_content-block {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 1em;
    background-color: #000;
    transform: translate(-50%, -50%);
    border-radius: .5em;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 30%);
}
.popup.rest-phones .popup_content-block .phone-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    row-gap: 1em;
}
.phone-item {
    padding: 1em;
    color: #f8d582;
    border: 1px solid #535353;
    border-radius: 1em;
    font-weight: 700;
    font-size: 1.2em;
}
.phone-item .rest_call-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 1em;
}
.phone-item .rest_call-info .icon {
    width: 30px;
    height: 30px;
    max-width: 30px;
}
.popup.rest-phones .js_popup_close-btn {
    width:100%;
    height:100%
}
.phone-item .rest-name {
    color: #f8d582;
    font-weight: 700;
    font-size: 1em;
    text-align: left;
    white-space: nowrap;
}
.phone-item .rest-address {
    color: #fff;
    font-weight: normal;
    font-size: .7em;
    text-align: left;
}
.rest-slider_nav {
    position: absolute;
    top: 35%;
    left: 0;
    width:100%;
}
.rest-slider_nav .slick-arrow {
	position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgb(232, 232, 232);
    border-radius: 50%;
    margin: 0 -5em;
    cursor: pointer;
}
.slick-arrow.slick-prev {
    left: 21%;
}
.slick-arrow.slick-next {
    right: 21%;
}
.rest-slider_nav .slick-arrow::before {
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-repeat: no-repeat;
    transform: translate(-30%, -50%);
}
.slick-arrow.slick-next::before {
    background-image: url(/local/templates/gambrinus/images/arrow-right.svg);
}
.slick-arrow.slick-prev::before {
    background-image: url(/local/templates/gambrinus/images/arrow-left.svg);
}

@media (max-width: 1366px) {
    .slick-arrow.slick-prev {
        left: 17%;
    }
    .slick-arrow.slick-next {
        right: 17%;
    }
}
@media (max-width: 1200px) {
    .slick-arrow.slick-prev {
        left: 12%;
    }
    .slick-arrow.slick-next {
        right: 12%;
    }
}

@media (max-width: 1024px) {

    .slick-arrow.slick-prev {
        left: 13%;
    }
    .slick-arrow.slick-next {
        right: 13%;
    }
}

@media screen and (max-width: 998px) {
    .rest-item .card .controls {
        flex-direction: column;
        align-items: center;
        /*row-gap: 0.5em;*/
    }
    .rest-item .card .controls .btn {
        padding: 10px 30px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .slick-arrow.slick-prev {
        left: 19%;
    }
    .slick-arrow.slick-next {
        right: 19%;
    }
}

@media screen and (max-width: 576px) {
    .popup.rest-phones .popup_content-block {
        padding: .5em;
    }
    .phone-item {
        padding: .5em;
    }
    .phone-item .rest_call-info {
        column-gap: .5em;
    }
    .phone-item .rest-name {
        font-size: .9em
    }
    .phone-item .rest-address {
        font-size: .7em
    }
}
@media (max-width: 415px) {
    .slick-arrow.slick-prev {
        left: 25%;
    }
    .slick-arrow.slick-next {
        right: 25%;
    }
}