body {
	font-family: 'DM Sans', sans-serif;
	color: #292d2d;
	background:#292d2d;
	font-size: 14px;
	font-weight: 400;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	letter-spacing:0.4px;
}
body.checkout,
body.checkout main {
	background:#f7f7f7;
}
h1 {
	font-size:42px;
	line-height:48px;
	font-weight:500;
	margin:0px 0px 35px 0px;
	letter-spacing:0.4px;
}
h2{
	font-size: 28px;
	line-height:40px;
	font-weight:500;
	margin:0px 0px 25px 0px;
}
h3{
	font-size: 24px;
	line-height:38px;
	font-weight:500;
	margin:0px 0px 15px 0px;
}
h4 {
	  font-size:19px;
	  line-height:27px;
	  font-weight:500;
	  margin:0px 0px 15px 0px;
}
h5 {
	  font-size:19px;
	  line-height:27px;
	  font-weight:400;
	  margin:0px 0px 15px 0px;
}
h6 {
	font-size:16px;
	line-height:21px;
	font-weight:400;
	margin:0px 0px 10px 0px;
}
h7 {
	  font-size:12px;
	  line-height:15px;
	  font-weight:400;
	  margin:0px 0px 10px 0px;
	  display:block;
	  color:#949696;
}
p {
	  line-height: 21px;
	  font-size:14px;
}

a {
    color: #292d2d;
    text-decoration: none;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
a:hover,
a:focus,
.istouching a:hover,
.istouching a:focus {
  color:inherit;
  outline:none;
}
label {
	font-weight:400;
}
strong {/*override bold with medium*/
	font-weight:500;
}

/*GENERAL CLASSES*/
.w-hidden{
     opacity: 0!important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"!important;
    -moz-opacity: 0!important;
    -khtml-opacity: 0!important;
	filter: alpha(opacity=0)!important;
}
.w-visible{
     opacity: 1!important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"!important;
    -moz-opacity: 1!important;
    -khtml-opacity: 1!important;
	filter: alpha(opacity=100)!important;
}
.underlined{
  text-decoration: underline!important;
}
label.error {
	color:#ff2358;
	margin-top:5px;
	font-size:16px;
}
label.error.styled-form-error {
	position: absolute;
    right: 0px;
    padding-left: 20px!important;
    margin: 0!important;
    line-height: 20px;
	color:#ff0033!important;
	background:url(../../img/warning-ico.svg) no-repeat center left;
	background-size:17px 14px;
}
label.error.styled-form-error.privacy-error {
	right:auto;
	left:0px;
	top:-20px;
}
label.error#privacy-error,
label.error#prodprivacy-error {
	min-width: 250px;
    margin-top: 15px;
    position: absolute;
    top: -35px;
}
.msgerror label.error {
	display:block;
	margin-bottom:4px;
}
.square-container {
	padding-bottom: 100%;
	overflow: hidden;
	position: relative;
	display: block;
}
.square-container img{
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translateX(-50%) translateY(-50%); 
	-webkit-transform: translateX(-50%) translateY(-50%); 
	-o-transform: translateX(-50%) translateY(-50%); 
	transform: translateX(-50%) translateY(-50%); 
	
	max-height: 100%;
    max-width: 100%;
    display: inline-block;
    margin: 0px auto;
    width: auto;
}
.accordion {
	border-bottom:solid 1px #b0b2b2;
	margin-bottom:30px;
	padding-bottom:30px;
}
.accordion-title {
	cursor:pointer;
}
.accordion.active .accordion-title {
	color:#ef4d4b;
}
.accordion-text {
	
}
.styled-table {
	width:100%;
	margin-bottom: 25px;
    margin-top: 10px;
}
.styled-table td {
	border-bottom:solid 1px #b0b2b2;
	padding:10px 5px;
	font-size:14px;
}
.flex-box {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex; 
}
.flex-box > img {
	-webkit-align-self:flex-end;
	-moz-align-self:flex-end;
	-ms-align-self:flex-end;
	align-self:center;
}
.flex-box.flex-wrap {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-box.vertical-flex {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-box.space-between-flex {
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	-ms-justify-content:space-between;
	justify-content:space-between;
}
.flex-box.space-around-flex {
	-webkit-justify-content:space-around;
	-moz-justify-content:space-around;
	-ms-justify-content:space-around;
	justify-content:space-around;
}
.flex-box.center-flex {
	-webkit-justify-content:center;
	-moz-justify-content:center;
	-ms-justify-content:center;
	justify-content:center;
}
.flex-box.end-flex {
	-webkit-justify-content:flex-end;
	-moz-justify-content:flex-end;
	-ms-justify-content:flex-end;
	justify-content:flex-end;
}
.flex-box.align-left-flex {
	-webkit-align-items:left;
	-moz-align-items:left;
	-ms-align-items:left;
	align-items:left;
}
.flex-box.align-center-flex {
	-webkit-align-items:center;
	-moz-align-items:center;
	-ms-align-items:center;
	align-items:center;
}
.flex-box.flex-order-1 {
	-webkit-box-ordinal-group: 1;   
	-moz-box-ordinal-group: 1;      
	-ms-flex-order: 1;              
	-webkit-order: 1;               
	order: 1; 
}
.flex-box.flex-order-2 {
	-webkit-box-ordinal-group: 2;   
	-moz-box-ordinal-group: 2;      
	-ms-flex-order: 2;              
	-webkit-order: 2;               
	order: 2; 
}

.gray-box {
	background:#f7f7f7;
}
.alert {
	display:inline-block;
}
.padding-0 {
	padding: 0;
}
.padding-10 { padding: 10px;}
.margin-0 {
	margin:0;
}
.padding-top-0{ padding-top:0 !important; }
.padding-top-5{ padding-top:5px !important; }
.padding-top-10{ padding-top:10px !important; }
.padding-top-15{ padding-top:15px !important; }
.padding-top-20{ padding-top:20px !important; }
.padding-top-25{ padding-top:25px !important; }
.padding-top-30{ padding-top:30px !important; }
.padding-top-35{ padding-top:35px !important; }
.padding-top-40{ padding-top:40px !important; }
.padding-top-45{ padding-top:45px !important; }
.padding-top-50{ padding-top:50px !important; }
.padding-top-55{ padding-top:55px !important; }
.padding-top-60{ padding-top:60px !important; }
.padding-top-65{ padding-top:65px !important; }
.padding-top-70{ padding-top:70px !important; }
.padding-top-75{ padding-top:75px !important; }
.padding-top-80{ padding-top:80px !important; }
.padding-top-85{ padding-top:85px !important; }
.padding-top-90{ padding-top:90px !important; }
.padding-top-120{ padding-top:120px !important; }
.padding-top-140{ padding-top:140px !important; }

.padding-bottom-0{ padding-bottom:0 !important; }
.padding-bottom-5{ padding-bottom:5px !important; }
.padding-bottom-10{ padding-bottom:10px v; }
.padding-bottom-15{ padding-bottom:15px !important; }
.padding-bottom-20{ padding-bottom:20px !important; }
.padding-bottom-25{ padding-bottom:25px !important; }
.padding-bottom-30{ padding-bottom:30px !important; }
.padding-bottom-35{ padding-bottom:35px !important; }
.padding-bottom-40{ padding-bottom:40px !important; }
.padding-bottom-45{ padding-bottom:45px !important; }
.padding-bottom-50{ padding-bottom:50px !important; }
.padding-bottom-55{ padding-bottom:55px !important; }
.padding-bottom-60{ padding-bottom:60px !important; }
.padding-bottom-65{ padding-bottom:65px !important; }
.padding-bottom-70{ padding-bottom:70px !important; }
.padding-bottom-75{ padding-bottom:75px !important; }
.padding-bottom-80{ padding-bottom:80px !important; }
.padding-bottom-85{ padding-bottom:85px !important; }
.padding-bottom-90{ padding-bottom:90px !important; }
.padding-bottom-120{ padding-bottom:120px !important; }
.padding-bottom-140{ padding-bottom:140px !important; }

.margin-top-0{ margin-top:0 !important; }
.margin-top-5{ margin-top:5px !important; }
.margin-top-10{ margin-top:10px !important; }
.margin-top-15{ margin-top:15px !important; }
.margin-top-20{ margin-top:20px !important; }
.margin-top-25{ margin-top:25px !important; }
.margin-top-30{ margin-top:30px !important; }
.margin-top-35{ margin-top:35px !important; }
.margin-top-40{ margin-top:40px !important; }
.margin-top-45{ margin-top:45px !important; }
.margin-top-50{ margin-top:50px !important; }
.margin-top-55{ margin-top:55px !important; }
.margin-top-60{ margin-top:60px !important; }
.margin-top-65{ margin-top:65px !important; }
.margin-top-70{ margin-top:70px !important; }
.margin-top-75{ margin-top:75px !important; }
.margin-top-80{ margin-top:80px !important; }
.margin-top-85{ margin-top:85px !important; }
.margin-top-90{ margin-top:90px !important; }
.margin-top-95{ margin-top:95px !important; }
.margin-top-100{ margin-top:100px !important; }
.margin-top-120{ margin-top:120px !important; }
.margin-top-140{ margin-top:140px !important; }


.margin-bottom-0{ margin-bottom:0 !important; }
.margin-bottom-5{ margin-bottom:5px !important; }
.margin-bottom-10{ margin-bottom:10px !important; }
.margin-bottom-15{ margin-bottom:15px !important; }
.margin-bottom-20{ margin-bottom:20px !important; }
.margin-bottom-25{ margin-bottom:25px !important; }
.margin-bottom-30{ margin-bottom:30px !important; }
.margin-bottom-35{ margin-bottom:35px !important; }
.margin-bottom-40{ margin-bottom:40px !important; }
.margin-bottom-45{ margin-bottom:45px !important; }
.margin-bottom-50{ margin-bottom:50px !important; }
.margin-bottom-55{ margin-bottom:55px !important; }
.margin-bottom-60{ margin-bottom:60px !important; }
.margin-bottom-65{ margin-bottom:65px !important; }
.margin-bottom-70{ margin-bottom:70px !important; }
.margin-bottom-75{ margin-bottom:75px !important; }
.margin-bottom-80{ margin-bottom:80px !important; }
.margin-bottom-85{ margin-bottom:85px !important; }
.margin-bottom-90{ margin-bottom:90px !important; }
.margin-bottom-95{ margin-bottom:95px !important; }
.margin-bottom-100{ margin-bottom:100px !important; }
.margin-bottom-120{ margin-bottom:120px !important; }
.margin-bottom-140{ margin-bottom:140px !important; }
 
.margin-left-0{ margin-left:0 !important; }
.margin-left-5{ margin-left:5px !important; }
.margin-left-10{ margin-left:10px !important; }
.margin-left-15{ margin-left:15px !important; }
.margin-left-20{ margin-left:20px !important; }
.margin-left-25{ margin-left:25px !important; }
.margin-left-30{ margin-left:30px !important; }
.margin-left-35{ margin-left:35px !important; }
.margin-left-40{ margin-left:40px !important; }
.margin-left-45{ margin-left:45px !important; }
.margin-left-50{ margin-left:50px !important; }
.margin-left-55{ margin-left:55px !important; }
.margin-left-60{ margin-left:60px !important; }
.margin-left-65{ margin-left:65px !important; }
.margin-left-70{ margin-left:70px !important; }
.margin-left-75{ margin-left:75px !important; }
.margin-left-80{ margin-left:80px !important; }
.margin-left-85{ margin-left:85px !important; }
.margin-left-90{ margin-left:90px !important; }
.margin-left-95{ margin-left:95px !important; }
.margin-left-100{ margin-left:100px !important; }
.margin-left-120{ margin-left:120px !important; }
.margin-left-140{ margin-left:140px !important; }

.margin-right-0{ margin-right:0 !important; }
.margin-right-5{ margin-right:5px !important; }
.margin-right-10{ margin-right:10px !important; }
.margin-right-15{ margin-right:15px !important; }
.margin-right-20{ margin-right:20px !important; }
.margin-right-25{ margin-right:25px !important; }
.margin-right-30{ margin-right:30px !important; }
.margin-right-35{ margin-right:35px !important; }
.margin-right-40{ margin-right:40px !important; }
.margin-right-45{ margin-right:45px !important; }
.margin-right-50{ margin-right:50px !important; }
.margin-right-55{ margin-right:55px !important; }
.margin-right-60{ margin-right:60px !important; }
.margin-right-65{ margin-right:65px !important; }
.margin-right-70{ margin-right:70px !important; }
.margin-right-75{ margin-right:75px !important; }
.margin-right-80{ margin-right:80px !important; }
.margin-right-85{ margin-right:85px !important; }
.margin-right-90{ margin-right:90px !important; }
.margin-right-95{ margin-right:95px !important; }
.margin-right-100{ margin-right:100px !important; }
.margin-right-120{ margin-right:120px !important; }
.margin-right-140{ margin-right:140px !important; } 
 

input, textarea{ 
	border-radius: 0!important;
	font-size: 16px;
}
.form-control {
	height:50px;
	line-height:36px;
	-webkit-box-shadow: none;
    box-shadow: none;
	color: #292d2d;
	border-color:#e0e0e0;
	letter-spacing:0.4px;
	-webkit-border-radius: 7px!important;
	-moz-border-radius: 7px!important;
	border-radius: 7px!important;
}
.gray-field .form-control {
	background:#f7f7f7;
	border-color:#f7f7f7;
}
.form-control:focus {
	border-color: #ccc;
	outline: 0;
	/*-moz-box-shadow:    0px 10px 80px 20px #f2f2f2;
	-webkit-box-shadow: 0px 10px 80px 20px #f2f2f2;
	-ms-box-shadow: 0px 10px 80px 20px #f2f2f2;
	box-shadow:         0px 10px 80px 20px #f2f2f2;*/
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .12);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .12);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .12);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .12);
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	background-color:#f7f7f7;
}
select.form-control {
	border-radius:0px;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea, 
button[type=submit], 
button[type="button"],
html input[type=button], 
input[type=reset], 
input[type=submit], 
select {
	-webkit-appearance: none!important;
	-moz-appearance: none!important;
	appearance: none!important;
}
input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder { 
	opacity: 1; 
	font-family: 'DM Sans', sans-serif;
	color: #b0b2b2;
	font-size: 14px;
	line-height: inherit;
	height: inherit;
	font-weight:400;
	letter-spacing:0.4px;
}
input:-moz-placeholder,
.form-control:-moz-placeholder { 
	opacity: 1; 
	font-family: 'DM Sans', sans-serif;
	color: #b0b2b2;
	font-size: 14px;
	line-height: inherit;
	height: inherit;
	font-weight:400;
	letter-spacing:0.4px;
} 
input:-ms-input-placeholder,
.form-control:-ms-input-placeholder { 
	opacity: 1; 
	font-family: 'DM Sans', sans-serif;
	color: #b0b2b2;
	font-size: 14px;
	font-weight:400;
	letter-spacing:0.4px;
	/*line-height: inherit;
	height: inherit;*/
}


.gray-field .form-control::-webkit-input-placeholder { 
	color: #292d2d;
}
.gray-field .form-control:-moz-placeholder { 
	color: #292d2d;
} 
.gray-field .form-control:-ms-input-placeholder { 
	color: #292d2d;
}
label.privacy,
p.privacy-text {
	font-weight: 400;
	font-size: 14px;
	display: block;
}
 label.privacy input {
	vertical-align: middle;
	margin: 0 5px 0 0;
}
.form-fields {
	margin-bottom:25px;
}
.form-group.privacy-wrapper {
	padding-top:20px;
}
.form-group button[type="submit"] + h7 {
	margin-top:15px;
}
.form-group label {
	color:#949696;
}
.rainbow-line {
	height:6px;
}
.rainbow-line .rainbow-box {
	height:100%;
	width:20%;
}
.rainbow-line .orange-box {background-color:#ef4d4b;}
.rainbow-line .yellow-box {background-color:#ffba00;}
.rainbow-line .pink-box {background-color:#ff2358;}
.rainbow-line .violet-box {background-color:#7000e3;}
.rainbow-line .red-box {background-color:#ff0033;}

.shadow {
	/*-moz-box-shadow:    0px 10px 60px -10px #f2f2f2;
	-webkit-box-shadow: 0px 10px 60px -10px #f2f2f2;
	-ms-box-shadow: 	0px 10px 60px -10px #f2f2f2;
	box-shadow:         0px 10px 60px -10px #f2f2f2;*/
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .05);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .05);
}
.reverse-shadow {
	box-shadow: 0 -10px 60px -10px rgba(0, 0, 0, .05);
    -moz-box-shadow: 0 -10px 60px -10px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 -10px 60px -10px rgba(0, 0, 0, .05);
    -ms-box-shadow: 0 -10px 60px -10px rgba(0, 0, 0, .05);
    box-shadow: 0 -10px 60px -10px rgba(0, 0, 0, .05);
}
.yellow-texture {
	background:url(../../img/yellow-texture.jpg) repeat;
}
/*BUTTONS*/
.goto-link {
	font-size:13px;
	line-height:22px;
	letter-spacing:2px;
	text-transform:uppercase;
	color:#ef4d4b;
	padding-right:35px;
	position:relative;
	display:inline-block;
}
.goto-link:after {
	position:absolute;
	right:0px;
	line-height:22px;
	top:0px;
	content:"";
	height:22px;
	width:22px;
	background:url(../../img/arrow-right.svg) no-repeat center center;
	background-size:22px 10px;
}
.goto-link.yellow-link {
	color:#ffba00;
}
.goto-link.yellow-link:after {
	background:url(../../img/arrow-right-yellow.svg) no-repeat center center;
}
.goto-link.pink-link {
	color:#ff2358;
}
.goto-link.pink-link:after {
	background:url(../../img/arrow-right-pink.svg) no-repeat center center;
}
.goto-link.purple-link {
	color:#7000e3;
}
.goto-link.purple-link:after {
	background:url(../../img/arrow-right-purple.svg) no-repeat center center;
}
.goto-link.white-link {
	color:#fff;
}
.goto-link.white-link:after {
	background:url(../../img/arrow-right-white.svg) no-repeat center center;
}
.button {
	font-size:16px;
	line-height:21px;
	color:#fff;
	font-weight:bold;
	background-color:#ef4d4b;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	padding:11px 21px;
	border:solid 1px #ef4d4b;
	text-align:center;
	min-width:120px;
	display: inline-block;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	white-space: nowrap;
	letter-spacing: 0px;
}
.button:focus,
.button:hover {
	color:#fff;
}
.inverted-btn {
	background-color:#fff;
	color:#ef4d4b;
}
.inverted-btn:focus,
.inverted-btn:hover {
	color:#ef4d4b;
}
.yellow-btn {
	background-color:#fcc207;
	color:#fff;
	border-color:#fcc207;
}
.yellow-btn:focus,
.yellow-btn:hover {
	color:#fcc207;
	border-color:#fff;
	background-color:#fff;
}
.fullwidth-btn {
	width:100%;
}
.button.progress-button {
	position:relative;
}
.progress-button .tz-bar {
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.button.disabled.progress-button {
   pointer-events: none!important;
   cursor: default;
   background-color:#ffd0d0;
   border-color:#ffd0d0;
}
/* CUSTOM CHECKBOXES */
.icheckbox,
.iradio {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 15px;
    height: 15px;
	background: url('../../img/custom-checkboxes.svg') no-repeat;
	background-size:30px 15px;
    border: none;
    cursor: pointer;
    background-position: 0 0;
	margin-top:-3px;
}
.icheckbox.checked,
.iradio.checked {
	background-position: -15px 0;
}
.icheckbox + label,
.iradio + label {
	margin-left:6px;
	margin-bottom:0px;
	height:21px;
	line-height:21px;
	color:#292d2d;
	font-size:14px;
	display:inline;
	font-weight:400;
	letter-spacing:0.4px;
	cursor:pointer;
} 
.icheckbox + label a,
.iradio + label a {
	color:#292d2d;
}
.icheckbox + label.privacy-label,
.iradio + label.privacy-label {
	color:#b0b2b2;
	position:relative;
}
.icheckbox + label.privacy-label a,
.iradio + label.privacy-label a {
	color:#b0b2b2;
}

/*switch radio*/
.takeaway-switch-wrapper {
	border-right:solid 1px #e0e0e0;
}
.switch {
  width: 33px;
  position: relative;
}
.switch input {
  position: absolute;
  top: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.switch input:checked {
  z-index: 1;
}
.switch input:checked + label {
  opacity: 1;
  color: #ef4d4b;
  cursor: default;
}
.switch input:not(:checked) + label:hover {
  opacity: 0.5;
}
.switch label {
  opacity: 0.33;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.switch .toggle-outside {
  height: 100%;
  border-radius: 2rem;
  padding: 1px;
  overflow: hidden;
  transition: 0.25s ease all;
}
.switch .toggle-inside {
  border-radius: 5rem;
  background: #ef4d4b;
  position: absolute;
  transition: 0.25s ease all;
}
.switch--horizontal {
  width: 170px;
  height: 18px;
  margin: 0 auto;
  font-size: 0;
  margin-top: 9px;
  margin-bottom:8px;
}
.switch--horizontal input {
  height: 18px;
  width: 35px;
  left: 75px;
  margin: 0;
}
.switch--horizontal label {
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
  width: 75px;
  height: 100%;
  margin: 0;
  text-align: center;
}
.switch--horizontal .toggle-outside {
  background: #f7f7f7;
  position: absolute;
  width: 35px;
  left: 75px;
}
.switch--horizontal .toggle-inside {
  height: 16px;
  width: 16px;
}
.switch--horizontal input:checked ~ .toggle-outside .toggle-inside {
  left: 1px;
}
.switch--horizontal input ~ input:checked ~ .toggle-outside .toggle-inside {
  left: 18px;
}
.switch--no-label label {
  width: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
.switch--horizontal label:last-of-type {
    margin-left: 33px;
	width:55px;
}
.switch--no-label.switch--horizontal input,
.switch--no-label.switch--horizontal .toggle-outside {
  left: 0;
}


/*CUSTOM CAROUSEL*/
.custom-owl .owl-carousel .owl-stage-outer {
    overflow: unset;
}
.custom-owl .owl-carousel .owl-item {
    opacity: 0.3;
	transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -webkit-transition: all 0.9s ease;
	pointer-events:none;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex; 
}
.custom-owl .owl-carousel .owl-item.active {
    opacity: 1;
	pointer-events:auto;
}
.custom-owl .owl-arrows-wrapper {
	position:absolute;
	top:50%;
	width:100%;
	z-index:1;
}
.custom-owl .owl-arrows {
	max-width:1800px;
	margin:0px auto;
	padding:0px 30px;
	position:relative;
}

.custom-owl .owl-arrows > div {
	width:60px;
	height:60px;
	background:#fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	cursor:pointer;
	line-height:60px;
	text-align:center;
	position:absolute;
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .05);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .05);	
     opacity: 1!important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"!important;
    -moz-opacity: 1!important;
    -khtml-opacity: 1!important;
	filter: alpha(opacity=100)!important;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.custom-owl .owl-arrows > div img {
	height:10px;
	width:22px;
}
.custom-owl .owl-arrows > div.disabled {
	opacity: 0!important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"!important;
    -moz-opacity: 0!important;
    -khtml-opacity: 0!important;
	filter: alpha(opacity=0)!important;
	cursor:default;
}
.custom-owl .owl-arrows .owl-prev{
	left:30px;
}
.custom-owl .owl-arrows .owl-next{
	right:30px;
}
.custom-owl .owl-controls,
.slide-corporate-wrapper .owl-controls {
	margin-top:35px;
}
.slide-corporate-wrapper .corporate-dots-wrapper {
	margin: 0px auto;
    text-align: center;
    display: block!important;
    margin-top: 20px;
}
.custom-owl .owl-controls .owl-dots,
.slide-corporate-wrapper .owl-controls .owl-dots {
	text-align:center;
	display:block!important;
}
.custom-owl .owl-controls .owl-dot,
.slide-corporate-wrapper .owl-controls .owl-dot {
	width:10px;
	height:10px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border:solid 1px #e0e0e0;
	display:inline-block;
	margin:0px 6px;
}
.custom-owl .owl-controls .owl-dot.active,
.slide-corporate-wrapper  .owl-controls .owl-dot.active {
	border-color:#ef4d4b;
	background-color:#ef4d4b;
}

/*FANCY SELECT*/
div.fancy-select {
	font-weight: 400;
}
div.fancy-select div.trigger {
	background: #fff;
	border-radius: 0;
	padding: 8px 10px 8px 10px;
}
div.fancy-select div.trigger::after {
	content: "\f078";
	font-family: FontAwesome;
	font-weight: normal;
	  position: static;  
	margin: 0px 0 0 10px;
	display: inline-block;
	vertical-align: top;
	float:right;
}
div.fancy-select select:focus + div.trigger.open , div.fancy-select select:focus + div.trigger{
	box-shadow: 0 0 0 1px #f7f7f7;
}
div.fancy-select ul.options {
	background: #fff;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
	border-radius: 0;
	border-top: none;
	padding-left:0px;
}
div.fancy-select ul.options li {
	color: #000;
}
div.fancy-select ul.options li.hover{
color: #dcdcdc;
}
 div.fancy-select ul.options li.selected {
	background: #F7F7F7;
	color: #000;
}
div.fancy-select ul.options li[disabled="disabled"] {
	color:#949696;
	cursor:default;
	pointer-events: none;
}
/*HEADER*/
#top-banner {
	background:#ff2358;
	height:0px;
	color:#fff;
	text-align:center;
	transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
	overflow:hidden;
	position:relative;
	z-index:999;
}
#top-banner .inner-top-banner {
	padding:13px 0px;
}
#top-banner .bike-icon {
	height:49px;
	width:103px;
	display:inline-block;
}
#top-banner p {
	display:inline-block;
	margin:0 50px;
	line-height:49px;
	font-size:16px;
}
#top-banner .top-banner-hide {
	position: absolute;
    top: 10px;
    right: 30px;
    color: #fff;
    font-size: 16px;
}
#header {
	position:relative;
	z-index:998;
	background:#fff;
}

#header.is_stuck + main {
	padding-top:68px;
}
#header .inner-header {
	padding-top:15px;
	padding-bottom:12px;
}
#header #logo img {
	height:35px;
}
#header nav#main-menu {
	padding:0px;
}
#header nav#main-menu ul {
	padding:0px;
	margin:0px;
	float:right;
}
#header nav#main-menu ul li {
	display:inline-block;
	line-height:35px;
	margin-left:30px;
	font-size:16px;
	position:relative;
}
#header nav#main-menu ul li.user-logged > a {
	padding-left:36px;
	padding-right:17px;
	position:relative;
}
#header nav#main-menu ul li.user-logged > a:before {
	content: "\f2c0";
    font-family: FontAwesome;
    position: absolute;
    left: 15px;
    width: 30px;
    height: 35px;
    line-height: 33px;
    font-size: 17px;
    color: #ef4d4b;
}
#header nav#main-menu ul li.user-logged > a:after {
    content: "\f078";
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    /* width: 30px; */
    /* height: 35px; */
    line-height: 35px;
    font-size: 11px;
    color: #ef4d4b;
}
#header nav#main-menu ul li ul.user-submenu {
    z-index: 3;
    background-color: #fff;
    position: absolute;
    left: 0;
    padding: 20px 0px;
    top: 35px;
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity .4s ease,transform .4s ease,visibility .4s linear 0s;
    -moz-transition: opacity .4s ease,transform .4s ease,visibility .4s linear 0s;
    transition: opacity .4s ease,transform .4s ease,visibility .4s linear 0s;
	border: solid 1px #e0e0e0;
	border-top:0px none;
    width: 100%;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
}
#header nav#main-menu ul li:hover > ul.user-submenu {
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    min-width: 230px;
    display: block;
}
#header nav#main-menu ul.user-submenu li {
	display:block;
	margin:0px;
	padding:0px 20px;
	line-height:35px;
}

#header nav#main-menu ul.user-submenu li a {
	display:block;
	font-size:14px;
	color:inherit!important;
}
/*GENERIC CONTENT*/
main {
	z-index: 1;
    position: relative;
    background: #fff;
	overflow:hidden;
}
/*
#header.is-sticky + main {
	padding-top:68px;
}*/
/* HOME */
.main-content {
	padding:80px 0px;
}
.main-content.main-home {
	padding:80px 0px;
	background-color:#fff;
}
/*Eat Form*/
.eat-form-side {
	margin-top:20px;
}
.eat-form-header {
	margin-bottom:22px;
}
.eat-form-header img {
	height:34px;
}
.main-content.main-home .eat-form-header + h1 {
	margin-bottom:55px;
}
#eat-form {
	position:relative;
}
#eat-form #eat-address {
    height: 70px;
    padding-left: 10px;
    padding-right: 50px;
    /*background: url(../../img/pin.svg) no-repeat 15px 21px;
    background-size: 18px;*/
    letter-spacing: 0.4px;
    margin-right: 120px;
    width: calc(100% - 120px);
	-webkit-border-top-right-radius: 0px!important;
	-moz-border-top-right-radius: 0px!important;
	border-top-right-radius:0px!important;
	-webkit-border-bottom-right-radius: 0px!important;
	-moz-border-bottom-right-radius: 0px!important;
	border-bottom-right-radius:0px!important;
}
#eat-form #eat-address::-webkit-input-placeholder { 
	font-size: 16px;
}
#eat-form #eat-address:-moz-placeholder { 
	font-size: 16px;
} 
#eat-form #eat-address:-ms-input-placeholder { 
	font-size: 16px;
}
#eat-form #geolocate-me {
    position: absolute;
    width: 40px;
    height: 50px;
    line-height: 50px;
    right: 130px;
    top: 10px;
    z-index: 1;
    text-align: center;
}
#eat-form #geolocate-me img {
	width:21px;
	height:21px;
}
#eat-form #street_number {
    position: absolute;
    height: 50px;
    top: 10px;
    right: 130px;
    width: 50px;
    border-color: #ef4d4b;
	box-shadow:none!important;
	z-index:1;
}
#eat-form #street_number:focus {
	border-color:#e0e0e0;
}
#eat-form #eat-submit {
	position:absolute;
	top:0px;
	height:70px;
	width:120px;
	text-transform:none;
	font-size:16px;
	right:0px;
	-webkit-border-top-left-radius: 0px;
	-moz-border-top-left-radius: 0px;
	border-top-left-radius:0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-bottom-left-radius: 0px;
	border-bottom-left-radius:0px;
	
}
#eat-form #eat-submit:hover {
	-webkit-box-shadow:none!important;
	-moz-box-shadow:none!important;
	box-shadow:none!important;
}
#eat-form .icheckbox + label {
	font-size:16px;
	color:#292d2d;
}
#eat-form .icheckbox.checked + label {
	color:#ef4d4b;
}
#eat-form .icheckbox + label a {
	color:#292d2d;
}
#eat-form .icheckbox.checked + label a {
	color:#ef4d4b;
}
.pac-container {
	z-index:111000!important;
}
.pac-item {
	padding:20px!important;
	margin-top:-1px!important;
	line-height:37px!important;
	letter-spacing:0.4px!important;
	border-color:#e0e0e0!important;
	color:#b0b2b2!important;
	font-size:13px!important;
}
.pac-icon-marker {
	display:none!important;
}
.pac-item-query {
	font-size:16px!important;
	color:#292d2d!important;
}
#eat-form #eat-message {
    background-color: #ffba00;
    position: absolute;
    top: -50px;
    width: 100%;
    padding: 15px;
	color:#fff;
    z-index: 1;
    line-height: 20px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
#eat-form #eat-message:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 100%;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffba00;
}
#eat-form #eat-message.errore-civico:after {
	right: 145px;
	left:auto;
}
.eat-form-prefilter {
	margin-top:23px;
}
.eat-form-prefilter .inline-check {
	display:inline-block;
	margin-right:12px;
}


/*Home Cucine*/
section.home-cucine {
	padding-top:90px;
	padding-bottom:180px;
	background:#f7f7f7;
}
.home-cucine .slide-cucine-wrapper {
	position:relative;
}

#slide-cucine.owl-carousel .owl-stage-outer .owl-stage {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex; 
}
#slide-cucine .item {
    background-color: #fff;
    border: none;
    display: block;
    float: left;
}
#slide-cucine .cucina-item-wrapper {
	display:none;
}
#slide-cucine .cucina-item-wrapper,
.piatti-tipici .cucina-item-wrapper {
	padding:0px 15px;
}
#slide-cucine .cucina-item,
.piatti-tipici .cucina-item {
	-webkit-border-top-left-radius: 55px;
	-moz-border-top-left-radius: 55px;
	border-top-left-radius: 55px;
	-webkit-border-bottom-right-radius: 55px;
	-moz-border-bottom-right-radius: 55px;
	border-bottom-right-radius: 55px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	border-bottom-left-radius: 5px;
	overflow:hidden;
	background:#fff;
	transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
#slide-cucine .cucina-item-text,
.piatti-tipici .cucina-item-text {
	padding:20px 20px 50px 20px;
}
#slide-cucine .cucina-item-text h5,
.piatti-tipici .cucina-item-text h5 {
	margin:0px;
	color: #292d2d!important;
}
#slide-cucine .cucina-item-text .goto-link,
.piatti-tipici  .cucina-item-text .goto-link {
	position:absolute;
	bottom:14px;
	transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

/*Home Static*/
.home-static {
	margin-top:-57px;
	padding-top:0px;
	padding-bottom:80px;
}
.home-static h1 {
	margin-bottom:20px;
}
.home-static h5 {
	margin-bottom:30px;
}
.asianeat-patch {
	width:112px;
	height:112px;
	margin-bottom:45px;
}
.app-button {
	width:137px;
	height:41px;
	margin-right:5px;
	display:inline-block;
	margin-bottom:20px;
}
#newsletter-form {
    position: relative;
}
#newsletter-form input[type="email"] {
    height: 50px!important;
    padding-left: 15px;
    padding-right: 10px;
    background-size: 18px;
    letter-spacing: 0.4px;
    margin-right: 120px;
    width: calc(100% - 120px);
    -webkit-border-top-right-radius: 0px!important;
    -moz-border-top-right-radius: 0px!important;
    border-top-right-radius: 0px!important;
    -webkit-border-bottom-right-radius: 0px!important;
    -moz-border-bottom-right-radius: 0px!important;
    border-bottom-right-radius: 0px!important;
}
#newsletter-form .button {
    position: absolute;
    top: 0px;
    height: 50px;
    width: 120px;
    text-transform: none;
    font-size: 16px;
    right: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
/*Home Corporate*/
section.home-corporate {
	padding-top:80px;
	padding-bottom:120px;
}
.home-corporate .slide-corporate-wrapper {
	position:relative;
}
#slide-corporate .corporate-item-wrapper {
	display:none;
}
#slide-corporate .corporate-item {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex; 
}

#slide-corporate .corporate-item-img {
	padding-right:0px;
}
#slide-corporate .corporate-item-inner-img {
	-webkit-border-top-left-radius: 7px;
	-moz-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
	overflow:hidden;
}
#slide-corporate .corporate-item-text-wrapper {
	background:#f7f7f7;
	-webkit-border-top-right-radius: 7px;
	-moz-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
}
#slide-corporate .corporate-item-text {
	-webkit-border-top-left-radius: 55px;
	-moz-border-top-left-radius: 55px;
	border-top-left-radius: 55px;
	-webkit-border-bottom-right-radius: 55px;
	-moz-border-bottom-right-radius: 55px;
	border-bottom-right-radius: 55px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	border-bottom-left-radius: 5px;
	overflow:hidden;
	background:#fff;
	transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
	padding:65px 45px 30px 45px;
}
#slide-corporate .corporate-item-text h4 {
	color: #292d2d!important;
}
#slide-corporate .corporate-item-text h5 {
	color: #292d2d!important;
}
#slide-corporate .corporate-item-text .goto-link {
	transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
#slide-corporate .corporate-item-inner-text {
	position:relative;
}
#slide-corporate .corporate-item-inner-text .decorative-fan {
	width:65px;
	height:73px;
	position:absolute;
	left:32px;
	top:-25px;
}
/*LISTA RISTORANTI*/
.main-content.ristoranti-master {
	background-color:#f7f7f7;
	padding-top:50px;
}
.ristoranti .breadcrumbs-wrapper { 
	background:#f7f7f7;
	padding:20px 0px;
}
.ristoranti .breadcrumbs-wrapper .breadcrumb {
	margin-bottom:0px;
	background:transparent;
	padding-top:0px;
	padding-bottom:0px;
	line-height:20px;
	font-size:14px;
}
.breadcrumb>li+li:before {
	content:"/";
	color:#292d2d;
}
.ristoranti .breadcrumbs-wrapper .breadcrumb .address-popup {
	display:inline-block;
	margin-left:5px;
	font-weight:500;
	text-decoration:underline!important;
	color:#ef4d4b;
}
.ristoranti .top-banner-wrapper {
	padding:25px 0px 25px 0px;
	min-height:120px;
	max-height:160px;
	overflow:hidden;
}
.ristoranti .top-banner-wrapper h3 {
	margin:0px;
	color:#fff;
}
.ristoranti .top-banner-wrapper h6 {
	color:#fff;
}
.ristoranti .top-banner-wrapper .yellow h3 {
	color:#ffba00;
}
.ristoranti .top-banner-wrapper .yellow h6 {
	color:#ffba00;
}
.ristoranti .top-banner-wrapper .goto-link {
	margin:0px 20px;
}
.ristoranti .titolo-pagina-wrapper {
	padding:30px 0px;
}
.ristoranti .titolo-pagina-wrapper h3 {
	margin:0px;
}
.filter-bar-wrapper.is_stuck + .ristoranti-master {
	margin-top:68px;
}
.ristoranti .filter-bar-wrapper {
	border-top:solid 1px #e0e0e0;
	padding-top:15px;
	padding-bottom:15px;
	background:#fff;
	position:relative;
	z-index:2;
}
.ristoranti .filter-bar-wrapper .filter-bar > ul {
	margin:0px;
	padding:0px;
}
.ristoranti .filter-bar-wrapper .filter-bar > ul > li {
	display:inline-block;
	line-height:35px;
	padding-right:35px;
	padding-left:35px;
	border-right:solid 1px #e0e0e0;
	position:relative;
}
.ristoranti .filter-bar-wrapper .filter-bar > ul > li:nth-last-child(1) {
	border-right:0px none;
}
.ristoranti .filter-bar-wrapper .filter-bar > ul > li:nth-child(1) {
	padding-left:0px;
}
.ristoranti .filter-bar-wrapper .filter-bar > ul > li a:after {
	content: "\f078";
    font-family: FontAwesome;
    font-weight: normal;
    position: static;
    margin: 0px 0 0 5px;
    display: inline-block;
    vertical-align: top;
	font-size:12px;
}
.ristoranti .filter-bar-wrapper .filter-bar > ul > li > a {
	font-size:14px;
	font-weight:400;
}
.ristoranti .filter-bar .toggle-filter-box.active:after  {
	content:"\f077";
}
.ristoranti .filter-bar .toggle-filter-box:focus {
	color:inherit!important;
}
.ristoranti .filter-bar .filter-box {
	top:calc(100% + 15px);
	left:0px;
	background:#fff;
	position:absolute;
	border:solid 1px #e0e0e0;
    -webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	width:375px;
	min-height:100px;
	max-height:300px;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
	opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
	filter: alpha(opacity=0);
	visibility:hidden;
	overflow-y:auto;
	
}
.ristoranti .filter-bar .filter-box.open {
	top:calc(100% + 5px);
	visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .05);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .05);
}
.ristoranti .filter-bar .filter-box > ul {
	padding:20px 14px;
	margin:0px;
}
.ristoranti .filter-bar .filter-box > ul > li {
	width:100%;
	margin-bottom:10px;
	background-color:#f7f7f7;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	padding:0px 11px;
	line-height:40px;
	position:relative;
}
.ristoranti .filter-bar .filter-box > ul > li:nth-last-child(1) {
	margin-bottom:0px;
}
.ristoranti .filter-bar .filter-box > ul > li .icheckbox + label {
	color:#292d2d;
	font-size:14px;
	font-weight:400;
	padding-right:50px;
	width: 100%;
    line-height: 40px;
    display: inline-block;
    height: 40px;
}
.ristoranti .filter-bar .filter-box > ul > li .icheckbox {
    width: 18px;
    height: 18px;
	background: url('../../img/custom-checkboxes-2.svg') no-repeat;
	background-size:36px 18px;
	position:absolute; 
	right:11px;
	top:11px;
	margin-top:0px;
}
.ristoranti .filter-bar .filter-box > ul > li .icheckbox.checked {
	background-position: -18px 0;
}
.ristoranti .filter-bar .filter-box > ul > li .icheckbox.checked + label {
	color:#ef4d4b;
	font-weight:500;
}
.ristoranti .active-filters-wrapper {
	position:relative;
	overflow:hidden;
	background:#fff;
	z-index:1;
}
.ristoranti .active-filters-wrapper:before {
	content:"";
	width: 100%;
	height:1px;
	position:absolute;
	top:0px;
	left:0px;
	background: #e0e0e0;
}
.ristoranti #active-filters > a {
	line-height:35px;
	font-size:12px;
	font-weight:500;
	margin-right:15px;
	color:#949696;
}
.ristoranti #active-filters > a > span {
	display:inline-block;
	margin-right:5px;
}
.ristoranti .order-bar > span {
	display:inline-block;
	margin-right:10px;
    line-height: 35px;
}
.ristoranti .order-bar .fancy-select {
	width:180px;
	display:inline-block;
}
.ristoranti .order-bar .fancy-select .trigger {
	padding:0px 10px 0px 10px;
	line-height:35px;
	font-size:14px;
	font-weight:500;
	border: solid 1px #e0e0e0;
    -webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.ristoranti .order-bar .fancy-select .trigger::after {
	font-size:12px;
}
.ristoranti .order-bar .fancy-select ul.options {
	padding-top:10px;
	border:solid 1px #e0e0e0;
	border-top:0px none;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
}
.ristoranti .order-bar .fancy-select ul.options.open {
	top:calc(100% - 7px);
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .05);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .05);
}
.ristoranti .order-bar .fancy-select ul.options li {
	height:40px;
	line-height:40px;
	font-size:14px;
	font-weight:400;
	border-top:solid 1px #e0e0e0;
}
.ristoranti .order-bar .fancy-select ul.options li.selected {
    font-weight: 500;
}
.ristoranti .order-bar .fancy-select ul.options.open li {
	padding:0px 10px;
}

.ristoranti .titolo-pagina-wrapper .address-popup {
	color:#ef4d4b;
	font-size:14px;
}
.ristoranti-master .rist-item-wrapper {
	background-color:#fff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	padding:13px 15px;
	margin-bottom:20px;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.ristoranti-master .rist-item-wrapper > a:hover,
.ristoranti-master .rist-item-wrapper > a:focus {
	color:inherit!important;
}
.ristoranti-master .rist-item-wrapper .rist-main-info {
	border-right:1px solid #e0e0e0;
}
.ristoranti-master .rist-item-wrapper .rist-img {
	width:75px;
	height:75px;
	float:left;
	margin-right:15px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	overflow:hidden;
}
.ristoranti-master .rist-item-wrapper .rist-img img {
	width:75px;
	height:75px;
}
.ristoranti-master .rist-item-wrapper .rist-text h4 {
	margin-bottom:0;
}
.ristoranti .rist-tags {
	color:#949696;
	font-size:14px;
	font-weight:400;
	line-height:22px;
}
.ristoranti .rist-tags .rist-tag {
	padding-left:15px;
	position:relative;
}
.ristoranti .rist-tags .rist-tag:before {
	content:"\f111";
	font-family: FontAwesome;
	position:absolute;
	left:0px;
	height:22px;
	line-height:22px;
	font-size: 5px;
    left: 5px;	
}
.ristoranti .rist-tags .rist-tag:nth-child(1) {
	padding-left:0px;
}
.ristoranti .rist-tags .rist-tag:nth-child(1):before {
	display:none;
}
/*.ristoranti .rist-reviews > */span.empty-star {
	width:15px;
	height:15px;
	margin-right:4px;
	margin-top:3px;
	margin-bottom:3px;
	background:url(../../img/empty-star.svg) no-repeat center center;
	background-size:cover;
	display:inline-block;
}
/*.ristoranti .rist-reviews > */span.full-star {
	width:15px;
	height:15px;
	margin-right:4px;
	margin-top:3px;
	margin-bottom:3px;
	background-size:cover;
	display:inline-block;
	background-image: url('../../img/full-star.svg');
}
/*.ristoranti .rist-reviews > */span.half-star {
	width:15px;
	height:15px;
	margin-right:4px;
	margin-top:3px;
	margin-bottom:3px;
	background-size:cover;
	display:inline-block;
	background-image: url('../../img/half-star.svg');
}
.bigger-stars span.empty-star,
.bigger-stars span.full-star,
.bigger-stars span.half-star {
	width:30px;
	height:30px;
	margin-right:8px;
}

.ristoranti .rist-reviews > span:nth-last-child(2) {
	margin-right:11px;
}
.ristoranti .rist-reviews .rist-reviews-recap {
	margin:0px;
	background:none;
	line-height:21px;
	width:auto;
	height:auto;
	padding-top:2px;
}
.ristoranti-master .rist-item-wrapper .rist-side-info .promo {
	height:25px;
	width:100%;
	margin-bottom:7px;
}
.ristoranti .promo-badge {
	background:#ff0033;
	color:#fff;
	font-size:14px;
	font-weight:400;
	text-align:center;
	line-height:25px;
	padding:0px 7px;
	display:inline-block;
	margin-right:7px;
	-webkit-border-top-left-radius: 7px;
	-moz-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
}
.ristoranti .recommended-badge {
	background:#f7f7f7;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font-size:14px;
	color:#ffb70c;
	font-weight:400;
	line-height:25px;
	padding:0px 7px;
	display:inline-block;
	margin-right:7px;
}
.ristoranti .rist-ship {
	font-size:14px;
	line-height:22px;
	width:100%;
}
.ristoranti .rist-ship .free-ship {
	font-weight:500;
	color:#ff0033;
}
.ristoranti .open-badge {
	border:solid 1px #e0e0e0;
	padding:0px 7px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background:#fff;
	display:inline-block;
	margin:0px auto 4px auto;
	clear:both;
	color:#949696;
	display:inline-block;
	line-height:23px;
}
.ristoranti-master .rist-item-wrapper .rist-side-info .rist-time .pre-time-text {
	width:100%;
	height:18px;
	display:inline-block;
	line-height:18px;
	color:#949696;
	font-size:12px;
}
.ristoranti-master .rist-item-wrapper .rist-side-info .rist-time .time-badge {
	font-size:14px;
	line-height:22px;
	color:#949696;
}
.ristoranti-master .rist-item-wrapper .rist-side-info .rist-time .time-badge .minutes {
	font-size:19px;
	line-height:22px;
	font-weight:500;
	color:#292d2d;
}
.ristoranti-master .rist-item-wrapper.open-now .rist-side-info .rist-time .time-badge .minutes {
	padding-left:37px;
	background:url('../../img/bike-orange-icon.svg')no-repeat left 1px;
	background-size:35px;
}
.ristoranti-master .rist-item-wrapper.open-now .rist-side-info .rist-time .time-badge .minutes.asporto {
    padding-left: 29px;
    background: url('../../img/takeaway-orange-icon.svg')no-repeat left 1px;
    background-size: 22px;
}
.ristoranti #eat-form-popup {
	width:600px;
	height:500px;
}
/*DETTAGLIO RISTORANTE*/
.main-content.ristorante-detail {
	padding-top:40px;
	padding-bottom:0px;
}
.ristoranti .detail-breadcrumbs-wrapper { 
	padding:0px;
	background:transparent;
	margin-bottom:7px;
}
.ristoranti .detail-breadcrumbs-wrapper .breadcrumb {
	margin-bottom:0px;
	background:transparent;
	padding:0px;
	line-height:20px;
	font-size:14px;
	color:#949696;
}
.ristoranti .rist-reviews {
    float: left;
    height: 25px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-right: 20px;
}
.ristoranti .rist-other-tags {
	float:left;
	height: 25px;
}
.ristoranti .ristorante-detail  .rist-img {
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	overflow:hidden;
	float:left;
}
.ristoranti .rist-info {
	color:#949696;
	font-size:14px;
	font-weight:400;
	line-height:22px;
	width:100%;
	float:left;
}
.ristoranti .rist-info > span {
	padding-left:15px;
	position:relative;
}
.ristoranti .rist-info > span:before {
	content:"\f111";
	font-family: FontAwesome;
	position:absolute;
	left:0px;
	height:22px;
	line-height:22px;
	font-size: 5px;
    left: 5px;	
}
.ristoranti .rist-info > span:nth-child(1) {
	padding-left:0px;
}
.ristoranti .rist-info > span:nth-child(1):before {
	display:none;
}
.ristorante-detail .badges {
	line-height:0px;
}
.ristoranti .ristorante-detail .open-badge {
	margin: 0px 7px 0px 0px;
	display:inline-block;
}
.ristoranti .ristorante-detail .delivery-address {
	margin-top:10px;
	margin-bottom:10px;
}
.ristorante-detail .pre-time-text {
	width:100%;
	/*height:18px;*/
	display:inline-block;
	line-height:18px;
	color:#949696;
	font-size:12px;
}
.ristorante-detail .time-badge-wrapper {
	margin-left:15px;
}
.ristorante-detail .time-badge {
	font-size:14px;
	line-height:22px;
	color:#949696;
	width: 100%;
    display: inline-block;
    text-align: center;
}
.ristorante-detail .time-badge .minutes {
	font-size:19px;
	line-height:22px;
	font-weight:500;
	color:#292d2d;
}
.ristorante-detail .open-now .time-badge .minutes {
	padding-left:40px;
	background:url('../../img/bike-orange-icon.svg')no-repeat left 1px;
	background-size:37px;
}
.ristorante-detail .open-now .time-badge .minutes.asporto {
    padding-left: 29px;
    background: url('../../img/takeaway-orange-icon.svg')no-repeat left 1px;
    background-size: 22px;
}
.ristorante-detail .nav-tabs-wrapper {
	margin-top:40px;
}
.ristorante-detail .nav-tabs-wrapper .nav-item {
	float:left;
	width:auto;
	height:45px;
	background:#f7f7f7;
	line-height:45px;
	padding:0px 10px;
	min-width:120px;
	border:solid 1px #e0e0e0;
	border-bottom:0px none;
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	margin-right:13px;
}
.ristorante-detail .nav-tabs-wrapper .nav-item > a {
	padding:0px;
	color:#949696;
}
.ristorante-detail .nav-tabs-wrapper .nav-item.active > a {
	color:#ef4d4b;
	font-weight:500;
	text-decoration:underline!important;
}
.content.ristorante-detail.tab-content {
	padding-top:0px;
	padding-bottom:0px;
	background:#f7f7f7;
	border-top:solid 1px #e0e0e0;
	position:relative;
}
/*.content.ristorante-detail.tab-content .tab-pane {
	position:relative;
	z-index:2;
}*/
.content.ristorante-detail.tab-content .tab-inner-header {
	width:100%;
	background:#fff;
	padding:19px 0px;
	line-height:27px;
	height:65px;
	z-index:3;
	position:relative;
}
.content.ristorante-detail.tab-content .tab-inner-header.is_stuck + .tab-container {
	margin-top:65px;
}
.ristoranti .tab-content h3.tab-container-title {
	line-height:30px;
	margin:55px 0px 25px 0px;
	float:left;
	width:100%;
}

.content.ristorante-detail.tab-content .tab-container {
	padding-top:40px;
	min-height:550px;
	padding-bottom: 90px;
}
.content.ristorante-detail.tab-content .tab-container .white-box {
	background:#fff;
	padding:15px 23px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.ristoranti #reviews-panel .tab-container .white-box .float-left-text {
	float:left;
	line-height:25px;
}
.ristoranti #reviews-panel .rist-reviews {
	margin-right:0px;
	margin-left:20px;
}
.ristoranti #reviews-panel .reviews-detail-wrapper {
	margin-top:15px;
	padding-top:15px;
	border-top:solid 1px #e0e0e0;
}
.ristoranti #reviews-panel .reviews-detail-wrapper .full-star {
	margin-left:4px;
	margin-right:8px;
}
.ristoranti #reviews-panel .reviews-detail-wrapper .reviews-detail {
	float:left;
	margin-right:32px;
	line-height:24px;
	font-size:14px;
	font-weight:500;
}
.ristoranti #reviews-panel .reviews-detail-wrapper .reviews-detail > span.num-reviews {
	font-weight:400;
	color:#ef4d4b;
}
.ristoranti #reviews-panel .single-review {
	margin-bottom:20px;
}
.ristoranti #reviews-panel .single-review h6 {
	margin:0px;
	padding-right: 100px;
    position: relative;
}
.ristoranti #reviews-panel .single-review h6 .review-date {
	font-size:12px;
	color:#949696;
	position:absolute;
	right:0px;
}
.ristoranti #reviews-panel .single-review .rist-reviews {
	width:100%;
	margin-left:0px;
	margin-right:0px;
	margin-bottom:12px;
}
.ristoranti #reviews-panel .single-review .rist-reviews > span:nth-last-child(2) {
	margin-right:4px;
}
.ristoranti #reviews-panel .single-review p {
	margin:0px;
	color:#949696;
}
.ristoranti #info-panel h6 {
	font-weight:500;
	margin:0px;
}
.ristoranti #reviews-loadmore {
	color:#ef4d4b;
	text-decoration:underline;
}
.ristoranti #info-panel .tab-inner-content > h3.tab-container-title:nth-child(1) {
	margin-top:0px;
}
.ristoranti #info-panel .calendario-aperture {
	margin-bottom:45px;
}
.ristoranti #info-panel .calendario-aperture-row {
	border-top:solid 1px #e0e0e0;
	padding:15px 0px;
	font-size:16px;
	line-height:20px;
	text-align:right;
}
.ristoranti #info-panel .calendario-aperture-row:nth-child(1) {
	border-top:0px none;
}
.ristoranti #info-panel .calendario-aperture-giorno {
	float:left;
}
.ristoranti #info-panel .calendario-aperture-ore {
	position:relative;
	padding-left:20px;
}

.ristoranti #info-panel .calendario-aperture-ore:before {
	content:"/";
	position:absolute;
	left:6px;
}
.ristoranti #info-panel .calendario-aperture-ore:nth-child(2):before {
	display:none;
}
.ristoranti #info-panel .mappa-ristorante-wrapper {
	padding:4px;
}
.ristoranti #info-panel #mappa-ristorante {
	height:372px;
}
.ristoranti .ristorante-detail .tab-pane .tab-inner-content {
	position:relative;
	z-index:1;
}
#restaurant-menu.menu-wrapper {
	position: relative;
	height: 27px;
	overflow-x: hidden;
	overflow-y: hidden;
	/*padding-right:50px;*/
}
#restaurant-menu .menu	{
	height: 47px; 
	box-sizing: border-box;
	padding-left:0;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	font-size:0px;
	-webkit-overflow-scrolling: touch;
		
}
#restaurant-menu .menu .item {
	display: inline-block;
	width: auto;
	height: 100%;
	padding-right:25px;
	box-sizing: border-box;
	font-size:14px;
}
#restaurant-menu .menu .item:nth-last-child(1) {
	padding-right:15px;/*lungezza del right paddle*/
}
#restaurant-menu .paddles {
	
}
#restaurant-menu .paddle {
	position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    background: white;
    padding: 0;
    border: 0px none;
    font-size: 18px;
    color: #ef4d4b;
}
#restaurant-menu .paddle:focus {
	outline:none;
}
#restaurant-menu .left-paddle {
	left: 0;
}
#restaurant-menu .left-paddle:after {
	content:"";
	z-index:1;
	left:100%;
	width:20px;
	height:100%;
	position:absolute;
    background: -moz-linear-gradient(right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);

}
#restaurant-menu .right-paddle {
	right: 0;
}
#restaurant-menu .right-paddle:after {
	content:"";
	z-index:1;
	left:100%;
	width:20px;
	height:100%;
	left:-20px;
	position:absolute;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.popup-container.moreinfo-pop {
	width:585px;
	min-width:585px;
}
.popup-container.moreinfo-pop  .popup-inner-content {
	overflow:hidden;
	padding:35px 20px;
}
.popup-container.moreinfo-pop  .popup-inner-content h4 {
	font-size:24px;
	margin-bottom:5px;
	color:#292d2d;
	margin-top:0px;
	line-height:30px;
}
.popup-container.moreinfo-pop  .popup-inner-content .prod-img {
	margin-bottom:35px;
}
.popup-container.moreinfo-pop  .popup-inner-content p {
	font-size:16px;
	line-height:22px;
	color:#292d2d;
	margin:0px;
}
.popup-container.moreinfo-pop .popup-inner-content ul {
	padding-left: 19px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #949696;
    font-size: 16px;
    list-style: circle;
}
.menu-filter-wrapper {
	margin-top:-6px;
	padding-right:0px;
	position:relative;
}
.menu-filter-wrapper #filter-products {
	width:100%;
	height:40px;
	padding-right:50px;
}
.menu-filter-wrapper .search-icon {
	position:absolute;
	top:0px;
	right:0px;
	width:50px;
	height:40px;
	background:url(../../img/search-icon.svg) no-repeat center center;
	background-size:19px 20px;
	z-index:1;
	cursor:default;
}
.menu-filter-wrapper .reset-filters {
	position: absolute;
    top: 1px;
    right: 16px;
    height: 38px;
    width: 48px;
    z-index: 2;
    -webkit-border-radius: 7px!important;
    -moz-border-radius: 7px!important;
    border-radius: 7px!important;
	display:none;
	background:#fff url(../../img/reset-icon.svg) no-repeat center center;
	background-size:15px 15px;
}
.ristoranti #menu-panel .restaurant-menu-info {
	color:#ef4d4b;
	font-size:16px;
	line-height:21px;
	margin-bottom:50px;
}
.ristoranti #menu-panel .restaurant-menu-info p:nth-last-child(1) {
	margin:0px;
}
.ristoranti #menu-panel .restaurant-menu-category {
	margin-bottom:30px;
}
.ristoranti #menu-panel .menu-category-prods {
	padding:0px;
	margin:0px;
}
.ristoranti #menu-panel .restaurant-menu-header {
	margin-bottom:25px;
	overflow:hidden;
}
.ristoranti #menu-panel .tab-inner-content .notfound {
	background:#ffd0d0;
}

.ristoranti #menu-panel .tab-inner-content .notfound h6 {
    color: #ef4d4b;
    margin-bottom: 0px;	
}
.ristoranti #menu-panel .restaurant-menu-category .catprod-img-wrapper {
	padding:5px;
	background:#fff;
	width:85px;
	height:85px;
	float:left;
	/*margin-right:30px;*/
	-webkit-border-radius: 7px!important;
    -moz-border-radius: 7px!important;
    border-radius: 7px!important;
}
.ristoranti #menu-panel .restaurant-menu-category .catprod-img {
	-webkit-border-radius: 7px!important;
    -moz-border-radius: 7px!important;
    border-radius: 7px!important;
	overflow:hidden;
}
.ristoranti #menu-panel .restaurant-menu-category .catprod-desc {
	width:calc(100% - 85px);
	margin-left:20px;
}
.ristoranti #menu-panel .restaurant-menu-header h3 {
	margin:0px;
	line-height:30px;
}
.ristoranti #menu-panel .restaurant-menu-header p,
.ristoranti #menu-panel .menu-prod p {
	margin:0px;
	color:#949696;
}
.ristoranti #menu-panel .menu-category-prods h6 {
	margin-bottom:3px;
}
.ristoranti #menu-panel .menu-category-prods .menu-prod {
	margin-bottom:15px;
	overflow:hidden;
	position:relative;
}
.ristoranti #menu-panel .menu-category-prods .menu-prod:before {
    position: absolute;
    width: 4px;
    height: 0;
    content: "";
    left: 0;
    top: 0;
    background: #ef4d4b;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.ristoranti #menu-panel .menu-category-prods .menu-prod.in-cart:before {
	height:100%;
}

.ristoranti #menu-panel .menu-prod .menu-prod-qty {
	color:#949696;
	font-size:14px;
}
.ristoranti #menu-panel .menu-prod .menu-prod-cod {
	color:#ef4d4b;
}
.ristoranti .ristorante-detail-cart .menu-prod-cod,
.checkout-step-container .menu-prod-cod {
	color:#292d2d;
}
.ristoranti #menu-panel .menu-prod .menu-prod-prezzo {
	color:#949696;
	font-size:16px;
}
.ristoranti #menu-panel .menu-prod .product_addtocart_form {
	float:right;
	margin-left:15px;
}
.ristoranti #menu-panel .menu-prod .product_addtocart_form button.addtocart {
	background:url(../../img/plus-icon.svg) no-repeat center center;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color:#ffffff!important;
	background-size:22px 22px;
	border:0px none;
	width:22px;
	height:22px;
}
.ristoranti #menu-panel .menu-prod .product_addtocart_form .addtocart:focus {
	outline:none;
}
.ristoranti #menu-panel .menu-prod .more-info {
	margin-top:30px;
}
.ristoranti #menu-panel .menu-prod .more-info-open {
	text-decoration:underline!important;
	color:#ef4d4b;
	font-size:14px;
}
.ristoranti .ristorante-detail-cart {
	position: absolute;
    width: 100%;
	top:0;
    /*z-index: 1;*/
}
.ristoranti .ristorante-detail-cart .cart-inner-content {
	position:relative;
	z-index:1;
	margin-top:105px;
	overflow:hidden;
	margin-bottom:140px;
}
.ristorante-detail-cart .cart-header {
	padding-top:15px;
	padding-bottom:15px;
	padding-left:50px;
	background:#fff url(../../img/shopping-bag-icon.svg) no-repeat 15px 19px;
	background-size:22px 17px;
	-webkit-border-top-left-radius: 7px;
	-moz-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-moz-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	z-index:1;
}
.ristorante-detail-cart .cart-header h6 {
	margin:0px;
	line-height:28px;
	font-weight:500;
}
.ristorante-detail-cart .cart-header h6 span {
	float:right;
	font-weight:400;
}
.ristorante-detail-cart .cart-content {
	background:#fff;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
}
.ristorante-detail-cart .cart-min-ordine-box {
	margin-top:20px;
	margin-bottom:20px;
}
.ristorante-detail-cart .cart-min-ordine-box p {
	color:#949696;
	margin-bottom:15px;
}
.ristorante-detail-cart .cart-allergia-box {
	margin-bottom:20px;
}
.ristorante-detail-cart .cart-allergia-box .allergia-pop-open {
	color:#ef4d4b;
	padding-left:25px;
	position:relative;
	background:url(../../img/info-icon.svg) no-repeat top left;
	background-size:16px 16px;
}
.ristorante-detail-cart .cart-spedizione {
	margin-bottom:20px;
	color:#949696;
	font-size:14px;
	background:#f7f7f7;
	line-height:20px;
	width:100%;
	border:solid 1px #f7f7f7;
	-webkit-border-radius: 7px!important;
    -moz-border-radius: 7px!important;
    border-radius: 7px!important;
	padding:5px;
}
.ristorante-detail-cart .cart-spedizione span {
	color:#949696;
	font-size:12px;
}
.ristorante-detail-cart .cart-items {
	border-top: solid 1px #e0e0e0;
	border-bottom:solid 1px #e0e0e0;
	padding-top:25px;
	padding-bottom:25px;
	margin-bottom:20px;
}
.ristorante-detail-cart .cart-item {
	margin-top:23px;
}
.ristorante-detail-cart .cart-item:nth-child(1) {
	margin-top:0px;
}
.ristorante-detail-cart .cart-item .qty {
	height:18px;
	line-height:18px;
}
.ristorante-detail-cart .cart-item .qty button {
	background:transparent;
	border:0px none;
	width:18px;
	height:18px;
	line-height:18px;
	padding:0px;
	float:left;
}
.ristorante-detail-cart .cart-item .qty button.reduced {
	background:transparent url(../../img/minus-icon.svg) no-repeat center center;
	background-size:18px 18px;
}
.ristorante-detail-cart .cart-item .qty button.increase {
	background:transparent url(../../img/plus-icon.svg) no-repeat center center;
	background-size:18px 18px;
}
.ristorante-detail-cart .cart-item .qty input[type="text"] {
	width:30px;
	height:20px;
	line-height:20px;
	background:transparent;
	border:0px none;
	font-size:14px;
	color:#949696;
	text-align:center;
	float:left;
}
.ristorante-detail-cart .cart-item .desc {
	padding-right:70px;
}
.ristorante-detail-cart .cart-item .cart-item-price {
	position: absolute;
    right: 0;
    top: 0;
}
.ristorante-detail-cart .cart-summary .cart_art, 
.ristorante-detail-cart .cart-summary .cart_sped,
.ristorante-detail-cart .cart-summary .cart_specialoffer,
.ristorante-detail-cart .cart-summary .cart_imp, 
.ristorante-detail-cart .cart-summary .cart_iva,
.ristorante-detail-cart .cart-summary .cart-total {
	float:left;
	width:100%;
	margin-bottom:10px;
}
.ristorante-detail-cart .cart-item h6 {
	line-height:19px;
	margin:0px;
}
.ristorante-detail-cart .cart-summary h6 {
	float:left;
	margin:0px;
}
.ristorante-detail-cart .cart-summary .cart-total h6,
.ristorante-detail-cart .cart-summary .cart-total .prezzo {
	font-weight:500;
}
.ristorante-detail-cart .cart-summary .cart-total h6 span,
.ristorante-detail-cart .cart-summary .cart_specialoffer h6 span {
	font-weight:400;
	font-size:14px;
	color:#949696;
}
.ristorante-detail-cart .cart-summary .prezzo {
	float:right;
}
.ristorante-detail-cart .cart-footer {
	margin-top:15px;
	margin-bottom:20px;
}
.ristorante-detail-cart .cart-footer .cart-box-offer {
	background:#f7f7f7;
	color:#ffb70c;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    border: solid 1px #f7f7f7;
    -webkit-border-radius: 7px!important;
    -moz-border-radius: 7px!important;
    border-radius: 7px!important;
    padding: 12px 5px;
}
.ristorante-detail-cart .cart-footer .accordion.cart-note {
	border-bottom:0px none;
	border-top:solid 1px #e0e0e0;
	margin-top:20px;
	margin-bottom:20px;
	background:#f7f7f7;
	padding-bottom:0px;
}
.ristorante-detail-cart .cart-footer .accordion.cart-note .accordion-title {
	display:block;
	padding-left:33px;
	padding-right:15px;
	line-height:30px;
	padding-top:16px;
	padding-bottom:16px;
	position:relative;
}
.ristorante-detail-cart .cart-footer .accordion.cart-note .accordion-title:before {
	position:absolute;
	content:"";
	left:5px;
	width:19px;
	height:30px;
	background:url("../../img/note-icon.svg") no-repeat 0px 3px;
	background-size:19px 19px;
}
.ristorante-detail-cart .cart-footer .accordion.cart-note .accordion-title:after {
	content:"\f107";
	font-family:"FontAwesome";
	position:absolute;
	right:0px;
	height:30px;
	width:15px;
	text-align:center;
	color:#ef4d4b;
	font-size:18px;
}
.ristorante-detail-cart .cart-footer .accordion.cart-note .accordion-text {
	padding-bottom:20px;
}
.ristorante-detail-cart .cart-footer .cart-payments img {
	width:67px;
	height:56px;
}
.accordion.cart_cou  {
	border:0px none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.accordion.cart_cou .accordion-title {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color:#f7f7f7;
	color:#ef4d4b;
	text-align:center;
	font-weight:500;
	line-height:46px;
	display:block;
}
.accordion.cart_cou .accordion-text {
	margin-top:10px;
}
.accordion.cart_cou .accordion-text .form-control {
	height:46px;
	line-height:32px;
	background-color:#f7f7f7;
	border-color:#f7f7f7;
}
.accordion.cart_cou .accordion-text #coup-trigger.button {
	min-width:100%;
	padding:11px 13px 12px 13px;
}
.accordion.cart_cou .accordion-text label.error.styled-form-error {
	font-size:11px;
	position:relative;
}
a.cart_delcoup {
    padding-left: 5px;
    line-height: 21px;
    font-size: 11px;
    display: inline-block;
    height: 21px;
    color: #ef4d4b;
}
/*LANDING CUCINE*/
.cucine .main-content.main-home {
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .05);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .05);
	position:relative;
	z-index:1;
}
.cucine .eat-form-side {
	margin-top:0px;
}
.cucine .main-content.main-home .eat-form-header + h1 {
	margin-bottom:30px;
}
.cucine .main-content.main-home .eat-form-header + h1 + h4 {
	margin-bottom:45px;
	margin-top:0px;
	font-weight:400;
}
.cucine .cucina-info {
	background:#ffffff;
	padding-top:65px;
	padding-bottom:65px;
}
.cucine .cucina-info .breadcrumb {
	padding:0px;
    margin-bottom: 20px;
    background-color: transparent;
	color:#949696;
}
.cucine .cucina-info h1 {
	color:#ef4d4b;
	font-size:40px;
}
.cucine .cucina-info p {
	font-size:16px;
	line-height:20px;
	margin-bottom:15px;
}
.cucine .cucina-info .cucina-text-corp {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.cucine .cucina-info .cucina-img-corp {
	margin-top:-40px;
}
.cucine .divider-line {
	border-bottom:solid 1px #e0e0e0;
}
.cucine section.main-content.piatti-tipici {
	background:#f7f7f7;
}
.piatti-tipici .cucina-item-wrapper {
	margin-top:30px;
}
.piatti-tipici .cucina-item-img {
	position:relative;
	width:360px;
	padding-top:15px;
	overflow:hidden;
	text-align:center;
}
.piatti-tipici .cucina-item-img img {
	margin:0px auto;
}
.piatti-tipici .cucina-item h4 {
	text-align:center;
	color:#ef4d4b;
	font-size:24px;
	line-height:36px;
	margin:0px 0px 10px 0px;
}
.piatti-tipici .cucina-item-text {
	padding:30px 20px;
}
.piatti-tipici .cucina-item-text p {
	text-align:center;
	font-size:16px;
	line-height:24px;
	margin:0;
}
.lista-cucine .altre-cucine-badge {
	display:inline-block;
	font-size:19px;
	font-weight:500;
	line-height:23px;
	padding:6px 10px;
	-webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
	background:#f7f7f7;
	margin-right:13px;
}
/*LOGIN */
.login-page #form_login {
	padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: solid 1px #e0e0e0;
}
#form_login .alert {
	width:100%;
}
#form_login #pass + h6 {
	margin-top:5px;
}
.check-remember {
	margin-top:5px;
}
#form_login h7 {
	margin-bottom:40px;
	margin-top:5px;
}
.pwforgot {
	color: #b0b2b2;
}
.social-login-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    font-size: 22px;
    border-radius: 50%;
    border: solid 1px #b0b2b2;
	margin:0px 8px;
}
.glogin-custom-btn .abcRioButton {
	width: 38px!important;
    height: 38px!important;
    background: transparent;
    box-shadow: none!important;
    line-height: 9999999;
}
.glogin-custom-btn .abcRioButton .abcRioButtonIcon {
	padding:10px!important;
}
.glogin-custom-btn .abcRioButtonLightBlue:active {
    background-color: transparent;
}
.fblogin-custom-btn {
	color:#3b5998;
}
#pwforgot-form {
	width:550px;
}
/*LOGIN SOCIAL MATCH*/
.login-match-page #form_login h2 {
	margin-bottom:10px;
}
.login-match-page #form_login p {
	margin-bottom:30px;
}
.login-match-page #form_login #send-login {
	margin-top:30px;
}
.login-match-page .wrong-access {
    margin-top: 40px;
    margin-bottom: 80px;
}
.login-match-page .wrong-access h3 {
	margin:0px;
}

/*REGISTER*/
#form_reg {
	padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: solid 1px #e0e0e0;
	overflow:hidden;
}
.reg-page .main-thankyou {
    margin-top: 40px;
    margin-bottom: 80px;
}
.reg-page .main-thankyou h2 {
	margin-bottom:0px;
}
.reg-page .main-thankyou h5 {
	margin-bottom:60px;
}
/*CHECKOUT*/
.checkout-container .checkout-content-wrapper > h3 {
	margin-bottom:25px;
}
.checkout-container .checkout-content-wrapper #content .checkout-step-header {
	padding-left:40px;
	padding-right:40px;
	-webkit-border-top-left-radius: 7px;
	-moz-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-moz-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	background:#fff;
	padding-top:35px;
	padding-bottom:31px;
	position:relative;
	z-index:1;
}
.checkout-container .checkout-content-wrapper #content .checkout-step-header h4 {
	margin:0px;
}
.checkout-container .checkout-content-wrapper #content .checkout-step-header span.step-num {
	position:absolute;
	left:40px;
	top:30px;
	width:36px;
	height:36px;
	color:#fff;
	font-size:19px;
	line-height:36px;
	text-align:center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color:#7000e3;
}
.checkout-container .checkout-content-wrapper #content .checkout-step-container {
	padding-left:40px;
	padding-right:40px;
	padding-bottom:30px;
	padding-top:30px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
	background:#fff;
}
.checkout-container .checkout-content-wrapper #content #form_checkout_2 .checkout-step-header,
.checkout-container .checkout-content-wrapper #content #form_checkout_2 .checkout-step-container,
.checkout-container .checkout-content-wrapper #content #checkout-final .checkout-step-header,
.checkout-container .checkout-content-wrapper #content #checkout-final .checkout-step-container {
	padding-left:25px;
	padding-right:25px;
}
.checkout-container .checkout-content-wrapper #content #form_checkout_2 .checkout-step-container,
.checkout-container .checkout-content-wrapper #content #checkout-final .checkout-step-container {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.checkout-step-container .form-group {
	margin-bottom:25px;
}
.checkout-step-container p.checkout-change-user {
	color:#949696;
	margin-bottom:40px;
}
.checkout-step-container p.checkout-change-user a {
	color:#ef4d4b;
}
.checkout-step-container .select2-container .select2-container:focus,
.checkout-step-container .select2-container .select2-selection:focus,
.checkout-step-container .select2-container--default .select2-selection--single .select2-selection__rendered:focus {
	outline:none;
}
.checkout-step-container .saved-sped-select, 
.checkout-step-container .select2-container .select2-selection {
	width:100%;
	height:50px;
	background:#f7f7f7;
	border-color:#f7f7f7;
	line-height:50px;
}
.checkout-step-container .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height:50px;
	color:#292d2d;
}
.checkout-step-container .select2-container--default .select2-selection--single .select2-selection__arrow {
	height:50px;
	width:17px;
}
.checkout-step-container .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color:#ef4d4b transparent transparent transparent;
}
.select2-dropdown {
	border:solid 1px #e0e0e0;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.select2-container--open .select2-dropdown--above {
	-moz-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
    -ms-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
    box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
}
.select2-results__option {
	padding:25px 15px;
}
.select2-results__option:nth-child(1) {
	padding:0px;
	height:0px;
}
.select2-results__option .option-title {
	font-weight:500;
	display:inline-block;
	margin-bottom:10px;
}
.select2-container--default .select2-results>.select2-results__options {
    max-height: 360px;
    overflow-y: auto;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f7f7f7;
    color: #292d2d;
}
.checkout-step-container .check-dofattura {
	line-height:50px;
}
.checkout-step-container .dati-fatturazione {
	float:left;
	border-top: solid 1px #e0e0e0;
    padding-top: 30px;
}
.checkout-step-container .selected-sped > .form-group {
	margin-bottom:5px;
}
.checkout-step-container .selected-sped .sped-edit-link {
	color:#ef4d4b;
	padding-left:21px;
	background:url(../../img/note-icon.svg) no-repeat top left;
	background-size:14px 14px;
	position: absolute;
    bottom: 25px;
    right: 15px;
}
.checkout-step-container .selected-sped-box {
	padding: 25px 105px 25px 15px;
    background: #f7f7f7;
    margin-bottom: 20px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.checkout-step-container .selected-sped-box .option-title {
	display:inline-block;
	margin-bottom:10px;
	font-weight:500;
}
.checkout-allergia-box {
	margin-bottom:65px;
	background-color:#f7f7f7;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	height:60px;
	line-height:60px;
}
.checkout-allergia-box a {
	color:#ef4d4b;
	padding-left:25px;
	position:relative;
	background:url(../../img/info-icon.svg) no-repeat top left;
	background-size:16px 16px;
}
.checkout-step-container .fancy-select .trigger {
	height: 50px;
    line-height: 36px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #292d2d;
    letter-spacing: 0.4px;
    -webkit-border-radius: 7px!important;
    -moz-border-radius: 7px!important;
    border-radius: 7px!important;
	border:solid 1px #e0e0e0;
}
.checkout-step-header h4 span.prezzo {
    float: right;
    font-size: 16px;
}
.checkout-step-container .cart-summary .cart_art, 
.checkout-step-container .cart-summary .cart_sped,
.checkout-step-container .cart-summary .cart_specialoffer,
.checkout-step-container .cart-summary .cart_imp, 
.checkout-step-container .cart-summary .cart_iva,
.checkout-step-container .cart-summary .cart-total {
	float:left;
	width:100%;
	margin-bottom:15px;
}
 
.checkout-step-container .cart-summary h6 {
	float:left;
	margin:0px;
}
.checkout-step-container .cart-summary .cart-total h6,
.checkout-step-container .cart-summary .cart-total .prezzo {
	font-weight:500;
}
.checkout-step-container .cart-summary .cart-total h6 span,
.checkout-step-container .cart-summary .cart_specialoffer h6 span {
	font-weight:400;
	font-size:14px;
	color:#949696;
}
.checkout-step-container .cart-summary .prezzo {
	float:right;
	white-space:nowrap;
}
.checkout-step-container .checkout-items .final_qty {
	color:#949696;
	line-height:21px;
}
.checkout-step-container .checkout-items {
	border-bottom: solid 1px #e0e0e0;
	padding-bottom:10px;
	margin-bottom:20px;
	overflow:hidden;
}
.checkout-step-container .checkout-items .cart-item {
	margin-bottom:20px;
}
.checkout-step-container .cart-summary .cart_imp {
	border-top: solid 1px #e0e0e0;
	padding-top:20px;
}
.checkout-step-container .cart-summary .cart-total {
	border-top: solid 1px #e0e0e0;
	border-bottom: solid 1px #e0e0e0;
	padding-top:20px;
	padding-bottom:20px;
}
.checkout-step-container .cart-dest-recap {
	margin-top:10px;
	margin-bottom:20px;
	padding-left:50px;
}
.checkout-step-container .cart-dest-recap.consegna {
	background:url(../../img/bike-orange-icon.svg) no-repeat top left;
	background-size:42px;
}
.checkout-step-container .cart-dest-recap.asporto {
	background:url(../../img/takeaway-orange-icon.svg) no-repeat top left;
	background-size:25px;
}
.checkout-step-container .cart-dest-recap h6 {
	font-size:14px;
	line-height:22px;
	margin:0px 0px 10px 0px;
	color:#ef4d4b;
}
.checkout-step-container .cart-dest-recap address {
	font-size:14px;
	line-height:22px;
	margin:0;
}
#form_checkout_2 .checkout-step-header .step-num {
	left:25px;
}
#form_checkout_2 .checkout-step-container label.tipo-pay {
	display:block;
	width:100%;
	margin-bottom:25px;
	border:solid 1px #ececec;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	background:#fff;
	padding:20px;
	padding-right:60px;
	position:relative;
}
#form_checkout_2 .checkout-step-container label.tipo-pay.selected {
	background:#f7f7f7;
}
#form_checkout_2 .checkout-step-container label.tipo-pay h5 {
	font-size:14px;
	line-height:21px;
	margin:0px;
}
#form_checkout_2 .checkout-step-container label.tipo-pay h5 + span {
	font-size:12px;
	color:#949696;
}
#form_checkout_2 .checkout-step-container label.tipo-pay > .iradio-wrapper {
	position:absolute;
	right:20px;
	top:calc(50% - 7px);
}
#form_checkout_2 .checkout-step-container label.tipo-pay > .iradio-wrapper .iradio {
    background: url('../../img/custom-checkboxes-2.svg') no-repeat;
	width: 15px;
    height: 15px;
	background-size:30px 15px;
}
#form_checkout_2 .checkout-step-container label.tipo-pay > .iradio-wrapper .iradio.checked {
	background-position:-15px 0;
}
#form_checkout_2 .btn-proceed-checkout {
	margin-top:20px;
	margin-bottom:10px;
}
.main-content #form_checkout_2 h6.checkout-help {
	text-align:left;
	color:#949696;
}
.main-content #form_checkout_2 h6.checkout-help a {
	color:#ef4d4b;
}
label.error.styled-form-error.payment-form-error {
	position: relative;
	
	color:#ff2358;
	margin-top:5px;
	font-size:16px;
    right: 0px;
    padding-left: 20px!important;
    margin: 0!important;
    line-height: 20px;
	color:#ff0033!important;
	background:url(../../img/warning-ico.svg) no-repeat center left;
	background-size:17px 14px;
}
/*USER PAGES*/
.user-page main {
	background:#f7f7f7;
}
.user-page-header {
	padding-top:61px;
	background:url(../../img/orange-texture.jpg) repeat center center;
	padding-bottom:61px;
}
.user-page-header h1.user-page-title {
	font-size:40px;
	color:#fff;
	line-height:48px;
	margin:0px;
}
.user-page-header h4.user-page-desc {
	color:#fff;
	margin:0px;
	font-weight:normal;
}
.user-edit-data .main-content {
	padding-top:0px;
	margin-top:-40px;
}
.user-edit-data .user-edit-header {
	background:#fff;
	padding-top:26px;
	padding-bottom:26px;
	border-bottom:solid 1px #e0e0e0;
	-webkit-border-top-left-radius: 7px;
	-moz-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-moz-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	position:relative;
	z-index:1;
	margin-bottom:35px;
	padding-left:40px;
	padding-right:40px;
}
.user-edit-data #user-edit-form,
.user-edit-data #pwd_reset-form {
	padding-left:40px;
	padding-right:40px;
}
.user-edit-data .user-edit-header h3 {
	margin:0px;
}
.user-edit-data .user-edit-content {
	background:#fff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.user-edit-data .form-group {
	margin-bottom:25px;
}
.user-edit-data .form-fields:nth-last-child(1) {
	margin-bottom:0px;
}
.user-edit-data .check-dofattura {
	margin-top:5px;
}
.user-page .white-box {
	background:#fff;
	padding:15px 25px 25px 25px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	min-height:280px;
}
.user-page .addresses-primary .item {
	margin-bottom:25px;
}
.user-page .addresses-primary .item h4 {
	margin-bottom:5px;
}
.user-page .addresses-primary .item p {
	margin-bottom:12px;
}
.user-page .addresses-primary .item address {
	padding-top:20px;
	border-top:solid 1px #e0e0e0;
	padding-bottom:20px;
	border-bottom:solid 1px #e0e0e0;
	min-height:125px;
	display:block;
}
.user-page .addresses-primary .item address:nth-last-child(1) {
    border-bottom: 0px none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.user-page .addresses-primary .item .sped-edit-link {
	color:#ef4d4b;
	padding-left:21px;
	background:url(../../img/note-icon.svg) no-repeat top left;
	background-size:14px 14px;
}
.user-page .buttons-set {
	margin-top:20px;
}
/*Lista ordini*/
.user-page .order-thumb {
	margin-bottom:50px;
	min-height:0px;
}
.user-page .order-thumb .order-date {
    position: absolute;
    top: -22px;
    height: 44px;
    line-height: 44px;
    background: #fff;
    padding-left: 18px;
    padding-right: 18px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    right: 28px;
    font-size: 12px;
}
.user-page .order-thumb h5 {
	font-weight:500;
	margin-bottom:5px;
}
.user-page .order-thumb.order-review-thumb h5,
.user-page .order-thumb.order-delivery-thumb h5 {
	font-weight:400;
	font-size:16px;
}
.user-page .order-thumb p.order-state {
	color:#ef4d4b;
	margin:0px 0px 5px 0px;
}
.user-page .order-thumb hr {
	margin-top:13px;
	margin-bottom:13px;
}
.user-page .order-thumb p.order-total {
	margin:0px;
}
.user-page .order-thumb .order-review  {
	line-height:21px;
}
.user-page .order-thumb .order-review .rist-reviews {
	margin-left:10px;
}
.user-page .order-thumb .order-actions {
	margin-top:20px;
}
.user-page .order-thumb .order-actions .button {
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    padding: 8px 8px;
    min-width: 145px;
	letter-spacing:1px;
	text-transform:none;
	margin-right:10px;
}
.user-page .order-thumb .order-actions #ripeti-ordine {
	display:inline-block;
}
.user-page .order-thumb .thumb-rist img {
	width:67px;
}
.user-page .order-thumb.order-delivery-thumb {
	padding-bottom:0px;
}
.user-page .order-thumb .order-info {
	padding-left:0px;
	padding-right:50px;
	position:relative;
}
.user-page .order-thumb .order-info:after {
    content: "Consegna";
    position: absolute;
    right: 0;
    top: 25px;
    font-size: 8px;
    /* color: #666; */
    color: #949696;
}
.user-page .order-thumb .order-info.consegna {
	background:url('../../img/bike-orange-icon.svg')no-repeat top right 2px;
	background-size:37px;
}
.user-page .order-thumb .order-info.asporto {
    background: url('../../img/takeaway-orange-icon.svg')no-repeat top right 5px;
    background-size: 22px;
}
.user-page .order-thumb .order-info.asporto:after {
	content:"Asporto"
}
/*Dettaglio ordine*/
.order-delivery-thumb .row {
	margin-left:-25px;
	margin-right:-25px;
}
.order-delivery-thumb .mappa-consegna-wrapper {
	padding:4px;
}
.order-delivery-thumb #mappa-consegna {
	height:372px;
	margin-top:15px;
}
.order-summary .order-header {
	padding-top:15px;
	padding-bottom:15px;
	padding-left:50px;
	background:#fff url(../../img/shopping-bag-icon.svg) no-repeat 15px 19px;
	background-size:22px 17px;
	-webkit-border-top-left-radius: 7px;
	-moz-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-moz-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	z-index:1;
	padding-right:25px;
}
.order-summary .order-header h6 {
	margin:0px;
	line-height:28px;
	font-weight:500;
}
.order-summary .order-header h6 span {
	float:right;
	font-weight:400;
}
.order-summary .order-content {
	background:#fff;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
	padding:30px 25px;
}
.order-summary .order-content .cart-items {
	border-top: solid 1px #e0e0e0;
	border-bottom:solid 1px #e0e0e0;
	padding-top:25px;
	padding-bottom:25px;
	margin-bottom:20px;
}
.order-summary .order-content .cart-item {
	margin-top:23px;
}
.order-summary .order-content .cart-item:nth-child(1) {
	margin-top:0px;
}
.order-summary .order-content .cart-item .qty {
	height:18px;
	line-height:18px;
}

.order-summary .order-content .cart_art, 
.order-summary .order-content .cart_sped,
.order-summary .order-content .cart_specialoffer,
.order-summary .order-content .cart_imp, 
.order-summary .order-content .cart_iva,
.order-summary .order-content .cart-total {
	float:left;
	width:100%;
	margin-bottom:10px;
}
.order-summary .order-content .cart-item h6 {
	line-height:19px;
	color: #949696;
	margin:0px;
	
}
.order-summary .order-content .cart-item h6 .menu-prod-cod {
	color:#ef4d4b;
}
.order-summary .order-content h6 {
	float:left;
	margin:0px;
}
.order-summary .order-content .cart-item .final_qty {
    color: #949696;
	line-height:19px;
}
.order-summary .order-content .cart-item .prezzo {
	float:right;
}
.order-summary .order-content .order-content-righe {
	padding-bottom:25px;
	margin-bottom:25px;
	border-bottom:solid 1px #e0e0e0;
}

.order-summary .order-content .cart-total h6,
.order-summary .order-content .cart-total .prezzo {
	font-weight:500;
}
.order-summary .order-content .cart-total h6 span {
	font-weight:400;
	font-size:14px;
	color:#949696;
}

.order-summary .order-content .cart_art, 
.order-summary .order-content .cart_sped,
.order-summary .order-content .cart_specialoffer,
.order-summary .order-content .cart_imp, 
.order-summary .order-content .cart_iva,
.order-summary .order-content .cart-total {
	float:left;
	width:100%;
	margin-bottom:15px;
}
 
.order-summary .order-content .cart-summary h6 {
	float:left;
	margin:0px;
}
.order-summary .order-content .cart-summary .cart-total h6,
.order-summary .order-content .cart-summary .cart-total .prezzo {
	font-weight:500;
}
.order-summary .order-content .cart-summary .cart-total h6 span,
.order-summary .order-content .cart-summary .cart_specialoffer h6 span {
	font-weight:400;
	font-size:14px;
	color:#949696;
}
.order-summary .order-content .cart-summary .prezzo {
	float:right;
}

.order-summary .order-content .cart-summary .cart_imp {
	border-top: solid 1px #e0e0e0;
	padding-top:20px;
}
.order-summary .order-content .cart-summary .cart-total {
	border-top: solid 1px #e0e0e0;
	padding-top:20px;
	margin-bottom:0px;
}
.order-summary .order-assistance {
	margin-top:45px;
	padding-left:60px;
	padding-top:5px;
	background: url(../../img/assistance-icon.svg) no-repeat top left;
	background-size:41px;
}
.order-summary .order-assistance p {
	margin-bottom:20px;
}

/*PAGINE STATICHE*/
.static-page section.content-header {
	height:350px; 
	padding:0px;
	position:relative;
}
.static-page section.content-header.texture-header {
	padding-top:61px;
	background:url(../../img/orange-texture.jpg) repeat center center;
	padding-bottom:61px;
	height:auto;
}
.static-page section.content-header.texture-header h1 {
	color:#fff;
	margin:0;
}
.static-page section.content-header.texture-header + section.main-content {
	padding-top:0px;
	margin-top:-40px;
	padding-bottom:95px;
	background:#f7f7f7;
}
.static-page .content-header-box {
	top:125px;
}
.static-page .header-box-head {
	padding-left:30px;
	padding-right:120px;
	-webkit-border-top-left-radius: 7px;
	-moz-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-moz-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	background:#fff;
	padding-top:30px;
	padding-bottom:30px;
	position:relative;
	z-index:1;
}
.static-page .header-box-head h3 {
	font-size:24px;
	line-height:30px;
	font-weight:normal;
	margin:0px;
}
.static-page .header-box-content h1 {
	font-size:40px;
	line-height:48px;
	font-weight:500;
	margin:0px;
}
.static-page .header-box-content h5 {
	margin:0px;
}
.static-page .header-box-content {
	padding-left:30px;
	padding-right:120px;
	padding-bottom:40px;
	padding-top:40px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
	background:#fff;
}
.static-page .static-text-wrapper {
	background:#fff;
	position:relative;
	z-index:1;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.static-page .static-text-header {
	padding-top:26px;
	padding-bottom:26px;
	/*border-bottom:solid 1px #e0e0e0;*/
	margin-bottom:35px;
	padding-left:30px;
	padding-right:30px;
}
.static-page .static-text-header h3 {
	margin:0;
}
.static-page .static-text-content {
	padding-left:30px;
	padding-right:30px;
	padding-bottom:50px;
}
.static-page .static-text-sidebar {
	padding-left:30px;
	padding-bottom:50px;
}
.static-page .static-text-sidebar + .static-text-content {
	padding-left:15px;
}
.static-page .fancy-select .trigger {
    height: 50px;
    line-height: 36px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #292d2d;
    letter-spacing: 0.4px;
    -webkit-border-radius: 7px!important;
    -moz-border-radius: 7px!important;
    border-radius: 7px!important;
    border: solid 1px #e0e0e0;
}

/*chi siamo*/
.static-page.chi-siamo-page section.content-header {
	background:url(../../img/chi-siamo-top.jpg) no-repeat top center;
	background-size:cover;
}
.static-page.chi-siamo-page section.content-header + section.main-content {
	padding-top:30px;
	padding-bottom:115px;
}
.static-page.chi-siamo-page section.main-content .inner-main-content {
	padding-top:200px;
	background:url(../../img/greek-motive.svg) no-repeat right 35px top 40px;
	background-size:127px 127px;
}
.static-page.chi-siamo-page section.mission-content {
	padding-top:115px;
	padding-bottom:115px;
	background:#f7f7f7;
}
.static-page.chi-siamo-page section.mission-content .inner-mission-content {
	min-height:400px;
}
.static-page.chi-siamo-page section.mission-content .parallax-img1 {
    position: absolute;
    top: 0;
    right: 0;
	z-index:1;
}
.static-page.chi-siamo-page section.mission-content .parallax-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
	z-index:2;
}
.static-page.chi-siamo-page section.howto-content {
	padding-top:95px;
	padding-bottom:105px;
}
.static-page.chi-siamo-page section.howto-content .howto-box h3 {
	margin-top:30px;
	margin-bottom:10px;
}
.static-page.chi-siamo-page section.proceed-content {
	padding-top:80px;
	padding-bottom:95px;
	background:#f7f7f7;
}
/*come funziona*/
.static-page.come-funziona-page section.content-header {
	background:url(../../img/come-funziona-top.jpg) no-repeat top center;
	background-size:cover;
}
.static-page.come-funziona-page section.content-header + section.main-content {
	padding-top:195px;
	padding-bottom:120px;
	background:#f7f7f7;
}
.static-page.come-funziona-page .header-box-head,
.static-page.come-funziona-page .header-box-content {
	padding-right:95px;
}
.static-page.come-funziona-page .header-box-content h1 {
	margin-bottom:35px;
}
.static-page.come-funziona-page .come-funziona-box {
	background:#fff;
	overflow:hidden;
	background:#fff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	margin-bottom:35px;
}
.static-page.come-funziona-page .come-funziona-box-txt {
	padding-left:45px;
	padding-right:70px;
}
.static-page.come-funziona-page section.proceed-content {
	padding-top:80px;
	padding-bottom:95px;
	background:#ffffff;
}
/*Faq*/
.static-page.faq-page .static-text-sidebar ul {
	padding:0px;
	margin:10px 0px 10px;
}
.static-page.faq-page .static-text-sidebar ul li {
	margin-bottom:3px;
}
.static-page.faq-page .static-text-sidebar ul li a {
	color:#949696;
}
.static-page.faq-page .static-text-sidebar h6 {
	margin:13px 0px 0px 0px;
	font-weight:500;
}
.static-page.faq-page .static-text-content p {
	color:#949696;
	font-size:14px;
	line-height:22px;
	margin-bottom:16px;
}
/*Diventa partner*/
.static-page.diventa-partner-page section.content-header.texture-header {
	background:url(../../img/diventa-partner-top.jpg) no-repeat top center;
	background-size:cover;
	height: 330px;
    padding: 55px 0px 0px 0px;
    position: relative;
}
.static-page.diventa-partner-page section.content-header.texture-header h5 {
	color:#fff;
	margin:0px;
}
.static-page.diventa-partner-page section.content-header.texture-header + section.main-content {
	margin-top:-180px;
}
.static-page.diventa-partner-page .static-text-header {
	padding-top:15px;
	padding-bottom:16px;
}
/*Contatti*/
.static-page.contatti-page section.content-header {
	padding-top:42px;
	background:url(../../img/contatti-top.jpg) repeat center center;
	padding-bottom:42px;
	height:auto;
}
.static-page.contatti-page .header-box-content {
	padding-right:150px;
}
.static-page.contatti-page section.content-header + section.main-content {
	padding-top: 120px;
    padding-bottom: 120px;
    background: #f7f7f7;
}
.static-page.contatti-page .contatti-box {
	overflow:hidden;
	background:#fff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	margin-bottom:35px;
	padding:45px;
}
.static-page.contatti-page .contatti-box p {
	font-size:16px;
	line-height:22px;
	margin-bottom:30px;
}
.static-page.contatti-page .contatti-box h5 a,
.static-page.contatti-page .contatti-box p a  {
	color:#ef4d4b;
}
#inforequest.popup-container {
	width:585px;
	min-width:585px;	
}
#inforequest .popup-inner-content {
	overflow:hidden;
}
#inforequest .privacy-box {
	margin-top:15px;
}
#inforequest .button {
	min-width:230px;
	margin-bottom:10px;
}
#check-address-popup .popup-inner-content .button {
	margin-bottom:10px;
}
/*404*/
.orange-page-header {
	padding-top:125px;
	background:url(../../img/orange-texture.jpg) repeat center center;
	padding-bottom:125px;
}
.notfound-page main {
	background:#f7f7f7;
}
.notfound-page section.main-content {
	padding-top:0px;
	margin-top:-90px;
	background:transparent;
}
.notfound-page .notfound-inner-content {
	background:#fff;
	overflow:hidden;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	padding-bottom:40px;
}
.notfound-page section.main-content h1 {
	background: #fff;
    margin: 0 0 25px 0;
    padding: 25px 25px;
    text-align: center;
    line-height: 40px;
	font-size:40px;
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .05);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .05);
}
.notfound-page section.main-content h4 {
	font-weight:400;
	margin-bottom:55px;
}

/*PRE-FOOTER*/
#pre-footer {
	background:#ef4d4b;
	padding-top:80px;
	padding-bottom:100px;
	color:#fff;
}
#pre-footer .rider-icon img,
#pre-footer .partner-icon img {
	height:27px;
}
#pre-footer .rider-icon,
#pre-footer .partner-icon {
	height:27px;
	margin-bottom:20px;
}
#pre-footer  h4 {
	margin-bottom:18px;
}
#pre-footer h5 {
	margin-bottom:34px;
}
#join-social {
	height:120px;
	padding-top:35px;
	padding-bottom:35px;
}
#join-social h1 {
	margin:0px;
	line-height:50px;
	color:#fff;
}
#join-social .inline-social-links {
	margin-left:25px;
	height:50px;
}
#join-social .inline-social-links .social-round-link {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background:#fff;
	color:#602e9e;
	text-align:center;
	width:40px;
	height:40px;
	line-height:40px;
	display:inline-block;
	margin-top:5px;
	margin-bottom:5px;
	margin-right:12px;
	font-size:18px;
}
/*FOOTER*/
#footer {
	background:#292d2d;
	color:#fff;
	padding-top:65px;
	padding-bottom:0px;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 0;
}
#footer > .container {
	margin-bottom:65px;
}
#footer .footer-cols {
	margin-bottom:35px;
}
#footer .footer-col {
	background:#2f3334;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	height:100%;
	padding:25px;
	font-size:16px;
	line-height:32px;
}
#footer .footer-col p {
	font-size:16px;
	line-height:32px;
	margin:0px;
}
#footer .footer-col ul {
	margin:35px 0px 0px 0px;
	padding:0px;
}
#footer .footer-col ul li {
	margin:0px;
}
#footer .footer-col a {
	color:#fff;
}
#footer .footer-col .spacer {
	height:35px;
}
#footer .footer-col .social-links i {
	font-size:23px;
	margin-right:6px;
	width:22px;
}
#footer .footer-legal {
	text-align:left;
	line-height:20px;
	color:#636667;
	font-size:13px;
	margin-top:20px;
}
#footer .footer-legal a {
	color:#636667;
}
#footer .footer-legal .asianeat-grey {
	width:95px;
	height:15px;
	margin-right:15px;
	margin-top:-5px;
}
#footer .footer-payments {
	border-top: solid 1px #636767;
    margin-top: 50px;
    padding-top: 50px;
}
#footer .footer-payments .payment-logo {
	height:20px;
	margin-right:5px;
}
#footer .madebyquantico {
	line-height:32px;
	color:#636667;
	font-size:13px;
	margin-top:5px;
	text-align:right;
}
#footer .madebyquantico img {
	height:10px;
	margin-left:4px;
	width:74px;
}

    
/* POPUP */
.popup-container {
	min-width:780px;
	max-width:850px;
}
.popup-container .popup-inner-content {
  padding: 15px 25px 25px 25px;
  background:#fff;
  -webkit-border-radius: 7px!important;
  -moz-border-radius: 7px!important;
  border-radius: 7px!important;
}
.popup-container h3 {
	background: #fff;
    margin: 0 -25px 25px -25px;
    padding: 22px 25px;
    text-align: left;
    line-height: 30px;
	-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .05);
	-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .05);
	box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .05);
}
.review-popup.popup-container h3 {
    text-align: center;
	color:#ef4d4b;
}
#eat-form-popup.popup-container h3 {
	margin-bottom:45px;
}
#popup-preorder.popup-container h3 {
	text-align:center;
}
.popup-container .msg-container h4 {
	font-weight:400;
	margin: 0 -15px 25px -15px;
    padding: 22px 25px 42px 25px;
}
.review-popup.popup-container .popup-inner-content {
	padding-bottom:0px;
}
.review-popup .rating {
    overflow: hidden;
    display: inline-block;
	margin-bottom:28px;
}
.review-popup .rating-input {
    float: right;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0 0 0 -30px!important;
    opacity: 0;
}
.review-popup .rating-star:hover {
    background-position: 0 0;
}
.review-popup .rating:hover .rating-star:hover,
.review-popup .rating:hover .rating-star:hover ~ .rating-star,
.review-popup .rating-input:checked ~ .rating-star {
    background-position: center 0;
}

.review-popup .rating-star,
.review-popup .rating:hover .rating-star {
    position: relative;
    float: right;
    display: block;
    width: 40px;
    height: 30px;
	border-left:solid 5px #fff;
	border-right:solid 5px #fff;
    background: url('../../img/rating-star.svg') center -30px;
	background-size:30px 60px;
	cursor:pointer;
}
.review-popup .gray-box {
	padding-top:35px;
	padding-bottom:35px;
}
.review-popup .gray-box textarea {
	margin-bottom:20px;
}
.review-popup .gray-box .button {
	min-width:165px;
}
#allergia-pop.popup-container {
	width:585px;
	min-width:585px;	
}
#allergia-pop.popup-container p {
	font-size:16px;
	line-height:22px;
	margin-bottom:22px;
	color:#636667;
}
#allergia-pop.popup-container p a {
	color:#ef4d4b;
}
#popup-preorder .button {
	margin-top:16px;
}
/* FANCYBOX */
.fancybox-container--ready .fancybox-bg {
  opacity: 0.7;
}
.fancybox-close-small:after {
   background: #ef4d4b none repeat scroll 0 0;
    color: #fff;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border: solid 1px #fff;
    font-size: 36px;
	
}

.fancybox-slide > div.popup-container {
	padding: 15px;
	background-color:transparent;
}
/*Input loosing focus on mobile fix*/
.fancybox-stage {
	display: block !important;
}

/* LOADER */
.md-preloader{font-size:0;display:inline-block;-webkit-animation:outer 6600ms linear infinite;animation:outer 6600ms linear infinite}
.md-preloader svg{-webkit-animation:inner 1320ms linear infinite;animation:inner 1320ms linear infinite;
  height: 60px;
  width: 60px;
}
.md-preloader svg circle{fill:none;stroke:#ef4d4b;stroke-linecap:square;-webkit-animation:arc 1320ms cubic-bezier(.8, 0, .4, .8) infinite;animation:arc 1320ms cubic-bezier(.8, 0, .4, .8) infinite}@-webkit-keyframes outer{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes outer{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes inner{0%{-webkit-transform:rotate(-100.8deg);transform:rotate(-100.8deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes inner{0%{-webkit-transform:rotate(-100.8deg);transform:rotate(-100.8deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes arc{0%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:0}40%{stroke-dasharray:151.55042961px,210.48670779px;stroke-dashoffset:0}100%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:-151.55042961px}}@keyframes arc{0%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:0}40%{stroke-dasharray:151.55042961px,210.48670779px;stroke-dashoffset:0}100%{stroke-dasharray:1 210.48670779px;stroke-dashoffset:-151.55042961px}}

.md-preloader.md-preloader-small{
	    height: 24px;
		margin: 0 5px;
    vertical-align: middle;
}
.md-preloader.md-preloader-small svg{
	height: 24px;
    width: 24px;
}
/* BLOCK UI */
.blockUI.blockOverlay {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  z-index:98!important;
}
.blockUI.blockMsg {
  z-index:99!important;
}
.blockUI.blockMsg .preloader-container {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 60px;
  box-shadow: 0 0 13px #999;
  padding: 15px;
  width: 75px;
  height: 75px;
}
.blockUI .md-preloader svg {
  height: 45px;
  width: 45px;
}
#container .blockUI.blockMsg .preloader-container {
  height: 75px;
  position: fixed;
  top: 50%;
  width: 75px;
} 

/****** GESTIONE HOVER SOLO SOPRA CERTE RES *****************************/
@media only screen and (min-width : 992px) {
	button:focus {
		outline:none;
	}
	a:hover,
	a:focus,
	#footer .footer-col a:hover,
	#footer .footer-col a:focus,
	.static-page.faq-page .static-text-sidebar ul li a:hover,
	.static-page.faq-page .static-text-sidebar ul li a:focus	{
	  color:#ef4d4b;
	  outline:none;
	}
	#allergia-pop.popup-container p a:hover,
	.static-page.contatti-page .contatti-box h5 a:hover,
	.static-page.contatti-page .contatti-box p a:hover {
		color:#292d2d;
	}
	.fancybox-close-small:hover:after {
	  background: #fff none repeat scroll 0 0;
	  border: 1px solid #ef4d4b;
	  color: #ef4d4b;
	}
	#header nav#main-menu ul.user-submenu li:hover {
		background: #F7F7F7;
	}
	.fblogin-custom-btn:hover,
	.fblogin-custom-btn:focus {
		color:#3b5998;
	}
	.social-login-btn:hover {
		-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .12);
		-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .12);
		-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .12);
		box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .12);
	}
	/*.button:hover,
	.button:focus	{
		-webkit-box-shadow:none;
		-moz-box-shadow:none;
		-ms-box-shadow:none;
		box-shadow:none;
		-webkit-border-top-left-radius: 20px;
		-moz-border-top-left-radius: 20px;
		border-top-left-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-bottom-right-radius: 20px;
		border-bottom-right-radius: 20px;
		color:#fff;
		outline:none;
	}*/
	.progress-button:hover .tz-bar,
	.progress-button:focus .tz-bar	{
		-webkit-border-top-left-radius: 20px!important;
		-moz-border-top-left-radius: 20px!important;
		border-top-left-radius: 20px!important;
		-webkit-border-bottom-right-radius: 20px!important;
		-moz-border-bottom-right-radius: 20px!important;
		border-bottom-right-radius: 20px!important;
	}
	.inverted-btn:hover,
	.inverted-btn:focus	{
		color:#ef4d4b;
	}
	.icheckbox + label a:hover {
		color:#ef4d4b;
	}
	#top-banner .top-banner-hide:hover {
		color:#ffba00;
	}
	.pac-item:hover {
		cursor:pointer;
	}
	#eat-form #eat-submit:hover {
		/*color:#ffba00;*/
	}
	#slide-cucine .cucina-item:hover,
	.piatti-tipici  .cucina-item:hover,
	#slide-cucine .corporate-item-text:hover,
	#join-social .inline-social-links .social-round-link:hover {
		/*-webkit-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15)!important;
		-moz-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15)!important;
		-ms-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15)!important;
		box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15)!important;*/
		/*-moz-box-shadow:    0px 10px 60px -10px #e1e1e1;
		-webkit-box-shadow: 0px 10px 60px -10px #e1e1e1;
		-ms-box-shadow: 	0px 10px 60px -10px #e1e1e1;
		box-shadow:         0px 10px 60px -10px #e1e1e1;*/
		-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .12);
		-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .12);
		-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .12);
		box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .12);
	}
	.goto-link:hover,
	#slide-cucine .cucina-item:hover .goto-link,
	.piatti-tipici .cucina-item:hover .goto-link,
	#slide-corporate .corporate-item-text:hover .goto-link	{
		padding-right:42px;
	}
	.ristoranti .order-bar .fancy-select ul.options li:hover {
		background: #F7F7F7;
		color: #292d2d;
	}
	.ristoranti-master .rist-item-wrapper:hover,
	.ristoranti-master .rist-item-wrapper:focus {
		-moz-box-shadow:    0px 10px 60px -10px rgba(0, 0, 0, .12);
		-webkit-box-shadow: 0px 10px 60px -10px rgba(0, 0, 0, .12);
		-ms-box-shadow: 	0px 10px 60px -10px rgba(0, 0, 0, .12);
		box-shadow:         0px 10px 60px -10px rgba(0, 0, 0, .12);
	}
	.nav-tabs-wrapper li.nav-item>a:focus, .nav-tabs-wrapper li.nav-item>a:hover {
		text-decoration:underline!important;
	}
	
}












/***********************  LANDING ************************/

/*GENERICHE*/
body {
	letter-spacing:0;
}
.bg-red {
	background-color:#e84241!important;
}
.bg-darkblue {
	background-color:#202346!important;
}
.bg-blue {
	background-color:#018490!important;
}
.bg-grey {
	background-color:#f6f5f5!important;
}
.bg-yellow {
	background-color:#fcc207!important;
}

h1 {
	font-size:46px;
	line-height:50px;
	font-weight:bold;
	margin:0px 0px 20px 0px;
}
h2 {
	font-size:26px;
	line-height:34px;
	font-weight:bold;
	margin:0px 0px 20px 0px;
}
h3 {
	font-family: 'Kameron', serif;
	font-size:26px;
	line-height:30px;
	font-weight:bold;
	letter-spacing: .002em;
}

.button {
	font-size:16px;
	font-weight:bold;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	padding:11px 21px;
	letter-spacing: .05em;
}
.button:focus,
.button:hover {
	color:#e84241;
	border-color:#e84241;
	background-color:transparent;
}
.inverted-btn:focus,
.inverted-btn:hover {
	color:#fff;
	border-color:#e84241;
	background-color:#e84241;
}
.yellow-btn {
	background-color:#fcc207;
	color:#fff;
	border-color:#fcc207;
}
.yellow-btn:focus,
.yellow-btn:hover {
	color:#fcc207;
	border-color:#fff;
	background-color:#fff;
}


.yellow-smile {
	background:url(../img/yellow-smile.svg) no-repeat center center;
	background-size:contain;
	display: inline-block;
}

.yellow-texture {
	background:#FCC207 url(../img/yellow-texture.png) no-repeat;
	background-position:bottom right;
}


label.error {
	font-size:10px;
}
input, textarea{ 
	border-radius: 0!important;
	font-size: 16px;
}
.form-group {
    margin-bottom: 25px;
}
.form-control {
	height:45px;
	line-height:31px;
	-webkit-box-shadow: none;
    box-shadow: none;
	color: #000000;
	border-color:#f6f5f5;
	background-color:#f6f5f5;
	letter-spacing:0px;
	-webkit-border-radius: 100px!important;
	-moz-border-radius: 100px!important;
	border-radius: 100px!important;
	padding-left:25px;
	padding-right:25px;
}
.gray-field .form-control {
	background:#ebe9e8;
	border-color:#ebe9e8;
}
.form-control:focus {
	border-color: #e84241;
	background-color:#f8d9d7;
	outline: 0;
	/*-moz-box-shadow:    0px 10px 80px 20px #f2f2f2;
	-webkit-box-shadow: 0px 10px 80px 20px #f2f2f2;
	-ms-box-shadow: 0px 10px 80px 20px #f2f2f2;
	box-shadow:         0px 10px 80px 20px #f2f2f2;*/
	-moz-box-shadow:    none;
	-webkit-box-shadow: none;
	-ms-box-shadow: 	none;
	box-shadow:         none;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	background-color:#ebe9e8;
}
select.form-control {
	border-radius:0px;
}
/*HEADER*/
header {
	background-color:#e84241;
	padding:35px 0px;
}
header #logo {
	width:225px;
	height:94px;
	display: inline-block;
}


/*HOME*/
header .yellow-btn {
	height:45px;
}
#top-slide {
	color:#fff;
	background-image: url(../img/top-slide-img.jpg);
    background-repeat: no-repeat;
	background-position: bottom right;
	padding-top:10px;
	padding-bottom:140px;
}
#top-slide .yellow-smile {
	width:126px;
	height:46px;
	margin-bottom:55px;
}
#top-slide .deco {
	position: absolute;
	bottom:-225px
}

section.content {
	background-color:#fff;
	padding:85px 0px;
}
#middle-content {
	padding-top:110px;
	padding-bottom:180px;
}
#middle-content .ico-box {
	display: inline-block;
	margin-right:60px;
	font-size:23px;
	font-weight:bold;
	text-align: center;
	max-width:135px;
	margin-top:40px;
}
#middle-content .ico-box span {
	display: inline-block;
	margin-top:15px;
}
#middle-content .color-box {
    padding: 65px 55px 35px 55px;
}
#middle-content .color-box h2 {
	color:#fff;
	margin-bottom:0px;
	margin-top:45px;
	font-size:23px;
	line-height:29px;
}
#last-content {
	padding-top:65px;
	padding-bottom:100px;
}
#last-content .blue-patched {
	top: -110px;
    position: relative;
}
#last-content .blue-patched:after {
	content:"";
	position: absolute;
	bottom:-44px;
	right:-52px;
	width:128px;
	height:122px;
	background:url(../img/blue-patch.svg) no-repeat bottom right;
	background-size:contain;
}
#last-content .ico-box {
	display: inline-block;
	font-size:21px;
	line-height:26px;
	font-weight:bold;
}
#last-content .ico-box span {
	display: inline-block;
	margin-top:15px;
}


h4.check-message {
	padding-top: 45px;
    padding-left: 90px;
    color: #018490;
    margin-top: 15px;
    font-size: 26px;
    font-weight: bold;
    line-height: 34px;
    background: url(../img/ico-check.svg) no-repeat top left;
    background-size: 75px;
}
/*FOOTER*/
#join-social h1 {
	font-size:40px;
	letter-spacing: .02em;
}
#join-social .inline-social-links .social-round-link {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    width: 51px;
    height: 49px;
    line-height: 49px;
}
#footer {
	padding-top:40px;
}
#footer > .container {
	margin-bottom:40px;
}
#footer .footer-legal {
	text-align:center;
}
#footer .madebyquantico {
	text-align:center;
}



/***********************  LANDING RESPONSIVE ************************/


@media only screen and (max-width : 1199px) { 
	h1 {
		font-size:35px;
		line-height:45px;
	}
	h2 {
		font-size:24px;
		line-height:28px;
	}
	h3 {
		font-size:26px;
		line-height:30px;
	}
	header #logo {
		width:215px;
		height:90px;
	}
	#top-slide {
		background-size: 1150px;
		padding-bottom: 110px;
	}
	#top-slide .yellow-smile {
		width: 110px;
		height: 40px;
		margin-bottom: 35px;
	}
	#top-slide .deco {
		width:220px;
		bottom:-180px;
	}
	#last-content .blue-patched:after {
		bottom: -40px;
		right: -48px;
		width: 110px;
		height: 105px;
	}
	#last-content .ico-box {
		font-size: 17px;
		line-height: 22px;
	}
	#last-content .ico-box > div > img {
		width: 51px!important;
		height: 45px!important;
	}
	#join-social {
		background-size:contain;
	}
	h4.check-message {
		padding-top: 45px;
		padding-left: 90px;
		font-size: 24px;
		line-height: 34px;
		background-size: 70px;
	}
}

@media only screen and (max-width : 991px) { 
	h1 {
		font-size:32px;
		line-height:42px;
	}
	h2 {
		font-size: 24px;
		line-height: 30px;
	}
	h3 {
		font-size:21px;
		line-height:26px;
	}
	.button {
		font-size:15px;
	}
	header #logo {
		width: 205px;
		height: 86px;
	}
	#top-slide {
		background-size: 740px;
		padding-bottom: 110px;
	}
	#top-slide .yellow-smile {
		width: 100px;
		height: 36px;
		margin-bottom: 35px;
	}
	#top-slide .deco {
		width: 200px;
		bottom: -175px;
	}
	#middle-content {
		padding-top: 100px;
		padding-bottom: 130px;
	}
	#middle-content .ico-box {
		margin-right: 60px;
		font-size: 18px;
		max-width: 100px;
		margin-top: 40px;
	}
	#middle-content .ico-box:nth-last-child(1) img{
		width: 80px;
		height: 78px;
	}
	#last-content {
		padding-bottom: 65px;
	}
	#last-content .ico-box {
		font-size: 19px;
		line-height: 23px;
		text-align: center;
	}
	#last-content .ico-box > div > img {
		width: 51px!important;
		height: 51px!important; 
	}
	#last-content .ico-box span {
		margin-top: 20px;
	}
	h4.check-message {
		padding-top: 40px;
		padding-left: 85px;
		font-size: 22px;
		line-height: 30px;
		background-size: 65px;
	}
	#join-social {
		background: #FCC207;
	}
	#join-social h1 {
		font-size: 30px;
	}
	#footer {
		position: relative;
	}
	
}

@media only screen and (max-width : 767px) { 
	h1 {
		margin-bottom:10px;
		line-height:40px;
	}
	#top-slide {
		background-size: 740px;
		padding-bottom: 110px;
		background-position-y: 100px;
		background-position-x: right;
	}
	#top-slide .yellow-smile {
		margin-bottom: 25px;
	}
	section.content {
		padding: 55px 0px;
	}
	#middle-content {
		text-align: center;
		padding-top: 60px;
    	padding-bottom: 80px;
	}
	#middle-content .ico-box {
		margin-right: 30px;
		margin-left:30px;
		font-size: 18px;
		max-width: 100px;
		margin-top: 40px;
	}
	#middle-content .color-box {
		margin-top: 80px;
		margin-left: 45px;
		margin-right: 45px;
	}
	#middle-content .color-box img {
		width:226px;
	}
	
	#last-content .ico-box {
		font-size: 16px;
		line-height: 20px;
	}
	h4.check-message {
		padding-top: 20px;
		padding-left: 55px;
		font-size: 20px;
		line-height: 24px;
		background-size: 50px;
	}
	h4.check-message br {
		display: none;
	}
	#join-social {
		padding-top: 21px;
		padding-bottom:21px;
	}
	#join-social h1 {
		font-size: 25px;
		width: 100%;
		line-height: 28px;
		display: block;
	}
	#join-social .inline-social-links .social-round-link {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}

@media only screen and (max-width : 480px) {
	#top-slide {
		background-size: 700px;
		padding-bottom: 110px;
		background-position: -195px 205px;
	}
	#last-content .margin-top-75 {
		margin-top:45px!important;
	}
	.col-xxs-3 {
		width:25%!important;
	}
	.col-xxs-9 {
		width:75%!important;
	}
	.col-xxs-10 {
		width:83.33333333%!important;
	}
	.col-xxs-12 {
		width:100%!important;
	}
	.col-xxs-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-xxs-offset-0 {
		margin-left:0px!important;
	}
	.hidden-xxs {
		display:none!important;
	}
	.visible-xxs {
		display:inline-block!important;
	}
	.col-xxs-push-0 {
		left: 0;
	}
	.col-xxs-pull-0 {
		right: 0;
	}
	.margin-xxs-bottom-20 {
		margin-bottom:20px;
	}
	
}

@media only screen and (max-width : 449px) {
	#top-slide {
		background-size: 700px;
		padding-bottom: 110px;
		background-position: -195px 268px;
	}
}