@charset "UTF-8";
/*##############################################################################
#	Derechos de autor y Propiedad Intelectual para Programación y Diseño Web.
#	Todos los derechos de autor y propiedad intelectual de la programación y diseño web
#	presentes en este sitio web y sus componentes, incluyendo, pero no limitado a, código
#	fuente, imágenes, gráficos, logotipos, textos y cualquier otro elemento creativo, 
#	son propiedad exclusiva de NETSOLEX - por autor ANATOLIY GAYCHENYA.
#
#	Estos elementos están protegidos por las leyes de derechos de autor y otras 
#	leyes y tratados internacionales de propiedad intelectual. Cualquier uso no autorizado 
#	de los mismos, incluyendo la reproducción, distribución, modificación o divulgación pública, 
#	está estrictamente prohibido y puede dar lugar a acciones legales y reclamaciones por daños y perjuicios.
#
#	Además, cualquier programa o software desarrollado por NETSOLEX para la programación y diseño web, 
#	así como cualquier base de datos, estructura de navegación o cualquier otra característica única 
#	de este sitio web, también están protegidos por derechos de autor y propiedad intelectual.
#
#	Se otorga un permiso limitado para utilizar y visualizar el contenido de este sitio web 
#	exclusivamente con fines personales o comerciales relacionados con el uso del sitio. 
#	Queda estrictamente prohibido cualquier otro uso, incluyendo la reproducción, distribución, modificación, 
#	exhibición pública o cualquier otro uso no autorizado.
#
#	Cualquier referencia a marcas comerciales, nombres de empresas u otros elementos protegidos 
#	por derechos de propiedad de terceros no implica ninguna afiliación o respaldo por parte de NETSOLEX.
#
#	Nos reservamos el derecho de ejercer todas las acciones legales disponibles para proteger nuestros 
#	derechos de autor y propiedad intelectual. Cualquier infracción será perseguida en la medida máxima permitida por la ley.
#
#	Si tiene alguna pregunta o desea solicitar permisos adicionales para el uso de nuestros materiales protegidos, 
#	le invitamos a ponerse en contacto con nosotros a través de los canales de comunicación proporcionados en este sitio web.
#
#	Copyright 2023 NETSOLEX. NETWORK SOLUTIONS EXCHANGE.
#	www.netsolex.com
#
#################################################################################*/
/*	File: content.style.css
 * NETSOLEX CSSbootstrap v1.0.0 (https://www.netsolex.com/)
 * Copyright 2024 Anatoliy Gaychenya.
 * Copyright 2024 NETSOLEX Inc.
 * Licensed under https://netsolex.com/license/
 */
html {
	box-sizing:border-box;
	-ms-text-size-adjust:100%
}
body {
	display: flex;
  	flex-direction: column;
	background-color:var(--white);
	width:100%;
	min-width: 320px;
	height: 100%;
	line-height:1.65;
	margin: 0;
    padding: 0;
	background-attachment:fixed;
	background-size:cover;
    font-family: var(--nx-f-family-sans-serif);
    font-weight: 400;
    font-size: 1rem;
    color: var(--black);
    overflow-x: hidden;
	transition: background-color 0.3s;
  -webkit-tap-highlight-color:transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
    *, body {
    -webkit-tap-highlight-color: transparent;
}
/* El wrapper (contenedor) se expande para usar todo el alto disponible */
.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 65vh;
  }
  /* El main crece para ocupar el espacio disponible */
  main {
	flex: 1;
	padding: 0.250rem;
  }
/*****##### UNTITLED #####*****/
*,::after,::before{box-sizing:border-box}
[class^=ti-]::before,[class*=" ti-"]::before{content:' • '}

*,*:before,*:after{box-sizing:inherit}

*{box-sizing:border-box;
	outline:none;
	-webkit-tap-highlight-color:transparent;
	-webkit-touch-callout:none;
	text-size-adjust:none}

  input::placeholder {
    color: #1a2331;
  }

::-moz-selection{background:#DD1868;color:#fffffff;}
::-webkit-selection{background:#DD1868;color:#fffffff;}
::-o-selection{background:#DD1868;color:#fffffff;}
::selection{background:#DD1868;color:#ffffff;}
/*****##### INTITLED #####*****/
/* Dark Theme */
body.dark-mode {
    background-color: #10141b;
    color: #dfe4d7;
}
.extra-switch {
    background-color: #f5f4ea;
    transition: background-color 0.3s;
}
body.dark-mode .extra-switch {
background-color: #efeddb;
}
/*** add site to search ***/
.add-site-notice{
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	background-color:#f3eeb4;
	padding:10px;
	border:1px solid #f6f661;
}
body.dark-mode .add-site-notice{
	background-color: #f8f167;
	border:1px solid #fbf243;
}
/* Dark Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 51px;
    height: 24px;
    margin: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0184e9;
}

input:checked + .slider:before {
    transform: translateX(26px);
}
/* Dark Switch Styles */
/**** Disabled elements ***/
.section-disabled{
    display:none !important;
    visibility: none !important;
}
/**** Disabled elements ***/
/*** Hidden Keyphrase Words ***/
.keyphrase-words{
	display:flex;
	visibility: hidden;
	margin-top:0px !important;
	margin-bottom:0px !important;
	font-size:9px !important;
	color:#fff;
	/*** Disable select text **/
	-webkit-user-select: none; /* Safari */
  	-ms-user-select: none; /* IE 10 and IE 11 */
 	 user-select: none; /* Standard syntax */
}

a:focus {
    outline: 0!important;
}
a {
    font-family: "Helvetica Now Text Medium",Helvetica,Arial,sans-serif;
    color: inherit;
    font-weight:400;
    text-decoration: none;
    background-color: transparent;
}
a:hover{
    color:#f81e13;
}

/*** Requiered input text and password ***/
/* Custom radio button */
input[type="radio"] {
  width: 20px;  /* Width */
  height: 20px; /* Height */
  cursor: pointer; /* Change cursor to pointer */
}

/* Hide default radio button */
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%; /* Makes it a circle */
  outline: none;
  border: 2px solid #555; /* Border color */
background:#ffffff;
margin-right: 10px;
position: relative;
top: 5px;
}
/* Custom radio button checked state */
input[type="radio"]:checked {
  background-color: #555; /* Background color when checked */
}
input[type="text"]{
appearance: none;
border-radius: 25px;
border: 1px solid #ccc;
outline: none;
background: #ffffff;
margin: 5px;
position: relative;
top: 0px;
padding: 8px 15px;
font-size: 1rem;
color: #666;
}
input[type="text"]:focus {
  border: 1px solid #90c5fd;
  border-color: #007BFF; /* Change border color when selected */
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.35); /* Optional: add a glow effect */
  }

/* Style for required input fields that are empty */
input[type="text"].required-empty {
  border-color: #FB9CC0;
  background-color: rgba(255, 138, 177, 0.5);
  box-shadow: 0 0 20px rgba(251, 18, 97, 0.5);
  color: #000;
}

input[type="password"]{
appearance: none;
border-radius: 25px;
outline: none;
border: 1px solid #d2d0d0;
background: #ffffff;
margin: 5px;
position: relative;
top: 0px;
padding: 8px 15px;
font-size: 1rem;
color: #666;
}
input[type="password"]:focus {
    border-color: #FF0070; /* Change border color when selected */
    box-shadow: 0 0 5px rgba(255,0,147,0.50); /* Optional: add a glow effect */
  }
input[type="password"].required-empty {
  border-color: #FB9CC0;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(255, 138, 177, 0.5);
  box-shadow: 0 0 20px rgba(251, 18, 97, 0.5);
  color: #000;
}

input[type="submit"]{
	max-width:210px;
	padding:8px 32px;
	background:#fff;
	border:1px solid #01abf4;
	color:#222;
	text-align:center;
	cursor: pointer;
	margin-top:12px;
	border-radius:25px;
	font-size:1rem;
	font-weight:400;
}
/*** Requiered input text and password ***/

/**** Hero Title Animation***/
@keyframes slideInFromLeft {
	0% {
	  transform: translateX(-33%);
		opacity: 0.05;
	  -moz-transition: opacity 0.05s;
	  -webkit-transition: opacity 0.05s;
	  -o-transition: opacity 0.05s;
	}
	100% {
	  transform: translateX(0);
		opacity: 1;
		-moz-transition: opacity 1s;
	  -webkit-transition: opacity 1s;
	  -o-transition: opacity 1s;
	}
  }
  .animtooltiptext {
	visibility: visible;
	  animation: 1.2s ease-in-out 0s 1 slideInFromLeft;
  }
  
  .result-query{
		display:flex;
		flex-direction: row;
		align-content: center;
		justify-content: center;
		font-weight: 300;
		font-size: 0.850rem;
  }
  .result-content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: baseline;
  	}
	.query-site-row{
		display:flex;
		flex-direction: column;
		margin-bottom: 22px;
		text-align: left;
	}
	.title_link_row{
		display:flex;
		flex-direction:row;
		align-content:left;
		}
		.fa-add-page{
			position:relative;
			top:2px;
			font-size:20px;
			font-weight:300 !important;
			margin-right:8px
		}
		.fa-book-pages{
			position:relative;
			top:4px;
			font-size:24px;
			font-weight:300 !important;
			margin-right:8px
		}
		.fa-arrow-left{
			position:relative;
			top:3px;
			font-size:26px;
			font-weight:300 !important;
			margin-right:9px;
		}
		.fa-arrow-right{
			position:relative;
			top:3px;
			font-size:26px;
			font-weight:300 !important;
			margin-left:9px;
		}
		.current-page{
			display: inline-flex;
			background-color: #e8e5e5;
			padding: 0px 8px;
			color: #000;
			border-radius: 5%;
		}
		a.nav-hdr-link:link{
			display: inline-block;
			line-height: 1.4;
			font-size: 0.850rem;
			font-weight: 400;
			text-decoration: none;
			padding-bottom:3px;
			color: inherit;
		}
		a.nav-hdr-link:hover{
			color:#ffffff;
			text-decoration: underline;
		}
		a.nav-hdr-link:viisited{
			color:#ffffff;
			text-decoration: underline;
		}

	a.qry_title:link{
	display: inline-block;
	line-height: 1.4;
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom:3px;
	color: inherit;
	}
	a.qry_title:active{
		color:#E4006F;
	}
	a.qry_title:hover{
		color:#7a5ef7;
		text-decoration: underline;
	}
	body.dark-mode a.qry_title:hover{
		color:#f4ce01;
		text-decoration: underline;
	}
	a.qry_title:visited{
		color:#947ef7;
	}
	body.dark-mode a.qry_title:visited{
		color:#f4ce01;
	}
	a.qry_title:visited:hover{
		color:#7a5ef7;
	}
	body.dark-mode a.qry_title:visited:hover{
		color:#f4ce01;
	}
	.qry_description{
		font-size:0.880rem;
		line-height:1.6;
		color: inherit;
	}
	.qry_url{font-size:0.800rem;
	color:#43a1ff;
}
a.qry_more_results:link{
	font-size: 0.800rem;
	color: inherit;
	text-decoration: none;
}
a.qry_more_results:hover{
	font-size: 0.800rem;
	color: #7a5ef7;
	text-decoration: none;
}
  .arrow-ico{
    width: 26px;
height: 26px;
font-weight: 300 !important;
position: relative;
top: 7px;
margin-right: 6px;
z-index: -1;
}
/*** query search form ***/
.query-form{
	width: 100%;
	max-width: 540px;
    margin-bottom:20px;
  }
  .search-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
    padding: 1px 8px;
    background-color: #ffffff;
	  width:100%;
    max-width: 540px;
    box-shadow: 0px 2px 20px -4px rgba(0,0,0,0.4);
  }
  @media only screen and (max-width:420px){
	.search-wrapper {
		max-width: 380px;
	width:100%;
	}
  }

  .search-wrapper input[type="text"] {
    flex: 1;
    border: none;
    background-color: transparent;
    padding: 4px 5px 4px 12px;
    border-radius: 24px;
    border: 1px solid transparent;
    font-size: 16px;
    outline: none;
  }

  .search-wrapper button {
    background: none;
    border: none;
    padding: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
  }
  @media only screen and (max-width:420px){
    .search-wrapper input[type="text"] {
      max-width:310px;
      }
    }
@media only screen and (max-width:360px){
	.search-wrapper input[type="text"] {
		max-width:260px;
	  }
	.search-wrapper button {
		background: none;
		border: none;
		padding: 10px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		right: 23px;
	  }
  }
  .search-wrapper button svg {
    width: 20px;
    height: 20px;
    fill: #555;
  }
/*** query search form ***/
  /* Ocultar el botón submit original */
  form input.button {
    display: none;
  }

/*** result search query report ***/
#result_report {
    text-align:center;
    padding:3px;
    background-color:#e5ecf9;
    font-weight: bold;
    margin-bottom:14px;
}

.idented {
    margin-left:30px;
}

#did_you_mean {
    font-size: 14px;
    text-align:center ;
    margin:10px;
}

/* CSS data for autocomplete */
#keyword {
    width: 320px;
    font-size: 1em;
}

#sresults {
    width: 300px;
	position: absolute;
	background-color: #eeebeb;
	text-align: left;
	box-shadow: 1px 6px 24px rgba(0, 0, 0, 0.6);
	margin-left: 23px;
}

#sresults .item {
    padding: 3px 0 3px 10px;
    font-family: Helvetica;
    border-bottom: 1px solid #c0c0c0;
	border-left:4px solid transparent;
    color: #222;
}

#sresults .item:last-child {
    border-bottom: 0px;
}

#sresults .item:hover {
    background-color: #e0dddd;
	border-left:4px solid #0166ff;
	color:#0166ff;
    cursor: pointer;
}

/*** result search query report ***/
/* Sidebar Option Botón Hamburger */
.hamburger {
	position: absolute;
	top: 25px;
	right: 40px;
	z-index: 1; /* por debajo del sidebar */
	cursor: pointer;
	transition: transform 0.4s ease-in-out;
  }

  .hamburger:hover {
	transform: rotate(180deg);
  }

  .hamburger span {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px 0;
	background-color: #333222;
	border-radius: 0px;
  }

  /* Sidebar derecho */
.sidebar {
height: 100%;
width: 0;
position: fixed;
top: 0;
right: -1px;
overflow: hidden; /* oculta contenido cuando cerrado */
transition: width 0.4s ease-in-out;
z-index: 999;
background-color: #f9f8f8;
border-left: 1px solid #cccccc;
}

.sidebar.open {
width: 300px;
border-left: 1px solid #ccc;
}

/* Contenido fijo */
.sidebar-content {
width: 300px; /* ancho fijo igual al sidebar */
height: 100%;
box-sizing: border-box;
padding: 20px;
position: absolute;
top: 0;
right: 0;
}

  /* Botón de cerrar */
  .close-btn {
    border: none;
    cursor: pointer;
    padding: 6px 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
    background: #d7d2d2;
    border-radius: 50%;
    width: 48px;
    height: 48px;
  }

  .close-btn:hover {
	transform: rotate(180deg);
  }

  .close-btn svg {
	width: 35px;
	height: 35px;
	fill: #5b5757;
  }
/* Sidebar Option Botón Hamburger */
/******** Scroll to Top************/
.hc_scrollup{
	border-radius:4px 4px 0 0;
	bottom:0;
	display:none;
	font-size:30px;
	font-weight:600;
	height:40px;
	opacity:1;
	position:fixed;
	right:12px;
	text-align:center;
	width:50px;
	overflow:hidden;
	z-index:999;
	box-shadow: 12px 0px 12px rgba(0,0,0,0.33);
			}

	.hc_scrollup:hover{opacity:1;color:#000}
	.hc_scrollup i{font-size:24px}cite{font-style:italic !important}
	.hc_scrollup{background:none repeat scroll 0 0 #B73324;color:#fff}
/******** Scroll to Top************/
/*** Begin Framework CSS settings ***/

.nx-toolbar{
    padding-top: 3px;
    padding-bottom: 2px;
    box-sizing: content-box;
    position: relative;
    }
    
.nx-toolbar-default{
  color: #fff;
  font-size: 13px;
  font-weight: 400;
    }
/*********** Header Main Navigation **********/
.header-navigation{
    display: flow-root;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 112px){
    .header-navigation{
    display:none !important;
}
}

.main-navigation{
margin-left: auto;
margin-right: auto;
}

/* Menú estático */
.static-menu {
    position: relative;
}

/* Menú sticky (pegajoso) */
.sticky-menu {
    position: -webkit-sticky; /* Para navegadores webkit */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Menú adhesivo (que aparece al desplazarse) */
.adhesive-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
}

body.scrolled .adhesive-menu {
    top: 0;
}

.sticky-header {
  /*position: sticky;*/ /* Apply the sticky positioning */
  top: 0; /* Stick the element to the top of the viewport */
  z-index: 100; /* Ensure the navbar is above other content */
}
.sticky-header nvnx-element {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar {
        padding: 0;
        width: 100%;
    }
    .logo-wrapper{
        margin-left: auto;
        margin-right: auto;
    }
    .logo-wrapper a{
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: .25em;
        box-sizing: border-box;
        min-height: 50px;
    }

@media only screen and (max-width: 1365px){
        .navbar {
        display: none !important;
    }
    }
    .nav-menu-default {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
    }
    @media only screen and (max-width: 1365px){
        .nav-menu-default {
        display:none !important;
    }
    }
    .nav-menu-default li {
        margin: 0px;
    }
    .nav-menu-default li a {
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.05rem;
        padding: 5px 16px;
        display: block;
        cursor: pointer;
    }
    .nav-menu-default li a:hover {
        /*background-color: #f8f8f8;
        transition: .4s ease-in-out;
        transition-property: background-color;*/
        
    }
    .nav-menu-default li.long-nav  a{
        /*border-top: 1px solid transparent;*/
    }

    .nav-menu-default li.long-nav:hover .subnav-dropdown-box{
        /*border-top: 1px solid #e0444c;
        transition: .5s ease-in-out;*/
        display: block !important;
        position: absolute;
        width: 130px;
        height: auto;
        padding: 0px 4px;
        background: transparent;
        border: 0px solid #ccc;
        top: 40px;
        z-index: 1020;
    }

    /***** SubNav Menu Box Dropdown *********/
    .subnav-dropdown-box{
        display: none;

    }
    .subnav-dropdown{
        position: relative;
        min-width: 320px;
        height: auto;
        padding: 0px;
        margin-top: 25px;
        left: 0;
        background-color: #f8f8f8;
        opacity: 1;
        color: #333;
        border: solid transparent;
        border-radius: 0 0 9px 9px;
        z-index: 1020;
        box-shadow: 0 15px 40px 0 rgba(0,0,0,.34);
    }
/***** SubNav Menu Box Dropdown *********/
/*****  SubDropDown Items *******/
    .sub-dropdown-item{
        list-style-type: none;
        padding: 10px 0;
    }
    .sub-dropdown-item-link{
        padding: 4px 2px;
    }
    .sub-dropdown-item-link:hover{
        padding: 4px 2px;
        background: #fff;
    }
    .sub-dropdown-item-link a{
        font-size: 13px !important;
        color: #333;
        font-weight: 400;
    }
    .sub-dropdown-item-link a:hover{
        color: #eb2443;
    }
/*****  SubDropDown Items *******/
/********** NavBar Dropdown Parent Icon *********/
    .nav-menu-default li.long-nav .navbar-parent-icon {
        margin-left: 4px;
        width: 12px;
        height: 12px;
        transition: transform .3s ease-in-out;
    }
    .nav-menu-default li.long-nav:hover .navbar-parent-icon {
        transform: rotateX(180deg);
        transition: transform .3s ease-in-out;
    }
    .nx-parent-icon {
        margin: 0;
        border: none;
        border-radius: 0;
        overflow: visible;
        font: inherit;
        color: inherit;
        text-transform: none;
        padding: 0;
        background-color: transparent;
        display: inline-block;
        fill: currentcolor;
        line-height: 0;
    }
    .nx-parent-icon-hidden {
        display: none;
    }
/********** NavBar Dropdown Parent Icon ************/
/********* NAV ITEM LINE *********/
    .nav-menu-default li.long-nav .nav-item-line {
    display: block;
    width: 100%; /* La línea tendrá el ancho completo */
    height: 1px;
    background-color: rgba(235,36,67,0); /* Inicialmente transparente */
    opacity: 0;
    transform: scaleX(0); /* Escala inicial: 0 (invisible) */
    transform-origin: center; /* Punto de origen: centro */
    transition: .4s ease-in-out; /* Transición suave */
    transition-property: transform, opacity, background-color;
}

.nav-menu-default li.long-nav:hover .nav-item-line {
    transform: scaleX(1); /* Se expande desde el centro hacia ambos lados */
    background-color: rgba(235,36,67,1); /* Color visible al hacer hover */
    opacity: 1; /* Aparece gradualmente */
}
/*********** Header Main Navigation **********/
/*** End Framework CSS Settings ***/