/* File: assets/css/style.css */ 
/* Container do formulário */
.sml-form-grid {
  margin: 2em auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2em;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Linhas e campos */
.sml-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1.5em;
}
.sml-form-row.sml-form-full {
  flex-direction: column;
}

/* Cada campo */
.sml-form-field {
  flex: 1 1 calc(33.33% - 1em);
  display: flex;
  flex-direction: column;
}
.sml-form-row.sml-form-full .sml-form-field {
  flex: 1 1 100%;
}

/* Label */
.sml-form-field label {
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #333;
}

/* Inputs, textareas e selects */
.sml-form-field input,
.sml-form-field textarea,
.sml-form-field select {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.sml-form-field input:focus,
.sml-form-field textarea:focus,
.sml-form-field select:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
  outline: none;
}

/* Placeholder color */
.sml-form-field input::placeholder,
.sml-form-field textarea::placeholder {
  color: #888;
}

/* Checkbox group */
.sml-form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.sml-form-checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* Botão de envio */
.sml-form-field input.button-primary,
.sml-form-field button.button-primary {
  background-color: #e91e63;
  border: 1px solid #e91e63;
  color: #fff;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color .2s, transform .1s;
  align-self: flex-start;
}
.sml-form-field input.button-primary:hover,
.sml-form-field button.button-primary:hover {
  background-color: #d81b60;
}
.sml-form-field input.button-primary:active,
.sml-form-field button.button-primary:active {
  transform: scale(0.98);
}

/* Overlay do loader */
#sml-loader-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#sml-loader-overlay .sml-loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: sml-spin 1s linear infinite;
}
@keyframes sml-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mensagens */
.sml-success, .sml-error {
  max-width: 800px;
  margin: 1em auto;
  padding: 1em;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.sml-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.sml-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
/* força o dropdown do Select2 acima de tudo */
.select2-container--open .select2-dropdown {
  z-index: 99999 !important;
}

/* garante que o container ocupe 100% do campo */
.select2-container.sml-tax-autocomplete {
  width: 100% !important;
}
span.select2-dropdown.select2-dropdown--below {margin-top: 32px;}

.sml-lojas-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    list-style: none;
    justify-content: center;
    margin-bottom: 30px;
}

.sml-lojas-nav li {
    margin: 0;
}

.sml-lojas-nav a {
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #b00;
    transition: background 0.2s;
}

.sml-lojas-nav a:hover {
    background: #f0f0f0;
}
.sml-loja-nome {
    font-weight: 400;
    font-size: 23px;
    margin: 0;
    padding: 0;
    width: 100%;
}
.sml-loja-miniaturas {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    padding: 5px 0;
    list-style: none;
    margin: -15px 0px 20px 20px !important;
}

@media (max-width:1129px){   
	ul.sml-loja-miniaturas li:nth-child(5) {
		display: none;
	}
}  
.sml-loja-miniaturas li { 
    max-width: 130px;
    height: auto;
    overflow: hidden;
}

.sml-loja-miniaturas img {
    height: 67px;
    display: block;
    object-fit: contain;
    width: 100% !important;
    max-width: 71px;
}

.sml-loja-ver-todos {
    display: inline-block;
    font-size: 0.9em;
    text-decoration: underline;
    width: 50px;
    height: 68px;
    border: 1px solid #ccc;
    font-size: 36px !important;
    font-family: system-ui;
    color: #ccc;
    font-weight: 200 !important;
    text-align: center;
    line-height: 58px;
}

.sml-loja-endereco {
    font-size: 0.9em;
    color: #555;
    margin-top: 4px;
    display: inline; 
    color: #8f8d8d;
}
.sml-lojas-group > ul > li > a {
    display: block;
    padding: 20px;
	position:relative;
}
p.sml-loja-segmento {
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #ccc;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
}
p.sml-loja-produtos {
    padding: 0;
    margin: -20px 0px 20px 20px;
	font-size: 13px;
	color: #b1aeae;
}
.elementor-element.produto_card .elementor-widget-theme-post-featured-image a img {
    min-height: auto;
    width: 100%;
}


ul.sml-produto-cores li {
    width: 30px;
    height: 30px;
    font-size: 0;
    border-radius: 100%;
    padding: 0;
    margin: 4px 0 0 3px;
    float: left;
    border: 3px solid #fff;
    box-shadow: 0px 0px 1px 1px #b6b6b6;
    cursor: pointer;
}

ul.sml-produto-cores li.selected {
    box-shadow: 0px 0px 1px 2px #292828;
}

	
ul.sml-produto-cores {
    padding: 0;
    margin: 0;
}
ul.sml-produto-tamanhos {
    padding: 0;
    list-style: none;
}

ul.sml-produto-tamanhos li {
    border: 2px solid #ffffff !important;
    float: left;
    box-shadow: 0px 0px 1px 1px #b6b6b6;
    padding: 0 4px;
    height: 26px;
    line-height: 23px;
    font-size: 11px;
    margin: 0 3px 6px 3px;
    border-radius: 50%;
    width: auto;
    text-align: center;
    min-width: 26px;
    background: #ececec;
    cursor: pointer;
}

ul.sml-produto-tamanhos li:hover {
    background: #d0d0d0; 
}

ul.sml-produto-tamanhos li.selected {
    box-shadow: 0px 0px 1px 1px #33373d;
    background: #e5e5e5;
}
/* Remove as setas no Firefox */
.sml-qty-input[type=number] {
    -moz-appearance: textfield;
}
button.sml-qty-btn {
	border-radius: 0;
    padding: 0;
    margin: 0;
    height: 38px;
    width: 38px;
    line-height: 3px;
    text-indent: 1px;
    border: none;
    background: #ccc;
    color: #fff;
    font-family: monospace;
    font-weight: 900;
}

body .sml-campo-quantidade input.sml-qty-input {
	padding: 0 0;
    border: 1px solid #ccc;
    text-align: center;
    width: 40px;
    font-size: 13px;
    color: #807e7e;
    margin: 0 0px 0 -2px;
    border-radius: 0;
    height: 38px
}

.sml-campo-quantidade {
    display: inline-flex;
    margin-top: 3px;
}
button.sml-pedido-remover {
    padding: 2px 6px;
    height: auto;
    font-size: 10px;
    border: none;
    background: #e8e7e7;
    color: #535353;
    margin: 10px 0 0 0;
}
.elementor-element.elementor-widget-theme-post-featured-image.elementor-widget-image a {
    display: inline-block;
    width: 100%;
}

.nome_da_loja {
    display: none;
}
.archive .nome_da_loja {
    display: inline-block;
}

/* Arquivo: shopping-multi-lojas/inc/carrinho/pedido.css */

/* Container geral de todos os pedidos */
.sml-todos-pedidos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}

/* Cada carrinho (por loja) */
.sml-store-cart {
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

/* Cabeçalho: nome da loja + limpar + total */
.sml-store-header {
    display: flex;
    align-items: center;  /* alinha verticalmente */
    padding: 1rem;
    background: #f7f7f7;
}

/* Título da loja */
.sml-store-title {
    font-size: 1.5rem;
    margin: 0;
    color: #e12d2d;
}

.sml-store-title a {
    text-decoration: none;
    color: inherit;
}

/* Botão Limpar Carrinho – discreto, só texto sublinhado */
.sml-store-header .sml-pedido-limpar {
    background: none;
    border: none;
    padding: 0;
    margin-left: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}

.sml-store-header .sml-pedido-limpar:hover {
    color: #333;
}

/* Total da loja, alinhado à direita */
.sml-store-total {
    margin-left: auto;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Tabela de itens */
.sml-store-items {
    width: 100%;
    border-collapse: collapse;
}

.sml-store-items th,
.sml-store-items td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.sml-store-items th {
    background-color: #fafafa;
    font-weight: bold;
}

/* Thumbnail do produto */
.sml-item-thumb img {
    width: 60px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.sml-item-thumb-placeholder {
    width: 60px;
    height: 60px;
    background: #eee;
    border-radius: 4px;
}
.sml-pedido-qty-controls button {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    padding: 0;
    line-height: 0;
    background: #dedede;
    border: none;
    color: #6c6969;
    font-weight: 500;
}

input.sml-qty-input {
    width: 36px;
    padding: 2px 5px;
    font-size: 13px;
    border: none;
    text-align: center;
    border: 1px solid #ccc;
}
/* Detalhes do produto */
.sml-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sml-item-name {
    font-weight: bold;
}

.sml-item-attribute {
    font-size: 0.9rem;
    color: #555;
}

/* Quantidade e preço */
.sml-item-qty {
    text-align: center;
}

.sml-item-price {
    text-align: right;
}

/* Botão “✕” remover item */
.sml-pedido-remover {
    background: transparent;
    border: none;
    color: #e12d2d;
    font-size: 1rem;
    cursor: pointer;
}

/* Área de ações: enviar pedido */
.sml-store-actions {
    display: flex;
    padding: 1rem;
    background: #f7f7f7;
}

/* Botão Enviar pedido – agora verde */
.sml-pedido-enviar {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    background: #28a745;
    color: #fff;
}
/*  
   Estilos para a área [sml_login_cadastro_area]
   -------------------------------------------------------------- */

.sml-auth-wrapper{
    max-width:420px;
    margin:30px auto;
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
    background:#fff;
    font-family:inherit;
    box-shadow:0 2px 6px rgba(0,0,0,.05);
}
.sml-tabs{
    display:flex;
    margin:0;
    padding:0;
    list-style:none;
    background:#f5f5f5;
    border-bottom:1px solid #ddd;
}
.sml-tabs li{
    flex:1;
    text-align:center;
    padding:12px 0;
    cursor:pointer;
    font-weight:600;
    transition:background .2s,color .2s;
}
.sml-tabs li:not(.active):hover{
    background:#e8e8e8;
}
.sml-tabs li.active{
    background:#fff;
    border-bottom:2px solid #007cba;
    color:#007cba;
}
.sml-tab-content{
    display:none;
    padding:20px 24px 24px;
}
.sml-tab-content.active{
    display:block;
}
.sml-form-field{
    margin-bottom:15px;
}
.sml-form-field label{
    display:block;
    margin-bottom:4px;
    font-weight:600;
}
.sml-form-field input[type="text"],
.sml-form-field input[type="email"],
.sml-form-field input[type="password"]{
    width:100%;
    padding:8px 10px;
    border:1px solid #ccc;
    border-radius:4px;
    box-sizing:border-box;
}
.sml-form-field textarea{
    width:100%;
    padding:8px 10px;
    border:1px solid #ccc;
    border-radius:4px;
    min-height:80px;
    box-sizing:border-box;
}
button.button,
button.button-primary{
    padding:8px 22px;
    border:none;
    border-radius:3px;
    background:#007cba;
    color:#fff;
    cursor:pointer;
    font
}
.elementor-popup-modal .dialog-widget-content {
    background: none;
}
.sml-loja-produto-page .elementor-element.foto_fachada {
    max-width: 100px !important;
}

.elementor-image-gallery img.attachment-large.size-large {
    width: 100%;
}

.produto_card .hover_button_buy {
    opacity:0; 
    bottom: 10px;
    left: 0;
    background: #ffffffb5 !important;
    -webkit-transition: opacity 0.2s ease-in;
} 
.produto_card:hover .hover_button_buy {
    opacity:1;
    -webkit-transition: opacity 0.2s ease-in;
} 

/*  --------------------------------------------------------------
   Lista de lojas
-------------------------------------------------------------- */
.sml-lojas-group > ul > li, .sml-lojas-group > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sml-lojas-group >ul > li {
    display: inline-block;
    width: 32.3%;
    border: 1px solid #f1f1f1; 
	margin-bottom: 20px;
	vertical-align: top;
} 
.sml-lojas-group > ul > li{
	margin-left: 0.5%;
	margin-right: 0.5%;
	min-height: 173px;
}
.sml-lojas-group {
    border-bottom: 1px solid #ccc;
    padding: 20px 0 30px 0;
} 
.sml-lojas-group >ul > li:hover {
    background: #f4f4f4;
}
.sml-lojas-nav a.disabled {
    opacity: 0.2;
    cursor: default;
}
.sml-lojas-nav a.disabled {
    opacity: 0.2;
    cursor: default;
}

nav.sml-filter-segmento > ul, nav.sml-filter-segmento > ul > li {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.sml-filter-segmento > ul > li a {
    display: inline-block;
    margin: 1px 1px;
    border: 1px solid #ccc;
    padding: 5px 9px;
    border-radius: 20px;
    transition: background 0.2s;
}

nav.sml-filter-segmento {
    text-align: center;
}

nav.sml-filter-segmento > ul > li {
    display: inline-block;
}

nav.sml-filter-segmento > ul > li a:hover {
    background: #e5e5e5;
    transition: background 0.2s;
}

nav.sml-filter-segmento > ul > li a.selected, .sml-lojas-nav a.selected {
    background: #8e2f2f;
    color: #fff;
    border-color: #8e2f2f;
    transition: background 0.2s;
} 
nav.sml-filter-segmento > ul > li a.disabled {
    opacity: 0.3;
}
section.sml-lojas-group.disabled {
    display: none;
}






/* wrapper para scroll (desktop) */
.sml-tabela-wrapper {
	width: 100%;
	overflow-x: auto;
	margin-bottom: 1.5em;
}
/* tabela clássica (desktop) */
.sml-tabela-pedidos {
	width: 100%;
	border-collapse: collapse;
}
.sml-tabela-pedidos th,
.sml-tabela-pedidos td {
	padding: .75em .5em;
	border-bottom: 1px solid #e1e1e1;
	text-align: left;
	font-size: .95em;
}

/* alterna desktop/mobile */
.sml-pedidos-desktop { display: block; }
.sml-pedidos-mobile  { display: none; }
@media (max-width: 767px) {
	.sml-pedidos-desktop { display: none; }
	.sml-pedidos-mobile  { display: block; }
}

/* ===== cartões (mobile) ===== */
.sml-pedidos-cards {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sml-pedido-card {
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	margin-bottom: 1em; 
	display: flex;
	flex-direction: column;
}
/* Linha 1: Nº do Pedido | Nome da Loja | Status */
.sml-pedido-card .card-top {
	display: inline-block;
	justify-content: space-between;
	align-items: center;
	padding: 5px 10px; 
	background: #f2f2f2;
}
.sml-pedido-card .card-top .numero { 
	font-size: 13px;
    margin-right: 9px;
}
.sml-pedido-card .card-top .loja {
	flex: 2;
	text-align: center;
	font-weight: 500;
	font-size: .95em; 
}
.sml-pedido-card .card-top .status {
	float: right;
	text-align: right;
	font-size: .85em;
	color: #666;
}
/* Linha 2: Data | Qtd. Itens | Total | Ver pedido */
.sml-pedido-card .card-bottom {
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
}
.sml-pedido-card .card-bottom .field {
	flex: 1;
	display: flex;
	flex-direction: column; 
}
.sml-pedido-card .card-bottom .field .label {
	font-size: .75em;
	color: #888;
	margin-bottom: .25em;
}
.sml-pedido-card .card-bottom .field .value {
	font-size: .85em; 
} 
.sml-pedido-card .card-bottom .field.ver-pedido .value a:hover {
	text-decoration: underline;
}
.sml-pedido-card .card-bottom .field .link {
    text-align: right;
}
.sml-pedido-card .card-bottom .field .link a {
    background: #ce4351;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 5px;
}

img.sml-thumb.sml-thumb--active {
    border: 6px solid #7ad453 !important;
} 
@media (max-width: 767px) {
	.sml-lojas-nav > ul {
		gap: 5px;
	}

	.sml-lojas-nav > ul li {
		margin-bottom: 10px;
	}

	nav.sml-filter-segmento > ul > li a {
		margin-bottom: 8px;
	}

	.sml-lojas-group >ul > li {
		width: 100%;
	} 

	.sml-loja-nome {
		font-size: 17px;
	}
	a.menu-link.sub-menu-link {
		line-height: 15px !important;
		padding: 10px 20px !important;
		margin: 0 !important;
	}

	.rtmega-menu-area .mobile-menu-area ul.rtmega-megamenu .menu-item.menu-item-has-children .sub-menu {
		padding: 0 0 0px 0 !important;
		border-bottom: 1px solid #f3f3f3;
		margin-bottom: 13px;
	}
	.produto_card .hover_button_buy {
		opacity: 1; 
		position: relative;
	}
}
 
/*────────────────────────────
 | Loader
 *───────────────────────────*/
#sml-loader{
    display:none;
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    background:rgba(255,255,255,.8);
    z-index:9999;
    text-align:center;
    font-size:2em;
    padding-top:20%;
    color:#333;
}

/*────────────────────────────
 | Cabeçalho (desktop)
 *───────────────────────────*/
.sml-header{
    display:none;            /* exibido em ≥601px */
    font-weight:bold;
    border:1px solid #ddd;
    font-size:12px;
    margin-top:30px;
}
.sml-header>.sml-thumb-header{
    flex:0 0 60px;           /* imagem + padding */
    padding:5px;
    background:#f1f1f1;
    text-align:center;
    border-right:1px solid #ccc;
}
.sml-header>.sml-col{
    flex:1 1 0;
    padding:4px 5px;
    border-right:1px solid #ccc;
    background:#f1f1f1;
}

/*────────────────────────────
 | Lista de produtos
 *───────────────────────────*/
.sml-produtos-list{
    display:flex;
    flex-direction:column;
}
.sml-produto-line{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    background:#fff;
    margin:-1px 0 0 0;
    border:1px solid #ddd;
}
.sml-thumb{
    flex:0 0 60px;
    padding:5px;
    border-right:1px solid #edeaea;
}
.sml-thumb img{
    width:50px;height:50px;
    object-fit:cover;
    display:block;
}
.sml-sem-thumb{
    display:inline-block;
    width:50px;height:50px;
    line-height:50px;
    text-align:center;
    background:#eee;
    color:#888;
    font-size:11px;
}
.sml-details{
    flex:1;
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
    font-size:.9em;
}
.sml-detail-item{
    border-right:1px solid #edeaea;
    padding:5px;
}
.sml-detail-label{font-weight:bold;}
.sml-galeria-thumb img{
    width:30px;height:30px;
    object-fit:cover;
    margin-right:4px;
    vertical-align:middle;
}

/*────────────────────────────
 | Desktop ≥601 px
 *───────────────────────────*/
@media (min-width:601px){
    .sml-header{display:flex;}
    .sml-details{display:flex;}
    .sml-detail-label{display:none;}
    .sml-detail-item{
        flex:1 1 0;
        margin-bottom:0;
        border-right:1px solid #edeaea;
    }

    /* Colunas maiores (+30%) */
    .sml-header>.sml-col:nth-child(2),
    .sml-details>.sml-detail-item:nth-child(2),
    .sml-header>.sml-col:nth-child(6),
    .sml-details>.sml-detail-item:nth-child(6),
    .sml-header>.sml-col:nth-child(7),
    .sml-details>.sml-detail-item:nth-child(7){
        flex:3 1 0;
    }

    /* Coluna Exibir fixa 60px */
    .sml-col-exibir,
    .sml-detail-exibir,
	.sml-col.sml-col-exibir{
        flex:0 0 60px;
    }
}

/* Tablet 601–900px: grid 3 colunas */
@media (min-width:601px) and (max-width:900px){
    .sml-details{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        grid-gap:8px;
    }
}

/* Mobile ≤600px */
@media (max-width:600px){
    .sml-header{display:none;}
    .sml-details{
        display:grid;
        grid-template-columns:1fr 1fr;
        grid-gap:8px;
    }
    .sml-detail-label{display:inline;}
}

/*────────────────────────────
 | Paginação
 *───────────────────────────*/
.sml-pagination{
    margin-top:1em;
    text-align:center;
}

/*────────────────────────────
 | Toggle Publicação
 *───────────────────────────*/
.sml-toggle{
    position:relative;
    display:inline-block;
    width:40px;height:20px;
    vertical-align:middle;
}
.sml-toggle input{opacity:0;width:0;height:0;}
.sml-slider{
    position:absolute;
    cursor:default;
    top:0;left:0;right:0;bottom:0;
    background:#ccc;
    transition:.3s;
    border-radius:20px;
}
.sml-slider:before{
    content:"";
    position:absolute;
    height:16px;width:16px;
    left:2px;bottom:2px;
    background:#fff;
    transition:.3s;
    border-radius:50%;
}
.sml-toggle input:checked + .sml-slider{background:#4caf50;}
.sml-toggle input:checked + .sml-slider:before{transform:translateX(20px);}
.sml-toggle input[disabled] + .sml-slider{opacity:.5;cursor:progress;}
.sml-toggle-item{padding-left:10px;}

/*────────────────────────────
 | Botões de ação
 *───────────────────────────*/
.sml-actions-item a{
    display:inline-block;
	padding: 2px 4px;
    margin: 0;
    border:1px solid #0073aa;
    background:#0073aa;
    color:#fff;
    font-size:12px;
    text-decoration:none;
    border-radius:3px;
}
.sml-actions-item a:hover{background:#006799;}

@media (min-width:768px){  
	.elementor-element.elementor-element-8c16dbf.elementor-widget__width-initial.elementor-widget.elementor-widget-text-editor{
		display: none; 
	}  
	ul#menu-1-ce78e94 > :nth-child(4), 
	ul#menu-1-ce78e94 > :nth-child(5) , 
	ul#menu-1-ce78e94 > :nth-child(6) , 
	ul#menu-1-ce78e94 > :nth-child(7) , 
	ul#menu-1-ce78e94 > :nth-child(8) , 
	ul#menu-1-ce78e94 > :nth-child(9)  , 
	ul#menu-1-ce78e94 > :nth-child(10), 
	ul#menu-1-ce78e94 > :nth-child(11), 
	ul#menu-1-ce78e94 > :nth-child(12), 
	ul#menu-1-ce78e94 > :nth-child(13)  {
		display: none;
	}
	li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children {
		display: block !important;
	}
}
@media (min-width:1085px){ 
	.elementor-element.elementor-element-8c16dbf.elementor-widget__width-inherit.elementor-widget.elementor-widget-text-editor {
		display: none; 
	}    
	ul#menu-1-ce78e94 ul li:nth-child(1) {
		display: none;
	}
	ul#menu-1-ce78e94 > :nth-child(4)   {
		display: block;
	}
} 
@media (min-width:1210px){ 
	.elementor-element.elementor-element-8c16dbf.elementor-widget__width-initial.elementor-widget.elementor-widget-text-editor{
		display: none; 
	} 
	ul#menu-1-ce78e94 ul li:nth-child(2) {
		display: none;
	}   
	ul#menu-1-ce78e94 > :nth-child(5)   {
		display: block;
	}
} 
@media (min-width:1310px){ 
	.elementor-element.elementor-element-8c16dbf.elementor-widget__width-initial.elementor-widget.elementor-widget-text-editor {
		display: block !important; 
	}   
	ul#menu-1-ce78e94 ul li:nth-child(3) {
		display: none;
	}
	ul#menu-1-ce78e94 > :nth-child(6)   {
		display: block;
	}
}  
@media (min-width:1515px){ 
	ul#menu-1-ce78e94 ul li:nth-child(4) {
		display: none;
	}
	ul#menu-1-ce78e94 > :nth-child(7)   {
		display: block;
	}
}  
@media (min-width:1650px){ 
	ul#menu-1-ce78e94 ul li:nth-child(5){
		display: none;
	}
	ul#menu-1-ce78e94 > :nth-child(8)   {
		display: block;
	}
} 
@media (min-width:1730px){ 
	ul#menu-1-ce78e94 ul li:nth-child(6){
		display: none;
	}
	ul#menu-1-ce78e94 > :nth-child(9)   {
		display: block;
	}
} 

@media (min-width:1830px){ 
	ul#menu-1-ce78e94 ul li:nth-child(7)  {
		display: none;
	} 
	ul#menu-1-ce78e94 > :nth-child(10)   {
		display: block;
	}
} 

@media (min-width:1890px){  
	li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.menu-item-11608 {
		display: none !important;
	}
	ul#menu-1-ce78e94 > :nth-child(11)   {
		display: block;
	}
}  