@import 'https://fonts.googleapis.com/css?family=Open+Sans:400i,400|Roboto+Slab';
*:focus {
    outline: none;
}

ul.unstyled {
    padding: 0;
    margin: 0;
}

ul.unstyled li {
    list-style: none;
}

a {
    color: #4A4A4A;
    text-decoration: none;
    line-height: 18px;
    transition: all 0.2s ease-in-out;
}

body {
    position: relative;
    margin: 0;
    color: #4A4A4A;
    font-family: var(--font_text);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
}

.btn {
    cursor: pointer;
    display: inline-block;
    min-width: 150px;
    height: 40px;
    border-radius: 2px;
    background-color: var(--color_primary);
    line-height: 40px;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
    margin: 5px;
    transition: all 0.5s ease;
}

.btn-circle {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.btn-link {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: var(--color_primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
}

.btn-link:hover {
    color: var(--color_primary-darken);
}


/* Style */

.btn--std {
    color: #FFF;
    background-color: var(--color_primary);
    box-shadow: 0 2px 8px var(--color_primary-40);
}

.btn--std:hover {
    background-color: var(--color_primary-darken);
}

.btn--ghost {
    color: #FFF;
}

.btn--ghost:hover {
    color: var(--color_primary);
    background-color: #FFF;
}

.buttons-wrap {
    margin: 20px -5px 0;
    width: calc(100% - 20px);
    max-width: 1000px;
}

.buttons-wrap .btn:last-child {
    margin-bottom: 0;
}

.restaurant__picture span.picture:after {
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(44, 48, 55, 0.4);
}

.restaurant__picture {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.restaurant__picture span.picture {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.lang-social {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 40px);
    margin: auto;
    padding: 20px 0;
    max-height: 80px;
}

.drodown-wrap--lang {
    position: relative;
    order: 1;
    width: 50px;
    min-height: 30px;
    padding: 5px 8px;
    background-color: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    font-family: var(--font_title);
    font-size: 12px;
    text-transform: capitalize;
    transition: color 0.5s ease;
}

.drodown-wrap--lang span {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drodown-wrap--lang i {
    color: #BBBDBF;
    font-size: 14px;
}

.drodown-wrap--lang>a {
    padding-left: 4px;
}

.drodown-wrap--lang ul {
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    width: calc(100% + 2px);
    position: absolute;
    top: 28px;
    left: -1px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

.drodown-wrap--lang ul li a {
    display: block;
    padding: 4px 8px;
}

.drodown-wrap--lang:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.drodown-wrap--lang:hover ul li {
    display: block;
}

ul.social-media-wrap {
    margin-right: 20px;
}

.separator-tiny:after {
    background-color: #FFF;
}

#wrap__container {
    position: relative;
    z-index: 5;
    display: flex;
    height: calc(100vh - 70px);
}

#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    text-align: center;
}

h1,
.home-no-logo {
    color: var(--color_primary);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.home-logo {
    height: auto;
    max-height: 200px;
	width: calc(100% - 24px);
    max-width: 300px;
    margin: 0 auto;
}

#wrap-hour {
    position: relative;
    max-width: 382px;
    width: calc(100% - 34px);
    margin: 50px auto 0;
    padding: 20px;
    background: #FFF;
    text-align: center;
}

#wrap-hour:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #FFFFFF;
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    -webkit-transform: translate(8-px, -8px);
    -moz-transform: translate(-8px, -8px);
    -ms-transform: translate(-8px, -8px);
    -o-transform: translate(-8px, -8px);
    transform: translate(-8px, -8px);
}

#wrap-hour h2 {
    font-family: var(--font_title);
    font-weight: 300;
    color: var(--color_primary);
    margin: 0;
}

#wrap-hour h2:after {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: var(--color_primary);
    text-align: center;
    margin: 14px auto 10px;
}

#wrap-hour p {
    font-style: italic;
    font-weight: 300;
    margin: 0;
}

.infobar {
    display: flex;
    min-height: 68px;
    padding: 0;
    background-color: #fff;
    margin-top: 50px;
    width: calc(100% - 20px);
    max-width: 1000px;
}

.infobar .info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.333%;
    min-height: 48px;
    padding: 0 20px;
    margin: auto;
    border-right: 1px solid #f4f4f4;
}

.infobar .info:last-child {
    border-right: none;
}

.infobar .info.tel .message {
    margin: 2px 10px 10px 0;
    position: relative;
    top: 0;
    transform: none;
    width: auto !important;
    max-width: auto !important;
    left: 0 !important;
}

.infobar .info i {
    color: var(--color_primary);
    font-size: 16px;
    margin-right: 15px;
}

.infobar a:not(.btn) {
    text-align: left;
    line-height: 18px;
}

.infobar.address span p {
    margin: 0;
    font-size: 13px;
}

.button {
    position: relative;
    width: 25%;
    letter-spacing: 1px;
}

.button:hover {
    background-color: #4A4A4A;
}

.button a {
    position: absolute;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button a span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translate(-50%);
}

@media (max-width: 992px) {
    #container .infobar {
        flex-direction: column;
        max-width: 400px;
    }
    #container .infobar .info {
        width: 100%;
        padding: 0 20px;
        justify-content: flex-start;
        min-height: 60px;
        border-bottom: 1px solid #EEEEEE;
    }
    #container .infobar a {
        text-align: left;
        width: 100%;
    }
    #container .infobar .button {
        width: 100%;
        min-height: 60px;
    }
    #wrap-hour {
        order: 1;
        margin: 40px auto;
    }
    .buttons-wrap {
        max-width: 400px;
    }
    .btn {
        width: calc(100% - 10px);
    }
}