.loading-rotate {
  animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

html {
    height  : 100%;
    overflow: hidden;
    position: relative;
}
body {
    height  : 100%;
    overflow: auto;
    position: relative;
}



/* unvisited link */
a.autocomplete_nav:link {
  color: black;
  text-decoration:none;
}

/* visited link */
a.autocomplete_nav:visited {
  color: gray;
  text-decoration:none;
}

/* mouse over link */
a.autocomplete_nav:hover {
  color: hotpink;
  text-decoration:none;
}

/* selected link */
a.autocomplete_nav:active {
  color: gray;
  text-decoration:none;
}

.bo_e{
	transition:all 0.2s ease;
}

textarea:focus, input:focus{
    outline: none;
}

*:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.form_guardar_button {
    background-color: #e7e7e7;
    border: none;
    color: black;
    padding: 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
	transition: all 0.5s;
	cursor: pointer;
}

.form_guardar_button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.form_guardar_button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.form_guardar_button:hover span {
  padding-right: 25px;
}

.form_guardar_button:hover span:after {
  opacity: 1;
  right: 0;
}

.form_guardar_button:active {
   animation:pressed_btn 0.5s ease;
}


@keyframes pressed_btn{
	
	0%{
		transform:scale(1);
		opacity:1;
	}
	
	65%{
		transform:scale(0.85);
		opacity:1;
	}
	
	100%{
		transform:scale(1);
		opacity:1;
	}
}

.form_eliminar_button {
    background-color: black;
    border: none;
    color: white;
    padding: 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
	transition: all 0.5s;
	cursor: pointer;
}

.form_eliminar_button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.form_eliminar_button span:after {
  content: 'x';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.form_eliminar_button:hover span {
  padding-right: 25px;
}

.form_eliminar_button:hover span:after {
  opacity: 1;
  right: 0;
}


.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.cat_nav a:link { color: #ED1C24; }
.cat_nav a:visited { color: #777777; }
.cat_nav a:hover { color: #230606; }
.cat_nav a:active { color: #1a1a1a; }

.marca_nav a div:link { color: #ffffff; }
.marca_nav a div:visited { color: #CAC5C5; }
.marca_nav a div:hover { color: #6D6C6C; }
.marca_nav a div:active { color: #1a1a1a; }

.marca_nav{
	padding:2px;
	margin-bottom:12px;
}
.cat_nav{
	padding:2px;
	margin-bottom:12px;
}

textarea:focus, input:focus{
    outline: none;
}

*:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.form_accept_button {
    background-color: #e7e7e7;
    border: none;
    color: black;
    padding: 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
	transition: all 0.5s;
	cursor: pointer;
}

.form_accept_button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.form_accept_button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.form_accept_button:hover span {
  padding-right: 25px;
}

.form_accept_button:hover span:after {
  opacity: 1;
  right: 0;
}

.form_accept_button:active {
   animation:pressed_btn 0.5s ease;
}


@keyframes pressed_btn{
	
	0%{
		transform:scale(1);
		opacity:1;
	}
	
	65%{
		transform:scale(0.85);
		opacity:1;
	}
	
	100%{
		transform:scale(1);
		opacity:1;
	}
}

.form_cancel_button {
    background-color: black;
    border: none;
    color: white;
    padding: 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
	transition: all 0.5s;
	cursor: pointer;
}

.form_cancel_button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.form_cancel_button span:after {
  content: 'x';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.form_cancel_button:hover span {
  padding-right: 25px;
}

.form_cancel_button:hover span:after {
  opacity: 1;
  right: 0;
}

.feat-rel{
	position:relative;
	display:inline-block;
	width:calc(44vw);
	height:calc(73vh / 3);
}

#menu_btn{
	height:80px;
	width:80px;
}

.right-rel{
	position:relative;
	display:inline-block;
	text-align:center;
	float:right;
}

.top-fixed{
	position:fixed;
	top:0px;
	left:0px;
	z-index:600;
}
#search_container{
	max-width:430px;
}
#top_menu{
	text-align:center !important;
}

@media only screen and (max-width:330px){
	.autoComplete_wrapper > input{
		width:4rem;
	}
}

@media only screen and (min-width:781px){
	
	.header_btn{
		padding:10px;
	}
    #mm_btn [style]{
		display:none !important;
	}
	#top_menu{
		height:auto;
	}
	#banner_top_v_spacer{
		height:calc(50px);
	}
	#search_input{
		max-width:320px;
		width:30vw;
	}
	#cat_left_spacer{
		width:40px;
	}
	
	#marca_btn{
		display:inline-block !important;
	}
	#cat_btn{
		display:inline-block !important;
	}
}
@media only screen and (min-width:1501px){
	#marcas_y_cats_list_container{
		grid-template-columns:20% 20% 20% 20% 20%;
	}
}
@media only screen and (min-width:781px) and (max-width:1500px){
	#marcas_y_cats_list_container{
		grid-template-columns:25% 25% 25% 25%;
	}
}
@media only screen and (min-width:420px) and (max-width:780px){
	.marca_nav{
		font-size:14px;
	}
	.cat_nav{
		font-size:14px;
	}
	#marcas_y_cats_list_container{
		grid-template-columns:30% 30% 30%;
	}
	
	#mg_menu_wrap{
		margin-top:7px;
	}
	.header_btn{
		padding:15px;
	}
    #mm_btn [style]{
		display:inline-block !important;
	}
	#top_menu{
		height:auto;
	}
	#banner_top_v_spacer{
		height:calc(50px);
	}
	#search_input{
		display:inline-block !important;
		width:26vw;
	}
	#cat_left_spacer{
		width:1px;
	}
	
	#marca_btn{
		display:none !important;
	}
	#cat_btn{
		display:none !important;
	}
	.top_spacer{
		display:inline-block !important;
	}
}
@media only screen and (min-width:490px){
	#search_container{
		display:inherit;
	}
}
@media only screen and (max-width:489px){
	
}
@media only screen and (max-width:1000px){
	
	#banner_container{
		width:100% !important;
		height:100% !important;
	}
	
}
@media only screen and (min-width:1001px){
	
	#banner_container{
		width:100% !important;
	}
	#banner_rand_wrap{
		width:100% !important;
		
	}
}

@media only screen and (min-width:590px){
	#logo_wrap_large{
		display:inherit;
	}
	#logo_wrap_small{
		display:none !important;
	}
}
@media only screen and (min-width:434px){
	
}
@media only screen and (max-width:433px){
	
	
}
@media only screen and (min-width:401px){
	#grid_scale_btn{
		display:inline-block !important;
	}
}
@media only screen and (max-width:400px){
	#grid_scale_btn{
		display:none !important;
	}
}
@media only screen and (min-width:590px){
	#banner_rand_wrap{
		display:grid;
		grid-template-columns:50% 50%;
		gap:4px;
	}
}
@media only screen and (max-width:589px){
	#logo_wrap_large{
		display:none;
	}
	#logo_wrap_small{
		display:inherit;
	}
	#banner_rand_wrap{
		display:grid;
		grid-template-rows:50% 50%;
		gap:4px;
	}
}
@media only screen and (min-width:1170px){
	#mg_main_buttons_wrap{
		display:inherit;
	}
	#mg_menu_wrap{
		display:none;
	}
	#mg_main_buttons_wrap{
		display:inherit;
	}
}
@media only screen and (max-width:1169px){
	#mg_main_buttons_wrap{
		display:none !important;
	}
	#mg_menu_wrap{
		display:inherit;
	}
	#mg_main_buttons_wrap{
		display:none;
	}
}

#marcas_search_input::placeholder{
	color:white;
}
#cats_search_input::placeholder{
	color:#ED1C24;
}
.main_btn{
	position:relative;
	display:inherit;
	
	width:auto;
	height:auto;
	cursor:pointer;
	padding:8px;
	z-index:10;
	background:transparent;
	color:#ffffff;
	font-family:'WorkSans-Medium';
	
	font-size:12px;
	text-transform:uppercase;
	transition:all 0.3s ease;
	
	align-items:center;
}
/*
.main_btn:hover{
  background:#ED1C24;
  color:white;
}
*/

.mobile_btn{
	cursor:pointer;
}

@media only screen and (max-width:419px){
	.marca_nav{
		font-size:12px;
	}
	.cat_nav{
		font-size:12px;
	}
	#marcas_y_cats_list_container{
		grid-template-columns:50% 50%;
	}
	.header_btn{
		padding:15px;
	}
    #mm_btn [style]{
		display:inline-block !important;
	}
	#banner_top_v_spacer{
		height:calc(50px);
	}
	#search_input{
		width:26vw;
	}
	#cat_left_spacer{
		width:1px;
	}
	
	#marca_btn{
		display:none !important;
	}
	#cat_btn{
		display:none !important;
	}
	
	.top_spacer{
		display:none !important;
	}
}



@font-face {
    font-family: "WorkSans-Medium";
    font-weight: 100;
    font-style: normal;
    src: url("../font/WorkSans-Medium.woff");
}

@font-face {
    font-family: 'gotham_boldregular';
    src: url('../font/gotham-bold-webfont.woff2') format('woff2'),
         url('../font/gotham-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'gotham_bookregular';
    src: url('../font/gotham-book-webfont.woff2') format('woff2'),
         url('../font/gotham-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/*
position:-webkit-sticky;
position:sticky;
*/
.complementary_nav_title{
	position:-webkit-sticky;
	position:sticky;
	top:64px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	width:100%;
	height:45px;
	float:left;
	
	font-size:24px;
	padding-top:5px;
	padding-bottom:5px;
	
	
	font-size:21px;
	
	z-index:350;
}
/*position:-webkit-sticky;*/
.complementary_nav_subtitle{
	position:-webkit-sticky;
	position:sticky;
	top:calc(65px + 55px);
	display:flex;
	align-items:center;
	justify-content:space-between;
	width:calc(100% - 6px);
	height:36px;
	
	font-size:24px;
	padding-top:5px;
	padding-left:6px;
	padding-bottom:5px;
	
	border-bottom:3px solid #333;
	
	font-family:gotham_bookregular;
	font-size:19px;
	
	background-color:#ED1C24;
	color:white;
	
	z-index:320;
}
.complementary_nav_a_wrap{
	position:-webkit-sticky;
	position:sticky;
	top:calc(65px + 55px + 100px);
}
	
.mini_pic{
	border-radius:8px;
}
#banner_middle_container{
	display:grid;
	grid-template-columns:50% 50%;
	gap:4px;
	padding-left:6px;
	padding-right:6px;
}
#banner_rand_container_left{
	border:0px solid #333333;
	border-radius:13px;
	display:grid;
	grid-template-columns:100%;
	gap:4px;
	width:calc(100% - 4px);
	height:calc(100% - 4px);
}
#banner_rand_container_right{
	display:grid;
	grid-template-columns:calc(50% - 4px) 50%;
	gap:4px;
	width:calc(100% - 4px);
	height:calc(100% - 0px);
}


.rpic_unit{
	border:0px solid #333333;
	border-radius:13px;
	width:calc(50% - 7px);
	height:calc(50% - 7px);
}
.od_qpic{
	position:relative;
	display:inline-block;
	width:calc(100% - 8px);
	height:calc(100% - 4px);
	margin:0px;
	border:0px solid #333333;
	border-radius:13px;
}
.main_yp_selector_container{
	position:relative;
	cursor:pointer;
	display:inherit;
	align-items:center;
	flex-wrap:inherit;
	width:200px;
	
	font-family:gotham_bookregular;
	font-size:14px;
}
.yp_selector_label_text{
	position:relative;
	margin-left:4px;
}

.marcas_input_placeholder::-webkit-input-placeholder {
    color:#ffffff;
}
.cats_input_placeholder::-webkit-input-placeholder {
    color:#ED1C24;
}
.banner_ini_w{
	position:absolute;
	display:inline-flex;
	align-items:center;
	justify-content: space-evenly;
	flex-wrap:nowrap;
	overflow-y:hidden;
	top:0px;
	left:calc(45%);
	width:50%;
	height:84%;
}
.banner_ini_w .mg_single_box{
	width:20vw;
}
.bannner_specs_text_div{
	font-size:12px;
	color:white;
	text-align:left;
	width:80%;
	margin-left:10px;
}
.banner_specs_w{
	width:16%;
}
@media only screen and (max-width:599px){
	.banner_ini_w{
		top: 14%;
		left: 0px;
		width: 100%;
		height: 84%;
	}

	.banner_ini_w .mg_single_box{
		width: 36vw;
		min-width: calc((80vw / 3) - 1px);
	}
	
	.banner_ini_w .mg_sb_anuncio_nombre{
		font-size:6px;
	}

	.banner_ini_w .mg_copyr_txt_mi,.banner_ini_w .mg_copyr_txt_garage{
		font-size:5px;
	}

	.banner_ini_w .mg_m_copyr_img{
		width: 10px;
    	height: 10px;
	}

	.banner_ini_w .mg_m_copyright_pic_container{
		left: calc(100% - 12px);
	}

	.banner_ini_w .spec_res_text{
		font-size:6px;
	}

	.banner_ini_w .mg_m_aid{
		font-size:6px;
	}

	.banner_ini_w .mg_m_precio_regular{
		font-size:6px;
		min-width:unset;
		top: calc(100% - 16px - 8px);
	}

	.banner_ini_w .mg_m_precio_oferta{
		font-size:6px;
		min-width:unset;
		top: calc(100% - 6px - 8px);
	}

	.bannner_specs_text_div{
		font-size:min(1.4vw,11px);
	}

	.banner_ini_w .cbox_like_container{
		transform: scale(0.7);
		left:-6px;
		top: calc(100% - 19px - 8px);
	}

	#categorias_de_marca_container .mg_single_box{
		width:41vw;
	}
	
}
@media only screen and (min-width:600px) and (max-width:999px){
	.banner_ini_w .mg_sb_anuncio_nombre{
		font-size:9px;
	}

	.banner_ini_w .mg_copyr_txt_mi,.banner_ini_w .mg_copyr_txt_garage{
		font-size:7px;
	}

	.banner_ini_w .mg_m_copyr_img{
		width: 14px;
    	height: 14px;
	}

	.banner_ini_w .mg_m_copyright_pic_container{
		left: calc(100% - 17px);
	}

	.banner_ini_w .spec_res_text{
		font-size:9px;
	}

	.banner_ini_w .mg_m_aid{
		font-size:9px;
	}

	.banner_ini_w .mg_m_precio_regular{
		font-size:9px;
		min-width:unset;
		top: calc(100% - 16px - 8px);
	}

	.banner_ini_w .mg_m_precio_oferta{
		font-size:9px;
		min-width:unset;
		top: calc(100% - 6px - 8px);
	}

	.bannner_specs_text_div{
		font-size:min(1.9vw,9px);
	}

	.banner_ini_w .cbox_like_container{
		transform: scale(0.7);
		left:-2px;
		top: calc(100% - 24px - 8px);
	}
}
@media only screen and (max-width:999px){
	#iname_od{
		font-size:min(4vw,32px);
	}
	#banner_od_strip_wrap{
		width:auto;
	}
	#banner_od_strip_wrap .mg_single_box{
		width: calc((90vw / 2) - 8px);
    	margin-right: 20px;
	}
	
	#banner_od_strip_wrap .cbox_like_container{
		transform: scale(0.5);
		left:-6px;
		top: calc(100% - 19px - 8px);
	}

	#fmas_wrap_sc .mg_single_box{
		width: calc((90vw / 2) - 8px);
    	margin-right: 20px;
	}

	#fmas_wrap_sc .cbox_like_container{
		transform: scale(0.5);
		left:-6px;
		top: calc(100% - 19px - 8px);
	}

	#tlike_wrap_sc .mg_single_box{
		width: calc((90vw / 2) - 8px);
    	margin-right: 20px;
	}

	#tlike_wrap_sc .cbox_like_container{
		transform: scale(0.5);
		left:-6px;
		top: calc(100% - 19px - 8px);
	}

}

@media only screen and (min-width:600px) and (max-width:1749px){
	
	
	.banner_ini_w .mg_sb_anuncio_nombre{
		font-size: min(1vw,10px);	
	}

	.banner_ini_w .cbox_like_container{
		transform: scale(1);
		left:4px;
		top: calc(100% - 26px - 8px);
	}

	.banner_ini_w .spec_res_text{
		font-size:7px;	
	}

	.bannner_specs_text_div{
		font-size:9px;
	}
	@media (orientation: portrait) {
		.banner_ini_w .mg_single_box{
			width: 34vw;
			min-width: calc((80vw / 3) - 1px);
		}
		.banner_ini_w{
			left: 0px;
			width: 100%;
			margin-top: 12%;
		}
	}
	@media (orientation: landscape) {
		.banner_ini_w .mg_single_box{
			width:14vw;
			min-width: calc((64vw / 4) - 4px);
		}
		.banner_ini_w{
			left: 47%;
			width: 50%;
		}
	}
	#banner_od_strip_wrap{
		width:auto;
	}
	#banner_od_strip_wrap .mg_single_box{
		width: calc((100vw / 3) - 8px);
    	margin-right: 30px;
	}

	#fmas_wrap_sc .mg_single_box{
		width: calc((90vw / 4) - 8px);
    	margin-right: 20px;
		max-width:350px;
	}

	#tlike_wrap_sc .mg_single_box{
		width: calc((90vw / 4) - 8px);
    	margin-right: 20px;
		max-width:350px;
	}
}

@media only screen and (min-width:1750px){
	.banner_ini_w .mg_single_box{
		width:20vw;
		min-width: calc((90vw / 7) - 4px);
	}
	#fmas_wrap_sc .mg_single_box{
		width: calc((90vw / 8) - 8px);
    	margin-right: 20px;
		max-width:350px;
	}
	#tlike_wrap_sc .mg_single_box{
		width: calc((90vw / 8) - 8px);
    	margin-right: 20px;
		max-width:350px;
	}
}

.cat_title_right{
	display:inline-block;
	flex-wrap:wrap;
	justify-content:center;
	align-items:flex-start;
	width:36px;
	font-family:gotham_bookregular;
	font-size:19px;
	height:auto;
	background-color:#ED1C24;
	color:white;
	text-align:left;
	padding-bottom:0px;
}

#marcas_y_cats_list_container{
	justify-content:center;
}
#banner_od_strip_wrap .mg_single_box{
	margin-left:30px;
}

.spec_in_left,.spec_in_right{
	max-width:43%;
	word-break: break-word;
}
.spec_in_left{
	text-align: left;
}
.spec_in_right{
	text-align: right;
}