
/* Header */
header {
    width: 100%;
}

.wrap {
    width: 100%;
}

.menu_btn {
    display: none;
}

.header_upper {
    background-color: rgb(239, 219, 178);
    height: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
}

.header_upper .col-12, .header_bottom .col-12 {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-content: space-between;
            align-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
}

.menu_main, .menu_user {
    width: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
}

.menu_main a, .menu_user a {
    margin-right: 15px;
    font-size: 14px;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    line-height: 1;
    text-align: left;
}

.menu_main a:hover, .menu_user a:hover {
    color: #fff;
}

.menu_main a:last-child, .menu_user a:last-child {
    margin-right: 0;
}

.menu_lang a, .item_login, .item_account {
    background-color: rgba(254, 254, 254, 0.502);
    height: 30px;
    margin-right: 15px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
	padding:0 15px; 
}
.menu_lang {
    position: relative;
}
.menu_lang_holder {
    position: absolute;
    left: -10px;
    right: -10px;
    background: rgb(239, 219, 178);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    top: 30px;
    max-height: 0;
    overflow: hidden;
    z-index: 2;

}
.menu_lang:hover .menu_lang_holder, .active .menu_lang_holder {
    max-height: 100px;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    padding-bottom:10px;
}
.menu_lang .menu_lang_holder a {
    margin-top: 10px!important;
}

.menu_lang a:hover, .item_login:hover, .item_account:hover {
    background-color: #baa189;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;

}

.menu_lang a:hover, .item_login:hover, .item_account:hover {
    color: #efdbb2 !important;
}

.menu_lang {
    margin-left: -70px;
    margin-right: 15px;

}
.menu_lang a {
    width: 55px;
    margin: 0!important;
}

.item_login {
    min-width: 72px;
}

.menu_user {
    margin-right: -100px;
}

.item_basket {
    position: relative;
    padding-left: 35px;
    margin-left: 35px;
}

.item_basket:after {
    position: absolute;
    content: '';
    background: url('../img/icon_basket.svg') no-repeat;
    background-size: 100% !important;
    width: 22px;
    height: 24px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    opacity: 1;
}

.hasitem.item_basket:after{
    background: url('../img/hasitem_icon_basket.svg') no-repeat;
}

.item_basket:before {
    position: absolute;
    content: '';
    background: url('../img/icon_basket_hover.svg') no-repeat;
    background-size: 100% !important;
    width: 22px;
    height: 24px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    z-index: 2;
}

.hasitem.item_basket:before{
    background: url('../img/hasitem_icon_basket_hover.svg') no-repeat;
}

.item_basket:hover:before {
    opacity: 1;
}

.item_basket:hover:after {
    opacity: 0;
}

.header_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    height: 100px;
}

.navbar {
    width: 100%;
    padding: 0;
    z-index: 2;
}

.logo {
    height: 52px;
}

.logo img {
    height: 100%;
    width: auto;
}

.menu_prime {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
}

.menu_prime ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
}

.menu_prime .secondary_menu {
    display: none !important;
}

.menu_prime ul li {
    padding: 0px;
    height: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    position: relative;
    background: #fff;
    z-index: 2;
}
.menu_prime ul li.active {
    z-index: 3;
}
.menu_prime ul li ul.qiz_qalasi {
   left: -245px;
}
.menu_prime ul li.has_child a {
    position: relative;
    z-index: 4;
}

.menu_prime ul li ul {
    position: absolute;
    top: 100%;
    left: -95px;
    opacity: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    z-index: -1;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}
.menu_prime ul li.active ul {
    opacity: 1;
    top: 100px;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_prime ul li ul li {
    background: rgb(134, 103, 97) !important;
}

.menu_prime ul li ul li a {
    color: #efdbb2 !important;
	white-space:nowrap;
}

.menu_prime ul li ul li:hover a {
    color: #fff!important;
}

.menu_prime .sub_menu li {
    -webkit-transition: all 0s linear;
    transition: all 0s linear;
    opacity: 0;
}

.menu_prime .sub_menu li.fadein {
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    opacity: 1;
}

.menu_prime ul li:hover {
    background: rgb(134, 103, 97);
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_prime ul li:hover a {
    color: #efdbb2;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_prime ul li.has_child {
    position: relative;
}

.menu_prime ul li.has_child:after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    border: none !important;
    color: #866761;
    top: 0;
    bottom: 0;
    right: 13px;
    margin: auto;
    height: 16px;
    line-height: 1;
    font-size: 16px;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_prime ul li.has_child:hover:after {
    color: #efdbb2;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_prime ul li.has_child > a{
	padding-right:35px;
}

.menu_prime ul a { 
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    text-align: left;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
	padding:0 20px;
	line-height:100px;
}

/* Header end */
/* Footer */

.footer_upper {
    width: 100%;
    background: url('../img/footer.jpg') no-repeat;
    background-size: cover !important;
    padding: 50px 0;
}

.footer_upper a {
    line-height: 1;
    color: rgb(218, 216, 216);
    font-family: "FuturaPtMedium", sans-serif;
}

.footer_upper a:hover {
    color: #866761;
}

.menu_upper li {
    margin-top: 13px;
}

.menu_lower {
    margin-top: 5px;
}

.menu_lower li {
    margin-top: 10px;
}

.menu_upper li:first-child {
    margin: 0;
}

.menu_upper a {
    text-transform: uppercase;
}

.menu_soc {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-align-content: flex-end;
            align-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
}

.menu_soc li {
    margin-left: 15px;
}

.menu_soc li:first-child {
    margin: 0;
}

.menu_soc i {
    font-size: 35px;
    color: #fff;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_soc a:hover i {
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_soc a:hover .fa-facebook-f {
    color: #3b5999;
}

.menu_soc a:hover .fa-instagram {
    color: #e4405f;
}

.menu_soc a:hover .fa-youtube {
    color: #cd201f;
}

.trip_advisor {
    background-color: rgba(255, 255, 255, 0.231);
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-left: 15px;
}

.trip_advisor img {
    width: 70px;
    height: auto;
}

.we_accept {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-align-content: flex-end;
            align-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end;
    text-align: right;
    margin-top: 35px;
}

.we_accept p {
    color: rgb(218, 216, 216);
    line-height: 1;
    text-align: right;
}

.we_accept img {
    width: 154px;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-top: 15px;
}

.footer_copy {
    width: 100%;
    background-color: #161616;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
}

.footer_copy .col-12 {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-content: space-between;
            align-content: space-between;
}

.footer_copy span {
    font-size: 18px;
    color: rgb(130, 130, 130);
}

.footer_copy span:first-child, .footer_copy a {
    text-transform: uppercase;
}

.footer_copy a {
    color: rgb(130, 130, 130);
}

.footer_copy a:hover {
    color: #fff;
}

/* Footer end */
/* Home */
.home_video_section .video_holder {
    height: calc(100vh - 155px);
    width: 100%;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
}

/* .home_video_section .video_holder:after {
	content:'';
	display:block;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:#524543;
	opacity:0.5;
    z-index: 2;
} */

.home_video_section .video_holder video {
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index:0;
}

.home_video_section .video_holder .video_banner {
    position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index:1;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.home_video_section .video_holder.playing .video_banner {
    opacity: 0;
}

.home_video_button {
    position: relative;
    z-index: 3;
    cursor: pointer;
    font-size: 14px;
    color: rgb(239, 219, 178);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    padding-left: 45px;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.home_video_button:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url('../img/play_btn.svg') no-repeat;
    width: 32px;
    height: 32px;
    background-size: 100%;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.home_video_section .video_holder.playing .home_video_button:after {
    background: url('../img/pause_btn.svg') no-repeat;
	position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 32px;
    height: 32px;
    background-size: 100%;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.home_video_button:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.home_main_info {
    position: relative;
    margin-top: 0;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
	z-index:3;
}

.home_main_info.upper {
    margin-top: -130px;
}

.home_main_info_wrap {
    width: 100%;
    height: 220px;
    background-size: cover !important;
    background: no-repeat center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    padding: 20px;
    color: rgb(254, 254, 254);
    margin-top: 20px;
    position: relative;
    z-index: 3;
}

.home_main_info_wrap:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;

}

.home_main_info_wrap:hover, .home_menu_wrap:hover {
    color: #fff;
}

.home_main_info_wrap:hover:after {
    opacity: 0;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.home_main_info_wrap h3, .home_menu_wrap h3 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 2;
}

a.home_menu_wrap h3 {
	padding:0 20px;
}

.home_main_info_wrap h4 {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    font-family: "FuturaPtMedium", sans-serif;
    position: relative;
    z-index: 2;
}

.home_menu {
    margin-top: 80px;
    padding-bottom: 100px;
}

.home_menu_wrap {
    width: 100%;
    height: 350px;
    background-size: cover !important;
    background: no-repeat center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    text-align: center;
    color: rgb(254, 254, 254);
    margin-top: 20px;
    position: relative;
}

div.home_menu_wrap {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
}

a.home_menu_wrap:after, .events_wrap:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(82, 69, 67, 0.5);
    opacity: 1;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

a.home_menu_wrap:hover:after, a.home_menu_wrap:hover h3, .events_wrap:hover:after, .events_wrap:hover h5 {
    opacity: 0;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

div.home_menu_wrap {
    text-align: left;
}

div.home_menu_wrap h3, .home_news_wrap h3 {
    color: #8d8d8d;
    font-family: "FuturaPtMedium", sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    opacity: 1;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

div.home_menu_wrap h2, .home_news_wrap h2 {
    font-size: 35px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    line-height: 1;

}

div.home_menu_wrap a, div.home_news_wrap a {
    font-size: 18px;
    color: rgb(139, 103, 97);
    margin-top: 15px;
}

div.home_menu_wrap a, div.home_news_wrap a {
    font-size: 18px;
    color: rgb(139, 103, 97);
    position: relative;
    margin-top: 15px;
    padding-bottom: 5px;
}

div.home_menu_wrap a:after,
div.home_news_wrap a:after {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(139, 103, 97);
    content: '';
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
        transform: translateY(0px);
}

div.home_menu_wrap a:hover:after,
div.home_news_wrap a:hover:after {
    opacity: 0;
    height: 1px;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
        transform: translateY(-7px);
}

.home_takeaway a:hover {
    text-decoration: none;
}

.home_takeaway {
    background-color: #efdbb2;
    position: relative;
}

.home_takeaway .container {
    position: relative;
    z-index: 2;
}

.home_takeaway:after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 130%;
    width: 50%;
    background: url('../img/home_takeaway.png') no-repeat top right;
    background-size: auto 100% !important;

}

.home_takeaway .row {
    padding: 50px 0;
    position: relative;
}

.home_takeaway .row:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    width: 16.66%;
    height: 100%;
    background: url('../img/takeaway.png') no-repeat center;
    background-size: 100% auto !important;
}

.home_takeaway .row .col-xs-12 {
    text-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
}

.home_takeaway h3 {
    width: 100%;
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(102, 102, 102);
    line-height: 1.2;
}

.home_takeaway_steps {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    padding: 30px 0;

}

.home_takeaway_step {
    width: 33.33%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.home_takeaway_step span {
    width: 100%;
    font-size: 50px;
    font-family: "FuturaPtBold", sans-serif;
    color: rgb(139, 103, 97);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.7;
	overflow:hidden;
	height:30px;
}

.home_takeaway_step h5 {
    font-size: 16px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(102, 102, 102);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    /*background-color: #efdbb2;*/
    padding: 5px;
    /*margin-top: -5px;*/
}

.home_takeaway a {
    font-size: 18px;
    color: rgb(139, 103, 97);
    position: relative;
    padding-bottom: 5px;
    line-height: 1.2;
}

.home_takeaway a:after {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(139, 103, 97);
    content: '';
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
        transform: translateY(0px);
}

.home_takeaway a:hover:after {
    opacity: 0;
    height: 1px;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
        transform: translateY(-7px);
}

.home_news {
    padding: 100px 0;
}

.home_news_wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    height: 100%;
    margin-top: 50px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
}

.home_news_wrap .date {
    color: #8d8d8d;
}

.home_news_wrap h6, .home_news_wrap p {
    margin-top: 10px;
	max-width:100%;
}

.home_news_wrap h6 a {
    font-size: 20px;
    color: #202020;
    text-decoration: none;
    font-family: "FuturaPtMedium", sans-serif;
    line-height: 27px;
    width: 90%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin: 0;
}

.home_news_wrap h6 a:after {
    display: none;
}

.home_news_wrap h6 a:hover {
    color: #866761;
}

.home_news_wrap p {
    color: #232323;
    line-height: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(221, 221, 221);
	min-height: 96px;
}

.events_wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    margin-top: 20px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 220px;
    position: relative;
    padding: 20px;
}

.events_wrap .date, .news_section .restaurants_wrap .image_wrap .date {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    top: 0;
    left: 0;
    background-color: rgb(255, 51, 76);
    max-width: 110px;
    height: 53px;
    padding: 0 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    z-index: 1;
    color: #fff;

}

.events_wrap .date b {
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
    font-weight: normal;
}

.events_wrap h5 {
    font-size: 25px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
    font-family: "FuturaPtMedium", sans-serif;
    width: 75%;
    min-height: 60px;
    position: relative;
    z-index: 1;
}

/* Home end */
/* SignIn/ SignUp */
.overlay {
    position: fixed;
    top: -300px;
    bottom: -300px;
    left: -150px;
    right: -150px;
    background-color: rgba(0, 0, 0, 0.702);
    z-index: -3;
    opacity: 0;
    display: block;
}

.overlay.active {
    opacity: 1;
    z-index: 3;
    -webkit-transition: opacity 0.35s linear;
    transition: opacity 0.35s linear;
}

.modal_window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    min-width: 70vw;
    max-width: 1030px;
    min-height: 50vh;
    max-height: 465px;
    z-index: -100;
    opacity: 0;
}

.modal_window.active {
    opacity: 1;
    z-index: 11;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-transition: opacity 0.35s linear;
    transition: opacity 0.35s linear;
}

.modal_window .close, .checkout .close {
    position: absolute;
    width: 17px;
    height: 17px;
    right: 0;
    top: -25px;
    opacity: 1;
    text-shadow: none;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-align-content: flex-end;
            align-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end;
}

.checkout .close {
    z-index: 3;
    top: 25px;
    right: 35px;
}

.checkout .close i {
    font-size: 16px;
    color: #343434;
}

.modal_window .close i {
    color: #fff;
    font-size: 17px;
    line-height: 1;
}

.modal_window_body {
    width: 100%;
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    background: #ffffff;
    opacity: 0;
}

.modal_window_body.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    opacity: 1;
    -webkit-transition: opacity 0.35s linear;
    transition: opacity 0.35s linear;
}

.modal_window_body .btn, .contacts_content .contact_wrap a.view_map {
    border-radius: 24px;
    min-width: 150px;
    height: 48px;
    min-height: 48px;
    cursor: pointer;
    line-height: 48px;
    padding: 0;
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
	padding:0 30px;
}

.contacts_content .contact_wrap a.view_map {
    width: auto;
    height: 30px;
    min-height: 30px;
    cursor: pointer;
    line-height: 30px;
    font-size: 14px;
    font-family: "FuturaPtBook", sans-serif;
}

.contacts_content .contact_wrap a.view_map:after {
    display: none;
}

.modal_window_body .btn:hover, .career_content .btn:hover, .career_contact_holder .btn:hover, .news_section .btn:hover, .contacts_content .contact_wrap a.view_map:hover, .account_section .btn:hover {
    background-color: #866761;
    color: #efdbb2;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;

}

.block_brown, .block_form {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
}

.block_form {
    width: 68%;
    padding: 40px 0;
}

.block_brown {
    width: 32%;
    background: #efdbb2;
}

.block_brown h5, .block_form h5 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: #866761;
}

.block_brown p {
    font-size: 18px;
    color: rgb(134, 103, 97);
    line-height: 1.2;
    text-align: center;
    width: 65%;
    margin-top: 30px;
}

.block_brown .btn {
    margin-top: 25px;
    background: #f7edd9;
    outline: none;
}

.block_form p {
    color: #b6b6b6;
    margin-top: 30px;
	text-align:center;
}

.block_form .soc_icons {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    margin-top: 35px;
}

.block_form .soc_icons a {
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    color: #fff;
    font-size: 22px;
}

.block_form .soc_icons .fb {
    background: #3b5998;
}

.block_form .soc_icons .gp {
    background: #dc4e41;
}

.block_form form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    margin-top: 10px;
}

.block_form form input[type="email"], .block_form form input[type="text"], .block_form form input[type="password"], .block_form form input[type="tel"] {
    margin-top: 15px;
    border: 1px solid rgb(223, 223, 223);
    background-color: rgb(233, 233, 233);
    width: 294px;
    height: 44px;
    padding: 0 10px;
    line-height: 42px;
    font-size: 20px;
    font-family: "FuturaPtBook", sans-serif;
    color: #866761;
}

.block_form form input.error{
	border-color:#ff696b;
}

.block_form form input:focus {
    background: #fff;
}

.form_options {
    width: 294px;
    margin-top: 20px;
}

.form_options label {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    color: #777777;
    cursor: pointer;
    float: left;
}

.form_options label a{
	color: #777777;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.form_options label a:hover{
	color: #8b6761;
}

.form_options label span {
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #b6b6b6;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-right: 12px;
    position: relative;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.form_options label span:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: #b6b6b6;
    font-size: 10px;
    top: 2px;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;

}

.form_options label span:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: #b6b6b6;
    font-size: 10px;
    top: 2px;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;

}

.form_options label span.active {
    background: #ff5033;
    border-color: #ff5033;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.form_options label span:after {
    color: #fff;
    opacity: 1;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.form_options label span input {
    opacity: 0;
}

.block_form .form_options a {
    color: #777777;
    position: relative;
    padding-bottom: 5px;
    float: right;
}

.block_form .form_options a:after {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    height: 2px;
    background: #777777;
    content: '';
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
        transform: translateY(0px);
}

.block_form .form_options a:hover:after {
    opacity: 0;
    height: 1px;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
        transform: translateY(-7px);
    background: #866761;
}

.block_form .form_options a:hover {
    color: #866761;
    text-decoration: none;
}

.block_form form .btn, .contacts_content .contact_wrap a.view_map {
    margin-top: 40px;
    background-color: #efdbb2;
}

.contacts_content .contact_wrap a.view_map {
    margin-top: 20px;
}

.modal_window_body.signup form .btn {
    margin-top: 20px;
}

.modal_window_body.signup {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-transition: opacity 0.35s linear;
    transition: opacity 0.35s linear;
}

/* SignIn/ SignUp end */
/* Check Out */
.checkout {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    overflow: hidden;
    max-width: 33vw;
    background: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    z-index: -5;
    opacity: 0;
}

.checkout.active {
    z-index: 11;
    opacity: 1;
    -webkit-transition: opacity 0.35s linear;
    transition: opacity 0.35s linear;
}

.checkout.expand {
    width: 66vw;
    max-width: 66vw;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.checkout_forms_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    height: calc(100% - 108px);
    position: relative;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
}

.checkout_wrap {
    width: 33vw;
    float: right;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    padding: 75px 30px 110px 30px;
    overflow: hidden;
    z-index: 2;
    background: #fff;
}

.checkout_wrap h1 {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    text-align: left;

}

.checkout_wrap form {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
}

.checkout .product_item {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    margin-bottom: 30px;
}

.checkout .cart_product:last-child .product_item:last-child {
    margin: 0;
}

.checkout h4.cafe_name{
	font-size: 16px;
    font-family: "FuturaPtBook", sans-serif;
    color: #a6a6a6;
    line-height: 1.2;
	margin-bottom:20px;
	padding-top:10px;
	position:relative;
    text-align: left;
}

.checkout .cart_product:first-child h4.cafe_name{
	padding-top:0;
}

.checkout h4.cafe_name:before{
	content:'';
	width:30px;
	display:block;
	height:1px;
	background:#efdbb2;
	position:absolute;
	top:0;
	left:0;
}

.checkout .cart_product:first-child h4.cafe_name:before{
	display:none;
}

.checkout .image_wrap {
    width: 96px;
    height: 96px;
}

.checkout .image_wrap a, .image_wrap img {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.checkout .info_wrap {
    width: calc(100% - 96px);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
	position:relative;
}

.checkout .info_wrap h4 {
    width: 80%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
	padding-right:30px;
	overflow:hidden;
	height:72px;
}

.checkout .info_wrap h4 span {
    font-size: 20px;
    font-family: "FuturaPtBook", sans-serif;
    color: rgb(36, 32, 33);
    line-height: 1.2;
    text-align: left;
    -webkit-line-clamp: 3;
    height: 72px;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
	display: block;
    display: -webkit-box;
}

.checkout .info_wrap:hover h4 span {
    color: #866761;
}

.checkout .price_amount {
    width: 80%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    position: relative;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-content: space-between;
            align-content: space-between;
    /*margin-top: 20px;*/
}

.checkout .delete {
    position: absolute;
    width: 17px;
    height: 17px;
    right: 20%;
	top:8px;
    opacity: 1;
    text-shadow: none;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-align-content: flex-end;
            align-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end;
    z-index: 3;
	cursor:pointer;
}

.checkout .delete i {
    font-size: 20px;
    color: #a6a6a6;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.checkout .delete:hover i{
    color: #ff5033;
}

.checkout .price {
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(52, 52, 52);
    text-transform: uppercase;
    text-align: left;

}

.checkout .quantity {
    position: relative;
}

.checkout .currency {
    font-family: "Verdana", sans-serif;
    margin-left: 5px;
}

.checkout .quantity {
    position: relative;
    width: 75px;
    height: 24px;
}

.checkout .quantity input {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    text-align: center;
    border: none;
    font-size: 18px;
    color: #343434;
    font-family: "FuturaPtBook", sans-serif;

}

.checkout .quantity input:focus {
    outline: 0;
}

.checkout .quantity-nav {
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-content: space-between;
            align-content: space-between;
}

.checkout .quantity-button {
    position: relative;
    cursor: pointer;
    border: 1px solid #a6a6a6;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    text-align: center;
    color: #a6a6a6;
    font-size: 18px;
    font-family: "Tahoma", sans-serif;
    line-height: 19px;
    cursor: pointer;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    outline: none;

}

.checkout .quantity-button:focus, .checkout .quantity-button:active {
    outline: none;
}

.checkout .quantity-button:hover {
    color: #ff696b;
    border-color: #ff696b;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.checkout .mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgb(239, 219, 178);
}

.checkout .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgb(239, 219, 178);
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.checkout .mCSB_scrollTools .mCSB_draggerContainer:hover .mCSB_dragger_bar {
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    background: #866761;
}

.checkout .total_amount {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.checkout .cost_item {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-content: space-between;
            align-content: space-between;
    padding-right: 30px;
}

.checkout .cost_item h6 {
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(36, 32, 33);
    text-transform: uppercase;
    line-height: 1.3;
    text-align: left;
}

.checkout .cost_item .amount {
    font-size: 22px;
}

.checkout .total_cost {
    margin-top: 15px;
}

.checkout .total_cost .amount {
    font-size: 30px;
}

.checkout .total_cost .amount .currency {
    font-size: 22px;
}

.checkout .checkout_btn {
    height: 108px;
    background: #efdbb2;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.checkout .checkout_btn .btn {
    border-radius: 24px;
    background-color: rgb(255, 80, 51);
    min-width: 200px;
    height: 48px;
    padding: 0 30px;
    margin: 0;
    border: none;
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.checkout .checkout_btn .btn:hover {
    background: #ff696b;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.checkout.expand .checkoutform_wrap {
    left: 0;
    right: auto;
}

.checkoutform_wrap {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    bottom: 0;
    width: 33vw;
    background: #f1f1f1;
    z-index: 1;
}

.checkoutform_wrap form {
    width: 70%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding: 50px 0 40px 0;
}

.checkoutform_wrap form .wrap {
    width: 100%;
    margin-top: 30px;
}

.checkoutform_wrap form .wrap:first-child {
    margin-top: 0;
}

.checkoutform_wrap form h3 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(134, 103, 97);
    text-align: left;
}

.checkoutform_wrap form input[type="text"], .checkoutform_wrap form input[type="email"], .checkoutform_wrap form input[type="tel"], .checkoutform_wrap form input[type="password"] {
    border: 1px solid rgb(223, 223, 223);
    background-color: #fff;
    width: 100%;
    height: 44px;
    padding: 0 10px;
    margin-top: 12px;
}

.checkoutform_wrap form .wrap input.error{
	border-color:#ff696b;
}

.checkoutform_wrap form .wrap.error label span{
	border-color:#ff696b;
}

.checkoutform_wrap form .wrap.error label a{
	color:#ff696b;
}

.checkoutform_wrap form .wrap.error label a:hover{
	color: #8b6761;
}

.checkoutform_wrap form p {
    font-size: 18px;
    color: rgb(164, 164, 164);
    line-height: 1.2;
    text-align: left;
    margin-top: 20px;
}

.checkoutform_wrap .form_options {
    margin-top: 15px;
}

.checkoutform_wrap .form_options label{
	float:none;
}

/* Check Out end */
/* FAQ left */
.banner_small {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    width: 100% !important;
    overflow: hidden;
    max-width: 100% !important;
    height: calc(100vw * 0.1854);
    max-height: 266px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    text-align: center;
    min-height: 180px;
    background-position: center !important;
	position:relative;
}

.banner_small:after{
	position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(82, 69, 67, 0.5);
    opacity: 1;
}

.banner_small .container {
	z-index:1;
}

.banner_small h1, .banner_small h6 {
    width: 100%;
    text-align: center;
}

.banner_small h1 {
    font-size: 35px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-family: "FuturaPtMedium", sans-serif;
}

.banner_small h6 {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 10px;
}

.banner_small h6 a {
    color: rgb(255, 255, 255);
}

.banner_small h6 a:hover {
    color: #efdbb2;
}

.static_content {
    padding: 30px 0 100px 0;
}

.left_aligned h4, .left_aligned p {
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    -webkit-align-content: flex-start;
            align-content: flex-start;
}

.center_aligned h4, .center_aligned p {
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
}

.static_content h4, .static_content p {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    width: 100%;
}

.static_content h4 {
    font-size: 35px;
    color: rgb(51, 51, 51);
    line-height: 1;
    margin-top: 70px;
    font-family: "FuturaPtMedium", sans-serif;
}

.static_content p {
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 1.25;
    margin-top: 25px;
}

/* FAQ left end */
/* Delivery, Takeaway */
.delivery_content {
    padding-bottom: 100px;
}

.delivery_content .row {
    padding-top: 100px;
}

.delivery_content h2, .career_content_holder h2 {
    width: 100%;
    position: relative;
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0 75px 10px 75px;
}

.delivery_content .row:nth-child(even) h2 {
    text-align: right;

}

.career_content_holder h2 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 90px;
}

.delivery_content h2:after, .career_content_holder h2:after {
    position: absolute;
    content: '';
    background-color: #fff;
    height: 15px;
    border-top: 2px solid rgb(239, 219, 178);
    left: -15px;
    right: -15px;
    bottom: -8px;
}

.career_content_holder h2:after {
    right: 0;
    left: -50%;
}

.career_content .row:nth-child(even) .col-12 h2:after {
    left: 0;
    right: -50%;
}

.delivery_content h2 span {
    font-size: 50px;
    font-family: "FuturaPtBold";
    color: rgb(139, 103, 97);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    position: absolute;
    left: 0;
    top: -3px;
}

.delivery_content .row:nth-child(even) h2 span {
    left: auto;
    right: 0;
}

.delivery_content_wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    position: relative;
    z-index: 2;
    margin-top: -5px;
}

.delivery_content .row:nth-child(even) .delivery_content_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.delivery_content_wrap_holder {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
}

.delivery_content_wrap_holder:nth-child(2) {
    padding: 0 20px;
}

.delivery_content_wrap_holder img {
    width: 100%;
    height: auto;
}

.delivery_content_wrap_holder p, .delivery_content_wrap_holder li, .career_content_holder p {
    margin-top: 20px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 1.25;
    width: 90%;
}

.delivery_content_wrap_holder ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
    padding: 0 30px 0 0;
}

.delivery_content_wrap_holder ul li {
    margin: 0;
    position: relative;
    width: 100%;
    padding-left: 20px;
}

.delivery_content_wrap_holder ul li:after {
    content: '';
    border-radius: 50%;
    background-color: rgb(139, 103, 97);
    position: absolute;
    width: 8px;
    height: 8px;
    left: 3px;
    top: 10px;
}

.takeaway_top {
    padding: 100px 0 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    text-align: center;
}

.takeaway_top img {
    width: 176px;
    height: auto;
}

.takeaway_top h4 {
    font-size: 25px;
    font-family: "FuturaPtMedium";
    color: rgb(51, 51, 51);
    line-height: 1.2;
    text-align: center;
    width: 50%;
    margin: 40px auto 0 auto;
}

/* Delivery, Takeaway end*/
/* Career */
.career_content {
    padding: 80px 0 100px 0;
}

.career_content .col-12 {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
}

.career_content .row:nth-child(even) .col-12 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.career_content_holder {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    -webkit-align-content: flex-start;
            align-content: flex-start;
    margin-top: 20px;
}

.career_content .row:nth-child(even) .career_content_holder:first-child {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end;
}

.career_content_holder img {
    width: 60%;
    height: auto;
    position: relative;
    z-index: 2;
}

.career_content .btn, .news_section .btn, .account_section .btn {
    border-radius: 24px;
    background-color: rgb(247, 237, 217);
    width: 200px;
    height: 48px;
    margin: 50px auto 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.news_section .btn {
    margin-top: 80px;
}

.career_contact {
    padding-bottom: 100px;
}

.career_contact_holder {
    width: 100%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    text-align: center;
    /*border: 2px solid rgb(239, 219, 178);*/
    /*padding: 35px 0;*/

}

.career_contact_holder p {
    width: 65%;
    font-size: 20px;
    color: rgb(134, 103, 97);
    line-height: 1.25;
    margin: 0 auto;
}

.career_contact_holder .btn {
    border-radius: 24px;
    background-color: #efdbb2;
    min-width: 200px;
    height: 48px;
    margin: 40px auto 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
	padding:0 30px;
}

.career_form .block_brown h5 {
    position: relative;
    padding-top: 55px;
}

.career_form .block_brown h5:after {
    position: absolute;
    content: '';
    background: url('../img/img_attach.svg') no-repeat;
    background-size: 100% !important;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* Career end*/
/* Contacts */
.contacts_content {
    padding: 40px 0 100px 0;
}

.contacts_content .contact_wrap {
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
}

.contacts_content .contact_wrap h4 {
    width: 100%;
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(65, 65, 65);
}

.contacts_content .contact_wrap p {
    font-size: 20px;
    color: rgb(56, 56, 56);
    line-height: 1.25;
    width: 90%;
    padding: 15px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.contacts_content .contact_wrap a, .contacts_content .contact_wrap span {
    font-size: 20px;
    color: rgb(56, 56, 56);
    line-height: 1.25;
    position: relative;
    padding-bottom: 3px;
}

.contacts_content .contact_wrap a:after {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    background: rgb(56, 56, 56);
    content: '';
    opacity: 0;
    height: 1px;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
        transform: translateY(-7px);
}

.contacts_content .contact_wrap a:hover:after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
        transform: translateY(0px);
    background: rgb(56, 56, 56);
    height: 2px;
}

.map_section, .map_holder {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
}

.map_holder {
    min-height: 500px;
    overflow: hidden;
}

.map_holder iframe {
    margin: 0 auto;
}

/* Contacts end */
/* News and events */
.news_section {
    padding-top: 70px;
    padding-bottom: 100px;
}

.news_section .events_wrap {
    margin-top: 30px;
}

/* News and events end */
/* News single */
.news_single_section {
    padding: 100px 0px;
}

.news_single_section .image_wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    background: #e6e6e6;
}

.news_single_section .image_wrap img {
    width: 100%;
    height: auto;

}

.news_single_section .article_info, .news_single_section .article_wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
}

.news_single_section .article_info h4 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(58, 58, 58);
    line-height: 1.2;
    width: 70%;
}

.news_single_section .article_info span {
    color: rgb(124, 124, 124);
    line-height: 1.2;
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.news_single_section .article_wrap p {
    font-size: 20px;
    color: rgb(57, 57, 57);
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-top: 25px;
    width: 90%;

}

.news_single_section .article_wrap p:first-child {
    margin-top: 0;
}

/* News single end */
/* Menu */
.menu_section {
    padding-top: 70px;
    padding-bottom: 100px;
    margin: 0;
}

.menu_section .home_menu_wrap {
    margin-top: 30px;

}

/* Menu end*/
/* menu single */
.home_menu.menu_single_section {
    padding-top: 70px;
    padding-bottom: 100px;
    margin: 0;
}

.menu_filters {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
	padding:0px;
	margin: -40px 0px 0px;
}

.menu_filters a {
    font-size: 14px;
    color: rgb(134, 103, 97);
    text-transform: uppercase;
    padding: 0px 10px;
	margin:5px 5px 5px 0px;
    cursor: pointer;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    border-radius: 27px;
    min-width: 50px;
}

.menu_filters a:last-child {
	margin:5px 0px;
}

.menu_filters a:hover, .menu_filters a.active {
    background-color: rgb(239, 219, 178);
}

.menu_single_wrap, .menu_single_wrap .image_wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.menu_single_wrap {
    margin-top: 30px;
}

.menu_single_wrap .image_wrap {
    position: relative;
}

.menu_single_wrap .image_wrap .product_items{
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 10px;
}
.menu_single_wrap .image_wrap .product_items .item{
    background: rgb(255, 255, 255);
    border-radius: 27px;
    color: rgb(239, 51, 64);
    font-size: 16px;
    width: auto;
    border: none;
    padding: 8px 11px;
    margin: 5px 5px 5px 0px;
}

.menu_single_wrap .image_wrap .product_items .checked_item{
    background: rgb(239, 51, 64);
    color: rgb(255, 255, 255);
}
.menu_single_wrap .image_wrap img {
    width: 100%;
    height: auto;
}

.menu_single_wrap .image_wrap .label {
    position: absolute;
    top: 20px;
    z-index: 2;
}

.menu_single_wrap .image_wrap .label_new {
    right: 20px;
    background-color: rgb(255, 255, 255);
    width: 65px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    font-size: 16px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(239, 51, 64);
    text-transform: uppercase;
    border-radius: 27px;
}

.menu_single_wrap .image_wrap .label_takeaway {
    left: 20px;
    width: 58px;
    height: 50px;
    background: url('../img/label_takeaway.png') no-repeat;
    background-size: 100%;
}

.menu_single_wrap .content_wrap {
    position: relative;
    height: 120px;
}

.menu_single_wrap .content_wrap .content_wrap_holder {
    position: absolute;
	height: 120px;
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/*
.menu_single_wrap:hover .content_wrap_holder {
    height: 288px;
}
*/
.menu_single_wrap .content_wrap_holder:hover {
    height: 288px;
}

.menu_single_wrap .content_wrap .content_wrap_holder h5 {
    font-size: 20px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(36, 32, 33);
    text-transform: uppercase;
    line-height: 1.2;
    width: 90%;
}

.menu_single_wrap .content_wrap .content_wrap_holder p {
    font-size: 20px;
    color: rgb(52, 52, 52);
    line-height: 1.2;
    width: 90%;
}

.menu_single_data {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-content: space-between;
            align-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    padding: 20px;
}

.menu_single_data .price {
    font-size: 25px;
    font-family: "FuturaPtBold", sans-serif;
    color: rgb(52, 52, 52);
    text-transform: uppercase;
    line-height: 1.2;
}

.menu_single_data .currency {
    font-family: "Verdana", sans-serif;
    margin-left: 5px;
}

.menu_single_data .btn {
    background-color: rgb(239, 51, 64);
    width: 123px;
    height: 30px;
    border-radius: 27px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    font-size: 16px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.menu_single_data .btn:hover {
    background-color: #ff696b;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

/* menu single end */
/* restaurants */
.restaurants_section {
    padding-top: 70px;
    padding-bottom: 80px;
    margin: 0;
}

.restaurants_wrap {
    margin-top: 30px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    height: -webkit-calc(100% - (30px));
    height: calc(100% - (30px));
}

.news_section .restaurants_wrap .image_wrap {
    position: relative;
}

.restaurants_wrap .image_wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.restaurants_wrap .image_wrap img {
    width: 100%;
    height: auto;
}

.restaurants_wrap .content_wrap {
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    align-content: space-between;
}

.restaurants_wrap .content_wrap h4 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(65, 65, 65);
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.restaurants_wrap .content_wrap p {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    font-size: 20px;
    color: rgb(56, 56, 56);
    line-height: 1.2;
    margin-top: 10px;
    width: 90%;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
	min-height:48px;
}

.news_section .restaurants_wrap .content_wrap p {
    margin-top: 0px;
}

.restaurants_wrap:hover h4, .restaurants_wrap:hover p {
    color: #8b6761;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.facilities {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
            align-items: baseline;
    padding-top: 20px;
    margin-top: auto;
}

.facilities div {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    background-size: 100%;
    margin-right: 20px;
}

.facilities div:last-child {
    margin-right: 0;
}

.icon_wifi {
    width: 30px;
    height: 30px;
    background: url('../img/icons/icon_wifi.svg') no-repeat;
}

.icon_wine_room {
    width: 30px;
    height: 30px;
    background: url('../img/wine-room.svg') no-repeat;
}

.icon_food {
    width: 28px;
    height: 28px;
    background: url('../img/icons/icon_take_away.svg') no-repeat;
}

.icon_parking {
    width: 30px;
    height: 28px;
    background: url('../img/icons/icon_parking.svg') no-repeat;
}

.icon_kids_yard {
    width: 30px;
    height: 30px;
    background: url('../img/icons/icon_toy.svg') no-repeat;
}

.icon_smoking {
    width: 30px;
    height: 30px;
    background: url('../img/icons/icon_smoking.svg') no-repeat;
}

.icon_terrace {
    width: 30px;
    height: 30px;
    background: url('../img/icons/icon_terrace.svg') no-repeat;
}

.icon_cabinet {
    width: 30px;
    height: 30px;
    background: url('../img/icons/icon_cabinet.svg') no-repeat;
}

/* restaurants end*/
/* restaurants single*/
.restaurants_single_section {
    padding-bottom: 100px;
	padding-top:50px;
}

.restaurants_single_section .restaurants_single_data {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
    width: 90%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;

}

.restaurants_single_section h4 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    line-height: 1.4;
}

.restaurants_single_section .restaurants_single_data p, .restaurants_single_section .restaurants_single_data span, .restaurants_single_section .restaurants_single_data a {
    font-size: 20px;
    color: rgb(32, 32, 32);
    line-height: 1.25;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-top: 20px;
	max-width:100%;
}

.restaurants_single_section .restaurants_single_data span, .restaurants_single_section .restaurants_single_data a {
    margin: 0;
}

.restaurants_single_section .restaurants_single_data a {
    position: relative;
    padding-bottom: 5px;
}

.restaurants_single_section .restaurants_single_data a:after {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    background: rgb(32, 32, 32);
    content: '';
    opacity: 0;
    height: 1px;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
        transform: translateY(-7px);
}

.restaurants_single_section .restaurants_single_data a:hover:after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
        transform: translateY(0px);
    height: 2px;
}

.reservation_holder h1 a {
    position: relative;
    padding-bottom: 5px;
}

.reservation_holder h1 a:after {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    background: rgb(139, 103, 97);
    content: '';
    opacity: 0;
    height: 1px;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
        transform: translateY(-7px);
}

.reservation_holder h1 a:hover:after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
        transform: translateY(0px);
    height: 2px;
}

.restaurants_single_section .reservation_holder {
    margin-top: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
}

.restaurants_single_section .reservation_holder h1 a {
    font-size: 35px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(139, 103, 97);
    line-height: 1.2;
    margin-top: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.restaurants_single_section .reservation_holder p {
    font-size: 18px;
    color: rgb(150, 150, 150);
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 90%;
    margin-top: 20px;
}

.restaurants_single_section .facilities{
	flex-wrap:wrap;
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	padding-top:0px;
}

.restaurants_single_section .facilities div {
    padding-top: 55px;
    background-position: top center;
    width: 90px;
    height: auto;
    margin-right: 10px;
    text-align: center;
	margin-top:20px;
}

.restaurants_single_section .facilities div span{
    width:100%;
	text-align:center;
	display:block;
}

.restaurants_single_section .facilities div:last-child {
    margin: 20px 0 0;
}

.restaurants_single_section .facilities .icon_wifi {
    background-size: 42px 34px;
    background-position: top 7px center;
}

.restaurants_single_section .facilities .icon_wine_room {
    background-size: 42px 34px;
    background-position: top 7px center;
}

.restaurants_single_section .facilities .icon_food {
    background-size: 32px 32px;
    background-position: top 8px center;
}

.restaurants_single_section .facilities .icon_parking {
    background-size: 48px 36px;
    background-position: top 6px center;
}

.restaurants_single_section .facilities .icon_kids_yard {
    background-size: 48px 41px;
    background-position: top 3px center;
}

.restaurants_single_section .facilities .icon_terrace {
    background-size: 48px 36px;
    background-position: top 6px center;
}

.restaurants_single_section .facilities .icon_cabinet {
    background-size: 48px 36px;
    background-position: top 6px center;
}

.restaurants_single_section .facilities .icon_smoking {
    background-size: 48px 41px;
    background-position: top 3px center;
}

.restaurants_single_section .facilities span {
    font-size: 18px;
    color: #333333;
    line-height: 1.2;
}

.restaurants_single_section .social_list a{
	padding:0;
	margin-top:20px;
	margin-right:10px;
	color:#926761;
	font-size:25px;
}

.restaurants_single_section .social_list a i{
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.restaurants_single_section .social_list a:last-child{
	margin-right:0px;
}

.restaurants_single_section .social_list a:hover .fa-facebook-f{
	color:#3b5999;
}

.restaurants_single_section .social_list a:hover .fa-instagram{
	color:#e4405f;
}

.restaurants_single_section .social_list a:hover .fa-youtube{
	color:#cd201f;
}

.restaurants_single_section .social_list a:hover .fa-tripadvisor{
	color:#00af87;
}

.restaurants_single_section .social_list a:after{
	display:none;
}

.restaurants_single_slider {
    background: #f6ecd8;
}

.restaurants_single_slider .slider_wrap {
    width: 100%;
    overflow: hidden;
}

.restaurants_single_slider .slick-track {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    height: calc(100vw * 0.3458);
    max-height: 460px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
}

.restaurants_single_slider .img_wrap {
    margin: 0 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.restaurants_single_slider .slick-slide {
    height: 80%;
    width: auto;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
    position: relative;
    overflow: hidden;
}

.restaurants_single_slider .slick-slide:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
}

.restaurants_single_slider .slick-center {
    height: 100%;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.restaurants_single_slider .slick-center:after {
    display: none
}

.restaurants_single_slider .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 34px;
    height: 64px;
    border: none;
    padding: 0;
    box-shadow: none;
    z-index: 3;
    opacity: 1;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.restaurants_single_slider .slick-arrow:hover {
    opacity: 0.6;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.restaurants_single_slider .slick-arrow.slick-prev {
    background: url('../img/arrow_left.png') no-repeat;
    background-size: 100%;
    left: -30%;
}

.restaurants_single_slider .slick-arrow.slick-next {
    background: url('../img/arrow_right.png') no-repeat;
    background-size: 100%;
    right: -30%;
}

.home_menu.restaurants_single_menu_section {
    padding-top: 100px;
    padding-bottom: 36px;
    margin: 0;
}

.restaurants_single_menu_section h4 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    line-height: 1.4;
}

.restaurants_single_menu_section .home_menu_wrap {
    margin-top: 30px;
}

.this_location {
    position: absolute;
    top: -75px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgb(139, 103, 97);
    width: 350px;
    max-width: calc(100% - 30px);
    padding: 20px;
    color: #fff;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-align-content: center;
            align-content: center;
    z-index: 3;
}

.this_location h4 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 1;
}

.this_location a, .this_location span {
    font-size: 20px;
    color: rgb(255, 255, 255);
    line-height: 1.25;
}

.this_location a {
    margin-top: 10px;
}

/* restaurants single end*/
/* about */
.about_intro {
    padding: 100px 0;
    text-align: center;
}

.about_intro h3, .about_intro p, .about_vision h3, .about_vision p {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
}

.about_intro h3, .about_vision h3 {
    font-size: 35px;
    font-family: "FuturaPtMedium", sans-serif;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
}

.about_intro p, .about_vision p {
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 1.25;
    margin-top: 40px;
}

.chief_img {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.chief_img img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: -2;
}

.chief_ava {
    position: absolute;
    right: 20px;
    top: -10px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 249px;
    height: 228px;
}

.chief_ava:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border: 7px solid rgb(239, 219, 178);
    top: 15px;
    left: 15px;
    z-index: -1;
}

.chief_content {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.chief_content h4 {
    font-size: 25px;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    line-height: 1.2;
}

.chief_content p {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 1.25;
    text-align: left;
    margin-top: 20px;
    width: 95%;
}

.chief_signature {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-align-content: flex-end;
            align-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    margin-top: 45px;
    width: 95%;
}

.chief_signature span {
    position: relative;
    font-size: 20px;
    color: rgb(121, 121, 121);
    line-height: 1.25;
    /*top: -10px;*/
}

.chief_signature img {
    margin-left: 30px;
    max-height: 70px;
}

.about_vision {
    padding-top: 50px;
}

.vision_icons {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-content: center;
            align-content: center;
    margin-top: 50px;
}

.vision_icons .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    text-align: center;
    width: auto;
    position: relative;
    padding-top: 90px;
    margin: 0 25px;
    background-position: top center !important;
}

.vision_icons .icon span {
    font-size: 18px;
    color: rgb(51, 51, 51);
    line-height: 1.2;
}

.vision_icons .icon_fresh {
    background: url('../img/icons/icon_fresh.svg') no-repeat;
    background-size: 52px 64px;

}

.vision_icons .icon_inter {
    background: url('../img/icons/icon_inter.svg') no-repeat;
    background-size: 52px 64px;

}

.vision_icons .icon_exclusive {
    background: url('../img/icons/icon_exclusive.svg') no-repeat;
    background-size: 64px 60px;

}

.vision_icons .icon_takeaway {
    background: url('../img/icons/icon_takeaway.svg') no-repeat;
    background-size: 58px 64px;

}

.about_video{
	padding:100px 0;
}

.about_video .video_block{
	position:relative;
}

.about_video .video_block .video_play{
	position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    z-index: 100;
    background-size: cover;
    background-position: center center;
	cursor:pointer;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.about_video .video_block .video_play:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url('../img/about_play_icon.png') no-repeat;
    background-size: 100%;
    width: 64px;
    height: 64px;
    cursor: pointer;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.about_video .video_block .video_play:hover:after {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.about_video .video_block.active .video_play {
    opacity:0;
}

.menu_single_data .btn {
    position: relative;
}

.menu_single_data .btn span {
    position: absolute;
    width: 163px;
    height: 70px;
    top: 0;
    left: auto;
    bottom: 0;
    right: auto;
    margin: auto;
    z-index: -1;
    overflow: hidden;
}

.menu_single_data .btn span:after, .menu_single_data .btn span:before {
    content: '';
    width: 2px;
    height: 10px;
    position: absolute;
    background: rgb(239, 51, 64);
    margin: auto;
}

.menu_single_data .btn span:first-child:after {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
}

.menu_single_data .btn span:nth-child(2):after {
    left: 50%;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: bottom center;
        -ms-transform-origin: bottom center;
            transform-origin: bottom center;
    top: 50%;
    right: auto;
}

.menu_single_data .btn span:nth-child(3):after {
    left: 50%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
            transform-origin: top center;
    bottom: 50%;
    right: auto;
}

.menu_single_data .btn span:nth-child(2):before {
    right: 50%;
    left: auto;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: bottom center;
        -ms-transform-origin: bottom center;
            transform-origin: bottom center;
    top: 50%;
}

.menu_single_data .btn span:nth-child(3):before {
    right: 50%;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
            transform-origin: top center;
    bottom: 50%;
    left: auto;
}

.menu_single_data .btn span:first-child:before {
    top: auto;
    bottom: 50%;
    left: 0;
    right: 0;
}

.menu_single_data .btn.animated span:first-child:after, .menu_single_data .btn.animated span:first-child:before, .menu_single_data .btn.animated span:nth-child(2):after, .menu_single_data .btn.animated span:nth-child(2):before, .menu_single_data .btn.animated span:nth-child(3):after, .menu_single_data .btn.animated span:nth-child(3):before {
    -webkit-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}

.menu_single_data .btn.animated span:first-child:after {
    top: -10px;
}

.menu_single_data .btn.animated span:first-child:before {
    bottom: -10px;
}

.menu_single_data .btn.animated span:nth-child(2):after {
    top: -10px;
    left: -10px;
}

.menu_single_data .btn.animated span:nth-child(2):before {
    top: -10px;
    right: -10px;
}

.menu_single_data .btn.animated span:nth-child(3):after {
    left: -10px;
    bottom: -10px;
}

.menu_single_data .btn.animated span:nth-child(3):before {
    right: -10px;
    bottom: -10px;
}

/* about end */
/* user account */

.account_section {
    padding-top: 70px;
    padding-bottom: 100px;
}

.account_section .form h5, .account_section .list {
	padding-top:30px;
}

.account_section .form h5 {
    font-size: 25px;
    font-family: "FuturaPtMedium", sans-serif;
    color: #866761;
}

.account_section .form input[type="email"], .account_section .form input[type="text"], .account_section .form input[type="password"], .account_section .form input[type="tel"] {
    margin-top: 15px; 
    border: 1px solid rgb(223, 223, 223);
    background-color: rgb(233, 233, 233);
    width: 100%;
    height: 44px;
    padding: 0 10px;
    line-height: 42px;
    font-size: 20px;
    font-family: "FuturaPtBook", sans-serif;
    color: #866761;
}

input::-webkit-input-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

input::-moz-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

input:-ms-input-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

input::-ms-input-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

input::placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

.account_section .form input:focus {
    background: #fff;
}

.account_section .order_item{
	background:#f1f1f1;
	padding:8px 15px 15px;
	margin-top:15px;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.account_section .order_item.collapsed{
	background:#f7edd9;
}

.account_section .order_item:first-child{
	margin-top:30px;
}

.account_section .order_item .order_detail{
	font-size:18px;
	color:#383838;
	margin-top:7px;
    font-family: "FuturaPtBook", sans-serif;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.account_section .order_item.collapsed .order_detail{
    font-family: "FuturaPtMedium", sans-serif;
}

.account_section .order_item .detail_btn, .account_section .order_item .unorder_btn{
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 15px;
    cursor: pointer;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    font-family: "FuturaPtBook", sans-serif;
    display: block;
    border-radius: 27px;
	background:#ff5033;
	float:right;
    line-height: 30px;
    text-align: center;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
	margin-top:20px;
}

.account_section .order_item .detail_btn:hover{
	background: #ff696b;
}

.account_section .order_item .unorder_btn{
	color:#866761;
	background:#efdbb2;
	margin-right:15px;
}

.account_section .order_item .unorder_btn:hover{
	background-color: #866761;
    color: #efdbb2;
}

.account_section .order_item .order_extras .row{
	padding:0 0 10px;
	font-size:16px;
	color:#383838;
    font-family: "FuturaPtBook", sans-serif;
	text-align:center;
	position:relative;
}

.account_section .order_item .order_extras .row .col-3:first-child{
	text-align:left;
	white-space:wrap;
}

.account_section .order_item .order_extras .row:first-child{
	text-align:center;
	padding-top:20px;
	margin-top:20px;
}

.account_section .order_item .order_extras .row.table_head{
	color:#777777;
}

.account_section .order_item .order_extras .row.res_name{
	font-size:18px;
	margin-top:10px;
}

.account_section .order_item .order_extras .product_list:first-child .row.res_name{
	margin-top:20px;
}

.account_section .order_item .order_extras .product_list:last-child .row:last-child{
	padding-bottom:20px;
}

.account_section .order_item .order_extras .product_list:first-child .row:first-child:after{
	position:absolute;
	left:15px;
	right:15px;
	top:0;
	border-top:1px dashed #efdbb2;
	content:'';
	display:block;
}

.account_section .order_item .order_extras .product_list:last-child .row:last-child:after{
	content:'';
	display:block;
	left:15px;
	right:15px;
	bottom:0;
	position:absolute;
	border-bottom:1px dashed #efdbb2;
}

.account_section .order_item .currency{
	font-family: "Verdana", sans-serif;
    margin-left: 5px;
}

.unorder_form .block_form{
	width:100%;    
	margin: auto;
}

.unorder_form .block_form textarea{
    margin-top: 15px;
    border: 1px solid rgb(223, 223, 223);
    background-color: rgb(233, 233, 233);
    width: 294px;
    height: 132px;
    height: 132px;
    padding: 0 10px;
    line-height: 42px;
    font-size: 20px;
    font-family: "FuturaPtBook", sans-serif;
    color: #866761;
}

.unorder_form .block_form textarea:focus {
    background: #fff;
}

textarea::-webkit-input-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

textarea::-moz-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

textarea:-ms-input-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

textarea::-ms-input-placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

textarea::placeholder {
    font-family: "FuturaPtBook", sans-serif;
}

/* user account end */

.browsermessage p i{
	margin-right:10px;
}

/*--muveqqeti---*/

.addtocard-btn.btn,.header_upper .menu_user a:nth-child(1),.header_upper .menu_user a:nth-child(2){
    display:none !important
}

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