
/* -----------------------------------------
			   01. RESET CSS
-------------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

:root {
    --primary-color: #af9556;
    --secondary-color: #151515;
    --body-color: #686868;
    --fonts-title: 'Cormorant Garamond', serif;
    --fonts-body: 'Lora', serif;
    --fonts-subtitle: "Carattere", cursive;
    --primary-color-2: #f68043;
}
body {
    line-height: 1;
}


blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
html{
    overflow-y: scroll;
    font-size: 15px;
}

/* -----------------------------------------
           02. BASE TYPOGRAPHY
-------------------------------------------- */

body, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .brand, .btn, .btn-simple, a, .td-name, td {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
   font-family: 'Lora', serif;
}
    

p {
    margin-bottom: 1.25em;
}

h1, h2, h3, h4, h5,h6 {
    color: #151515;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    margin-bottom: 0;
    margin-top: 11px;
    line-height: 1.2;
    font-weight: 600;
    -webkit-transition: .5s;
    transition: .5s;
    font-size: 36px;
}

h1 {
    margin-top: 0;
    font-size: 3.052em;
}

h2 {
    font-size: 2.441em;
}

h3 {
    font-size: 1.953em;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1.25em;
}
h6 {
    font-size: 1.10em;
}

small, .text_small {
    font-size: 0.8em;
}

strong, b{
    font-weight: 500;
}
a {
    text-decoration: none !important;
    color: #686868;
    transition: .5s;
}

/*form field css*/
.form-control {
	border-color: #ebebeb;
	/* padding: .975rem 0.85rem; */
	height: calc(2.5em + .75rem + 2px);
}
.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #c19d68 !important;
}
input[type]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select.form-control.has-value{
    color: #b1b1b1 !important;
}

input[type]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
select.form-control.has-value{
    /* Firefox 18- */
    color: #b1b1b1;
}

input[type]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
select.form-control.has-value{
    /* Firefox 19+ */
    color: #b1b1b1;
}

input[type]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
select.form-control.has-value{
    color: #b1b1b1;
}

.section-heading h2 span{
    font-weight: 400;
    font-size: 2rem;
}
button.wpcf7-submit.btn.solid-btn {
    background: #c19d68;
    color: #fff;
    padding: 13px 30px;
    border-radius: 7px;
    transition: .5s;
    border-radius: 0;
    margin-top: 20px;
}
.wp-block-post-comments-form {
    box-sizing: border-box;
    margin-bottom: 10px;
}
ul.wp-block-rss li {
    margin: 18px 0;
}
ul.wp-block-rss {
    list-style: square;
}

.booking-input-box {
    position: relative;
    width: 22%;
    display: inline-block;
}

.booking-input-box:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 90%;
    right: 10px;
    top: -2px;
    background: #66666673;
}

.booking-input-box.upper:before{
    background:none;
}

.booking-input-box h4 {
    font-size: 14px;
    line-height: 14px;
    color: #acacac;
    font-weight: 400;
    font-family: "Lora";
    margin-left: 3px;
}

.booking-input-box input {
    width: 78% !important;
    height: 50px;
    outline: 0 !important;
    background: transparent;
    border: transparent !important;
    color: #fff;
    padding: 0 6px 0 0 !important;
}

.booking-input-box input::placeholder{
    color:#fff;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(24.3) invert(15);
}

.booking-input-box select {
    width: 78%;
    height: 50px;
    outline: 0;
    background: transparent;
    border: transparent;
    color:#fff;
}

.booking-input-box option {
    color: #222;
    font-family: "Lora";
    font-size: 16px !important;
    display: inline-block;
}

.booking-button {
    position: absolute;
    right: 28px;
    top: 50px;
    display: inline-block;
}

.booking-button button {
    background: var(--primary-color);
    padding: 12px 31px;
    border: transparent;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--fonts-title);
    position: relative;
    z-index: 1;
    transition: 0.5s;
    border-radius: 30px;
}

.booking-button button:hover {
    color: var(--primary-color);
}

.booking-button button:before{
    position: absolute;
    content: "";
    width:0;
    height: 100%;
    left: 50%;
    top: 0;
    background:#fff;
    z-index: -1;
    transition: 0.5s;
    border-radius: 30px;

}

.booking-button button:hover:before{
    width: 100%;
    left: 0;
}

#check_availability_wrapper form { display: flex; width: 100%; }