/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #BEBECC;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
p,
a,
img,
ol,
ul,
li,
form,
label,
footer,
header,
section {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

footer,
header,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
    min-width: 1240px;
}

.jm-container {
    min-width: 1240px;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.jm-content {
    margin-top: 25px;
    min-width: 1240px;
}

body h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

body h2 {
    font-size: 24px;
    line-height: 1;
}

body h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

body h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

body h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

body a {
    text-decoration: none;
    transition: 0.3s;
    color: #000;
}

body img {
    max-width: 100%;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jm-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.jm-flex.center {
    align-items: center;
}

.jm-flex.start {
    justify-content: flex-start;
}

.jm-flex.stretch {
    align-items: stretch;
}

.icon {
    max-width: 22px;
    max-height: 22px;
}

.mrb20 {
    margin-bottom: 20px;
}

.mrb25 {
    margin-bottom: 25px;
}

.mrb30 {
    margin-bottom: 30px;
}

.mrb50 {
    margin-bottom: 50px;
}

/********************************************************/

header {
    background-color: #000000;
}

header .jm-container {
    min-height: 70px;
    flex-wrap: nowrap;
}

/********************************************************/

.navigation {
    width: auto;
    border-radius: 10px;
}

.navigation ul li,
.navigation ul li a {
    color: #B3B3B3;
    font-weight: 500;
    font-size: 14px;
    margin-right: 5px;
}

.navigation ul li:not(:last-child) {
    margin-right: 5px;
}

.navigation ul li a:hover {
    color: #F45B5B;
    text-decoration: underline;
}

/********************************************************/

header .col {
    display: inline-flex;
    /* width: 100%;
    max-width: 620px; */
    justify-content: flex-end;
}

.blog-link.btn {
    margin-right: 20px;
    max-width: 140px;
}

.order.btn {
    max-width: 160px;
    min-width: 160px;
    background-color: #4AC247;
    color: #fff;
}

.order.btn.open-reserve {
    margin-right: 20px;
}

.order.btn:hover {
    color: #4AC247;
    background-color: #fff;
}

/********************************************************/

.language {
    width: 80px;
    height: 46px;
    border-radius: 10px;
    background-color: #F1F3F4;
    margin-left: 20px;
}

.language img {
    width: 25px;
    height: 19px;
}

.language .icon {
    width: 7px;
    height: 4px;
    margin-left: 5px;
    transition: 0.1s;
}

.language:hover .icon {
    transform: rotate(180deg)
}

.language li,
.language li a {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.language > ul {
    height: inherit;
}

.language > ul > li {
    font-weight: 500;
    height: inherit
}

.language:hover .dropdown {
    display: block;
}

.language li {
    position: relative;
    width: 100%;
}

.language li .dropdown {
    top: calc(100% + 0px);
    position: absolute;
    width: 100%;
    right: 0;
    background-color: #F1F3F4;
    border-radius: 10px;
    display: none;
    overflow: hidden;
    z-index: 99;
}

.language li .dropdown li a {
    width: 100%;
    padding: 15px 5px;
    color: #000;
    transition: 0s;
    justify-content: center;
    font-weight: 400;
}

.language li .dropdown li a:hover {
    font-weight: bold;
    background-color: #fff;
}

/********************************************************/

.pagination {
    width: 100%;
}

.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pagination ul li:not(.btn) {
    padding: 0 5px;
    margin: 0 5px;
    transition: 0.1s;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
}

.pagination ul li:first-child {
    margin-left: 0;
}

.pagination ul li:last-child {
    margin-right: 0;
}

.pagination ul li.active {
    font-size: 24px;
}

.pagination ul li.btn {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 8px;
    margin: auto;
}

.pagination ul li.btn:hover {
    background-color: #F45B5B;
}

.pagination ul li.btn.prev {
    margin-left: 0;
}

.pagination ul li.btn.next {
    margin-right: 0;
}

.pagination ul li.btn .icon {
    width: 7px;
    height: 13px;
}

/********************************************************/

.banner {
    width: 100%;
    min-width: 280px;
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #FFFFFF;
    background-color: #CBD2DE;
    border-radius: 10px;
    box-sizing: border-box;
}

/********************************************************/

.filter {
    width: 390px;
    box-sizing: border-box;
    margin-right: 20px;
}

.filter .title {
    margin-bottom: 25px;
}

.filter .btn.apply-filter {
    width: 100%;
    max-width: inherit;
    height: 60px;
    font-weight: 500;
    font-size: 16px;
    position: sticky;
    bottom: 10px;
    z-index: 99;
    border-radius: 14px;
    margin-top: 20px;
}

.filter .items {
    padding: 25px 15px;
    /* border: 2px solid #F5F5F7; */
    border-radius: 14px;
    background-color: #F5F5F7;
    margin-bottom: 10px;
}

.filter .items .item {
    margin-top: 15px;
}

.filter .items .item .open-sub-item {
    font-weight: 500;
    font-size: 16px;
    color: #101010;
    user-select: none;
    cursor: pointer;
}

.filter .items .item .open-sub-item.active {
    font-weight: 600;
}

.filter .items .item .open-sub-item.active .icon {
    filter: none;
    transform: rotate(180deg);
}

.filter .items .item .open-sub-item .icon {
    width: 14px;
    height: 8px;
    transition: 0.3s;
}

.filter .items .item label {
    font-weight: 500;
}

.filter .items .item .sub-item {
    display: none;
    padding-left: 5px;
}

.filter .items .item .sub-item.active {
    display: block;
}

.filter .check {
    margin-top: 15px;
}

.filter .check input {
    position: absolute;
    opacity: 0;
}

.filter .check label {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    user-select: none;
    display: flex;
    align-items: center;
}

.filter .check label::before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid #B3B3B3;
    background-color: transparent;
    left: 2px;
    top: 0;
    box-sizing: border-box;
    border-radius: 3px;
}

.filter .check label::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 4px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    left: 5px;
    top: 5px;
    border-color: #fff;
    transform: rotate(-45deg);
    opacity: 0;
}

.filter .check input:checked+label::before {
    border: 2px solid #F45B5B;
    background-color: #F45B5B;
}

.filter .check input:checked+label::after {
    opacity: 1;
}


/********************************************************/

.rest-catalog {
    width: calc(100% - 410px);
    margin-bottom: 50px;
}

.rest-catalog .rek {
    width: 100%;
}

.rest-catalog > div {
    width: 100%;
}

.rest-catalog .title {
    width: 100%;
    margin-bottom: 25px;
}

.rest-catalog-item {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 30px;
    align-items: stretch;
    position: relative;
    background-color: #F5F5F7;
}

.rest-catalog-item .rest-img {
    width: 290px;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    background: url(../img/no-image.png) no-repeat center;
    background-size: cover;
}

.rest-catalog-item .rest-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.rest-catalog-item .rest-info {
    width: calc(100% - 290px);
    padding: 20px;
    box-sizing: border-box;
}

.rest-catalog-item .rest-address {
    font-weight: 600;
    flex-wrap: nowrap;
}

.rest-catalog-item .rest-address .icon {
    margin-right: 5px;
}

.rest-catalog-item .rest-name {
    margin-bottom: 15px;
}

.rest-catalog-item .rest-name a {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    line-height: 1;
}

.rest-catalog-item .rest-name a:hover {
    color: #F45B5B;
    text-decoration: underline;
}

.rest-catalog-item .rest-rating {
    margin: 0 0 15px;
}

.rest-rating {
    justify-content: flex-start;
    align-items: center;
}

.rest-rating .rest-rating-value {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.rest-rating .value-line .item {
    background-color: #F45B5B;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    overflow: hidden;
    position: relative;
    margin-right: 10px;
    transform: rotate(45deg);
}

.rest-rating .value-line .item::before {
    width: 12px;
    height: 12px;
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 3px;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
}

.rest-rating .value-line .item::after {
    width: 8px;
    height: 8px;
    content: '';
    position: absolute;
    background-color: #F45B5B;
    border-radius: 2px;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
}

.rest-rating .value-line .item.empty,
.rest-rating .value-line .item.empty::after {
    background-color: #B3B3B3;
}

.rest-rating .count-reviews {
    font-weight: 600;
}

.rest-catalog-item .rest-cat-links {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.rest-catalog-item .rest-cat-links a {
    margin-right: 5px;
    font-weight: 600;
    font-size: 16px;
}

.rest-catalog-item .rest-cat-links a:hover {
    color: #F45B5B;
    text-decoration: underline;
}

.rest-catalog-item .rest-cat-links a:last-child {
    margin-right: 0;
}

.rest-catalog-item .rest-comment {
    position: relative;
    margin-top: 15px;
    width: 100%;
}

.rest-catalog-item .rest-comment p {
    font-weight: 500;
    white-space: pre;
    width: 450px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.rest-catalog-item .rest-comment span {
    font-weight: 500;
    color: #B3B3B3;
}

/********************************************************/

.rest-detail {
    justify-content: flex-start;
    font-weight: 500;
}

.rest-detail .rest-cat-links a:first-child,
.rest-detail > div:not(:last-child) {
    position: relative;
    padding-right: 20px;
}

.rest-detail .rest-cat-links a:first-child::after,
.rest-detail > div:not(:last-child)::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 18px;
    background-color: #F5F5F7;
    display: block;
    right: 9px;
    top: calc(50% - 9px);
}

.rest-detail .rest-phone .icon,
.rest-detail .rest-web .icon,
.rest-detail .rest-menu-link .icon {
    max-width: 24px;
    height: 18px;
    margin-right: 7px;
}

.rest-detail .rest-cat-links a {
    margin-right: 5px;
    display: block;
}

.rest-detail .rest-cat-links a:first-child,
.rest-detail .rest-cat-links a:last-child {
    margin: 0;
}

.rest-detail .rest-menu-link {
    cursor: pointer;
    transition: 0.3s;
}

.rest-detail .rest-menu-link:hover,
.rest-detail a:hover {
    color: #F45B5B;
    text-decoration: underline;
}

/********************************************************/

.rest-gallery {
    width: 100%;
    max-width: 800px;
    height: 430px;
    position: relative;
    overflow: hidden;
}

.rest-status {
    position: absolute;
    padding: 15px 10px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 99;
    top: 10px;
    left: 10px;
}

.rest-status span {
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
}

.rest-status span.open,
.rest-status span.close {
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 5px;
}

.rest-status span.open {
    color: #4AC247;
}

.rest-status span.close {
    color: #F45B5B;
}

.rest-gallery .gallery {
    width: 100%;
    height: inherit;
    box-sizing: border-box;
}

.rest-gallery .gallery .slick-list {
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.rest-gallery .gallery .slide .img {
    height: inherit;
    background-color: #CBD2DE;
    background: url(../img/no-image.jpg) no-repeat center;
    background-size: cover;
}

.rest-gallery .gallery .slide .img img {
    height: inherit;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 9;
}

.rest-social {
    position: absolute;
    z-index: 9;
    right: 10px;
    top: 10px;
}

.rest-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 10px;
    margin-left: 10px;
}

.rest-social a:hover {
    background-color: #000;
}

.rest-social a .icon {
    fill: #010101;
    transition: 0.3s;
}

.rest-social a .icon.trip {
    width: 21px;
    height: 13px;
}

.rest-social a .icon.fb {
    width: 8px;
    height: 14px;
}

.rest-social a .icon.yelp {
    width: 15px;
    height: 19px;
}

.rest-social a:hover .icon {
    fill: #fff;
}

/********************************************************/

.rest-map {
    width: calc(100% - 820px);
    position: relative;
    margin-left: 20px;
}

.rest-map .map {
    position: relative;
    height: 330px;
    overflow: hidden;
    border-radius: 14px;
}

.rest-map .map .open-map {
    max-width: 180px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 90px);
    z-index: 2;
}

.rest-map .map #map {
    width: 100%;
    height: 100%;
}

.rest-map .rest-address {
    height: 80px;
    padding: 10px 20px;
    background: #F5F5F7;
    border-radius: 14px;
    flex-wrap: nowrap;
    font-weight: 600;
}

.rest-map .rest-address .icon {
    margin-right: 5px;
}

/********************************************************/

.rest-privilege {
    box-sizing: border-box;
    width: 100%;
    max-width: 700px;
}

.rest-privilege .title {
    margin-bottom: 20px;
}

.rest-privilege-content {
    height: 305px;
    background: url(../img/privilege_no.jpg) no-repeat center;
    background-color: #F5F5F7;
    border-radius: 14px;
    overflow: hidden;
}

.rest-privilege-content .items {
    background-color: #F5F5F7;
    padding: 30px 20px;
    padding-right: 0;
    border-radius: 14px;
    height: 100%;
    overflow: auto;
    z-index: 99;
    position: relative;
}

.rest-privilege-content .items .item {
    font-weight: 500;
    margin-bottom: 35px;
}

.rest-privilege-content .items .item:last-child {
    margin-bottom: 0;
}

.rest-privilege-content .items .item ul {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.rest-privilege-content .items .item ul li {
    margin: 10px 0 0;
    min-width: 33%;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    background: url(../img/icon-fire.svg) no-repeat 0px 0px;
    background-size: 12px;
}

.rest-privilege-content .items .item h5 {
    margin-bottom: 10px;
}

/********************************************************/

.rest-hours {
    width: 100%;
    max-width: 495px;
}

.rest-hours .title {
    margin-bottom: 20px;
}

.rest-hours .days {
    height: 305px;
    border-radius: 14px;
    background: url(../img/hours_no.jpg) no-repeat center;
    background-color: #F5F5F7;
    overflow: hidden;
}

.rest-hours .days .days-content {
    background-color: #F5F5F7;
    padding: 30px 20px;
    height: 100%;
    overflow: auto;
}

.rest-hours .days .icon {
    max-width: 100px;
    max-height: 100px;
}

.rest-hours .days .items {
    width: calc(100% - 120px);
}

.rest-hours .days .item {
    margin-bottom: 8px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.rest-hours .days .item:last-child {
    margin: 0;
}

.rest-hours .days .item .day {
    width: 120px;
}

.rest-hours .days .item .time {
    font-weight: 500;
}

/********************************************************/

.rest-menu {
    width: 100%;
    position: relative;
    padding-top: 25px;
}

.rest-menu .rest-menu-nav {
    margin: 25px 0;
    justify-content: flex-start;
}

.rest-menu .rest-menu-nav .rest-menu-nav-item {
    cursor: pointer;
    margin: 7.5px 0;
    margin-right: 30px;
    color: #B3B3B3;
}

.rest-menu .rest-menu-nav .rest-menu-nav-item:hover {
    color: #000000;
}

.rest-menu .menu_wrapper {
    height: auto;
    max-height: 510px;
    overflow: hidden;
    border-radius: 14px;
}

.rest-menu .menu_wrapper.full {
    max-height: inherit;
}

.rest-menu .menu_items {
    position: relative;
    align-items: stretch;
    margin-bottom: 15px;
}

.rest-menu .menu_items:last-child {
    margin: 0;
}

.rest-menu .menu_items > p {
    font-weight: 600;
    padding-top: 10px;
}

.rest-menu .menu_items > p span {
    font-weight: 500;
}

.rest-menu .menu_items .menu_item {
    padding: 15px 20px;
    margin-top: 20px;
    width: 100%;
    border-radius: 14px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    background-color: #F0DDD6;
}

.rest-menu .menu_items .menu_item .menu_item_name {
    width: 100%;
    margin-bottom: 15px;
}

.rest-menu .menu_items .menu_item .menu_item_name span {
    font-weight: 600;
}

.rest-menu .menu_items .menu_item .menu_item_text {
    width: 100%;
    max-width: 650px;
    margin-right: 15px;
}

.rest-menu .menu_items .menu_item .menu_item_text p {
    font-weight: 500;
    line-height: 24px;
}

.rest-menu .menu_items .menu_item .menu_item_price {
    width: auto;
    flex-wrap: nowrap;
    align-items: flex-start;
    max-width: 500px;
}

.rest-menu .menu_items .menu_item .menu_item_price .price_item {
    width: auto;
    max-width: 160px;
    min-width: 90px;
    height: 100%;
    display: inline-flex;
    justify-content: flex-end;
    flex-direction: column;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 14px;
    margin-left: 8px;
    text-align: center;
}

.rest-menu .menu_items .menu_item .menu_item_price p {
    width: 100%;
    padding-bottom: 5px;
}

.rest-menu .menu_items .menu_item .menu_item_price span {
    font-weight: bold;
    color: #F45B5B;
    font-size: 16px;
    width: 100%;
    display: block;
}

.rest-menu .view-full-menu {
    margin: 0 auto;
}

/********************************************************/

.c-tab {
    display: none;
}

.c-tab.is-active {
    display: block;
}

.c-tabs-nav {
    justify-content: flex-start;
    margin: 35px 0 20px;
}

.c-tabs-nav .c-tabs-nav__link {
    margin-right: 40px;
    width: auto;
    cursor: pointer;
    transition: 0.3s;
}

.c-tabs-nav .c-tabs-nav__link {
    color: #B3B3B3;
}

.c-tabs-nav .c-tabs-nav__link:hover {
    color: #000;
}

.c-tabs-nav .c-tabs-nav__link.is-active {
    color: #000;
}

/********************************************************/

.faq .items .item {
    background-color: #F5F5F7;
    border-radius: 14px;
    margin-top: 20px;
    overflow: hidden;
}

.faq .items .item span {
    color: #626262;
    display: block;
    margin-bottom: 5px;
}

.faq .items .item .question {
    padding: 15px 20px;
    padding-left: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    box-sizing: border-box;
    user-select: none;
    cursor: pointer;
    position: relative;
}

.faq .items .item .question::before {
    position: absolute;
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
    font-weight: 700;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: #000;
}

.faq .items .item .question h5 {
    width: calc(100% - 25px);
    font-weight: 600;
    line-height: 24px;
}

.faq .items .item .question .icon {
    width: 14px;
    height: 8px;
    fill: #000;
}

.faq .items .item .question.active .icon {
    transform: rotate(180deg);
}

.faq .items .item .question.active {
    background: #F0DDD6;
}

.faq .items .item .ansver {
    padding: 15px 20px;
    padding-left: 70px;
    position: relative;
    display: none;
}

.faq .items .item .ansver::before {
    position: absolute;
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-weight: 700;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: #F0DDD6;
}

.faq .items .item .ansver p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.faq .ask-form {
    margin-top: 20px;
    position: relative;
}

.faq .ask-form .btn {
    margin: 30px auto 0;
    margin-right: 0;
    max-width: 280px;
    height: 60px;
}

.faq .ask-form textarea {
    padding-bottom: 50px;
}

/********************************************************/

.rest-review {
    width: calc(100% - 500px);
}

.rest-review .rest-review-items {
    max-height: 920px;
    overflow: auto;
    padding-right: 5px;
}

.rest-review .rest-review-item {
    background-color: #F0DDD6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.rest-review .rest-review-item:last-child {
    margin: 0;
}

.rest-review .rest-review-item .review-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #CBD2DE;
    font-size: 22px;
    position: relative;
}

.rest-review .rest-review-item .review-img .icon {
    position: absolute;
    max-width: 20px;
    max-height: 18px;
    top: calc(50% - 9px);
    left: calc(50% - 10px);
    z-index: 7;
}

.rest-review .rest-review-item .review-img span {
    width: 100%;
    height: 100%;
    background-color: #CBD2DE;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 8;
}

.rest-review .rest-review-item .review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 9;
}

.rest-review .rest-review-item .block {
    width: calc(100% - 70px);
}

.rest-review .rest-review-item .block .review-name {
    margin-bottom: 10px;
}

.rest-review .rest-review-item .block .review-date span {
    color: #B3B3B3;
    font-weight: 600;
}

.rest-review .rest-review-item .review-text h5 {
    margin: 15px 0 10px;
}

.rest-review .rest-review-item .review-text p {
    font-weight: 600;
    line-height: 24px;
}

.rest-review .soc_type {
    color: #B3B3B3;
    margin: auto;
    margin-left: 15px;
    font-weight: 500;
}

.rest-review .review-form {
    margin-bottom: 35px;
    position: relative;
}

.rest-review .review-form .rest-rating {
    position: relative;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #F5F5F7;
    border-radius: 14px;
    min-height: 60px;
}

.rest-review .review-form .rest-rating span {
    font-weight: 500;
}

.rest-review .review-form .rest-rating .value-line {
    margin-left: 25px;
}

.rest-review .review-form .rest-rating .value-line .item {
    width: 24px;
    height: 24px;
    margin-right: 20px;
    cursor: pointer;
}

.rest-review .review-form .rest-rating .value-line .item::before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}

.rest-review .review-form .rest-rating .value-line .item::after {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    left: calc(50% - 7px);
}

.rest-review .review-form .btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    margin: 0;
    max-width: 180px;
    height: 40px;
}

.rest-review .review-form input[type="text"] {
    width: calc(40% - 10px);
}

.rest-review .review-form input[type="email"] {
    width: calc(60% - 10px);
}

.rest-review .review-form textarea {
    padding-bottom: 50px;
}

/********************************************************/

.rest-recommended-items {
    margin-top: 15px;
    align-items: stretch;
}

.rest-recommended-item {
    background-color: #F5F5F7;
    border-radius: 14px;
    width: calc(33.3% - 15px);
    margin-bottom: 15px;
    overflow: hidden;
}

.rest-recommended-item .rest-text {
    padding: 20px;
}

.rest-recommended-item .rest-name a {
    font-weight: bold;
    font-size: 16px;
}

.rest-recommended-item .rest-cat-links a:hover,
.rest-recommended-item .rest-name a:hover {
    color: #F45B5B;
    text-decoration: underline;
}

.rest-recommended-item .rest-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 190px;
    background: url(../img/no-image.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
}

.rest-recommended-item .rest-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.rest-recommended-item .rest-rating {
    margin: 5px 0;
}

.rest-recommended-item .rest-cat-links {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.rest-recommended-item .rest-cat-links a {
    font-size: 14px;
    margin-right: 5px;
    font-weight: 500;
}

/********************************************************/

.ads-col {
    margin-left: 20px;
    position: sticky;
    top: 15px;
}

.ads {
    min-width: 300px;
    min-height: 250px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

ins {
    min-width: 400px;
    min-height: 250px;
}

.ads:last-child {
    margin: 0;
}

/********************************************************/

footer .copy {
    padding: 35px 0 50px;
    text-align: center;
    font-weight: 500;
}

/********************************************************/

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 10000;
}

.nonebox {
    position: fixed;
    top: -200%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    width: 90%;
    max-width: 380px;
    height: auto;
    max-height: 90%;
    z-index: 99999;
    border-radius: 14px;
    padding: 20px;
    background-color: #F5F5F7;
    font-family: 'Montserrat';
    box-sizing: border-box;
    overflow: auto;
}

#nonebox-map {
    max-width: 1000px;
    height: 80%;
    padding: 0;
}

#nonebox-map .map {
    height: 100%;
}

.box-close {
    width: 12px;
    height: 12px;
    cursor: pointer;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
}

.box-close .icon {
    width: inherit;
    height: inherit;
}

/********************************************************/

.nonebox-reserve .img,
.nonebox-order .img {
    width: 100px;
    height: 100px;
    margin: 0 0 30px;
}

.nonebox input[type='date'],
.nonebox input[type='time'],
.nonebox input[type='number'],
.nonebox input[type='text'],
.nonebox input[type='tel'],
.nonebox input[type='email'] {
    background-color: #fff;
}

.nonebox .btn {
    max-width: inherit;
    height: 60px;
}

.nonebox p {
    font-weight: 500;
    line-height: 24px;
}

.nonebox p span {
    font-weight: 600;
}

.nonebox a {
    font-weight: 600;
    text-decoration: underline;
}

.nonebox a:hover {
    color: #F45B5B;
}

.nonebox.thank p {
    color: #000;
    font-weight: bold;
    padding: 5px 0 0;
}

.nonebox.thank {
    padding: 25px;
    max-width: 360px;
    border-radius: 10px;
    height: 164px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/********************************************************/

input[type='date'],
input[type='time'],
input[type='number'],
input[type='email'],
input[type='tel'],
input[type='text'] {
    width: 100%;
    height: 60px;
    border-radius: 14px;
    border: none;
    background-color: #F5F5F7;
    margin: 0 0 20px;
    box-sizing: border-box;
    padding: 0 15px;
    outline: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat';
    -webkit-appearance: none;
}

input.user-name {
    background: url(../img/icon-user.svg) no-repeat 20px center;
    background-color: #F5F5F7;
    background-size: 16px;
    padding-left: 45px;
}

input.user-mail {
    background: url(../img/icon-mail.svg) no-repeat 20px center;
    background-color: #F5F5F7;
    background-size: 17px;
    padding-left: 45px;
}

input.date {
    background: url(../img/icon-date.svg) no-repeat 20px center;
    background-color: #F5F5F7;
    background-size: 16px;
    padding-left: 45px;
}

input.time {
    background: url(../img/icon-time.svg) no-repeat 20px center;
    background-color: #F5F5F7;
    background-size: 17px;
    padding-left: 45px;
}

input.people {
    background: url(../img/icon-people.svg) no-repeat 20px center;
    background-color: #F5F5F7;
    background-size: 17px;
    padding-left: 45px;
}

textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 180px;
    height: 180px;
    min-height: 180px;
    border-radius: 14px;
    border: none;
    background-color: #F5F5F7;
    box-sizing: border-box;
    padding: 15px;
    outline: none;
    color: #4b4b4b;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat';
    -webkit-appearance: none;
}

textarea::placeholder,
input[type='date']::placeholder,
input[type='time']::placeholder,
input[type='number']::placeholder,
input[type='email']::placeholder,
input[type='tel']::placeholder,
input[type='text']::placeholder {
    color: #B3B3B3;
}

textarea.error,
input.error {
    border: 2px solid;
    border-color: #F45B5B;
}

.tippy-box {
    font-family: 'Montserrat';
    background-color: #F45B5B;
}

.tippy-arrow::before {
    border-top-color:#F45B5B !important;
  }

/********************************************************/

.btn {
    width: 100%;
    max-width: 160px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    outline: inherit;
    color: #101010;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
}

.btn:hover {
    background-color: #F45B5B;
    color: #fff;
}

.btn.black {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn.black:hover {
    color: #000;
    background-color: #fff;
}

.btn.green {
    color: #fff;
    background-color: #4AC247;
    border: 1px solid #4AC247;
}

.btn.green:hover {
    color: #4AC247;
    background-color: #fff;
}

/********************************************************/

@media only screen and (max-width: 1210px) {

    body,
    .jm-container,
    .jm-content {
        min-width: 768px;
    }

    .jm-container {
        max-width: 800px;
    }

    header .col {
        max-width: 500px;
    }

    .filter {
        width: 100%;
        max-width: 260px;
    }

    .rest-catalog {
        width: calc(100% - 280px);
    }
    
    .rest-catalog-item .rest-info,
    .rest-catalog-item .rest-img {
        width: 100%;
    }

    .rest-review {
        width: 100%;
        max-width: inherit;
        margin: 0;
    }

    .rest-gallery {
        width: 100%;
        max-width: inherit;
        height: 380px;
    }

    .rest-map {
        width: 100%;
        max-width: inherit;
        height: 260px;
        margin: 20px 0 0;
    }

    .rest-hours,
    .rest-privilege {
        width: calc(50% - 10px);
    }

    .rest-privilege .items .item ul li {
        width: 49%;
    }

    .rest-hours .days .icon {
        display: none;
    }

    .rest-hours .days .items {
        width: 100%;
    }

    .rest-review {
        margin: 0 0 50px;
    }

    .rest-detail > div {
        margin: 0 0 10px;
    }

    .rest-hours .days .item {
        justify-content: flex-start;
    }

    .ads-col {
        width: 100%;
        max-width: inherit;
        margin: 0 0 50px;
    }

    .rest-menu .menu_items .menu_item {
        width: 100%;
    }

    .rest-menu .menu_items .menu_item .menu_item_text {
        max-width: 400px;
    }

    .rest-recommended-item {
        max-width: inherit;
        width: calc(50% - 10px);
    }

    .rest-recommended-item:last-child {
        display: none;
    }
}
