

@font-face {
	font-family: Kaushan Script;  
	src: url(fonts/KaushanScript-Regular.ttf);  
	font-weight: normal;  
	font-display: display;

}

*{
	
	
	margin:0;
	padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
#slideshow-wrap {
    display: block;
    height: 320px;
    min-width: 260px;
    max-width: 640px;
    margin: auto;
    border: 12px rgba(255,255,240,1) solid;
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.8);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.8);
    box-shadow: 0px 0px 5px rgba(0,0,0,.8);
    margin-top: 20px;
    position: relative;
}
#slideshow-inner {
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    overflow: hidden;
    position: relative;
}
#slideshow-inner>ul {
    list-style: none;
    height: 100%;
    width: 500%;
    overflow: hidden;
    position: relative;
    left: 0px;
    -webkit-transition: left .8s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: left .8s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: left .8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: left .8s cubic-bezier(0.77, 0, 0.175, 1);
}
#slideshow-inner>ul>li {
    width: 20%;
    height: 320px;
    float: left;
    position: relative;
}
#slideshow-inner>ul>li>img {
      margin: auto;
    height: 100%;
    width: 100%;
}
#slideshow-wrap input[type=radio] {
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 100;
    visibility: hidden;
}
#slideshow-wrap label:not(.arrows):not(.show-description-label) {
    position: absolute;
    left: 50%;
    bottom: -45px;
    z-index: 100;
    width: 12px;
    height: 12px;
    background-color: rgba(200,200,200,1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,.8);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,.8);
    box-shadow: 0px 0px 3px rgba(0,0,0,.8);
    -webkit-transition: background-color .2s;
    -moz-transition: background-color .2s;
    -o-transition: background-color .2s;
    transition: background-color .2s;
}
#slideshow-wrap label:not(.arrows):active { bottom: -46px }
#slideshow-wrap input[type=radio]#button-1:checked~label[for=button-1] { background-color: green;  }
#slideshow-wrap input[type=radio]#button-2:checked~label[for=button-2] { background-color: green; }
#slideshow-wrap input[type=radio]#button-3:checked~label[for=button-3] { background-color: green;  }
#slideshow-wrap input[type=radio]#button-4:checked~label[for=button-4] { background-color: green;  }
#slideshow-wrap input[type=radio]#button-5:checked~label[for=button-5] { background-color: green;  }
#slideshow-wrap label[for=button-1] { margin-left: -36px }
#slideshow-wrap label[for=button-2] { margin-left: -18px }
#slideshow-wrap label[for=button-4] { margin-left: 18px }
#slideshow-wrap label[for=button-5] { margin-left: 36px }
#slideshow-wrap input[type=radio]#button-1:checked~#slideshow-inner>ul { left: 0 }
#slideshow-wrap input[type=radio]#button-2:checked~#slideshow-inner>ul { left: -100% }
#slideshow-wrap input[type=radio]#button-3:checked~#slideshow-inner>ul { left: -200% }
#slideshow-wrap input[type=radio]#button-4:checked~#slideshow-inner>ul { left: -300% }
#slideshow-wrap input[type=radio]#button-5:checked~#slideshow-inner>ul { left: -400% }
label.arrows {
    font-family: 'WebSymbolsRegular';
    font-size: 25px;
    color: rgb(255,255,240);
    position: absolute;
    top: 50%;
    margin-top: -25px;
    display: none;
    opacity: 0.7;
    cursor: pointer;
    z-index: 1000;
    background-color: transparent;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    text-shadow: 0px 0px 3px rgba(0,0,0,.8);
}
label.arrows:hover { opacity: 1 }
label.arrows:active { margin-top: -23px }
input[type=radio]#button-1:checked~.arrows#arrow-2, input[type=radio]#button-2:checked~.arrows#arrow-3, input[type=radio]#button-3:checked~.arrows#arrow-4, input[type=radio]#button-4:checked~.arrows#arrow-5 {
    right: 53px;
    display: block;
}
input[type=radio]#button-2:checked~.arrows#arrow-1, input[type=radio]#button-3:checked~.arrows#arrow-2, input[type=radio]#button-4:checked~.arrows#arrow-3, input[type=radio]#button-5:checked~.arrows#arrow-4 {
    left: 53px;
    display: block;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}
input[type=radio]#button-2:checked~.arrows#arrow-1 { left: -19px }
input[type=radio]#button-3:checked~.arrows#arrow-2 { left: -37px }
input[type=radio]#button-5:checked~.arrows#arrow-4 { left: -73px }
.description {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    font-family: 'Yanone Kaffeesatz';
    z-index: 1000;
}
.description input { visibility: hidden }
.description label {
    font-family: 'WebSymbolsRegular';
    background-color: rgba(255,255,240,1);
    position: relative;
    left: -17px;
    top: 00px;
    width: 40px;
    height: 27px;
    display: inline-block;
    text-align: center;
    padding-top: 7px;
    border-bottom-right-radius: 15px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    z-index: 5;
    color: rgb(20,20,20);
}
#slideshow-inner>ul>li:hover .description label { opacity: 1 }
.description input[type=checkbox]:checked~label { opacity: 1 }
.description .description-text {
    background-color: rgba(255,255,230,.5);
    padding-left: 45px;
    padding-top: 25px;
    padding-right: 15px;
    padding-bottom: 15px;
    position: relative;
    top: -35px;
    z-index: 4;
    opacity: 0;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    color: rgb(20,20,20);
}
.description input[type=checkbox]:checked~.description-text { opacity: 1 }
.frow {
    clear:both;
	  padding:0px;
}
.frow .col {
  float
	display: block;
	float:left;
	margin: 0% 0 1% 0.6%;
}
.frow .col:first-child { margin-left: 0; }
.frow .col4 {
  width: 100%;
}
.frow .col3 {
width: 32.86%;
	}
@media only screen and (max-width: 480px) {
	.col {  margin: 1% 0 1% 0%;  margin-left: 0 !important;}
	.frow .col3, .frow .col4 { width: 100%; }
}
.box {
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center
}
.button {
font-size: 0.7em;
    padding: 10px;
    color: #fff;
    border: 2px solid #06D85F;
    border-radius: 20px/50px;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    cursor: pointer;
	color:black;
    transition: all 0.3s ease-out;
}
.button:hover {
    background: #06D85F;
	color:white;
}
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
	    z-index: 9999999999;
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0
}
.overlay:target {
    visibility: visible;
    opacity: 1
}
.popup {
    margin: 70px auto;
    padding: 5px;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    position: relative;
    transition: all 5s ease-in-out
}
.popup h2 {
    margin-top: 0;
    color: green;
	text-align:center;
font-family: 'Kaushan Script', cursive;
}
.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333
}
.popup .close:hover {
    color: #06D85F
}
.popup .content {
    max-height: 30%;
	color: black;
	text-align: center;
    overflow: auto
}
@media screen and (max-width: 700px) {
    .box {
           width: 100%;
    }
    .popup {
  width: 100%;
    }
}
.white-mode {
    text-decoration: none;
    padding: 7px 10px;
    background-color: #122;
    border-radius: 3px;
    color: #FFF;
    transition: .35s ease-in-out;
    position: absolute;
    left: 15px;
    bottom: 15px
}
	/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
top: 56%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9999999999999;
}
/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
padding: 10px;
  font-family: 'Muli-Bold', sans-serif;
  transition: all 0.3s ease;
  color: white;
font-size: 11px;
}
/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: black;
}
.facebook {
    background: linear-gradient(to right top,#0e8835,#01581c);
  color: white;
}
.twitter {
    background: linear-gradient(to right top,#0e8835,#01581c);
  color: white;
}
.instagram{ 
    background: linear-gradient(to right top,#0e8835,#01581c);
  }
  .instagram:hover{ 
  background: black;
  }
.youtube {
    background: linear-gradient(to right top,#0e8835,#01581c);
  color: white;
}
/* CSS Multiple Whatsapp Chat */
#whatsapp-chat{position:fixed;background:#fff;width:350px;border-radius:10px;box-shadow:0 1px 15px rgba(32,33,36,.28);
bottom:25px;left:38%;overflow:hidden;z-index:99;animation-name:showchat;animation-duration:1s;transform:scale(1)}
a.blantershow-chat{background: linear-gradient(to right top,#0e8835,#01581c);
    color: #fff;
    position: fixed;
    z-index: 98;
    bottom: -6px;
    left: 45%;
    font-size: 12px;
    padding: 6px 13px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgb(32 33 36 / 28%);}a.blantershow-chat i{transform:scale(1.2);margin:0 10px 0 0}
	.header-chat{background: linear-gradient(to right top,#0e8835,#01581c);color:#fff;padding:20px}.header-chat h3{margin:0 0 10px}.header-chat p{font-size:14px;line-height:1.7;margin:0}.info-avatar{position:relative}.info-avatar img{border-radius:100%;width:50px;float:left;margin:0 10px 0 0}
	.info-avatar:before{z-index:1;font-family:"Font Awesome 5 Brands";background:#23ab23;color:#fff;padding:4px 5px;border-radius:100%;position:absolute;top:30px;left:30px}a.informasi{padding:20px;display:block;overflow:hidden;animation-name:showhide;animation-duration:2.5s}a.informasi:hover{background:#f1f1f1}.info-chat span{display:block}#get-label,span.chat-label{font-size:12px;color:#888}#get-nama,span.chat-nama{margin:5px 0 0;font-size:15px;font-weight:700;color:#222}#get-label,#get-nama{color:#fff}span.my-number{display:none}.blanter-msg{color:#444;padding:20px;font-size:12.5px;text-align:center;border-top:1px solid #ddd}textarea#chat-input{border:none;font-family:'Arial',sans-serif;width:100%;height:20px;outline:none;resize:none}
	a#send-it{color:#555;font-size: 11px;
    text-align: center;width:auto;margin:-5px 0 0 5px;font-weight:700;padding:8px;background:#eee;border-radius:10px}.first-msg{background:#f5f5f5;padding:30px;text-align:center}.first-msg span{background:#e2e2e2;color:#333;font-size:14.2px;line-height:1.7;border-radius:10px;padding:15px 20px;display:inline-block}.start-chat .blanter-msg{display:flex}#get-number{display:none}a.close-chat{position:absolute;top:5px;right:15px;color:#fff;font-size:30px}@keyframes showhide{from{transform:scale(.5);opacity:0}}@keyframes showchat{from{transform:scale(0);opacity:0}}
	@media screen and (max-width:480px){
			a.blantershow-chat {
    background: linear-gradient(to right top,#0e8835,#01581c);
    color: #fff;
    position: fixed;
    z-index: 98;
    bottom: -6px;
    left: 27%;
    font-size: 12px;
    padding: 6px 13px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgb(32 33 36 / 28%);
}
	#whatsapp-chat{width:auto;left:5%;right:5%;font-size:80%}}.hide{display:none;animation-name:showhide;animation-duration:1.5s;transform:scale(1);opacity:1}.show{display:block;animation-name:showhide;animation-duration:1.5s;transform:scale(1);opacity:1}
Resources
body{
	position: relative;
	z-index: -2;
}
a, a:hover, a:focus {
	cursor: pointer;
	text-decoration: none;
}
figure {
	margin-bottom: 0 !important;
}
/*============================================
             INDICADOR DE SCROLL
  ============================================*/
.ui-box-indicador-scroll{
	position: fixed;
	bottom: 93px;
	left:0;
	width: 100%;
	z-index: 12;
	text-align: center;
}
.ui-indicador-scroll{
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 16px;
	height: 23px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 8px;
}
.ui-indicador{
	position: absolute;
	bottom:0px;
	left: 5px;
	width: 2px;
	height: 6px;
	border-radius: 1px;
	background-color: rgba(255, 255, 255, 0.6);
	-webkit-animation:indicadorScrollRestaurantes 1s linear infinite ;
	-moz-animation:indicadorScrollRestaurantes 1s linear infinite ;
	-ms-animation:indicadorScrollRestaurantes 1s linear infinite ;
	-o-animation:indicadorScrollRestaurantes 1s linear infinite ;
	animation:indicadorScrollRestaurantes 1s linear infinite ;
}
/********************** CSS RESTAURANTES **********************/
/*============================================
                MENU RESPONSIVE
  ============================================*/
.ui-box-menu-responsive{
	position: fixed;
	top:-100%;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 18;
	background-size: cover;
	background-position: center center;
	background-size: cover;
}
.ui-box-overlay-top-menu-responsive{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 171px;
	background: rgba(0,0,0,1);
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
}
.ui-box-overlay-left-menu-responsive{
	position: absolute;
	top:0;
	left:0;
	max-width: 720px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,1);
    background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=1 );
}
.ui-box-overlay-bottom-menu-responsive{
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	height: 145px;
	background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.ui-box-overlay-right-menu-responsive{
	position: absolute;
	bottom:0;
	right:0;
	max-width: 720px;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=1 );
}
.ui-box-menu-social-responsive{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.ui-menu-responsive{
	position: relative;
	bottom: 43px;
}
.ui-box-close-responsive{
	position: absolute;
	top: 38px;
    left: 98px;
	cursor: pointer;
}
.ui-box-close-responsive div{
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 19px;
	display: inline-block;
	vertical-align: top;
}
.ui-box-close-responsive div:hover{
	background-image: url(../../../../../../index.html);
}
.ui-h2-menu-responsive{
	text-align: center;
	margin-bottom: 4px;
}
.ui-h2-menu-responsive span{
	display: inline-block;
	vertical-align: top;
	font-family: 'Kaushan Script', cursive;
	color:#fff;
	font-size: 40px;
	line-height: 40px;
	letter-spacing: .6px;
	position: relative;
	-webkit-text-stroke-width: 0.75px;
	-webkit-text-stroke-color: #fff;
}
.ui-h2-menu-responsive span:before{
	content:'';
	position: absolute;
	top:25px;
	left:-48px;
	width: 41px;
	height: 12px;
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-animation:iconMenuRestaurantesLeft .7s linear infinite;
	-moz-animation:iconMenuRestaurantesLeft .7s linear infinite;
	-ms-animation:iconMenuRestaurantesLeft .7s linear infinite;
	-o-animation:iconMenuRestaurantesLeft .7s linear infinite;
	animation:iconMenuRestaurantesLeft .7s linear infinite;
}
@-webkit-keyframes iconMenuRestaurantesLeft{
    0% {
    	left: -48px;
    }
    50% {
    	left: -55px;
    }
    100%{
		left: -48px;
    }
}
@keyframes iconMenuRestaurantesLeft {
    0% {
    	left: -48px;
    }
    50% {
    	left: -55px;
    }
    100%{
		left: -48px;
    }
}
.ui-h2-menu-responsive span:after{
	content:'';
	position: absolute;
	top:25px;
	right:-56px;
	width: 41px;
	height: 12px;
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-animation:iconMenuRestaurantesRight .7s linear infinite;
	-moz-animation:iconMenuRestaurantesRight .7s linear infinite;
	-ms-animation:iconMenuRestaurantesRight .7s linear infinite;
	-o-animation:iconMenuRestaurantesRight .7s linear infinite;
	animation:iconMenuRestaurantesRight .7s linear infinite;
}
@-webkit-keyframes iconMenuRestaurantesRight{
    0% {
    	right: -56px;
    }
    50% {
    	right: -63px;
    }
    100%{
		right: -56px;
    }
}
@keyframes iconMenuRestaurantesRight {
    0% {
    	right: -56px;
    }
    50% {
    	right: -63px;
    }
    100%{
		right: -56px;
    }
}
.ui-box-adorno-header-menu-responsive{
	text-align: center;
	display: block;
	height: 12px;
	opacity: 0;
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-ms-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
.ui-menu-navegacion-responsive ul li a:hover .ui-box-adorno-header-menu-responsive{
	opacity: 1;
}
.ui-box-adorno-header-menu-responsive figure{
	display: inline-block;
	vertical-align: top;
}
.ui-box-adorno-header-menu-responsive figure img{
	display: block;
	width: 100%;
}
.ui-menu-navegacion-responsive{
	margin-bottom: 44px;
}
.ui-menu-navegacion-responsive ul{
	list-style: none;
	margin:0;
	padding:0;
}
.ui-menu-navegacion-responsive ul li{
	margin-bottom: 7px;
	position: relative;
	text-align: center;
}
.ui-menu-navegacion-responsive ul li:last-child{
	margin-bottom: 0px;
}
.ui-menu-navegacion-responsive ul li a{
	font-family: 'Kaushan Script', cursive;
	color:#fff;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	font-size: 25px;
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: #fff;
	text-align: center;
	letter-spacing: .6px;
	position: relative;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s linear;
	transition:all .1s linear;
}
.ui-menu-navegacion-responsive ul li a:hover{
	-webkit-text-stroke-width: 0.75px;
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-menu-navegacion-responsive ul li a:before{
	content:'';
	position: absolute;
	top:15px;
	left:-55px;
	background-image: url(../img/icon-left-menu-marron.svg);
	width: 41px;
	height: 12px;
	opacity: 0;
}
.ui-menu-navegacion-responsive ul li a:hover:before{
	opacity: 1;
	-webkit-animation:iconLeftItemMenu .7s linear infinite;
	-moz-animation:iconLeftItemMenu .7s linear infinite;
	-ms-animation:iconLeftItemMenu .7s linear infinite;
	-o-animation:iconLeftItemMenu .7s linear infinite;
	animation:iconLeftItemMenu .7s linear infinite;
}
@-webkit-keyframes iconLeftItemMenu {
    0% {
    	left:-55px;
    }
    50% {
    	left:-60px;
    }
    100%{
    	left:-55px;
    }
}
@keyframes iconLeftItemMenu {
    0% {
    	left:-55px;
    }
    50% {
    	left:-60px;
    }
    100%{
    	left:-55px;
    }
}
.ui-menu-navegacion-responsive ul li a:after{
	content:'';
	position: absolute;
	top:15px;
	right:-58px;
	background-image: url(../img/icon-right-menu-marron.svg);
	width: 41px;
	height: 12px;
	opacity: 0;
}
.ui-menu-navegacion-responsive ul li a:hover:after{
	opacity: 1;
	-webkit-animation:iconRightItemMenu .7s linear infinite;
	-moz-animation:iconRightItemMenu .7s linear infinite;
	-ms-animation:iconRightItemMenu .7s linear infinite;
	-o-animation:iconRightItemMenu .7s linear infinite;
	animation:iconRightItemMenu .7s linear infinite;
}
@-webkit-keyframes iconRightItemMenu {
    0% {
    	right:-58px;
    }
    50% {
    	right:-63px;
    }
    100%{
    	right:-58px;
    }
}
@keyframes iconRightItemMenu {
    0% {
    	right:-58px;
    }
    50% {
    	right:-63px;
    }
    100%{
    	right:-58px;
    }
}
/************************/
.ui-box-grupo-texto-adornos{
	text-align: center;
}
.ui-grupo-texto-adornos{
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
	color:#e8a013;
	opacity: .2;
	-webkit-transition:all.6s linear;
	-moz-transition:all.6s linear;
	-ms-transition:all.6s linear;
	-o-transition:all.6s linear;
	transition:all.6s linear;
}
.ui-grupo-texto-adornos.active{
	opacity:1;
}
.ui-grupo-texto-adornos.active.novedades:hover .ui-grupo-texto.novedades-restaurantes{
	color:#D4B51E;
	-webkit-text-stroke-color: #e8a013;
}
.ui-grupo-texto-adornos.active.novedades:hover .ui-grupo-texto.novedades-restaurantes:before{
	background-image: url(../../../../../../index.html);
}
.ui-grupo-texto-adornos.active.novedades:hover .ui-grupo-texto.novedades-restaurantes:after{
	background-image: url(../../../../../../index.html);
}
.ui-grupo-texto-adornos.active.novedades:hover .ui-icon-bottom-novedades-restaurantes{
	background-image: url(../../../../../../index.html);
}
.ui-grupo-texto-adornos.ui-active{
	opacity:.2;
	-webkit-animation:txtSegundaSeccion .4s linear;
	-moz-animation:txtSegundaSeccion .4s linear;
	-ms-animation:txtSegundaSeccion .4s linear;
	-o-animation:txtSegundaSeccion .4s linear;
	animation:txtSegundaSeccion .4s linear;
	-webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtSegundaSeccion {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
@keyframes txtSegundaSeccion {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
.ui-grupo-texto{
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 13px;
	letter-spacing: 1px;
	position: relative;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #e8a013;
	color:#fff;
}
.ui-grupo-texto.novedades-restaurantes{
    -webkit-text-stroke-color: #fff;
}
.ui-grupo-texto.eventos-restaurantes{
    -webkit-text-stroke-color: #e8a013;
    color: #e8a013;
}
.ui-grupo-texto.novedades-restaurantes:before{
	content:'';
	position: absolute;
	top:4px;
	right:-53px;
	width: 36px;
	height: 6px;
	background-image: url(../img/icon-left-novedades-restaurantes.svg);
	-webkit-animation:iconLeftVerDisponibilidad .6s linear infinite;
	-moz-animation:iconLeftVerDisponibilidad .6s linear infinite;
	-ms-animation:iconLeftVerDisponibilidad .6s linear infinite;
	-o-animation:iconLeftVerDisponibilidad .6s linear infinite;
	animation:iconLeftVerDisponibilidad .6s linear infinite;
}
.ui-icon-bottom-novedades-restaurantes{
	margin-top: 3px;
	display: inline-block;
	vertical-align: top;
	background-image:url(../img/icon-bottom-novedades-restaurantes.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 17px;
	height: 8px;
}
.ui-grupo-texto.eventos-restaurantes:before{
	content:'';
	position: absolute;
	top:4px;
	left:-55px;
	width: 36px;
	height: 6px;
	background-image: url(../img/icon-left-eventos-restaurantes.svg);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-animation:iconLeftVerDisponibilidad .6s linear infinite;
	-moz-animation:iconLeftVerDisponibilidad .6s linear infinite;
	-ms-animation:iconLeftVerDisponibilidad .6s linear infinite;
	-o-animation:iconLeftVerDisponibilidad .6s linear infinite;
	animation:iconLeftVerDisponibilidad .6s linear infinite;
}
@-webkit-keyframes iconLeftVerDisponibilidad {
    0% {
    	left:-55px;
    }
    50% {
    	left:-50px;
    }
    100%{
    	left:-55px;
    }
}
@keyframes iconLeftVerDisponibilidad {
    0% {
    	left:-55px;
    }
    50% {
    	left:-50px;
    }
    100%{
    	left:-55px;
    }
}
.ui-grupo-texto.novedades-restaurantes:after{
	content:'';
	position: absolute;
	top:4px;
	right:-53px;
	width: 36px;
	height: 6px;
	background-image: url(../img/icon-right-novedades-restaurantes.svg);
	-webkit-animation:iconRightVerDisponibilidad .6s linear infinite;
	-moz-animation:iconRightVerDisponibilidad .6s linear infinite;
	-ms-animation:iconRightVerDisponibilidad .6s linear infinite;
	-o-animation:iconRightVerDisponibilidad .6s linear infinite;
	animation:iconRightVerDisponibilidad .6s linear infinite;
}
.ui-grupo-texto.eventos-restaurantes:after{
	content:'';
	position: absolute;
	top:4px;
	right:-55px;
	width: 36px;
	height: 6px;
	background-image: url(../img/icon-right-eventos-restaurantes.svg);
	-webkit-animation:iconRightVerDisponibilidad .6s linear infinite;
	-moz-animation:iconRightVerDisponibilidad .6s linear infinite;
	-ms-animation:iconRightVerDisponibilidad .6s linear infinite;
	-o-animation:iconRightVerDisponibilidad .6s linear infinite;
	animation:iconRightVerDisponibilidad .6s linear infinite;
}
@-webkit-keyframes iconRightVerDisponibilidad {
    0% {
    	right:-55px;
    }
    50% {
    	right:-50px;
    }
    100%{
    	right:-55px;
    }
}
@keyframes iconRightVerDisponibilidad {
    0% {
    	right:-55px;
    }
    50% {
    	right:-50px;
    }
    100%{
    	right:-55px;
    }
}
/************************/
/**************************/
.ui-menu-navegacion-responsive ul li.ui-a.active{
	opacity: 0;
    -webkit-animation: txtRestaurantesMenuItemUno .3s linear .5s;
    -moz-animation: txtRestaurantesMenuItemUno .3s linear .5s;
    -ms-animation: txtRestaurantesMenuItemUno .3s linear .5s;
    -o-animation: txtRestaurantesMenuItemUno .3s linear .5s;
    animation: txtRestaurantesMenuItemUno .3s linear .5s;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtRestaurantesMenuItemUno {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
@keyframes txtRestaurantesMenuItemUno {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
/**************************/
.ui-menu-navegacion-responsive ul li.ui-b.active{
	opacity: 0;
    -webkit-animation: txtRestaurantesMenuItemDos .3s linear .6s;
    -moz-animation: txtRestaurantesMenuItemDos .3s linear .6s;
    -ms-animation: txtRestaurantesMenuItemDos .3s linear .6s;
    -o-animation: txtRestaurantesMenuItemDos .3s linear .6s;
    animation: txtRestaurantesMenuItemDos .3s linear .6s;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtRestaurantesMenuItemDos {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
@keyframes txtRestaurantesMenuItemDos {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
/**************************/
.ui-menu-navegacion-responsive ul li.ui-c.active{
	opacity: 0;
    -webkit-animation: txtRestaurantesMenuItemTres .3s linear .7s;
    -moz-animation: txtRestaurantesMenuItemTres .3s linear .7s;
    -ms-animation: txtRestaurantesMenuItemTres .3s linear .7s;
    -o-animation: txtRestaurantesMenuItemTres .3s linear .7s;
    animation: txtRestaurantesMenuItemTres .3s linear .7s;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtRestaurantesMenuItemTres {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
@keyframes txtRestaurantesMenuItemTres {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
/**************************/
.ui-menu-navegacion-responsive ul li.ui-d.active{
	opacity: 0;
    -webkit-animation: txtRestaurantesMenuItemCuatro .3s linear .8s;
    -moz-animation: txtRestaurantesMenuItemCuatro .3s linear .8s;
    -ms-animation: txtRestaurantesMenuItemCuatro .3s linear .8s;
    -o-animation: txtRestaurantesMenuItemCuatro .3s linear .8s;
    animation: txtRestaurantesMenuItemCuatro .3s linear .8s;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtRestaurantesMenuItemCuatro {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
@keyframes txtRestaurantesMenuItemCuatro {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
/**************************/
.ui-menu-navegacion-responsive ul li.ui-e.active{
	opacity: 0;
    -webkit-animation: txtRestaurantesMenuItemCinco .3s linear .9s;
    -moz-animation: txtRestaurantesMenuItemCinco .3s linear .9s;
    -ms-animation: txtRestaurantesMenuItemCinco .3s linear .9s;
    -o-animation: txtRestaurantesMenuItemCinco .3s linear .9s;
    animation: txtRestaurantesMenuItemCinco .3s linear .9s;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtRestaurantesMenuItemCinco {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
@keyframes txtRestaurantesMenuItemCinco {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
/**************************/
.ui-menu-navegacion-responsive ul li.ui-f.active{
	opacity: 0;
    -webkit-animation: txtRestaurantesMenuItemSeis .3s linear 1s;
    -moz-animation: txtRestaurantesMenuItemSeis .3s linear 1s;
    -ms-animation: txtRestaurantesMenuItemSeis .3s linear 1s;
    -o-animation: txtRestaurantesMenuItemSeis .3s linear 1s;
    animation: txtRestaurantesMenuItemSeis .3s linear 1s;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtRestaurantesMenuItemSeis {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
@keyframes txtRestaurantesMenuItemSeis {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
/**************************/
.ui-menu-navegacion-responsive ul li.ui-g.active{
	opacity: 0;
    -webkit-animation: txtRestaurantesMenuItemSiete .3s linear 1.1s;
    -moz-animation: txtRestaurantesMenuItemSiete .3s linear 1.1s;
    -ms-animation: txtRestaurantesMenuItemSiete .3s linear 1.1s;
    -o-animation: txtRestaurantesMenuItemSiete .3s linear 1.1s;
    animation: txtRestaurantesMenuItemSiete .3s linear 1.1s;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtRestaurantesMenuItemSiete {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
@keyframes txtRestaurantesMenuItemSiete {
    from {
    	bottom: 10px;
    	opacity: 0;
    }
    to {
    	bottom: 0px;
    	opacity: 1;
    }
}
.ui-texto-social-responsive{
	text-align: center;
	margin-bottom: 3px;
}
.ui-texto-social-responsive.active{
	opacity: 0;
	-webkit-animation:txtSiguenosMenu .3s linear 1.1s;
	-moz-animation:txtSiguenosMenu .3s linear 1.1s;
	-ms-animation:txtSiguenosMenu .3s linear 1.1s;
	-o-animation:txtSiguenosMenu .3s linear 1.1s;
	animation:txtSiguenosMenu .3s linear 1.1s;
	-webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes txtSiguenosMenu {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
@keyframes txtSiguenosMenu {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
.ui-texto-social-responsive span{
	display: inline-block;
	vertical-align: top;
	font-family: 'Lato', sans-serif;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	color:rgba(255,255,255,.80);
}
.ui-lista-social-responsive{
	list-style:none;
	text-align: center;
}
.ui-lista-social-responsive li{
	display: inline-block;
	vertical-align: middle;
	margin-left: 4px;
	margin-right: 4px;
}
.ui-lista-social-responsive li a{
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	width: 17px;
	height: 17px;
}
.ui-lista-social-responsive li a.ui-a{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-a:hover{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-b{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-b:hover{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-c{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-c:hover{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-d{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-d:hover{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-e{
	background-image:url(../../../../../../index.html);
}
.ui-lista-social-responsive li a.ui-e:hover{
	background-image:url(../../../../../../index.html);
}
/**************************/
.ui-lista-social-responsive li.ui-a.active{
	-webkit-animation:itemMenuSiguenosUno .3s linear 1.2s;
	-moz-animation:itemMenuSiguenosUno .3s linear 1.2s;
	-ms-animation:itemMenuSiguenosUno .3s linear 1.2s;
	-o-animation:itemMenuSiguenosUno .3s linear 1.2s;
	animation:itemMenuSiguenosUno .3s linear 1.2s;
	-webkit-animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes itemMenuSiguenosUno {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
@keyframes itemMenuSiguenosUno {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
/**************************/
.ui-lista-social-responsive li.ui-b.active{
	-webkit-animation:itemMenuSiguenosDos .3s linear 1.3s;
	-moz-animation:itemMenuSiguenosDos .3s linear 1.3s;
	-ms-animation:itemMenuSiguenosDos .3s linear 1.3s;
	-o-animation:itemMenuSiguenosDos .3s linear 1.3s;
	animation:itemMenuSiguenosDos .3s linear 1.3s;
	-webkit-animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes itemMenuSiguenosDos {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
@keyframes itemMenuSiguenosDos {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
/**************************/
.ui-lista-social-responsive li.ui-c.active{
	-webkit-animation:itemMenuSiguenosTres .3s linear 1.4s;
	-moz-animation:itemMenuSiguenosTres .3s linear 1.4s;
	-ms-animation:itemMenuSiguenosTres .3s linear 1.4s;
	-o-animation:itemMenuSiguenosTres .3s linear 1.4s;
	animation:itemMenuSiguenosTres .3s linear 1.4s;
	-webkit-animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes itemMenuSiguenosTres {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
@keyframes itemMenuSiguenosTres {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
/**************************/
.ui-lista-social-responsive li.ui-d.active{
	-webkit-animation:itemMenuSiguenosCuatro .3s linear 1.5s;
	-moz-animation:itemMenuSiguenosCuatro .3s linear 1.5s;
	-ms-animation:itemMenuSiguenosCuatro .3s linear 1.5s;
	-o-animation:itemMenuSiguenosCuatro .3s linear 1.5s;
	animation:itemMenuSiguenosCuatro .3s linear 1.5s;
	-webkit-animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes itemMenuSiguenosCuatro {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
@keyframes itemMenuSiguenosCuatro {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
/**************************/
.ui-lista-social-responsive li.ui-e.active{
	-webkit-animation:itemMenuSiguenosCinco .3s linear 1.6s;
	-moz-animation:itemMenuSiguenosCinco .3s linear 1.6s;
	-ms-animation:itemMenuSiguenosCinco .3s linear 1.6s;
	-o-animation:itemMenuSiguenosCinco .3s linear 1.6s;
	animation:itemMenuSiguenosCinco .3s linear 1.6s;
	-webkit-animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes itemMenuSiguenosCinco {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
@keyframes itemMenuSiguenosCinco {
    from {
    	opacity: 0;
    }
    to {
    	opacity: 1;
    }
}
/*===================================
           SECCION ESTATICA
  ===================================*/
.ui-box-seccion-estatica{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	visibility: hidden;
}
.ui-box-header-top-menu{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 160px;
	visibility: visible;
	z-index: 4;
	background: rgba(0,0,0,0.93);
    background: -moz-linear-gradient(top, rgba(0,0,0,0.93) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.93)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.93) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0.93) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0.93) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.93) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
}
.ui-box-overlay-bottom-home{
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
	height: 300px;
	z-index: 4;
	background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.93) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,0.93)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.93) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.93) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.93) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,0.93) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.ui-box-overlay-left-home{
	position: absolute;
	top: 0;
	left:0;
	width: 300px;
	height: 100vh;
	z-index: 4;
	background: rgba(0,0,0,1);
	opacity: 0.6;
	background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(15,15,15,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(15,15,15,0)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(15,15,15,0) 100%);
	background: -o-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(15,15,15,0) 100%);
	background: -ms-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(15,15,15,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(15,15,15,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#0f0f0f', GradientType=1 );
}
.ui-box-overlay-right-home{
	position: absolute;
	top: 0;
	right:0;
	width: 300px;
	height: 100vh;
	z-index: 4;
	background: rgba(0,0,0,1);
	opacity: 0.6;
	background: rgba(15,15,15,0);
	background: -moz-linear-gradient(left, rgba(15,15,15,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(15,15,15,0)), color-stop(100%, rgba(0,0,0,1)));
	background: -webkit-linear-gradient(left, rgba(15,15,15,0) 0%, rgba(0,0,0,1) 100%);
	background: -o-linear-gradient(left, rgba(15,15,15,0) 0%, rgba(0,0,0,1) 100%);
	background: -ms-linear-gradient(left, rgba(15,15,15,0) 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(to right, rgba(15,15,15,0) 0%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f0f0f', endColorstr='#000000', GradientType=1 );
}
.ui-box-header-top{
	padding-top: 23px;
	background-color: #fff;
	visibility: visible;
	position: relative;
	z-index: 3;
}
.ui-box-icon-responsive{
	float: left;
	width: 11.11%;
	padding-left: 32px;
	text-align: center;
}
.ui-box-icon-responsive div{
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	width: 17px;
	height: 11px;
	background-color: #FFFFFF;
	-webkit-mask-image: url(../../../../../../index.html);;
	mask-image: url(../../../../../../index.html);
}
.ui-box-icon-responsive div:hover{
	-webkit-mask-image: url(../../../../../../index.html);;
	mask-image: url(../../../../../../index.html);;
	background-color: #e8a013;
}
.ui-box-icon-responsive div.active{
	background-image: url(../../../../../../index.html);
}
.ui-box-icon-responsive div.ui-active{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica{
	float: left;
	width: 77.78%;
}
.ui-menu-rustica ul{
	margin:0;
	padding:0;
	list-style: none;
}
.ui-menu-rustica ul li{
	float: left;
	width: 14.28%;
	text-align: center;
}
.ui-menu-rustica ul li a{
	font-family: 'Lato', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.1em;
	font-size: 10px;
	color:#000;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #000;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.ui-menu-rustica ul li a:hover{
	color: #DDC149;
	-webkit-text-stroke-width: 1.5px;
	-webkit-text-stroke-color: #DDC149;
}
.ui-menu-rustica ul li a:hover:before{
	content: '';
	position: absolute;
	top: 2px;
	left: -32px;
	width: 25px;
	height: 11px;
	background-image: url(../../../../../../index.html);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-mask-image: url("../../../../../../index.html");
	mask-image: url("../../../../../../index.html");
	-webkit-animation:iconAdornoIzqMenu .6s linear infinite;
	-moz-animation:iconAdornoIzqMenu .6s linear infinite;
	-ms-animation:iconAdornoIzqMenu .6s linear infinite;
	-o-animation:iconAdornoIzqMenu .6s linear infinite;
	animation:iconAdornoIzqMenu .6s linear infinite;
}
@-webkit-keyframes iconAdornoIzqMenu {
    0% {
    	left:-32px;
    }
    50% {
    	left:-40px;
    }
    100%{
    	left:-32px;
    }
}
@keyframes iconAdornoIzqMenu {
    0% {
    	left:-32px;
    }
    50% {
    	left:-40px;
    }
    100%{
    	left:-32px;
    }
}
.ui-menu-rustica ul li a:hover:after{
	content: '';
	position: absolute;
	top:2px;
	right:-32px;
	width: 25px;
	height: 11px;
	background-image: url(../../../../../../index.html);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-mask-image: url("../../../../../../index.html");
	mask-image: url("../../../../../../index.html");
	-webkit-animation:iconAdornoDerMenu .6s linear infinite;
	-moz-animation:iconAdornoDerMenu .6s linear infinite;
	-ms-animation:iconAdornoDerMenu .6s linear infinite;
	-o-animation:iconAdornoDerMenu .6s linear infinite;
	animation:iconAdornoDerMenu .6s linear infinite;
}
@-webkit-keyframes iconAdornoDerMenu {
    0% {
    	right:-32px;
    }
    50% {
    	right:-40px;
    }
    100%{
    	right:-32px;
    }
}
@keyframes iconAdornoDerMenu {
    0% {
    	right:-32px;
    }
    50% {
    	right:-40px;
    }
    100%{
    	right:-32px;
    }
}
.ui-menu-rustica ul li:nth-child(4) a:hover:before{
	display: none;
}
.ui-menu-rustica ul li:nth-child(4) a:hover:after{
	display: none;
}
.ui-menu-rustica ul li a > figure{
	margin-right:auto;
	margin-left:auto;
	max-width: 177px;
	width: 100%;
	margin-bottom: 10px;
}
.ui-menu-rustica ul li a > figure img{
	display: block;
	width: 100%;
}
.ui-box-adorno-logotipo{
	text-align: center;
	position: relative;
    bottom: 28px;
    cursor: pointer;
}
.ui-box-adorno-logotipo figure{
	display: inline-block;
	vertical-align: top;
}
.ui-box-adorno-logotipo figure img{
	display: block;
	width: 100%;
}
.ui-box-adorno-item-menu-responsive{
	text-align: center;
	opacity: 0;
}
.ui-box-adorno-item-menu-responsive div{
	display: inline-block;
	vertical-align: top;
	width: 17px;
	height: 8px;
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-mask-image: url("../../../../../../index.html");
	mask-image: url("../../../../../../index.html");
}
.ui-menu-rustica.restaurantes ul li a:hover .ui-box-adorno-item-menu-responsive{
	opacity: 1;
}
.ui-menu-rustica.restaurantes ul li.ui-d a:hover{
	color:#fff;
	-webkit-text-stroke-color: #fff;
}
.ui-menu-rustica.restaurantes ul li.ui-d a .ui-box-adorno-item-menu-responsive{
	opacity: 1;
}
.ui-menu-rustica.restaurantes ul li.ui-d a .ui-box-adorno-item-menu-responsive div{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes ul li.ui-d a:hover .ui-box-adorno-item-menu-responsive{
	opacity: 1;
}
.ui-menu-rustica.restaurantes.active ul li.ui-d a .ui-box-adorno-item-menu-responsive{
	opacity: 1;
}
.ui-menu-rustica.restaurantes.active ul li.ui-d a:hover .ui-box-adorno-item-menu-responsive{
	opacity: 1;
}
.ui-menu-rustica.restaurantes.active ul li.ui-d a .ui-box-adorno-item-menu-responsive div{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.active ul li.ui-d a:hover .ui-box-adorno-item-menu-responsive div{
	background-image: url(../../../../../../index.html);
}
/*********************/
.ui-menu-rustica.restaurantes.ui-active ul li.ui-d a .ui-box-adorno-item-menu-responsive{
	opacity: 1;
}
.ui-menu-rustica.restaurantes.ui-active ul li.ui-d a:hover .ui-box-adorno-item-menu-responsive{
	opacity: 1;
}
.ui-menu-rustica.restaurantes.ui-active ul li.ui-d a .ui-box-adorno-item-menu-responsive div{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.ui-active ul li.ui-d a:hover .ui-box-adorno-item-menu-responsive div{
	background-image: url(../../../../../../index.html);
}
/*********************************************
           SECCION UNO - RESTAURANTES
 *********************************************/
.ui-box-seccion-uno-restaurant{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.ui-box-seccion-uno-restaurant{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.ui-box-flexslider .flexslider{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	margin:0;
	border:none;
}
.ui-box-flexslider .slides{
	list-style: none;
	margin:0;
	padding:0;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.ui-box-flexslider .slides li{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.ui-box-flexslider .slides li.flex-active-slide .ui-bg-banner-rst{
	-webkit-transform:scale(1,1);
	-moz-transform:scale(1,1);
	-ms-transform:scale(1,1);
	-o-transform:scale(1,1);
	transform:scale(1,1);
	opacity: 1;
}
.ui-box-flexslider  .flex-direction-nav{
	position: absolute;
	top:48%;
	left:0;
	width: 100%;
	height: 20px;
	z-index: 55;
	visibility: hidden;
}
.ui-box-flexslider  .flex-direction-nav .flex-nav-prev .flex-prev{
	display: block;
	background-image: url(../img/icon-left-rstk.svg);
	background-repeat: no-repeat;
	background-position: center;
	left:15px;
	top:0px;
	visibility: visible;
}
.ui-box-flexslider  .flex-direction-nav {
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
    align-items: flex-end;
}
.ui-box-flexslider  .flex-direction-nav a{
	margin:0;
	height: 20px;
	width: 20px;
	height: 20px;
	color:transparent;
	font-size: 0px;
	opacity: 0.7;
}
.ui-box-flexslider  .flex-direction-nav a:hover{
	opacity: 1;
}
.ui-box-flexslider  .flex-direction-nav .flex-nav-prev .flex-prev:before{
	display: none;
}
.ui-box-flexslider  .flex-direction-nav .flex-nav-next .flex-next{
	display: block;
	right:15px;
	top:0px;
	background-image: url(../img/icon-right-rstk.svg);
	background-repeat: no-repeat;
	background-position: center;
	visibility: visible;
}
.ui-box-flexslider  .flex-direction-nav .flex-nav-next .flex-next:before{
	display: none;
}
.ui-bg-banner-rst{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 1.2s linear;
	-moz-transition: all 1.2s linear;
	-ms-transition: all 1.2s linear;
	-o-transition: all 1.2s linear;
	transition: all 1.2s linear;
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-bg-home{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-animation:bgHomeRestaurantes 1.7s linear;
	-moz-animation:bgHomeRestaurantes 1.7s linear;
	-ms-animation:bgHomeRestaurantes 1.7s linear;
	-o-animation:bgHomeRestaurantes 1.7s linear;
	animation:bgHomeRestaurantes 1.7s linear;
}
@-webkit-keyframes bgHomeRestaurantes {
    from {
		-webkit-transform:scale(1.3,1.3);
		-moz-transform:scale(1.3,1.3);
		-ms-transform:scale(1.3,1.3);
		-o-transform:scale(1.3,1.3);
		transform:scale(1.3,1.3);
    }
    to {
    	-webkit-transform:scale(1,1);
		-moz-transform:scale(1,1);
		-ms-transform:scale(1,1);
		-o-transform:scale(1,1);
		transform:scale(1,1);
    }
}
@keyframes bgHomeRestaurantes {
    from {
		-webkit-transform:scale(1.3,1.3);
		-moz-transform:scale(1.3,1.3);
		-ms-transform:scale(1.3,1.3);
		-o-transform:scale(1.3,1.3);
		transform:scale(1.3,1.3);
    }
    to {
    	-webkit-transform:scale(1,1);
		-moz-transform:scale(1,1);
		-ms-transform:scale(1,1);
		-o-transform:scale(1,1);
		transform:scale(1,1);
    }
}
.ui-box-header-top.restaurantes{
	background-color: transparent;
	padding-top: 40px;
}
.ui-box-header-top-menu.active{
	background: none;
}
.ui-box-header-top-menu.ui-active{
	background: rgba(0,0,0,0.6);
    background: -moz-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.6)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
}
.ui-menu-rustica.restaurantes {
    width: 77.78%;
    height: 70px;
}
.ui-menu-rustica.restaurantes ul li a{
	color:#fff;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
.ui-menu-rustica.restaurantes ul li a:hover{
	color:#e8a013;
	-webkit-text-stroke-color: #e8a013;
}
.ui-menu-rustica.restaurantes.active ul li a:hover:before{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.active ul li a:hover:after{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.active .ui-txt-logotipo-restaurantes:before{
	background-color: rgba(0,0,0,.1);
}
.ui-menu-rustica.restaurantes.active .ui-txt-logotipo-restaurantes:after{
	background-color: rgba(0,0,0,.1);
}
.ui-menu-rustica.restaurantes.ui-active .ui-txt-logotipo-restaurantes:before{
	background-color: rgba(255,255,255,.1);
}
.ui-menu-rustica.restaurantes.ui-active .ui-txt-logotipo-restaurantes:after{
	background-color: rgba(255,255,255,.1);
}
.ui-menu-rustica.restaurantes.ui-active ul li a:hover:before{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.ui-active ul li a:hover:after{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes ul li.ui-d a{
	position: relative;
	bottom: 33px;
}
.ui-menu-rustica.restaurantes ul li.ui-d a figure{
	margin-bottom: 0px;
}
.ui-menu-rustica.restaurantes.active ul li a{
	color:#000;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}
.ui-menu-rustica.restaurantes.ui-active ul li a{
	color:#fff;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
.ui-menu-rustica.restaurantes.active > ul > li > a:hover .ui-box-adorno-item-menu-responsive div{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.ui-active > ul > li > a:hover .ui-box-adorno-item-menu-responsive div{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.active .ui-txt-logotipo-restaurantes span:before{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.active .ui-txt-logotipo-restaurantes span:after{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.ui-active .ui-txt-logotipo-restaurantes span:before{
	background-image: url(../../../../../../index.html);
}
.ui-menu-rustica.restaurantes.ui-active .ui-txt-logotipo-restaurantes span:after{
	background-image: url(../../../../../../index.html);
}
.ui-box-idioma.restaurantes{
	display: none;
}
.ui-box-menu-bottom{
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	height: 83px;
	z-index: 5;
	visibility: visible;
	background-image: url(../img/bg-menu-restaurantes.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-webkit-transition:all .5s linear;
	-moz-transition:all .5s linear;
	-ms-transition:all .5s linear;
	-o-transition:all .5s linear;
	transition:all .5s linear;
}
.ui-menu-bottom{
	padding-right: 50px;
	padding-left: 50px;
	padding-top: 25px;
	text-align: center;
}
.ui-menu-bottom ul{
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
	vertical-align: middle;
	list-style: none;
}
.ui-menu-bottom ul li{
	display: inline-block;
	margin: 0 2%;
}
.ui-menu-bottom ul li a{
	color: #fff;
	font-family: 'Kaushan Script', cursive;
	text-decoration: none;
	font-size: 25px;
	line-height: 36px;
	display: inline-block;
	vertical-align: top;
	letter-spacing: 0;
	position: relative;
	-webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fff;
}
.ui-menu-bottom ul li a:hover .ui-box-adorno-header-menu-responsive{
	opacity: 1;
}
.ui-menu-bottom ul li a:before{
	content:'';
	position: absolute;
	top:15px;
	left:-50px;
	background-image: url(../img/icon-left-menu-marron.svg);
	width: 41px;
	height: 12px;
	opacity: 0;
}
.ui-menu-bottom ul li a:hover:before{
	opacity: 1;
	-webkit-animation:iconLeftItemMenuBottom .6s linear infinite;
	-moz-animation:iconLeftItemMenuBottom .6s linear infinite;
	-ms-animation:iconLeftItemMenuBottom .6s linear infinite;
	-o-animation:iconLeftItemMenuBottom .6s linear infinite;
	animation:iconLeftItemMenuBottom .6s linear infinite;
}
@-webkit-keyframes iconLeftItemMenuBottom {
    0% {
    	left:-50px;
    }
    50% {
    	left:-55px;
    }
    100%{
    	left:-50px;
    }
}
@keyframes iconLeftItemMenuBottom {
    0% {
    	left:-50px;
    }
    50% {
    	left:-55px;
    }
    100%{
    	left:-50px;
    }
}
/*************************/
.ui-menu-bottom ul li a:after{
	content:'';
	position: absolute;
	top:15px;
	right:-50px;
	background-image: url(../img/icon-right-menu-marron.svg);
	width: 41px;
	height: 12px;
	opacity: 0;
}
.ui-menu-bottom ul li a:hover:after{
	opacity: 1;
	-webkit-animation:iconRightItemMenuBottom .6s linear infinite;
	-moz-animation:iconRightItemMenuBottom .6s linear infinite;
	-ms-animation:iconRightItemMenuBottom .6s linear infinite;
	-o-animation:iconRightItemMenuBottom .6s linear infinite;
	animation:iconRightItemMenuBottom .6s linear infinite;
}
@-webkit-keyframes iconRightItemMenuBottom {
    0% {
    	right:-50px;
    }
    50% {
    	right:-55px;
    }
    100%{
    	right:-50px;
    }
}
@keyframes iconRightItemMenuBottom {
    0% {
    	right:-50px;
    }
    50% {
    	right:-55px;
    }
    100%{
    	right:-50px;
    }
}
.ui-txt-logotipo-restaurantes{
	text-align:center;
	position: relative;
}
.ui-txt-logotipo-restaurantes:before{
	content:'';
	position: absolute;
	top:4px;
	right:100%;
	width: 1000%;
	height: 1px;
	background-color: rgba(255,255,255,.1);
}
.ui-txt-logotipo-restaurantes:after{
	content:'';
	position: absolute;
	top:4px;
	left:100%;
	width: 1000%;
	height: 1px;
	background-color: rgba(255,255,255,.1);
}
.ui-txt-logotipo-restaurantes span{
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 8px;
	line-height: 10px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	letter-spacing: 2px;
}
.ui-txt-logotipo-restaurantes span:before{
	content:'';
	position: absolute;
	top:-1px;
	left:-41px;
	width:34px;
	height: 10px;
	-webkit-mask-image: url(../../../../../../index.html);;
	mask-image: url(../../../../../../index.html);;
	background-color: #FFFFFF;
}
.ui-txt-logotipo-restaurantes span:after{
	content:'';
	position: absolute;
	top:-1px;
	right:-41px;
	width:34px;
	height: 10px;
	-webkit-mask-image: url(../../../../../../index.html);;
	mask-image: url(../../../../../../index.html);;
	background-color: #FFFFFF;
}
.ui-box-siguenos-txt-menu-home-restaurantes-bottom{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 20;
	visibility: hidden;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.ui-box-siguenos-txt-menu-home-restaurantes-bottom > .ui-box{
	width: 100%;
	position: relative;
	bottom:129px;
}
.ui-box-siguenos-txt-home-restaurantes-bottom{
	position: relative;
	visibility: visible;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ui-box-siguenos-home-restaurantes-bottom{
	position: absolute;
	bottom:-24px;
	left:39px;
}
.ui-siguenos-home-restaurantes-bottom{
	list-style: none;
	padding:0;
	margin-right:23px;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0;
}
.ui-siguenos-home-restaurantes-bottom li{
	display: inline-block;
	vertical-align: middle;
	margin-right: 11px;
}
.ui-siguenos-home-restaurantes-bottom li:last-child{
	margin-right: 0px;
}
.ui-siguenos-home-restaurantes-bottom li a{
	display: block;
	text-decoration: none;
	color:#fff;
	opacity: 1;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s linear;
	transition:all .1s linear;
}
.ui-siguenos-home-restaurantes-bottom li a:hover{
	opacity: 1;
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-siguenos-home-restaurantes-bottom li a figure {
	margin-bottom: 0;
}
.ui-siguenos-home-restaurantes-bottom li a img{
	display: block;
	width: 130%;
}
.ui-siguenos-txt-home-restaurantes-bottom{
	display: inline-block;
	vertical-align: middle;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 3.5px;
	color:#fff;
}
.ui-h2-txt-home-restaurantes-bottom{
	font-family: 'Kaushan Script', cursive;
	font-size: 40px;
	line-height: 40px;
	letter-spacing: -.5px;
	color:#fff;
    text-align: center;
}
.ui-span-txt-home-restaurantes-bottom{
	font-family: 'Lato', sans-serif;
	-webkit-text-stroke-width: 0.25px;
    -webkit-text-stroke-color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 12px;
    display: block;
    color:#fff;
    text-align: center;
    letter-spacing: 3.5px;
}
/*********************************************
           SECCION DOS - RESTAURANTES
 *********************************************/
.ui-box-seccion-dos-restaurant{
	position: relative;
	width: 100%;
	height: 100vh;
}
.ui-box-items-galeria{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.ui-box-item-galeria{
	float: left;
	height: 100%;
}
.ui-box-item-galeria.a{
	width:49.5%;
	margin-right:.5%;
}
.ui-box-item-galeria.b{
	width: 24.5%;
	margin-right: .5%;
	height: 100%;
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color:#fff;
}
.ui-box-item-galeria.b:before{
	content:'';
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
	height: 7px;
	background-color: #fff;
	z-index: 2;
}
.ui-box-item-galeria.b .ui-bg{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-item-galeria.b:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-item-galeria.b:hover .ui-box-texto-item-galeria.b .ui-box{
	bottom: 43px;
}
.ui-box-item-galeria.c{
	width: 25%;
	height: 100%;
}
.ui-box-item-galeria.a .ui-box-item{
	width: 100%;
	height: 49%;
	margin-bottom: 1%;
	overflow: hidden;
	position: relative;
	display: block;
	text-decoration: none;
	color:#fff;
}
.ui-box-item-galeria.a .ui-box-item .ui-bg{
	width: 100%;
	height: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-ms-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
.ui-box-item-galeria.a .ui-box-item:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-item-galeria.a .ui-box-item:hover .ui-box-texto-item-galeria .ui-box{
	bottom: 46px;
}
.ui-box-overlay-galeria{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 117px;
	background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.ui-box-texto-item-galeria{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.ui-box-texto-item-galeria.dsk{
	display: none;
}
.ui-box-texto-item-galeria .ui-a{
	font-family: 'Kaushan Script', cursive;
	font-size: 30px;
	line-height: 35px;
	letter-spacing: -.5px;
	color:#fff;
	-webkit-text-stroke-width: .8px;
	-webkit-text-stroke-color: #fff;
	text-align: center;
}
.ui-box-texto-item-galeria .ui-b{
	font-family: 'Lato', sans-serif;
	font-size:9px;
	line-height: 11px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color:#e8a013;
	text-align: center;
	display: block;
}
.ui-box-texto-item-galeria .ui-box{
	position: relative;
	bottom: 23px;
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-ms-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
.ui-box-item-galeria.c .ui-b:hover .ui-box-texto-item-galeria .ui-box {
	bottom: 43px;
}
.ui-box-texto-item-galeria.a .ui-box{
	position: relative;
	bottom: 23px;
	-webkit-transition:all .4s linear ;
	-moz-transition:all .4s linear ;
	-ms-transition:all .4s linear ;
	-o-transition:all .4s linear ;
	transition:all .4s linear ;
}
.ui-box-texto-item-galeria.b .ui-box{
	position: relative;
	bottom: 23px;
	-webkit-transition:all .4s linear ;
	-moz-transition:all .4s linear ;
	-ms-transition:all .4s linear ;
	-o-transition:all .4s linear ;
	transition:all .4s linear ;
}
.ui-box-item-galeria.a .ui-box-items{
	width: 100%;
	height: 50%;
}
.ui-box-item-galeria.a .ui-box-items > .ui-a{
	width: 49%;
	margin-right: .9%;
	height: 100%;
	float: left;
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color:#fff;
}
.ui-box-item-galeria.a .ui-box-items > .ui-a:before{
	content:'';
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
	height: 7px;
	background-color: #fff;
	z-index: 2;
}
.ui-box-item-galeria.a .ui-box-items > .ui-a .ui-bg{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-item-galeria.a .ui-box-items > .ui-a:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-item-galeria.a .ui-box-items > .ui-a:hover .ui-box-texto-item-galeria.a .ui-box{
	bottom: 46px;
	/*opacity: 0;*/
}
.ui-box-item-galeria.a .ui-box-items > .ui-b{
	width: 50%;
	height: 100%;
	position: relative;
	float: left;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color: #fff;
}
.ui-box-item-galeria.a .ui-box-items > .ui-b:before{
	content:'';
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
	height: 7px;
	background-color: #fff;
	z-index: 2;
}
.ui-box-item-galeria.a .ui-box-items > .ui-b .ui-bg{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-item-galeria.a .ui-box-items > .ui-b:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-item-galeria.a .ui-box-items > .ui-b:hover .ui-box-texto-item-galeria.a .ui-box{
	/*opacity: 0;*/
	bottom: 43px;
}
.ui-box-item-galeria.c .ui-box-items{
	width: 100%;
	height: 100%;
}
.ui-box-item-galeria.c .ui-box-items > .ui-a{
	height:50%;
	width: 100%;
	position: relative;
	margin-bottom: 2%;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color:#fff;
}
.ui-box-item-galeria.c .ui-box-items > .ui-a .ui-bg{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-item-galeria.c .ui-box-items > .ui-a:hover .ui-bg{
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}
.ui-box-item-galeria.c .ui-box-items > .ui-a:hover .ui-box-texto-item-galeria .ui-box{
	/*opacity: 0;*/
	bottom: 46px;
}
.ui-box-item-galeria.c .ui-box-items > .ui-b{
	height: calc(50% - 17px);
	width: 100%;
	position: relative;
	margin-bottom: 7px;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color:#fff;
}
.ui-box-item-galeria.c .ui-box-items > .ui-b .ui-bg{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-ms-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
.ui-box-item-galeria.c .ui-box-items > .ui-b:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
/*********************************************
           SECCION TRES - RESTAURANTES
 *********************************************/
.ui-box-seccion-tres-restaurant{
	position: relative;
	width: 100%;
	height: 100vh;
}
.ui-box-brush-bottom{
	position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 134px;
    background-image: url(../img/brush-bottom2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    visibility: visible;
}
.ui-box-texto-item-division .ui-a .txt-a,
.ui-box-texto-item-division .ui-a .txt-b{
	display: block;
}
.ui-box-items-divisiones{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.ui-box-items-divisiones > .ui-a{
	float: left;
	/*width: 29.5%;*/
	width: 24.28%;
	height: 100%;
	margin-right: .42%;
	position: relative;
	overflow: hidden;
}
.ui-box-it-division{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: block;
	color:#fff;
	text-decoration: none;
}
.ui-box-items-divisiones > .ui-a .ui-bg{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-items-divisiones > .ui-a:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-items-divisiones > .ui-a:hover .ui-box-texto-item-division .ui-box{
	bottom: 43px;
	/*opacity: 0;*/
}
.ui-box-overlay-division{
	height: 189px;
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.ui-box-texto-item-division{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.ui-box-texto-item-division .ui-a{
	font-family: 'Kaushan Script', cursive;
	font-size: 30px;
	line-height: 35px;
	letter-spacing: -.5px;
	color:#fff;
	-webkit-text-stroke-width: .8px;
	-webkit-text-stroke-color: #fff;
	text-align: center;
}
.ui-box-texto-item-division .ui-b{
	font-family: 'Lato', sans-serif;
	font-size:9px;
	line-height: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color:#e8a013;
	text-align: center;
	display: block;
}
.ui-box-texto-item-division .ui-box{
	position: relative;
	bottom: 23px;
	-webkit-transition:all .4s linear ;
	-moz-transition:all .4s linear ;
	-ms-transition:all .4s linear ;
	-o-transition:all .4s linear ;
	transition:all .4s linear ;
}
.ui-box-texto-item-division.a .ui-box{
	bottom: 21px;
}
.ui-box-texto-item-division .ui-box.it{
	bottom:60px;
	z-index: 50;
	-webkit-transition:all .4s linear ;
	-moz-transition:all .4s linear ;
	-ms-transition:all .4s linear ;
	-o-transition:all .4s linear ;
	transition:all .4s linear ;
}
.ui-box-grupo-items-divisiones.b .ui-box-it-division:hover .ui-box-texto-item-division .ui-box.it{
	bottom: 85px;
}
.ui-box-items-divisiones > .ui-a .ui-box-it-division:hover .ui-box-texto-item-division .ui-box.it{
	bottom: 85px;
}
.ui-box-items-divisiones > .ui-b{
	float: right;
	width: 75.3%;
	height: 100%;
}
.ui-box-grupo-divisiones{
	height: 100%;
}
.ui-box-grupo-divisiones > .ui-a{
	width: 100%;
	height: 49.4%;
	margin-bottom: .6%;
}
.ui-box-grupo-divisiones > .ui-b{
	width: 100%;
	height: 49.7%;
}
.ui-box-grupo-items-divisiones{
	height: 100%;
}
.ui-box-grupo-items-divisiones.a > .ui-a{
	float: left;
	height: 100%;
	/*width: 64.5%;*/
	width: 66.1%;
	margin-right: .5%;
	position: relative;
	overflow: hidden;
}
.ui-box-grupo-items-divisiones.a > .ui-a .ui-bg{
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-grupo-items-divisiones.a > .ui-a:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-grupo-items-divisiones.a > .ui-a:hover .ui-box-texto-item-division .ui-box{
	bottom: 42px;
	/*opacity: 0;*/
}
.ui-box-grupo-items-divisiones.a > .ui-b{
	float: right;
	height: 100%;
	/*width: 35%;*/
	width: 33.2%;
	position: relative;
	overflow: hidden;
}
.ui-box-grupo-items-divisiones.a > .ui-b .ui-bg{
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-grupo-items-divisiones.a > .ui-b:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-grupo-items-divisiones.a > .ui-b:hover .ui-box-texto-item-division .ui-box{
	/*opacity: 0;*/
	bottom: 42px;
}
.ui-box-grupo-items-divisiones.b > .ui-a{
	float: left;
	height: 100%;
	width: 34.5%;
	margin-right: .5%;
	position: relative;
	overflow: hidden;
}
.ui-box-grupo-items-divisiones.b > .ui-a .ui-bg{
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-grupo-items-divisiones.b > .ui-a:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-grupo-items-divisiones.b > .ui-a:hover .ui-box-texto-item-division .ui-box{
	/*opacity: 0;*/
	bottom: 46px;
}
.ui-box-grupo-items-divisiones.b > .ui-b{
	float: right;
	height: 100%;
	width: 65%;
	position: relative;
	overflow: hidden;
}
.ui-box-grupo-items-divisiones.b > .ui-b .ui-bg{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-grupo-items-divisiones.b > .ui-b:hover .ui-bg{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}
.ui-box-grupo-items-divisiones.b > .ui-b:hover .ui-box-texto-item-division .ui-box{
	/*opacity: 0;*/
	bottom: 46px;
}
/*********************************************
           SECCION CUATRO - RESTAURANTES
 *********************************************/
.ui-box-seccion-cuatro-restaurant{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-image: url("20años.webp");
	/*background-size: cover;*/
}
.ui-bg-brush-bottom-dsk{
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
	height: 89px;
}
.ui-bg-brush-bottom-dsk.a{
	background-image: url(../img/brush-bottom-extra.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	z-index: 2;
	bottom: 2px;
}
.ui-bg-brush-bottom-dsk.b{
	background-image: url(../img/ladrillos-bottom.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 1;
}
.ui-bg-brush-bottom-dsk.b:before{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 1;
}
.ui-box-palma-restaurant{
	position: absolute;
}
.ui-box-brush-bottom-rustica-restaurantes-eventos{
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../img/brush-bottom.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%;
	width: 100%;
	height: 83px;
}
.ui-box-brush-left-rustica-restaurantes-eventos{
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../img/bg-visor-brush-restaurante-left.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100% 100%;
	width: 70px;
	height: 100%;
	background-color: pink;
}
.ui-box-brush-right-rustica-restaurantes-eventos{
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(../img/bg-visor-brush-restaurante-right.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100% 100%;
	width: 70px;
	height: 100%;
	background-color: pink;
}
.ui-box-palma-restaurant.left{
	left:0;
}
.ui-box-palma-restaurant.right{
	right:0;
}
.ui-box-palma-restaurant{
	opacity: 0;
	bottom: -100%;
	z-index: 4;
	-webkit-transition:all 1.5s linear;
	-moz-transition:all 1.5s linear;
	-ms-transition:all 1.5s linear;
	-o-transition:all 1.5s linear;
	transition:all 1.5s linear;
}
/*.ui-box-palma-restaurant.ui-active{
	opacity: 1;
	bottom: 5%;
}*/
.section.fp-section.fp-table.active.fp-completely .ui-box-palma-restaurant{
	opacity: 1;
	bottom: 5%;
}
.ui-box-palma-restaurant.ui-right{
	opacity: 0;
	bottom: -100%;
	left:0;
	-webkit-transition:all 1.5s linear 2s ;
	-moz-transition:all 1.5s linear 2s ;
	-ms-transition:all 1.5s linear 2s ;
	-o-transition:all 1.5s linear 2s ;
	transition:all 1.5s linear 2s ;
}
.section.fp-section.fp-table.active.fp-completely .ui-box-palma-restaurant.ui-left{
	opacity: 1;
	bottom: 0%;
}
.section.fp-section.fp-table.active.fp-completely .ui-box-palma-restaurant.ui-right{
	opacity: 1;
	bottom: 0%;
}
.ui-box-palma-restaurant.ui-left{
	opacity: 0;
	right:0;
	bottom: -100%;
	-webkit-transition:all 1.5s linear 2s ;
	-moz-transition:all 1.5s linear 2s ;
	-ms-transition:all 1.5s linear 2s ;
	-o-transition:all 1.5s linear 2s ;
	transition:all 1.5s linear 2s ;
}
.ui-box-palma-restaurant figure{
	display: inline-block;
	vertical-align: top;
	max-width: 340px;
	width: 100%;
}
.ui-box-palma-restaurant figure img{
	display: block;
	width: 100%;
}
.ui-box-fecha-eventos-restaurantes{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-image: url("20años.webp");
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*
 * Cosmetics
 */
.scrollscreen--track {
    /* width of track, 18px should cover default track on MacOS and Windows */
    width:18px;
    background:#bebec1;
}
.scrollscreen--slider {
    /* space between slider and track */
    padding:.25em;
}
.scrollscreen--slider::after {
    /* slider style */
    background:#5f6165;
    border-radius:9999em;
}
/**
 * Layout
 */
.scrollscreen	{
	position:relative;
}
.scrollscreen--track {
    position:absolute;
    right:0;
    top:0;
    height:100%;
    pointer-events:none;
}
*[dir='rtl'] .scrollscreen--track {
    left:0;
    right:auto;
}
.scrollscreen--slider {
    position:absolute;
    top:0;
    left:0;
    right:0;
    box-sizing:border-box;
    height:0;
    border:none;
    background:transparent;
    pointer-events:none;
}
.scrollscreen--slider::after {
    content:'';
    display:block;
    width:100%;
    height:100%;
}
.scrollscreen--content {
    position:relative;
    height:100%;
    overflow-x:hidden;
    overflow-y:auto;
}
.scrollscreen--content::-webkit-scrollbar {
    /* fix WebKit problems with MacOS automatically hiding scrollbars */
    -webkit-appearance: none;
}
/**
 * Presentational Styles
 */
.scrollscreen {
	width:100%;
	height:100%;
	max-height:calc(100% - 4em);
	background:#dcdcdf;
	border-radius:.5em;
	overflow:hidden;
}
h1 {
	margin:0;
}
main {
}
html, body {
	height:100%;
}
@media screen and (min-height: 765px){
.ui-box-fecha-eventos-restaurantes{
    top: 0;
	background-image: url("banner-vertical-delivery-720x12802.webp.jpg");	
}
}
.ui-box-fecha-eventos-restaurantes > .ui-box{
	width: 100%;
	position: relative;
	top:64px;
	padding-left: 20px;
	padding-right: 20px;
}
.ui-fecha-eventos-restaurantes{
	max-width: 1040px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
.ui-fecha-eventos-restaurantes > .ui-a{
	float: left;
	width: 25%;
	text-align: center;
	padding-top: 10px;
}
.ui-fecha-eventos-restaurantes > .ui-b{
	float: left;
	width: 50%;
}
.ui-fecha-eventos-restaurantes > .ui-c{
	float: left;
	width: 25%;
	text-align: center;
	padding-top: 10px;
}
.ui-box-items-fecha-restaurant{
	max-width: 213px;
	width: 100%;
	display: inline-block;
	vertical-align: top;
}
.ui-box-items-fecha-restaurant > div{
	margin-bottom: -5px;
}
.ui-item-fecha-restaurante{
	float: left;
	width: 50%;
	position: relative;
	cursor: pointer;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s linear;
	transition:all .1s linear;
}
.ui-item-fecha-restaurante.rpv{
	display: none;
}
.ui-item-fecha-restaurante > figure{
	position: relative;
	max-width: 100px;
}
.ui-item-fecha-restaurante > figure img{
	position: relative;
	max-width: 100px;
}
.ui-soporte-item-fecha-restaurante{
	position: absolute;
	top:-15px;
	left:-15px;
	opacity: 0;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-soporte-item-fecha-restaurante figure{
	display: inline-block;
	vertical-align: top;
}
.ui-soporte-item-fecha-restaurante figure img{
	max-width: 140px;
	display: block;
}
.ui-item-fecha-restaurante.ui-a.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-a.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-a:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-b.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-b.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-b:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-c.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-c.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-d.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-c:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-d:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-d.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-e.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-e.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-e:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-f.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-f.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-f:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-g.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-g.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-g:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-h.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-h.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-h:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-i.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-i:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-i.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-j.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-j:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-j.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-k.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-k:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-k.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-m.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-m:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-m.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-n.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-n.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-n:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-o.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-o.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-o:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-p.active{
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	z-index: 1;
}
.ui-item-fecha-restaurante.ui-p.active .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-item-fecha-restaurante.ui-p:hover .ui-soporte-item-fecha-restaurante{
	opacity: 1;
}
.ui-box-visor-evento-restaurante {
	height: 293px;
	position: relative;
	overflow: hidden;
}
.ui-box-visor-evento-restaurante > a:first-child{
	display: block;
}
.ui-box-visor-evento-restaurante .event-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-ms-transition: all .4s linear;
	-o-transition: all .4s linear;
	transition: all .4s linear;
}
.ui-box-visor-evento-restaurante:hover .event-bg {
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}
.ui-bg-visor-brush-restaurante-left{
	position: absolute;
	left:-2px;
	top:0;
	width:40px;
	height: 100%;
	background-image: url(../img/bg-visor-brush-restaurante-left.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.ui-bg-visor-brush-restaurante-right{
	position: absolute;
	right:-2px;
	top:0;
	width:31px;
	height: 100%;
	background-image: url(../img/bg-visor-brush-restaurante-right.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.ui-bg-visor-brush-restaurante-top{
	position: absolute;
	left:0;
	top:-2px;
	width: 100%;
	height: 52px;
	background-image: url(../img/bg-visor-brush-restaurante-top.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.ui-bg-visor-brush-restaurante-bottom{
	position: absolute;
	left:0;
	bottom:-2px;
	width: 100%;
	height: 43px;
	background-image: url(../img/bg-visor-brush-restaurante-bottom.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.ui-txt-item-fecha-restaurant{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ui-txt-item-fecha-restaurant > .ui-box{
	position: relative;
	right:5px;
}
.ui-txt-item-fecha-restaurant span{
	color:#fff;
	display: block;
	text-align: center;
}
.ui-txt-item-fecha-restaurant .ui-a{
	font-family: 'Kaushan Script', cursive;
	font-size: 25px;
	line-height: 36px;
	-webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}
.ui-txt-item-fecha-restaurant .ui-b{
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 10px;
	line-height: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
	left:2px;
}
.ui-overlay-visor-evento-restaurante{
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	height: 168px;
	background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.ui-box-bg-item-evento-restaurante{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	display: none;
	/*overflow: hidden;*/
	text-decoration: none;
	color:#fff;
}
.ui-box-txt-item-evento-restaurante{
	width: 100%;
	height: 100%;
	padding-bottom: 40px;
	position: relative;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.ui-h2-txt-item-evento-restaurante{
	position: relative;
}
.ui-h2-txt-item-evento-restaurante span{
	display:block;
	color:#fff;
	text-align: center;
}
.ui-h2-txt-item-evento-restaurante .ui-a{
	font-family: 'Kaushan Script', cursive;
	font-size: 30px;
	line-height: 28px;
	letter-spacing: -.5px;
	-webkit-text-stroke-width: 0.75px;
    -webkit-text-stroke-color: #fff;
    margin-bottom: 5px;
}
.ui-h2-txt-item-evento-restaurante .ui-b{
	font-family: 'Lato', sans-serif;
	font-size: 10px;
	line-height: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}
/*********************************************
          SECCION CINCO - RESTAURANTES
 *********************************************/
.ui-box-seccion-cinco-restaurant{
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.ui-box-brush-top{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 102px;
	background-image: url(../img/brush-top-restaurantes.png);
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: none;
}
.ui-bg-novedades-restaurantes{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.ui-box-carousel-items-novedades-restaurantes{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ui-box-carousel-items-novedades-restaurantes > .ui-box{
	width: 100%;
}
.owl-carousel.novedades-restaurantes{
	margin-bottom: 50px;
}
.owl-carousel.novedades-restaurantes .owl-stage-outer{
	padding-top: 20px;
	padding-bottom: 20px;
}
.ui-box-carousel-item-novedad-restaurantes{

	width: 338px;
	height: 206px;
	border-radius:5px;
	cursor: pointer;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}
@media screen and (min-width: 1600px){
	.ui-box-carousel-item-novedad-restaurantes {

		width: 450px;
		height: 274px;

	}
}
.owl-carousel.novedades-restaurantes .owl-item{
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-ms-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
.owl-carousel.novedades-restaurantes .owl-item.active:hover{
	-webkit-transform:scale(1.15,1.15);
	-moz-transform:scale(1.15,1.15);
	-ms-transform:scale(1.15,1.15);
	-o-transform:scale(1.15,1.15);
	transform:scale(1.15,1.15);
	-webkit-box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.6);
	z-index: 2;
}
.owl-carousel.novedades-restaurantes .owl-item.active:hover .ui-box-txt-carusel-item-novedad-restaurantes > .ui-box{
	bottom: 0px;
	opacity: 0;
}
.ui-box-overlay-carousel-item-novedad-restaurantes{
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	height: 110px;
	background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.ui-box-txt-carusel-item-novedad-restaurantes{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.ui-box-txt-carusel-item-novedad-restaurantes > .ui-box{
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	position: relative;
	bottom: 20px;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-ms-transition:all .4s linear;
	-o-transition:all .4s linear;
	transition:all .4s linear;
}
.ui-box-txt-carusel-item-novedad-restaurantes > .ui-box span{
	display: inline-block;vertical-align: top;
	width: 80%;
	font-family: 'Lato', sans-serif;
	color:#fff;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
}
/********************************
      FOOTER - RESTAURANTES
 ********************************/
.ui-box-footer-restaurantes{
	position: absolute;
	left:0;
	bottom:0;
	width: 100%;
	padding-bottom: 10px;
	padding-top: 5px;
	background-color: #000;
	color:rgba(255,255,255,0.80);
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;

	-webkit-transition:all .5s linear ;
	-moz-transition:all .5s linear ;
	-ms-transition:all .5s linear ;
	-o-transition:all .5s linear ;
	transition:all .5s linear ;
}
.ui-box-footer-restaurantes:before{
	content:'';
	position: absolute;
	top:-66px;
	left:0;
	width: 100%;
	height: 68px;
	background-image: url(../../../../../../index.html);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.ui-box-footer-restaurantes.active{
	-webkit-transform:translateY(0%);
	-moz-transform:translateY(0%);
	-ms-transform:translateY(0%);
	-o-transform:translateY(0%);
	transform:translateY(0%);
}
.ui-box-footer-restaurantes > .ui-box{
	width: 100%;
}
.ui-footer-restaurantes{
	width: 100%;
}
.ui-footer-restaurantes > .ui-a{
	float: left;
	width: 40%;
	padding-top: 22px;
	padding-left: 14px;
}
.ui-box-derechos-footer{
	display: -webkit-flex;
	display: flex;
	position: relative;
    top: 10px;
}
.ui-footer-restaurantes > .ui-b{
	float: left;
	width: 20%;
}
.ui-footer-restaurantes > .ui-c{
	float: left;
	width: 40%;
	padding-top: 22px;
	padding-right: 14px;

}
.ui-box-central-subscribete > .ui-a{
	float: left;
	width: 50%;
	text-align: center;
}
.ui-central-subscribete{
	display: inline-block;
	vertical-align: middle;
}
.ui-box-central-subscribete > .ui-b{
	float: left;
	width: 50%;
	text-align: center;
}
.ui-box-derechos{
	display: block;
}
.ui-central-subscribete p{
	display: inline-block;
	vertical-align: bottom;
	font-size: 8px;
	line-height: 10px;
	letter-spacing: 0.1em;
	margin-right: 8px;
}
.ui-central-subscribete > span{
	display: inline-block;
	vertical-align: bottom;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 15px;
	line-height: 18px;
	color:#F7DB50;
	position: relative;
    top: 2px;
}
.ui-box-derechos form > span{
	display: inline-block;
	vertical-align: middle;
	font-size: 8px;
	line-height: 10px;
	letter-spacing: 0.15em;
	margin-right: 8px;
}
.ui-boton-subscribete-footer{
	display: inline-block;
	vertical-align: middle;
	max-width: 170px;
	height: 30px;
	width: 100%;
	position: relative;
}
.ui-boton-subscribete-footer input{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	border-radius:2px;
	background-color: #000;
	outline: none;
	font-size: 8px;
	border:none;
	color:#F6DA4E;
	padding-left:16px;
	padding-bottom: 7px;
	padding-top:7px;
	-webkit-box-shadow:0px 0px 15px rgba(246, 217, 77, 0.35);
	-moz-box-shadow:0px 0px 15px rgba(246, 217, 77, 0.35);
	-ms-box-shadow:0px 0px 15px rgba(246, 217, 77, 0.35);
	-o-box-shadow:0px 0px 15px rgba(246, 217, 77, 0.35);
	box-shadow: 0px 0px 15px rgba(246, 217, 77, 0.35);
}
.ui-boton-subscribete-footer input:focus::placeholder {
	color: rgba(246, 218, 78, 0.3);
}
.ui-boton-subscribete-footer input::placeholder{
	color:#F6DA4E;
	text-transform: uppercase;
}
.ui-boton-subscribete-footer button{
	position: absolute;
	top:0;
	right:0;
	width: 34px;
	height: 100%;
	background-color: transparent;
	outline: none;
	cursor: pointer;
	border:none;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ui-boton-subscribete-footer button:before{
	content:'';
	position: absolute;
	left:0;
	top:10px;
	width: 1px;
	height: 10px;
	background-color: rgba(247,219,80,0.1);
}
@-webkit-keyframes slide-right {
	0% {transform: translate(0, 0) rotate(-45deg);}
	50% {transform: translate(5px, 0) rotate(-45deg);}
	100% {transform: translate(0, 0) rotate(-45deg);}
}
@keyframes slide-right {
	0% {transform: translate(0, 0) rotate(-45deg);}
	50% {transform: translate(5px, 0) rotate(-45deg);}
	100% {transform: translate(0, 0) rotate(-45deg)}
}
.ui-boton-subscribete-footer button i {
	border: solid #F6DA4E;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
}
.ui-boton-subscribete-footer button:hover i {
	-webkit-animation: slide-right 1s linear infinite ;
	-moz-animation: slide-right 1s linear infinite ;
	-ms-animation: slide-right 1s linear infinite ;
	-o-animation: slide-right 1s linear infinite ;
	animation: slide-right 1s linear infinite ;
	border-width: 0 2px 2px 0;
}
.arrow-right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.ui-box-derechos-footer span.ui-a{
	font-family: 'Lato', sans-serif;
	font-size: 8px;
	color:rgba(245,211,48,0.80);
	margin-right: 3px;
	position: relative;
	bottom: 2px;
}
.ui-box-derechos-footer.rpv{
	display: none;
}
.ui-box-logotipo-rustica-reservado{
	margin-right: 4px;
}
.ui-box-logotipo-rustica-reservado img{
	display: block;
	width: 100%;
}
.ui-box-derechos-footer span.ui-b{
	display: inline-block;
	vertical-align: top;
	font-size: 7px;
	color:rgba(255,255,255,0.60);
	text-transform: none;
}
.ui-box-logotipo-footer{
	text-align: center;
	margin-bottom: 5px;
}
.ui-box-logotipo-footer figure{
	display: inline-block;
	vertical-align: middle;
	max-width: 105px;
}
.ui-box-logotipo-footer figure img{
	display: block;
	width: 100%;
}
.ui-box-social-footer{
	text-align: center;
}
.ui-box-social-footer ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: top;
}
.ui-box-social-footer ul li{
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.ui-box-social-footer ul li:last-child{
	margin-right: 0px;
}
.ui-box-social-footer ul li a{
	display: block;
}
.ui-box-social-footer ul li a.ui-a{
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center center;
	width: 15px;
	height: 15px;
	opacity: 0.35;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s line.ui-box-social-footer ul li a.ui-aar;
	transition:all .1s linear;
	background-size: 15px 15px;
}
.ui-box-social-footer ul li a.ui-a:hover{
	background-image: url(../../../../../../index.html);
	opacity: 1;
	-webkit-transform:scale(1.3,1.3);
	-moz-transform:scale(1.3,1.3);
	-ms-transform:scale(1.3,1.3);
	-o-transform:scale(1.3,1.3);
	transform:scale(1.3,1.3);
}
.ui-box-social-footer ul li a.ui-b{
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center center;
	width: 15px;
    height: 15px;
	opacity: 0.35;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s linear;
	transition:all .1s linear;
	background-size: 15px 15px;
}
.ui-box-social-footer ul li a.ui-b:hover{
	background-image: url(../../../../../../index.html);
	opacity: 1;
	-webkit-transform:scale(1.3,1.3);
	-moz-transform:scale(1.3,1.3);
	-ms-transform:scale(1.3,1.3);
	-o-transform:scale(1.3,1.3);
	transform:scale(1.3,1.3);
}
.ui-box-social-footer ul li a.ui-c{
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center center;
	width: 15px;
    	height: 15px;
	opacity: 0.35;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s linear;
	transition:all .1s linear;
	background-size: 15px 15px;
}
.ui-box-social-footer ul li a.ui-c:hover{
	background-image: url(../../../../../../index.html);
	opacity: 1;
	-webkit-transform:scale(1.3,1.3);
	-moz-transform:scale(1.3,1.3);
	-ms-transform:scale(1.3,1.3);
	-o-transform:scale(1.3,1.3);
	transform:scale(1.3,1.3);
}
.ui-box-social-footer ul li a.ui-d{
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center center;
	width: 15px;
    	height: 15px;
	opacity: 0.35;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s linear;
	transition:all .1s linear;
	background-size: 15px 15px;
}
.ui-box-social-footer ul li a.ui-d:hover{
	background-image: url(../../../../../../index.html);
	opacity: 1;
	-webkit-transform:scale(1.3,1.3);
	-moz-transform:scale(1.3,1.3);
	-ms-transform:scale(1.3,1.3);
	-o-transform:scale(1.3,1.3);
	transform:scale(1.3,1.3);
}
.ui-box-social-footer ul li a.ui-e{
	background-image: url(../../../../../../index.html);
	background-repeat: no-repeat;
	background-position: center center;
	width: 15px;
    height: 15px;
	opacity: 0.35;
	-webkit-transition:all .1s linear;
	-moz-transition:all .1s linear;
	-ms-transition:all .1s linear;
	-o-transition:all .1s linear;
	transition:all .1s linear;background-size: 15px 15px;
}
.ui-box-social-footer ul li a.ui-e:hover{
	background-image: url(../../../../../../index.html);
	opacity: 1;
	-webkit-transform:scale(1.3,1.3);
	-moz-transform:scale(1.3,1.3);
	-ms-transform:scale(1.3,1.3);
	-o-transform:scale(1.3,1.3);
	transform:scale(1.3,1.3);
}
.ui-box-enlaces-footer-restaurantes{
	margin-bottom: 5px;
}
.ui-box-enlaces-footer-restaurantes ul{
	list-style: none;
	margin:0;
	padding:0;
}
.ui-box-enlaces-footer-restaurantes ul li{
	float: left;
	width: 33.33%;
}
.ui-box-enlaces-footer-restaurantes ul li a{
	text-transform:uppercase;
	color:#fff;
	font-size: 9px;
	display: inline-block;
	vertical-align: middle;
	color:rgba(255,255,255,0.80);
	text-decoration: none;
	letter-spacing: 0.15em;
	-webkit-text-shadow:0px 0px 5px rgba(0, 0, 0, 0.35);
	-moz-text-shadow:0px 0px 5px rgba(0, 0, 0, 0.35);
	-ms-text-shadow:0px 0px 5px rgba(0, 0, 0, 0.35);
	-o-text-shadow:0px 0px 5px rgba(0, 0, 0, 0.35);
	text-shadow:0px 0px 5px rgba(0, 0, 0, 0.35);
}
.ui-box-enlaces-footer-restaurantes ul li a:hover {
    color:#F6DA4E;
}
.ui-box-creditos-monkey{
	position: relative;
    top: 12px;
	text-align: right;
}
.ui-box-creditos-monkey span{
	color: rgba(255,255,255,0.50);
	font-size: 7px;
	display: inline-block;
	font-family: 'Lato', sans-serif;
	vertical-align: middle;
}
.ui-box-creditos-monkey a{
	display: inline-block;
	vertical-align: middle;
}

#slide1 {
    margin: auto;
    height: 100%;
    width: 100%;
	background-image:url(../../../../../../images/anuncio1.png);
}

#slide2 {
    margin: auto;
    height: 100%;
    width: 100%;
	background-image:url(../../../../../../images/anuncio3.png);
}

.video1{
	width:100%;
	height:100%;
	
}

	#ventana:target {
		-webkit-transition:all 1s;
		-moz-transition:all 1s;
		transition:all 1s;
		opacity: 0;
		visibility: hidden;
	}
	
			.topbar {
  position: unset;
  top: 0;
  left: 0;
  height: 24px;
  width: 100%;
  background-color: #01581c;
  &--shadow {
    box-shadow: 0 0 10px rgba(#000, .5);
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
    font-family: 'Kaushan Script';
  font-size: 13px;
  color: white;
}
	
	.ventana-ventana2 {
		position: relative;
		margin:2% auto;
		padding:30px 50px;
		background-color: darkgreen;
		color:white;
		border-radius: 3px;
		width:70%;
	}
	a.close-ventana2 {
		position: absolute;
		top:3px;
		right:3px;
		background-color: white;
		padding:7px 10px;
		font-size: 20px;
		text-decoration: none;
		line-height: 1;
		color:darkgreen;
	}

#slide3 {
    margin: auto;
    height: 100%;
    width: 100%;
	background-image:url(../../../../../../images/anuncio2.png);
}