/*
Theme Name: El K'rajo
Author: PR3SET
Author URI: https://pr3set.com
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.0
Version: 1.0
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* @font-face {
	font-family: eltic;
	src: url(https://krajo.pr3set.xyz/wp-content/themes/krajo/assets/fonts/eltirg__.ttf);
} */

body {
	/*font-family: eltic !important;*/
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.d-none {
	display: none;
}

.d-flex {
    display: flex!important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
  
.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.align-items-center {
    align-items: center!important;
}

.justify-content-center {
    justify-content: center!important;
}

@media (max-width: 575px) {
    .d-xs-none {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .d-sm-none {
        display: none !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }
}

@media (max-width: 991px) {
    .d-md-none {
        display: none !important;
    }
}

@media (max-width: 1999px) {

}

@media (max-width: 1399px) {

}

@media (min-width: 1400px) {

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #ffb03b;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
	text-decoration: none;
}

.back-to-top i {
	font-size: 18px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #ffc064;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	padding: 0;
	font-size: 15px;
	height: 50px;
	transition: all 0.5s;
	background: rgba(26, 24, 22, 0.8);
	z-index: 996;
	color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
	background: transparent;
}

#topbar.topbar-scrolled {
	top: -50px;
}

#topbar i {
	color: #ffb03b;
	line-height: 0;
}

#topbar i span {
	color: #fff;
	font-style: normal;
	padding-left: 5px;
}
  
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	top: 50px;
	height: 70px;
	z-index: 997;
	transition: all 0.5s;
	padding: 10px 0;
	background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
	background: transparent;
}

#header.header-scrolled {
	top: 0;
	background: rgba(26, 24, 22, 0.85);
}

#header .logo h1 {
	font-size: 28px;
	margin: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 40px;
}

#header.header-scrolled .d-none {
	display: block !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  width: inherit !important;
}

.navbar li {
  position: relative;
  padding-right: 0 !important;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
/*   justify-content: space-between; */
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: none !important;
  line-height: 0 !important;
  transition: 0.5s;
  margin-block-start: 0;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 30px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0 !important;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile li {
	display: list-item !important;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39 !important;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb03b !important;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*-------------------------------------------------------------
 * 		Footer
 * ------------------------------------------------------------*/

.wp-block-template-part {
    margin: 0 !important;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
/* .gallery {
    padding-bottom: 0;
} */

/* .gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
} */

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Food Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
    padding: 0;
    margin: 0 auto 0 auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.menu #menu-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px 10px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #444444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    border: 2px solid #ffb03b;
    border-radius: 50px;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
    color: #fff;
    background: #ffb03b;
}

.menu #menu-flters li:last-child {
    margin-right: 0;
}

.menu .menu-content {
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}

div.fmp-food-item div.fmp-title > h3 {
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: #f29719;
	font-family: 'Work sans';
    font-size: large;
}

div.fmp-food-item div.fmp-title > h3:hover {
    color: #13a89e;
}

.menu .menu-content span {
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
}

.fmp-body>p {
    font-style: italic;
    font-size: 0.8rem;
    color: #948c81;
}

.fmp-box .fmp-title h3,
.fmp-food-item .fmp-title h3 {
    font-size: 1.2rem;
}

.fmp-content-wrap {
    width: 100%;
}

.fmp-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.fmp-food-item.food-menu {
    background: none;
}

/*--------------------------------------------------------------
 * 					Food Menu Slider Controls
--------------------------------------------------------------*/
#food-menu div.n2-bullet {
	border-radius: 0 !important;
    margin: 0 !important;
    height: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#food-menu div.nextend-bullet-bar {
	flex-wrap: nowrap !important;
	width: 100%;
	overflow: auto;
	padding: 10px !important;
}

@media (max-width: 575px) {
    #food-menu div.nextend-bullet-bar {
        justify-content: flex-start !important;
    }
}

#food-menu div.n2-ss-widget.n2-ss-control-bullet.n2-ow-all.n2-ss-control-bullet-horizontal {
	width: 89%;
}

/* #food-menu div.n2-ss-slider-wrapper-outside {
	margin-top: 70px;
} */
#food-menu.fixed-controls {
	padding-top: 68px;
}

#food-menu .fixed-controls {
	display: flex;
	position: fixed;
	top: 70px;
	right: 0;
	left: 0;
	z-index: 999;
	background-color: #FFFFFFD9;
}

/*--------------------------------------------------------------
 * 					Fixed Background
 * ------------------------------------------------------------*/
.slider-fixed-bg .n2-ss-slider .n2-ss-slider-1  .n2-ss-slider-2 {
    background-attachment: fixed!important;
}

.slider-fixed-bg .n2-ss-slider .n2-ss-slider-1 {
    background-attachment: fixed!important;
}
/*--------------------------------------------------------------
 * 					Tripadvisor Reviews
--------------------------------------------------------------*/
.wptripadvisor_star_imgs_T1 { display: block; }
.wptripadvisor_t1_DIV_1 { 
	height: 350px;
	overflow: hidden;
}
.wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 {
	height: 250px;
	padding: 20px;
}
.wptripadvisor_t1_DIV_2:before {
	display:none !important;
}
.wptripadvisor_t1_P_3.wprev_preview_tcolor1_T1{
	height: 200px;
	overflow-y: auto;
	overflow-x: hidden; 
	text-align: justify;
	
	/* Hide scrollbar for IE, Edge and Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.wptripadvisor_t1_P_3.wprev_preview_tcolor1_T1::-webkit-scrollbar {
  display: none;
}

/* NO BORRAR
 * Victor: Esto es probando las animaciones para el texto que haga overflow.
 * 		   Necesito add js para solo add el class de scroll si esta overflown.
 * 
.wptripadvisor_star_imgs_T1 { display: block; }
.wptripadvisor_t1_DIV_1 { 
	height: 350px;
	overflow: hidden;
}
.wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 {
	height: 250px;
	padding: 20px;
	overflow-y: hidden;
	overflow-x: hidden; 
}
.wptripadvisor_t1_DIV_2:before {
	display:none !important;
}


.wptripadvisor_t1_P_3.wprev_preview_tcolor1_T1 {
	margin: 0;
	animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(-100%);
	}
}
*/

/*--------------------------------------------------------------
# Polylang (Language Plugin)
--------------------------------------------------------------*/
.widget_polylang ul {
	margin: 0;
	margin-block: 0;
	margin-inline: 0;
	padding: 0;
	padding-inline: 0;
	list-style-type: none;
}

