/*--------------------------------------------------------------------------
[Table of contents]

- Normalize
- Bootstrap
- Font Awesome
- Web Slide
- Header Styles
--------------------------------------------------------------------------*/

/*==========================================================
                        NORMALIZE
==========================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

.scrollable-element {
	scrollbar-width: thin;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input[type='button'] {
  background: none;
  border: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  outline: none;
  outline-offset: 0;
  overflow: visible;
  cursor: pointer;
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input[type='button']::-moz-focus-inner {
  border: none;
  padding: 0;
}

input[type='text'],
input[type='time'],
input[type='url'],
input[type='month'],
input[type='week'],
input[type='email'],
input[type='color'],
input[type='datetime'],
input[type='datetime-local'],
input[type='range'],
input[type='search'],
input[type='tel'],
input[type='date'],
input[type='password'],
input[type='number'] {
  outline: none;
  /*background-color: transparent;*/
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  vertical-align: baseline;
  box-shadow: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 300px;
}
.container:before, .container:after {
  display: table;
  content: "";
  line-height: 0;
}
.container:after {
  clear: both;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
		padding-left: 0px;
  	padding-right: 0px;
	}
}
@media (min-width: 992px) {
	.container {
		width: 970px;
		padding-left: 0px;
  	padding-right: 0px;
	}
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

/* Extra Normalize Changes */
.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 44px;
	padding-right: 44px;
}
.container-fluid:before, .container-fluid:after {
	display: table;
	content: "";
	line-height: 0;
}
.container-fluid:after {
	clear: both;
}

.row {
  margin-left: 0px;
  margin-right: 0px;
}
.row:before, .row:after {
  display: table;
  content: "";
  line-height: 0;
}
.row:after {
  clear: both;
}
.row-no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.row-no-gutter > [class*='col'] {
  padding-left: 0;
  padding-right: 0;
}


/* Bootstrap */

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	min-height: 1px;
	/* padding-left: 15px; */
	/* padding-right: 15px; */
}

.col-md-3, .col-md-2, .col-md-1 {
	margin: 0px;
	padding-right: 0px; 
	padding-left: 0px;
}

@media (min-width: 280px) {
	
	.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
		float: left;
	}
	
	.col-xs-1 { width: 8.33333%; }
	.col-xs-2 { width: 16.66667%; }
	.col-xs-3 { width: 25%; }
	.col-xs-4 { width: 33.33333%; }
	.col-xs-5 { width: 41.66667%; }
	.col-xs-6 { width: 50%; }
	.col-xs-7 { width: 58.33333%; }
	.col-xs-8 { width: 66.66667%; }
	.col-xs-9 { width: 75%; }
	.col-xs-10 { width: 83.33333%; }
	.col-xs-11 { width: 91.66667%; }
	.col-xs-12 { width: 100%; }
	
	.col-xs-offset-0 { margin-left: 0%; }
	.col-xs-offset-1 { margin-left: 8.33333%; }
	.col-xs-offset-2 { margin-left: 16.66667%; }
	.col-xs-offset-3 { margin-left: 25%; }
	.col-xs-offset-4 { margin-left: 33.33333%; }
	.col-xs-offset-5 { margin-left: 41.66667%; }
	.col-xs-offset-6 { margin-left: 50%; }
	.col-xs-offset-7 { margin-left: 58.33333%; }
	.col-xs-offset-8 { margin-left: 66.66667%; }
	.col-xs-offset-9 { margin-left: 75%; }
	.col-xs-offset-10 { margin-left: 83.33333%; }
	.col-xs-offset-11 { margin-left: 91.66667%; }
	.col-xs-offset-12 { margin-left: 100%; }
	
	.col-xs-clear { clear: left; }
	.col-xs-release { clear: none; }
  
}

@media (min-width: 768px) {
	
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
		float: left;
	}
	
	.col-sm-1 { width: 8.33333%; }
	.col-sm-2 { width: 16.66667%; }
	.col-sm-3 { width: 25%; }
	.col-sm-4 { width: 33.33333%; }
	.col-sm-5 { width: 41.66667%; }
	.col-sm-6 { width: 50%; }
	.col-sm-7 { width: 58.33333%; }
	.col-sm-8 { width: 66.66667%; }
	.col-sm-9 { width: 75%; }
	.col-sm-10 { width: 83.33333%; }
	.col-sm-11 { width: 91.66667%; }
	.col-sm-12 { width: 100%; }
	
	.col-sm-offset-0 { margin-left: 0%; }
	.col-sm-offset-1 { margin-left: 8.33333%; }
	.col-sm-offset-2 { margin-left: 16.66667%; }
	.col-sm-offset-3 { margin-left: 25%; }
	.col-sm-offset-4 { margin-left: 33.33333%; }
	.col-sm-offset-5 { margin-left: 41.66667%; }
	.col-sm-offset-6 { margin-left: 50%; }
	.col-sm-offset-7 { margin-left: 58.33333%; }
	.col-sm-offset-8 { margin-left: 66.66667%; }
	.col-sm-offset-9 { margin-left: 75%; }
	.col-sm-offset-10 { margin-left: 83.33333%; }
	.col-sm-offset-11 { margin-left: 91.66667%; }
	.col-sm-offset-12 { margin-left: 100%; }
	
	.col-sm-clear { clear: left; }
	.col-sm-release { clear: none; }  

}

@media (min-width: 992px) {
	
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
		float: left;
	}
	
	.col-md-1 { width: 8.33333%; }
	.col-md-2 { width: 16.66667%; }
	.col-md-3 { width: 25%; }
	.col-md-4 { width: 33.33333%; }
	.col-md-5 { width: 41.66667%; }
	.col-md-6 { width: 50%; }
	.col-md-7 { width: 58.33333%; }
	.col-md-8 { width: 66.66667%; }
	.col-md-9 { width: 75%; }
	.col-md-10 { width: 83.33333%; }
	.col-md-11 { width: 91.66667%; }
	.col-md-12 { width: 100%; }
	
	.col-md-offset-0 { margin-left: 0%; }
	.col-md-offset-1 { margin-left: 8.33333%; }
	.col-md-offset-2 { margin-left: 16.66667%; }
	.col-md-offset-3 { margin-left: 25%; }
	.col-md-offset-4 { margin-left: 33.33333%; }
	.col-md-offset-5 { margin-left: 41.66667%; }
	.col-md-offset-6 { margin-left: 50%; }
	.col-md-offset-7 { margin-left: 58.33333%; }
	.col-md-offset-8 { margin-left: 66.66667%; }
	.col-md-offset-9 { margin-left: 75%; }
	.col-md-offset-10 { margin-left: 83.33333%; }
	.col-md-offset-11 { margin-left: 91.66667%; }
	.col-md-offset-12 { margin-left: 100%; }
	
	.col-md-clear { clear: left; }
	.col-md-release { clear: none; }
 
}

@media (min-width: 1200px) {
  
	.col-lg-clear { clear: left; }
	.col-lg-release { clear: none; }
	
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { 
		float: left;
	}
	
	.col-lg-1 { width: 8.33333%; }
	.col-lg-2 { width: 16.66667%; }
	.col-lg-3 { width: 25%; }
	.col-lg-4 { width: 33.33333%; }
	.col-lg-5 { width: 41.66667%; }
	.col-lg-6 { width: 50%; }
	.col-lg-7 { width: 58.33333%; }
	.col-lg-8 { width: 66.66667%; }
	.col-lg-9 { width: 75%; }
	.col-lg-10 { width: 83.33333%; }
	.col-lg-11 { width: 91.66667%; }
	.col-lg-12 { width: 100%; }
	
	.col-lg-offset-0 { margin-left: 0%; }
	.col-lg-offset-1 { margin-left: 8.33333%; }
	.col-lg-offset-2 { margin-left: 16.66667%; }
	.col-lg-offset-3 { margin-left: 25%; }
	.col-lg-offset-4 { margin-left: 33.33333%; }
	.col-lg-offset-5 { margin-left: 41.66667%; }
	.col-lg-offset-6 { margin-left: 50%; }
	.col-lg-offset-7 { margin-left: 58.33333%; }
	.col-lg-offset-8 { margin-left: 66.66667%; }
	.col-lg-offset-9 { margin-left: 75%; }
	.col-lg-offset-10 { margin-left: 83.33333%; }
	.col-lg-offset-11 { margin-left: 91.66667%; }
	.col-lg-offset-12 { margin-left: 100%; }

}

/* Breakpoint XS */
@media (max-width: 576px) {
	.hidden-xs {
		display: none !important;
	}
	.xs-padding-top-bottom-0 {
		padding-top: 0;
		padding-bottom: 0;
	}
	.xs-padding-0 {
		padding: 0;
	}
	.xs-center {
		text-align: center;
	}
	.xs-margin-0 {
		margin: 0;
	}
}



/* Breakpoint XS */
@media (max-width: 575px) {
	.hidden-xs, .hidden-xs-down, .hidden-xs-up, .hidden-unless-xs {
		display: none !important;
	}
	.center-xs {
		text-align: center !important;
	}
}

/* Breakpoint SM */
@media (min-width: 576px) and (max-width: 767px) {
	.hidden-sm, .hidden-xs-up, .hidden-sm-down, .hidden-md-down, .hidden-lg-down, .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-unless-xs, .hidden-unless-md, .hidden-unless-lg, .hidden-unless-xl {
		display: none !important;
	}
	.center-sm {
		text-align: center !important;
	}
}

/* Breakpoint MD */
@media (min-width: 768px) and (max-width: 991px) {
	.hidden-md, .hidden-md-down, .hidden-lg-down, .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-lg, .hidden-unless-xl {
		display: none !important;
	}
	.center-md {
		text-align: center !important;
	}
}

/* Breakpoint LG */
@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-lg, .hidden-lg-down, .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up, .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-xl {
		display: none !important;
	}
	.center-lg {
		text-align: center !important;
	}
}

/* Breakpoint XL */
@media (min-width: 1200px) {
	.hidden-xl, .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up, .hidden-xl-up, .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-lg {
		display: none !important;
	}
	.center-xl {
		text-align: center !important;
	}
}


/* Font Awesome
 *
 * Source: https://cdnjs.com/libraries/font-awesome
 */
 
/* Version 5.12.2 */

/* Propiedades principales */

.fa-color-black {color:#000000}
.fa-color-white {color:#FFFFFF}
.fa-color-red {color:#f8d7da}
.fa-color-yellow {color:#fff3cd}
.fa-color-green {color:#d1e7dd}
.fa-color-blue {color:#cfe2ff}
.fa-color-gray {color:#333333}

.fa-semaforo-red {color:#FF3300}
.fa-semaforo-yellow {color:#FFFF66}
.fa-semaforo-green {color:#33CC33}
.fa-semaforo-blue {color:#1E90FF}
.fa-semaforo-gray {color:#CCCCCC}
.fa-semaforo-orange {color:#f69f24}

/* Icons */
/* Para buscar: https://fontawesome.com/icons?d=gallery&p=2&m=free */
.fa-angle-up:before{content:"\f106"}
.fa-angle-down:before{content:"\f107"}
.fa-angle-right:before{content:"\f105"}
.fa-angle-left:before{content:"\f104"}

.fa-angle-double-left:before{content:"\f100"}
.fa-angle-double-right:before{content:"\f101"}
.fa-angle-double-up:before{content:"\f102"}
.fa-angle-double-down:before{content:"\f103"}

.fa-arrow-left:before{content:"\f060"}
.fa-arrow-right:before{content:"\f061"}
.fa-arrow-up:before{content:"\f062"}
.fa-arrow-down:before{content:"\f063"}

.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}
.fa-check-circle:before{content:"\f058"} /*Yes*/
.fa-check-square:before{content:"\f14a"} /*Yes*/
.fa-times-circle:before{content:"\f057"} /*No*/
.fa-check-circle-o:before{content:"\f05d"} /*Check Circle*/
.fa-arrow-up-right-from-square:before{content:"\f08e"} /* Link */
 
.fa-plus:before{content:"\f067"}
.fa-minus:before{content:"\f068"}

.fa-window-close:before{content:"\f410"}
.fa-circle:before{content:"\f111"}
.fa-eye:before{content:"\f06e"}
.fa-suitcase:before{content:"\f0f2"}
.fa-search:before{content:"\f002"}
.fa-envelope-o:before{content:"\f0e0"}
.fa-phone:before{content:"\f095"}
.fa-instagram:before{content:"\f16d"}
.fa-facebook-square:before{content:"\f082"}
.fa-youtube:before{content:"\f167"}
.fa-whatsapp:before{content:"\f232"}
.fa-user-circle:before{content:"\f2bd"}
.fa-map-marker:before{content:"\f041"}
.fa-calendar:before{content:"\f073"}
.fa-bar-chart:before{content:"\f080"}
.fa-image:before{content:"\f03e"}
.fa-camera:before{content:"\f030"}
.fa-certificate:before{content:"\f0a3"}
.fa-gift:before{content:"\f06b"}
.fa-tags:before{content:"\f02c"}
.fa-lock:before{content:"\f023"}
.fa-square-xmark{content:"\f2d3"}
.fa-plane:before{content:"\f072"}
.fa-plane-arrival:before{content:"\f5af"}
.fa-plane-departure:before{content:"\f5b0"}
.fa-plane-slash:before{content:"\e069"}
.fa-globe:before{content:"\f57c"}
.fa-globe-africa:before{content:"\f57c"}
.fa-globe-asia:before{content:"\f57e"}
.fa-globe-americas:before{content:"\f57d"}
.fa-globe-europe:before{content:"\f7a2"}

.fa-route:before{content:"\f4d7"}
.fa-car-crash:before{content:"\f5e1"}
.fa-car:before{content:"\f1b9"}
.fa-hotel:before{content:"\f594"}
.fa-campground:before{content:"\f6bb"}
.fa-train:before{content:"\f238"}
.fa-monument:before{content:"\f5a6"}

.fa-shirt:before{content:"\f553"}
.fa-calendar-days:before{content:"\f073"}
.fa-stopwatch:before{content:"\f2f2"}
.fa-coins:before{content:"\f51e"}
.fa-money:before{content:"\f0d6"}
.fa-bank:before,.fa-university:before{content:"\f19c"}
.fa-landmark:before{content:"\f66f"}
.fa-wallet:before{content:"\f555"}
.fa-money-bill:before{content:"\f0d6"}
.fa-credit-card:before{content:"\f09d"}
.fa-cc-mastercard:before{content:"\f1f0"}
.fa-cc-visa:before{content:"\f1f1"}
.fa-file-signature:before{content:"\f573"}
.fa-file-invoice:before{content:"\f570"}
.fa-file-alt:before{content:"\f1c1"}
.fa-copy:before{content:"\f0c5"}
.fa-passport:before{content:"\f5ab"}

/* Icon Files */

.fa-upload:before{content:"\f093"}
.fa-camera:before{content:"\f030"} 
.fa-file-image:before{content:"\f1c5"}
.fa-file-video:before{content:"\f1c8"}
.fa-file-audio:before{content:"\f1c7"}
.fa-file-excel:before{content:"\f1c3"}
.fa-file-csv:before{content:"\f6dd"}
.fa-file-pdf:before{content:"\f1c1"}
.fa-file-alt:before{content:"\f15c"}
.fa-file-word:before{content:"\f1c2"}
.fa-file-html:before{content:"\f1c9"}

.fa-percentage:before{content:"\f541"}
.fa-copyright:before{content:"\f1f9"}
.fa-calendar-check:before{content:"\f274"}
.fa-plus-square:before{content:"\f0fe"}
.fa-heart:before{content:"\f004"}
.fa-eye:before{content:"\f06e"}
.fa-users:before{content:"\f0c0"}
.fa-sync-alt:before{content:"\f2f1"} /* Refresh */
.fa-info-circle:before{content:"\f05a"}
.fa-spinner:before{content:"\f110"}
.fa-question:before{content:"\f128"}
.fa-external-link-alt:before{content:"\f35d"}
.fa-save:before{content:"\f0c7"} 


/*
 * Plugin: Web Slide Navigation System
 * Demo Link: http://webslidemenu.uxwing.com/
 * Author: UXWing
 * License: http://codecanyon.net/licenses/standard
*/

/*--------------------------------------------------------------------------
[Table of contents]

01 Base CSS
02 Desktop CSS
03 Tab CSS
04 Mobile CSS
05 Additional Themes (Optional)
--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
|  01  Base CSS
--------------------------------------------------------------------------*/

.wsmenu * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
}
.wsmain html, .wsmain body, .wsmain iframe, .wsmain h1, .wsmain h2, .wsmain h3, .wsmain h4, .wsmain h5, .wsmain h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font: inherit;
	vertical-align: baseline;
	font-weight: normal;
	font-size: 12px;
	line-height: 18px;
	font-family: Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: antialiased;
	font-smooth: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: subpixel-antialiased !important;
	font-smoothing: subpixel-antialiased !important;
	font-smooth: subpixel-antialiased;
}
.wsmain .cl {
	clear: both;
}
.wsmain img, object, embed, video {
	border: 0 none;
	max-width: 100%;
}
.wsmain a:focus {
	outline: none !important;
}
.wsmain:before, .wsmain:after {
	content: "";
	display: table;
}
.wsmain:after {
	clear: both;
}

/*--------------------------------------------------------------------------
|  02 Desktop CSS
--------------------------------------------------------------------------*/

.wsmobileheader {
	display: none;
}
.overlapblackbg {
	display: none;
}
.smllogo {
	padding: 9px 0px 0px 0px;
	margin: 0;
	float: left;
	width: 5%;
}
.smllogo a {
	display: block;
	float: left;
	padding: 0px 0px 0px 0px;
}
/*.topmenusearch {
	float: right;
	width: 100%;
	height: 42px;
	position: relative;
	margin: 9px 0px 0px 0px;
}
.topmenusearch .searchicon {
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.topmenusearch input {
	width: 100%;
	position: relative;
	float: right;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	border: 0;
	padding: 0;
	margin: 0;
	text-indent: 15px;
	font-size: 12px;
	height: 42px;
	z-index: 2;
	outline: none;
	color: #7d7d7d;
	background-color: #e9ebef;
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.topmenusearch input:focus {
	color: #000;
}
.topmenusearch input:focus ~ .btnstyle {
	background-color: #424242;
	color: #fff;
	opacity: 0.9;
}
.topmenusearch input:focus ~ .btnstyle .fa {
	color: #fff;
}
.topmenusearch input:focus ~ .searchicon {
	opacity: 1;
	z-index: 3;
	color: #FFFFFF;
}
.topmenusearch .btnstyle {
	top: 0px;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 42px;
	line-height: 30px;
	z-index: 1;
	cursor: pointer;
	color: #fff;
	z-index: 1000;
	background-color: #eeeeee;
	border: solid 0px;
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
	-webkit-border-radius: 0px 2px 2px 0px;
	-moz-border-radius: 0px 2px 2px 0px;
	border-radius: 0px 2px 2px 0px;
}
.topmenusearch .btnstyle .fa {
	line-height: 38px;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #9c9c9c;
}
.topmenusearch .btnstyle:hover {
	background-color: #fff;
}*/
.wsmain {
	width: 100%;
	margin: 0 auto;
	padding: 0px 0px;
	max-width: 1300px;
}
.wsmenu {
	position:relative;
	font-family: Helvetica, sans-serif;
	font-size: 14px;
	padding: 0px 0px 0px 0px;
	margin: 0px auto;
	width: 95%;
	float: left;
	height: 60px;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.wsmenu-list {
	text-align: left;
	margin: 0 auto 0 auto;
	width: 100%;
	display: table;
	padding: 0px;
}
.wsmenu-list > li {
	text-align: center;
	display: block;
	margin: 0px;
	padding: 0px;
	float: left;
}
.wsmenu-list > .wscarticon > a .fa.fa-search,
.wsmenu-list > .wscarticon > a .fa.fa-shopping-basket {
	display: inline-block;
	font-size: 16px;
	line-height: inherit;
	margin-right: 5px;
	color: #7b7b7b;
}
.wsmenu-list > .wsshopmenu > a .fa.fa-angle-down {
	display: inline-block;
	font-size: 13px;
	line-height: inherit;
	margin-left: 11px;
	color: #7b7b7b;
}
.wsmenu-list li ul li a .fa.fa-angle-double-right {
	font-size: 12px;
	margin: 0 3px 0 -4px;
}
.wsmenu-list > li > a {
	display: block;
	color: #828181;
	padding: 0 26px 0 22px;
	line-height: 58px;
	text-decoration: none;
	position: relative;
}

.wsmenu-list > li:hover > a{color:#000;}
.wsmenu-list > li > .navtext {
	line-height: 16px;
	text-align: right;
	padding:14px 16px;
	margin:0px 10px;
}
.wsmenu-list > li > .navtext > span + span:after {
	color: #9e9e9e;
	content: "\f107";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	/*font-weight: 100;*/
	line-height: 10px;
	margin-left: 1px;
	position: relative;
	right: -8px;
	text-align: right;
	top: 1px;
}
.wsmenu-list > li > .navtext > span {
	display: block;
	font-size: 11px;
	text-align: left;
	white-space: nowrap;
	width: 100%;
	line-height: 16px;
	color: #9e9e9e;
}
.wsmenu-list > li > .navtext > span + span {
	white-space: nowrap;
	font-size: 12px;
	font-weight: bold;
	color: #555555;
}
.wsmenu-list li a:hover .arrow:after {
	border-top-color: #b3b3b3
}
.wsmenu-list li a.active .arrow:after {
	border-top-color: #b3b3b3
}
.wsmenu-list li:hover>a .arrow:after {
	border-top-color: #b3b3b3
}
.megamenu iframe {
	width: 100%;
	margin-top: 10px;
	min-height: 200px;
}
.megamenu video {
	width: 100%;
	margin-top: 10px;
	min-height: 200px;
}
/* 20200524 JBM Commented
.wsmenu-list > li.socialicon {
	float: left;
}
.wsmenu-list > li.socialicon a {
	width: 38px;
	padding: 0px 10px
}
.wsmenu-list > li.socialicon a .fa {
	font-size: 15px;
	color: #898d91;
	text-align: center;
}*/

/* My Account Dropdown
.wsmenu>.wsmenu-list>li>ul.sub-menu {
  position: absolute;
  top: 60px;
  z-index: 1000;
  margin: 0;
  padding: 0;
  min-width: 190px;
  background-color: #fff;
  border: solid 1px #eeeeee;
}
.wsmenu>.wsmenu-list>li>ul.sub-menu>li {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
}
.wsmenu>.wsmenu-list>li>ul.sub-menu>li>a {
	background-image: none;
	color: #666666;
	border-right: 0 none;
	text-align: left;
	display: block;
	line-height: 22px;
	padding: 8px 12px;
	text-transform: none;
	font-size: 13px;
	letter-spacing: normal;
	border: solid 1px #eeeeee;
}
.wsmenu>.wsmenu-list>li>ul.sub-menu>li>a:hover {
  text-decoration: underline;
}
.wsmenu>.wsmenu-list>li>ul.sub-menu>li>a>i {
  margin-right: 9px;
  font-size: 14px;
}
*/
.wsmenu-list > li.wsshopmyaccount {
	float: right;
}
.wsmenu-list > .wsshopmyaccount > a .fa.fa-angle-down {
	display: inline-block;
	font-size: 13px;
	line-height: inherit;
	margin-left: 8px;
	color: #7b7b7b;
}
.wsmenu-list > .wsshopmyaccount > a .fa.fa-align-justify {
	display: inline-block;
	font-size: 16px;
	line-height: inherit;
	margin-right: 11px;
	color: #7b7b7b;
}
/*
.wsmenu-list > li.wssearchbar {
	width: 41%;
	float: left;
	padding-left: 15px;
}
*/
.wsmenu-list > li.wscarticon {
	float: right;
	clear: right;
}
.wsmenu-list > li.wscarticon a {
	padding: 0px 27px 0px 22px;
	text-align: center;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.mobiletext {
	display: none;
}
.wsmenu-list > li.wscarticon a .fa {
	font-size: 30px;
}
.wsmenu-list > li.wscarticon em.roundpoint {
	position: absolute;
	top: 14px;
	right: 21px;
	width: 17px;
	height: 17px;
	background-color: #DA4B38;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 9px;
	text-align: center;
	font-style: normal;
	line-height: 16px !important;
	color: #fff;
}
.wsmenu-list li > .wsmenu-submenu {
	transform: translateY(35px);
	transition: all .3s ease;
	visibility: hidden;
}
.wsmenu-list li:hover > .wsmenu-submenu {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.wsmenu-submenu li > .wsmenu-submenu-sub {
	transform: translateY(35px);
	transition: all .3s ease;
	visibility: hidden;
}
.wsmenu-submenu li:hover > .wsmenu-submenu-sub {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.wsmenu-submenu-sub li > .wsmenu-submenu-sub-sub {
	transform: translateY(35px);
	transition: all .3s ease;
	visibility: hidden;
}
.wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.wsmenu-list li > .megamenu {
	transform: translateY(35px);
	transition: all .3s ease;
	visibility: hidden;
}
.wsmenu-list li:hover > .megamenu {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.wsmenu-submenu {
	position: absolute;
	min-width: 176px;
	top: 58px;
	z-index: 1000;
	margin: 0px;
	padding: 0px;
	border: solid 1px #eeeeee;
	background-color: #fff;
	opacity: 0;
	-o-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-moz-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
	-o-transition: -o-transform 0.3s, opacity 0.3s;
	-ms-transition: -ms-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
}
.wsmenu-submenu li a {
	background: #fff !important;
	background-image: none !important;
	color: #666666 !important;
	border-right: 0 none !important;
	text-align: left;
	display: block;
	line-height: 22px;
	padding: 8px 12px;
	text-transform: none;
	font-size: 12px;
	letter-spacing: normal;
	border-right: 0px solid;
	border-bottom: 1px solid #f5f5f5;
}
.wsmenu-submenu li {
	position: relative;
	margin: 0px;
	padding: 0px;
}
.wsmenuexpandermain {
	display: none;
}
.wsmenu-list li:hover .wsmenu-submenu {
	display: block;
}
.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub {
	min-width: 220px;
	position: absolute;
	left: 100%;
	top: 0;
	margin: 0px;
	padding: 0px;
	opacity: 0;
	-o-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-moz-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
	-o-transition: -o-transform 0.4s, opacity 0.4s;
	-ms-transition: -ms-transform 0.4s, opacity 0.4s;
	-moz-transition: -moz-transform 0.4s, opacity 0.4s;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
}
.wsmenu-list .wsmenu-submenu li:hover .wsmenu-submenu-sub {
	opacity: 1;
	list-style: none;
	padding: 0px;
	border: solid 1px #eeeeee;
	background-color: #fff;
}
.wsmenu-list .wsmenu-submenu li:hover .wsmenu-submenu-sub {
	display: block;
}
.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub .wsmenu-submenu-sub-sub {
	min-width: 220px;
	position: absolute;
	left: 100%;
	top: 0;
	margin: 0px;
	padding: 0px;
	opacity: 0;
	-o-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-moz-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
	-o-transition: -o-transform 0.4s, opacity 0.4s;
	-ms-transition: -ms-transform 0.4s, opacity 0.4s;
	-moz-transition: -moz-transform 0.4s, opacity 0.4s;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
}
.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub li:hover .wsmenu-submenu-sub-sub {
	opacity: 1;
	list-style: none;
	padding: 0px;
	border: solid 1px #eeeeee;
	background-color: #fff;
}
.wsmenu-submenu li {
	position: relative;
	padding: 0px;
	margin: 0px;
	display: block;
}
.wsmenu-click {
	display: none;
}
.wsmenu-click02 {
	display: none;
}
.wsmenu-submenu .fa {
	margin-right: 11px;
	font-size: 15px;
}
.carousel-control i.fa {
	top: 48%;
	position: absolute;
	font-size: 33px;
	margin-left: -5px;
}
.carousel-inner .carousel-caption h3 {
	font-size: 18px;
	font-weight: bold;
}
.wsshopmenu span {
	font-weight: bold;
}
.wsmenu-list > .wsshopmenu > a .fa.fa-shopping-basket {
	display: inline-block;
	font-size: 13px;
	line-height: inherit;
	margin-right: 8px;
	color: #7b7b7b;
}
.wtsdepartmentmenu {
	background: #fff;
	border-bottom: solid 1px #d1d3d4;
}
.wtsbrandmenu {
	background: #ffffff;
	border-bottom: solid 1px #d1d3d4;
}

.wsmenu-list li:hover .megamenu {
	opacity: 1;
}
.megamenu {
	width: 100%;
	left: 0px;
	position: absolute;
	top: 60px;
	color: #000;
	z-index: 1000;
	margin: 0px;
	text-align: left;
	padding: 14px;
	font-size: 15px;
	border: solid 1px #eeeeee;
	background-color: #fff;
	opacity: 0;
	-o-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-moz-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
	-o-transition: -o-transform 0.3s, opacity 0.3s;
	-ms-transition: -ms-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
}
.megamenu .title {
	border-bottom: 1px solid #CCC;
	font-size: 14px;
	padding: 9px 5px 9px 0px;
	font-size: 17px;
	color: #424242;
	margin: 0px 0px 7px 0px;
	text-align: left;
	height: 39px;
	margin:0px 0px 10px 0px;
}

/* 20200524 JBM Commented
.halfmenu {
	width: 40%;
	right: auto !important;
	left: auto !important;
}
.halfmenu .megacollink {
	width: 48%;
	float: left;
	margin: 0% 1%;
}
.halfdiv {
	width: 30%;
	right: auto;
	left: auto;
}
.halfdiv03 {
	width: 25%;
	right: auto;
	left: auto;
}
*/
.wsshoptabing {
	width: 100%;
	text-align: left;
	margin: 0px;
	padding:0px ;
	position: absolute;
	top:60px;
	background-color: #f8f8f8;
	left: 0;
	border-bottom:solid 2px #376cb7;
	border:solid 1px #f1f1f1;
	border-top:solid 0px;
	visibility: hidden;
	opacity: 0;
	z-index:101;
	transform: translateY(35px);
	transition: all .3s ease;
}
/*.btnlearn {
	font-size: 15px;
	text-align: center;
	line-height: 44px;
	height: 44px;
	display: block;
	float: left;
	padding: 0px 15px;
	background-color: #0056b9;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #fff;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	margin-top: 5px;
}
.btnlearn:hover {
	color: #fff;
	text-decoration: none;
}*/

.wstitemright{
	/*min-height:100%;*/
	opacity:0;
	visibility:hidden;
	position:absolute;
	right:0px;
	top:0px;
	background-color:#f8f8f8;
	color:#000;
	display: block;
    float: left;
    padding: 18px 20px 0px 20px ;
    width: 77%;
	}

.wstabitem {
	 display:block; margin:0px; padding:0px; font-size:12px;
}

.wstabitem > li {
	width:100%;
	list-style: none;

}

.wstabitem li:before, .wstabitem li:after{content: ""; display: table;}.wstabitem li:after{clear: both;}
/*.wsmenu-list > li:hover > .wsshoptabing > .wstabitem li.wsshoplink-active .wstitemright{opacity: 1; visibility: visible;}*/
.wsmenu-list > li:hover > .wsshoptabing .wsshopwp > .wstabitem li.wsshoplink-active .wstitemright{opacity: 1; visibility: visible;}
.wsshoptabing > .wsshopwp{width: 100%; display: block; position: relative;}

.wstabitem > li > a {
	display: block;
	padding: 8px 6px;
	font-size: 13px;
	color: #606060;
	border-bottom: solid 1px #e5e5e5;
	width:23%; 
	float:left;
	position:relative;
	border-left:3px solid #fff;
	background-color:#fff;
}
.wstabitem > li:hover a {
	text-decoration: none;
}
.wstabitem .wsshoplink-active a {
	text-decoration: none;
}
.wstabitem > li:hover > a {
	text-decoration: none;
}
.wstabitem > li > a .fa {
	color: #848484;
	margin-right: 5px;
	text-align: center;
	width: 25px;
	font-size: 16px;
}
.wstmegamenucoll {
	width: 75%;
	float: left;
	padding-right: 27px;
}
.wstmegamenucolr {
	width: 25%;
	float: right;
	text-align: right;
}
/* 20200524 JBM Commented
.wstmegamenucoll01 {
	width: 64%;
	float: left;
	padding-left: 0px;
}
.wstmegamenucolr02 {
	width: 35%;
	float: left;
	text-align: right;
}
.wstmegamenucolr03 {
	width: 25%;
	float: left;
	text-align: left;
}
.wstmegamenucoll04 {
	width: 75%;
	float: right;
	padding-left: 27px;
}
.wstheading {
	width: 100%;
	display: block;
	padding: 8px 0px 5px 0px;
	font-size: 11px;
	font-weight: bold;
	color: #333333;
	border-bottom: solid 1px #d9d9d9;
	margin-bottom: 7px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.wstliststy01 {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.wstliststy01 li {
	width: 33.33%;
	float: left;
	line-height: 23px;
	font-size: 14px;
	list-style: none;
	padding: 0px 0px 0px 0px;
	margin: 0px;
}
.wstliststy01 li a {
	color: #6e6e6e;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.wstliststy01 li a:hover {
	color: #000;
	text-decoration: none;
}

.wstinnerwp{height: auto; position: relative; width: 100%;}
.wstinnerwp:before, .wstinnerwp:after{content: ""; display: table;}
.wstinnerwp:after{clear: both;}
*/
.wstliststy02 {
	width: 25%;
	padding: 0px 20px 0px 0px;
	margin: 0px;
	float: left;
	text-align:left;
}
.wstliststy02 li {
	width: 100%;
	list-style: none;
	line-height: 24px;
	color: #6e6e6e;
}
.wstliststy02 li a {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.wstliststy02 li a:hover {
	color: #000;
	text-decoration: none;
}
.wstliststy02 li.wstheading {
	line-height: normal;
    font-weight: bold;
	text-decoration: none;
	color: #174d7b;
	margin-bottom: 10px;
}
.wstliststy02 li a .wstcount {
	font-size: 10px;
	color: #adadad;
}

/* 20200524 JBM Commented
.wstliststy06{
	width: 50%;
	padding: 0px 20px 0px 0px;
	margin: 0px;
	float: left;
	text-align:left;
}
.wstliststy06 li {
	width: 100%;
	list-style: none;
	line-height: 24px;
}
.wstliststy06 li a {
	color: #6e6e6e;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.wstliststy06 li a:hover {
	color: #000;
	text-decoration: none;
}
.wstliststy06 li.wstheading {
	line-height: normal;
}
.wstliststy06 li a .wstcount {
	font-size: 10px;
	color: #adadad;
}
.wstliststy03 {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.wstliststy03 li {
	width: 33.33%;
	float: left;
	line-height: 23px;
	font-size: 14px;
	list-style: none;
	padding: 0px 0px 0px 0px;
	margin: 0px;
}
.wstliststy03 li a {
	color: #6e6e6e;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.wstliststy03 li a:hover {
	color: #000;
	text-decoration: none;
}
.wstliststy04 {
	width: 23%;
	padding: 0px 0px 0px 0px;
	margin:0.5% 1%;
	float: left;
	
}
.wstliststy04 li {
	width: 100%;
	list-style: none;
	line-height: 22px;
}
.wstliststy04 li a {
	color: #6e6e6e;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.wstliststy04 li a:hover {
	color: #000;
	text-decoration: none;
}
.wstliststy04 li.wstheading {
	line-height: normal;
	text-align: center;
	padding: 12px 0px;
	font-size: 13px;
}
.wstliststy04 li a .wstcount {
	font-size: 10px;
	color: #adadad;
}
.wstliststy05 {
	width: 33.33%;
	padding: 0px 20px 0px 0px;
	margin: 0px;
	float: left;
}
.wstliststy05 li {
	width: 100%;
	list-style: none;
	line-height: 22px;
}
.wstliststy05 li a {
	color: #6e6e6e;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.wstliststy05 li a:hover {
	color: #000;
	text-decoration: none;
}
.wstliststy05 li.wstheading {
	line-height: normal;
}
.wstliststy05 li a .wstcount {
	font-size: 10px;
	color: #adadad;
}
.wstmorebtn {
	border-radius: 2px;
	color: #9b9b9b;
	display: inline-block;
	float: right;
	font-size: 10px;
	font-weight: normal;
	letter-spacing: 0;
	padding: 1px 7px;
	text-align: right;
	text-transform: none;
}
.wstmenutag {
	height: 18px;
	line-height: 18px;
	text-align: center;
	font-size: 11px;
	color: #fff;
	border-radius: 2px;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	padding: 1px 6px 1px 6px;
	margin-left: 6px;
	text-transform: none;
	letter-spacing: -0.0px;
	

}
.wstmenutag:after {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-image: none;
	border-style: solid;
	border-width: 3px;
	content: "";
	left: -6px;
	margin-top: 0px;
	position: absolute;
	top: 4px;
	z-index: 1;
}
.wstmenutag.redtag {
	background-color: #fe7b8f;
}
.wstmenutag.redtag:after {
	border-color: transparent #fe7b8f transparent transparent;
}
.wstmenutag.greentag {
	background-color: #00c853;
}
.wstmenutag.greentag:after {
	border-color: transparent #00c853 transparent transparent;
}
.wstmenutag.bluetag {
	background-color: #4fc3f7;
}
.wstmenutag.bluetag:after {
	border-color: transparent #4fc3f7 transparent transparent;
}
.wstmenutag.orangetag {
	background-color: #FE7000;
}
.wstmenutag.orangetag:after {
	border-color: transparent #FE7000 transparent transparent;
}
*/
/*.wstadsize01 {
	width:50%;
	float: left;
	margin: 15px 0px 5px 0px;
}
.wstadsize02 {
	width:50%;	
	float: right;
	margin: 15px 0px 5px 0px;
}

/*
.kitchenmenuimg{
	background-image: url(../images/kitchen-menu-img.png);
	background-position: bottom right;
	background-repeat: no-repeat;
}
.computermenubg {
	background-image: url(../images/computer-menu-img.png);
	background-position: bottom right;
	background-repeat: no-repeat;
}
*/

.wstpngsml{
	padding-left: 18px;
}
.wstfullwtag {
	width: 100%;
	display: block;
	border-bottom: solid 1px #e5e5e5;
	background-color: #f5f5f5;
}

.wstbrandbottom{
	width: 100%;
	background-color: #fff;
    display: block;
    opacity: 0;
    position: absolute;
    right: 0;
    visibility: hidden;
    padding:9px 20px;
	
}
*/

.wsmenu-list > li:hover > .wtsbrandmenu > .wsshoptabingwp > .wstabitem02 > li.wsshoplink-active > .wstbrandbottom {opacity:1; visibility:visible; }
 
.wstabitem02 {
	width: 100%;
	padding: 0px;
	margin: 0px 0px;
	list-style: none;
	display: table;
}
.wstabitem02 > li {
	 display: table-cell;
    list-style: outside none none;
    text-align: center;
}
.wstabitem02 > li > a {
	display:block;
	padding:14px 0px;
	font-size: 13px;
	color: #606060;
	background-color: #f4f4f4;
    border-bottom: 1px solid #e5e5e5;
	position:relative;
}
.wstabitem02 > li:hover a {
	text-decoration: none;
	-webkit-border-radius: 4px 0px 0px 4px;
	-moz-border-radius: 4px 0px 0px 4px;
	border-radius: 4px 0px 0px 4px;
}
.wstabitem02 > .wsshoplink-active a {
	text-decoration: none;
	-webkit-border-radius: 4px 0px 0px 4px;
	-moz-border-radius: 4px 0px 0px 4px;
	border-radius: 4px 0px 0px 4px;
}
.wstabitem02 > li:hover a {
	text-decoration: none;
	-webkit-border-radius: 4px 0px 0px 4px;
	-moz-border-radius: 4px 0px 0px 4px;
	border-radius: 4px 0px 0px 4px;
}
.wstabitem02 > li > a .fa {
	/*color: #848484;*/
	margin-right: 5px;
	text-align: center;
	width: 25px;
	font-size: 17px;
}

.li_blank2  { height: 48px; }
.li_blank3  { height: 72px; }
.li_blank4  { height: 96px; }
.li_blank5  { height: 120px; }
.li_blank6  { height: 144px; }
.li_blank7  { height: 168px; }
.li_blank8  { height: 192px; }
.li_blank9  { height: 216px; }
.li_blank10 { height: 240px; }
.li_blank11 { height: 264px; }
.li_blank12 { height: 288px; }

/* 20200524 JBM Commented
.brandcolor01{color:#424242;}
.brandcolor02{color:#00bcf2;}
.brandcolor03{color:#00aff0;}
.brandcolor04{color:#003087;}
.brandcolor05{color:#a82400;}
.brandcolor06{color:#ff3300;}
.brandcolor07{color:#7ac142;}
.brandcolor08{color:#ef4056;}
*/

/*--------------------------------------------------------------------------
|  03 Tab CSS
--------------------------------------------------------------------------*/ 

 @media only screen and (min-width: 1024px) and (max-width:1280px) {
/*.kitchenmenuimg{background-image:none;}
.computermenubg{background-image:none;}*/

.wsmenu-list li a .arrow:after {
	display: none !important;
}
.wsmenu-list > li > a {
	padding-left: 12px !important;
	padding-right: 12px !important;
}
.wsmain {
	width: 96%;
	margin-left: 2%;
	margin-right: 2%;
}
/* 20200524 JBM Commented
.menu_form input[type="submit"] {
	width: 40% !important;
}
.menu_form input[type="button"] {
	width: 40% !important;
}
*/
.wstmegamenucoll {
	width: 64%;
}
.wstmegamenucolr {
	width: 36%;
}
/* 20200524 JBM Commented
.wsshoptabingwp {
	width: 96%;
	margin: 0% 2%;
}
.wstliststy01 li {
	width: 50%;
}
*/
.wstliststy02 {
	width: 50%;
}
/*.wstadsize01 img {
	width: 100%;
}
.wstadsize02 img {
	width: 100%;
}
.wstadsize01 {
	width: 50%;
}
.wstadsize02 {
	width: 50%;
}*/
.wstliststy02 > li > img {
	display: none;
}
/* 20200524 JBM Commented
.wstliststy03 li {
	width: 50%;
}
.wstmegamenucoll01 {
	width: 100%;
	padding: 0px;
}
.wstliststy04 > li > img {
	width: 100%;
}
.wstmegamenucolr03 {
	display: none;
}
.wstmegamenucoll04 {
	width: 100%;
	margin: 0%;
	padding: 0px;
}
.wssearchbar {
	width: 31% !important;
}
*/
}
 @media only screen and (min-width:920px) and (max-width:1023px) {
/* 20200524 JBM Commented
.wstliststy06{
	width:100%;
	margin:0px;
	}
*/
.smllogo {
	padding: 13px 6px 0px 0px;
}
.wsmenu-list li a .arrow:after {
	display: none;
}
.wsmenu-list > li > a {
	white-space: nowrap !important;
	padding-left: 11px !important;
	padding-right: 11px !important;
}
.wsmain {
	width: 96%;
	margin-left: 2%;
	margin-right: 2%;
}
.wsmenu-list > li.socialicon {
	display: none !important;
}
.megacollink {
	width: 48%;
	margin: 1% 1%;
}
.typographylinks {
	width: 48%;
	margin: 1% 1%;
}
/* 20200524 JBM Commented
.menu_form input[type="submit"] {
	width: 40% !important;
}
.menu_form input[type="button"] {
	width: 40% !important;
}
*/
.wsmenu-list > li > a .fa {
	display: none;
}
.wsmenu-list > li > a .fa.fa-home {
	display: block !important;
}
/* 20200524 JBM Commented
.halfmenu .megacollink {
	width: 100%;
	margin: 0px;
}
.wstmegamenucoll {
	width: 51%;
	padding: 0px;
}
.wstmegamenucolr {
	width: 49%;
}
.wsshoptabingwp {
	width: 96%;
	margin: 0% 2%;
}
.wstliststy01 li {
	width: 100%;
}
*/
.wstliststy02 {
	width: 50%;
}
/*.wstadsize01 img {
	width: 100%;
}
.wstadsize02 img {
	width: 100%;
}
.wstadsize01 {
	width: 100%;
}
.wstadsize02 {
	width: 100%;
}*/
.wstliststy02 > li > img {
	display: none;
}
/* 20200524 JBM Commented
.wstliststy03 li {
	width: 50%;
}
.wstmegamenucoll01 {
	width: 100%;
	padding: 0px;
}
.wstliststy04 {
	width: 46%;
	margin: 0% 2%;
}
.wstliststy04 > li > img {
	width: 100%;
}
.wstmegamenucolr03 {
	display: none;
}
.wstmegamenucoll04 {
	width: 100%;
	margin: 0%;
	padding: 0px;
}
.wstliststy05 {
	width: 50%;
	margin-bottom: 15px;
}
*/
/*.wssearchbar {
	width: 20% !important;
}
.kitchenmenuimg{
	background-image:none;} 

.computermenubg{
	background-image:none;} */
	
.wstabitem li a .fa {
	display: none;
}

}

@media only screen and (min-width: 920px) {

.wsmenu-list li:hover > .wsmenu-submenu {
	display: block !important;
}
.wsmenu-submenu li:hover > .wsmenu-submenu-sub {
	display: block !important;
}
.wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub {
	display: block !important;
}
.wsmenu-list li:hover > .megamenu {
	display: block !important;
}
.wsmenu-list > li:hover .wsshoptabing {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.wstabitem > li.wsshoplink-active > a{
	background-color:#f8f8f8;
	color:#555555;
	border-left:3px solid #DA4B38;
	}
	
.wstabitem > li.wsshoplink-active > a > .fa{
	color:#555555;
}
.wstabitem02 > .wsshoplink-active > a:after {
	position: absolute;
	content: '';
	top:40px;
	right: 50%;
	width: 13px;
	height: 13px;
	transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
	-moz-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	border-right: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
	z-index: 100;
	background-color: #ffffff;
}
}

/*--------------------------------------------------------------------------
|  04 Mobile CSS
--------------------------------------------------------------------------*/ 

@media only screen and (max-width: 919px) {

.li_blank2, .li_blank3,.li_blank4,.li_blank5,.li_blank6,.li_blank7,.li_blank8,.li_blank9,.li_blank10,.li_blank11,.li_blank12 {
	height: auto;
	display: none;
}	 
.wsmenu-list > li > .navtext > span + span:after {
	content: ""; !important
}

.wstabitem > li{ position:relative; }
.wstabitem > li > a{ width:100%; margin:0px; float:none; font-size:12px; padding:14px 11px 14px 18px; font-weight:bold;}
.wstheading{ font-weight:normal; padding-left:0px; padding-right:14px; }
.wstitemright{ width:100%; position:static; top:0px; min-height: inherit; padding:10px 20px 15px 20px; opacity:1; visibility:visible; display:none;}
.wstliststy02{ width:100%; padding:0px; margin:0px 0px 15px 0px;}
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.wstmegamenucoll{width:100%; padding:0px; float:none;}
.wstmegamenucolr{width:100%; padding:0px; float:none;}
.wstliststy01 li{width:100%; padding:0px; margin:0px;}
.wstliststy04{width:100%; margin:0px;}
*/
/*.wstadsize01{width:100%; margin:0px 0px 10px 0px;}
.wstadsize02{width:100%; margin:0px;}*/
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.wstmegamenucoll01{width:100%;}
.wstmegamenucolr03{ width:100%; padding:0px; margin:0px 0px 15px 0px; }
.wstmegamenucoll04{ width:100%; padding:0px; }
.wstliststy05{ width:100%; padding:0px; margin-bottom:10px; }
*/
/*.kitchenmenuimg{background-image:none;}
.computermenubg{background-image:none;}*/
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.wstbrandbottom{width:100%; position:static; top:0px; min-height: inherit; padding:10px 20px 15px 20px; opacity:1; visibility:visible; display:none;}
.wstabitem02 li{ position:relative; }
.wstabitem02 > li > a{padding:13px 18px; }
*/
.wsmenu-list > li > .navtext {
	margin: 0px !important;
}
 
.wsmenu-list > li.wssearchbar {
	padding-left: 0px;
}
.wstabitem02 {
	display: block;
}
.wstabitem02 li {
	text-align: left;
	display: block;
}
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.wsshoptabingwp {
	background-color: #fff;
	padding-left: 0px;
	padding-right: 0px;
}
*/
.wsshopmyaccount > a > .fa-angle-down {
	display: none !important;
}
.wsmenu {
	margin-top: 0px;
}
.smllogo {
	display: none !important;
}
.wsmain {
	margin: 0px;
	background-color: transparent;
}
/*.topmenusearch {
	margin: 0px 0 0;
	width: 100%;
	height: 44px;
}
.topmenusearch input:focus {
	width: 100%;
	background-color: #fff;
	color: #000;
}
.topmenusearch input:hover {
	width: 100%;
	background-color: #fff;
	color: #000;
}
.topmenusearch input {
	border-radius: 0px !important;
	height: 44px;
	background-color: #f1f1f1;
}
.topmenusearch .btnstyle {
	height: 44px;
	color: #424242;
}
*/
.smllogo {
	width: 100%;
	display: none !important;
	margin: 0 auto;
	text-align: center;
	background-color: #2B3A40;
}
.smllogo a {
	margin: 0 auto;
	text-align: center;
	float: none;
	padding: 10px 0px 3px 0px;
}
.wsmenu-list .wsshoptabing {
	background-color: #ffffff;
	color: #666666;
	display: none;
	position: relative !important;
	top: 0px;
	padding: 0px;
	border: solid 0px;
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.wstabitem {
	width: 100% !important;
	background-color: #fff;
}
.wstabitem li a:after {
	border: none !important;
}
 
.megamenuleftp {
	width: 100%;
	display: block;
	padding: 0px;
	margin: 0px;
}
.megamenurightp {
	width: 100%;
	display: block;
	padding: 0px;
	margin: 0px;
}
.wstabitem li a:after {
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -6px;
	right: 23px;
	display: inline-block;
	border-top: 6px solid #3f464c;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.wstabitem li a .fa {
	display: none;
}
.wsmenu-list li > .wsshoptabing {
	-o-transition: -o-transform 0.6s, opacity 0.6s;
	-ms-transition: -ms-transform 0.6s, opacity 0.6s;
	-moz-transition: -moz-transform 0.6s, opacity 0.6s;
	-webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
	visibility: visible !important;
	opacity: 1 !important;
}
.wsmenucontainer {
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;

}
.overlapblackbg {
	left: 0;
	z-index: 102;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	display: none;
	background-color: rgba(0, 0, 0, 0.45);
	cursor: pointer;
}
.wsmenucontainer.wsoffcanvasopener {
	display: block;
	margin-left: 270px;
}
.wsmobileheader {
	display: block !important;
	position: fixed; /* 20180213 JBM Antes relative*/
	top: 0;
	right: 0;
	left: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.callusicon {
	color: #fff!important; /* mbl */
	font-size: 25px;
	height: 25px;
	position: fixed;
	right: 15px;
	top: 10px;
	transition: all 0.4s ease-in-out 0s;
	width: 25px;
	z-index: 102;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.callusicon:focus, callusicon:hover {
	color: #fff !important;
}
@media (max-width:768px){
	.callusicon {
		color: #fff !important;
		font-size: 33px;
		height: 50px;
		right: 0px;
		top: 0px;
		width: 50px;
		padding:10px;
		background-color: #f69f24;
    }
}

.wsoffcanvasopener .callusicon {
	display: none !important;
}
.smallogo {
	width: 100%;
	display: block;
	text-align: center;
	padding-top: 9px;
	position: fixed;
	z-index: 101;
	width: 100%;
	height: 52px;
	box-shadow: 0 1px 4px rgba(0,0,0,.5);
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.5);
		/* mbl */
	background: rgba(36, 55, 72, 1) !important;
}
.smallogo > img {
	margin-top: 0px;
	height: 32px;
}
.wsmenu-list > li:hover>a {
	background-color: rgba(0,0,0,0.08) !important;
	text-decoration: none;
}
.mobiletext {
	display: inline-block !important;
}
.wsoffcanvasopener .overlapblackbg {
	display: block !important;
}
.wsoffcanvasopener .wsmain {
	left: 0px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.wsmain {
	width: 270px;
	left: -270px;
	height: 100%;
	position: fixed;
	top: 0;
	margin: 0;
	float: none;
	background-color: #fff;
	border-radius: 0px;
	z-index: 103;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border: none !important;
	background-color: #fff !important;
}
.wsmenu {
	border-left: none;
	float: none;
	width: 100%;
	display: block !important;
	height: 100%;
	overflow-y: auto;
	display: block !important;
}
.wstabitem02 li .wsmenu-click02{ border-left: 1px solid #e9e9e9;}
.wstabitem02 li .wsmenu-click02{ background-color:#fff;}
.wsmenu-click {
	 border-left: 1px solid #e0e0e0;
    cursor: pointer;
    display: block;
    height: 57px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;/*49px;*/
    z-index: 10;
}
.wsmenu-click i {
	display: block;
	height: 23px;
	width: 25px;
	margin-top: 15px;
	margin-right: 13px;
	background-size: 25px;
	font-size: 21px;
	color: rgba(0,0,0,0.25);
	float: right;
	text-align:center;
}
.wsmenu-click02 {
	border-left: 1px solid #f3f3f3;
    cursor: pointer;
    display: block;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
    width: 49px;
    z-index: 10;
	background-color:#f3f3f3;
}
.wsmenu-click02 i {
	display: block;
	height: 23px;
	width: 34px;
	margin-top: 11px;
	margin-right: 8px;
	background-size: 25px;
	font-size: 21px;
	color: rgba(0,0,0,0.25);
	float: right;
	text-align:center;
}
.ws-activearrow > i {
	transform: rotate(180deg);
}
.wsmenu-rotate {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.animated-arrow {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 102;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.wsoffcanvasopener .animated-arrow {
	left: 270px;
}
.animated-arrow {
	cursor: pointer;
	padding: 13px 35px 16px 0px;
	margin: 10px 0 0 15px;
}
.animated-arrow span, .animated-arrow span:before, .animated-arrow span:after {
	cursor: pointer;
	height: 2px;
	width: 23px;
	background: #fff;
	position: absolute;
	display: block;
	content: '';
}
.animated-arrow span:before {
	top: -7px;
}
.animated-arrow span:after {
	bottom: -7px;
}
.animated-arrow span, .animated-arrow span:before, .animated-arrow span:after {
	transition: all 500ms ease-in-out;
}
.wsoffcanvasopener .animated-arrow span {
	background-color: transparent;
}
.wsoffcanvasopener .animated-arrow span:before, .animated-arrow.active span:after {
	top: 7px;
}
.wsoffcanvasopener .animated-arrow span:before {
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	bottom: 0px;
}
.wsoffcanvasopener .animated-arrow span:after {
	transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.megacollink {
	width: 96% !important;
	margin: 0% 2% !important;
}
.megacolimage {
	width: 90% !important;
	margin: 0% 5% !important;
}
.typographylinks {
	width: 98% !important;
	margin: 0% 1% !important;
}
.typographydiv {
	width: 86% !important;
	margin: 0% 7% !important;
}
.mainmapdiv {
	width: 90% !important;
	margin: 0% 5% !important;
}
.innerpnd {
	padding: 0px !important;
}
.typography-text {
	padding: 10px 0px;
}
.wsmenu-list .megamenu {
	background-color: #e7e7e7;
	color: #666666;
	display: none;
	position: relative !important;
	top: 0px;
	padding: 0px;
	border: solid 0px;
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.wsmenu-list li:hover .megamenu {
	display: none;
	position: relative !important;
	top: 0px;
}
.megamenu .title {
	color: #666666;
	font-size: 15px !important;
	padding: 10px 8px 10px 0px;
}
.megamenu > ul {
	width: 100% !important;
	margin: 0px;
	padding: 0px;
	font-size: 13px !important;
	min-height:189px;
}
.megamenu > ul > li > a {
	padding: 9px 14px !important;
	line-height: normal !important;
	background-color: #e7e7e7 !important;
	color: #666666;
}
 
/*.ad-style {
	width: 100% !important;
}*/
.megamenu ul li.title {
	line-height: 26px;
	color: #666666;
	margin: 0px;
	font-size: 15px;
	padding: 7px 13px !important;
	border-bottom: 1px solid #ccc;
	background-color: transparent !important;
}
.wsmenu-submenu > li:hover>a {
	background-color: #7b7b7b;
	color: #666666;
}
.wsmenu > .wsmenu-list > li > a.active {
	color: #666666;
	background-color: rgba(0,0,0,0.08);
}
.wsmenu > .wsmenu-list > li > a:hover {
	color: #666666;
	background-color: rgba(0,0,0,0.08);
}
.wsmenu-list li:hover .wsmenu-submenu {
	display: none;
}
.wsmenu-list li:hover .wsmenu-submenu .wsmenu-submenu-sub {
	display: none;
}
.wsmenu-list .wsmenu-submenu .wsmenu-submenu-sub li:hover .wsmenu-submenu-sub-sub {
	display: none;
	list-style: none;
	padding: 2px;
	border: solid 1px #eeeeee;
	background-color: #fff;
}
.wsmenu-list li:first-child a {
	-webkit-border-radius: 0px 0px 0px 0px;
	-moz-border-radius: 0px 0px 0px 0px;
	border-radius: 0px 0px 0px 0px;
}
.wsmenu-list li:last-child a {
	-webkit-border-radius: 0px 4px 0px 0px;
	-moz-border-radius: 0px 0px 0px 0px;
	border-radius: 0px 0px 0px 0px;
	border-right: 0px solid;
}
.wsmenu-submenu-sub {
	width: 100% !important;
	position: static !important;
	left: 100% !important;
	top: 0 !important;
	display: none;
	margin: 0px !important;
	padding: 0px !important;
	border: solid 0px !important;
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.wsmenu-submenu-sub li {
	margin: 0px 0px 0px 0px !important;
	padding: 0px;
	position: relative;
}
.wsmenu-submenu-sub a {
	display: block;
	padding: 10px 25px 10px 25px;
	border-bottom: solid 1px #ccc;
	font-weight: normal;
}
.wsmenu-submenu-sub li a.active {
	color: #000 !important;
}
.wsmenu-submenu-sub li:hover>a {
	background-color: #333333 !important;
	color: #fff;
}
.wsmenu > .wsmenu-list > li > a > .fa {
	font-size: 16px;
	color: #bfbfbf;
	margin-right: 11px;
	text-align: center;
	width: 19px;
}
.wsmenu-submenu-sub-sub {
	width: 100% !important;
	position: static !important;
	left: 100% !important;
	top: 0 !important;
	display: none;
	margin: 0px !important;
	padding: 0px !important;
	border: solid 0px !important;
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.wsmenu-submenu-sub-sub li {
	margin: 0px 0px 0px 0px !important;
}
.wsmenu-submenu-sub-sub a {
	display: block;
	color: #000;
	padding: 10px 25px;
	background: #000 !important;
	border-bottom: solid 1px #ccc;
	font-weight: normal;
}
.wsmenu-submenu-sub-sub li a.active {
	color: #000 !important;
}
.wsmenu-submenu-sub-sub li:hover>a {
	background-color: #606060 !important;
	color: #fff;
}
.wsmenu .wsmenu-list {
	display: block !important;
}
.wsmenu .wsmenu-list > li {
	clear: left;
	width: 100%;
	display: block;
	float: none;
	border-right: none;
	background-color: transparent;
	position: relative;
	white-space: inherit;
}
.wsmenu > .wsmenu-list > li > a {
	padding:13px 32px 13px 12px;
	font-size: 14px;
	text-align: left;
	border-right: solid 0px;
	background-color: transparent;
	color: #666666;
	line-height: 25px;
	border-bottom: 1px solid;
	border-bottom-color: rgba(0,0,0,0.13);
	position: static;
}
.wsmenu > .wsmenu-list > li > a.wtxaccountlink{padding-bottom: 16px; padding-top: 16px;}

.wsmenu .wsmenu-list li a .arrow:after {
	display: none !important;
}
.wsmenu .wsmenu-list li ul li a .fa.fa-caret-right {
	font-size: 12px !important;
	color: #8E8E8E;
}
.mobile-sub .wsmenu-submenu {
	transform: none !important;
	opacity: 1 !important;
	display: none;
	position: relative !important;
	top: 0px;
	background-color: #fff;
	border: solid 1px #ccc;
	padding: 0px;
	visibility: visible !important;
}
.mobile-sub .wsmenu-submenu li a {
	line-height: 20px;
	height: auto;
	background-color: #e7e7e7 !important;
	font-size: 13px !important;
	padding: 11px 0px 11px 18px;
	color: #8E8E8E;
}
.mobile-sub .wsmenu-submenu li a:hover {
	background-color: #e7e7e7 !important;
	color: #666666;
	text-decoration: underline;
}
.mobile-sub .wsmenu-submenu li:hover>a {
	background-color: #e7e7e7 !important;
	color: #666666;
}
.mobile-sub .wsmenu-submenu li .wsmenu-submenu-sub li a {
	line-height: 20px;
	height: 36px;
	background-color: #e7e7e7 !important;
	border-bottom: none;
	padding-left: 28px;
}
.mobile-sub .wsmenu-submenu li .wsmenu-submenu-sub li .wsmenu-submenu-sub-sub li a {
	line-height: 20px;
	height: 36px;
	background-color: #e7e7e7 !important;
	border-bottom: none !important;
	padding-left: 38px;
	color: #8e8e8e;
}
.wsmenu-list > li.socialicon a {
	width: 100%;
}
.wsmenu-list > li.wscarticon em.roundpoint {
	display: none;
}
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.halfdiv .title {
	padding-left: 15px;
}
.halfdiv {
	width: 100%;
	display: block;
}
.halfdiv03 .title {
	padding-left: 15px;
}
.halfdiv03 {
	width: 100%;
}
.halfmenu {
	width: 100%;
	display: block;
}
.menu_form {
	padding: 10px 10px 63px 10px;
	background-color: #e7e7e7;
}
.menu_form input[type="button"] {
	width: 46%;
}
.menu_form input[type="submit"] {
	width: 46%;
}
.menu_form textarea {
	min-height: 100px;
}
*/
.wsmenu-list li > .wsmenu-submenu {
	-o-transition: -o-transform 0.6s, opacity 0.6s;
	-ms-transition: -ms-transform 0.6s, opacity 0.6s;
	-moz-transition: -moz-transform 0.6s, opacity 0.6s;
	-webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
	visibility: visible !important;
}
.wsmenu-list li:hover > .wsmenu-submenu {
	visibility: visible !important;
}
.wsmenu-submenu li > .wsmenu-submenu-sub {
	-o-transition: -o-transform 0.6s, opacity 0.6s;
	-ms-transition: -ms-transform 0.6s, opacity 0.6s;
	-moz-transition: -moz-transform 0.6s, opacity 0.6s;
	-webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
	visibility: visible !important;
}
.wsmenu-submenu li:hover > .wsmenu-submenu-sub {
	visibility: visible !important;
	opacity: 1 !important;
}
.wsmenu-submenu-sub li > .wsmenu-submenu-sub-sub {
	-o-transition: -o-transform 0.6s, opacity 0.6s;
	-ms-transition: -ms-transform 0.6s, opacity 0.6s;
	-moz-transition: -moz-transform 0.6s, opacity 0.6s;
	-webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
	visibility: visible !important;
	opacity: 1 !important;
}
.wsmenu-submenu-sub li:hover > .wsmenu-submenu-sub-sub {
	visibility: visible !important;
	opacity: 1 !important;
}
.wsmenu-list li > .megamenu {
	-o-transition: -o-transform 0.6s, opacity 0.6s;
	-ms-transition: -ms-transform 0.6s, opacity 0.6s;
	-moz-transition: -moz-transform 0.6s, opacity 0.6s;
	-webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
	visibility: visible !important;
	opacity: 1 !important;
}
.wsmenu-list li:hover > .megamenu {
	visibility: visible !important;
	opacity: 1 !important;
}
}

/*--------------------------------------------------------------------------
|  05 Additional Themes (Optional)
--------------------------------------------------------------------------*/ 

.whitebg {
	background-color: #fff !important;
}
.whitebg:hover {
	color: #000 !important;
}
.pm_buttoncolor .wsmenu-list > li > a .fa {
	color: #fff !important;
}
.pm_buttoncolor .wsmenu-list li a .arrow:after {
	border-top-color: #fff;
}
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.pm_buttoncolor03 .wsmenu-list > li:hover>a .fa {
	color: #fff !important;
}
*/
.blue-grdt {
	/*background: #5999ee;
	background: -moz-linear-gradient(top, #5999ee 0%, #4a89dc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5999ee), color-stop(100%, #4a89dc));
	background: -webkit-linear-gradient(top, #5999ee 0%, #4a89dc 100%);
	background: -o-linear-gradient(top, #5999ee 0%, #4a89dc 100%);
	background: -ms-linear-gradient(top, #5999ee 0%, #4a89dc 100%);*/
	background: rgba(10, 50, 83, 0.8);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5999ee', endColorstr='#4a89dc', GradientType=0 );
	color: #fff;
}
.blue-grdt > .wsmain > .wsmenu > .wsmenu-list > li > .navtext > span {
	color: #fff !important;
}
.blue-grdt > .wsmain > .wsmenu > .wsmenu-list > li > .navtext > span + span:after {
	color: #fff !important;
}
.blue-grdt > .wsmain > .wsmenu > .wsmenu-list > li > a {
	color: #fff !important;
}
.blue-grdt > .wsmain > .wsmenu > .wsmenu-list > li > a:hover {
	background: rgba(0, 0, 0, 0.2);
}
.blue-grdt > .wsmain > .wsmenu > .wsmenu-list li .wsmenu-click{
	border-color:rgba(0,0,0,0.18) !important;
}

.tranbg {
	background-color: transparent !important;
	box-shadow:none !important;
}

@media only screen and (max-width: 920px) {
	
.tranbg {
	background-color: #fff !important;
}
/* 20200524 JBM Commented
.wstliststy03 li{width:100%;}
*/
.pm_buttoncolor > .wsmain > .wsmenu > .wsmenu-list > li > a {
	color: #fff;
}
.blue-grdt .wsmain {
	background: #5999ee;
	background: -moz-linear-gradient(top, #5999ee 0%, #4a89dc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5999ee), color-stop(100%, #4a89dc));
	background: -webkit-linear-gradient(top, #5999ee 0%, #4a89dc 100%);
	background: -o-linear-gradient(top, #5999ee 0%, #4a89dc 100%);
	background: -ms-linear-gradient(top, #5999ee 0%, #4a89dc 100%);
 	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5999ee', endColorstr='#4a89dc', GradientType=0 );
	color: #fff;
}

}
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.menu_form {
	width: 100%;
	display: block;
}
.menu_form input[type="text"] {
	width: 100%;
	border: 1px solid #e2e2e2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #000;
	font-size: 13px;
	padding: 8px 5px;
	margin-bottom: 8px;
}
.menu_form textarea {
	width: 100%;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	color: #000;
	font-size: 13px;
	padding: 8px 5px;
	margin-bottom: 8px;
	min-height: 122px;
}
.menu_form input[type="submit"] {
	width: 25%;
	display: block;
	height: 28px;
	float: right;
	border: solid 1px #ccc;
	margin-right: 15px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.menu_form input[type="button"] {
	width: 25%;
	display: block;
	height: 28px;
	float: right;
	border: solid 1px #ccc;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
*/
/* mbl */
.wsshoptabing{
	width:70%;
}

.rssnewmenu {
	display:block;
	padding:2px 0px;
	margin-top: 5px;	
}

.busquedanav {
	padding-right:10px;
}

.busquedanav .btn{
	padding: 6px 10px!important;
	color:#fff!important;
}

.busquedanav .form-control {
	height:31px!important;
	border-radius:0px!important;
	padding:6px 3px;
	font-size:11px;
	border-width: 0px;
	margin-right: -2px;
	margin-top: -1px;
}
/* 20200524 JBM Commented.wstliststy03 li{width:100%;}
.formBuscador{
	position: absolute; 
	margin-left: 75%
}
*/
.wsmenu-list > li.rightmenu {
	float: right;
}
.wsmenu-list > li.rightmenu a {
	padding: 0px 30px 0px 20px;
	border-right: none;
}
.wsmenu-list > li.rightmenu a .fa {
	font-size: 15px;
}
.wsmenu-list > li.rightmenu {
	float: right;
}
.wsmenu-list > li.rightmenu:before, .wsmenu-list > li.rightmenu:after {
	content: "";
	display: table;
}
.wsmenu-list > li.rightmenu:after {
	clear: both;
}
.wsmenu-list > li.rightmenu {
	zoom: 1;
}

/* 20200524 JBM Commented
.topmenusearch {
	float: right;
	width: 225px;
	height: 39px;
	position: relative;
	margin: 16px 0px 0px 0px;
}
.topmenusearch .searchicon {
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.topmenusearch input {
	width: 100%;
	position: relative;
	float: right;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	border: 0;
	padding: 0;
	margin: 0;
	text-indent: 15px;
	height: 39px;
	z-index: 2;
	outline: none;
	color: #ccc;
	background-color: #181818;
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.topmenusearch input:focus {
	color: #fff;
	width: 260px;
}
.topmenusearch input:focus ~ .btnstyle {
	background-color: #282C37 !important;
	color: #fff;
	opacity: 0.9;
}
.topmenusearch input:focus ~ .btnstyle .fa {
	color: #fff;
}
.topmenusearch input:focus ~ .searchicon {
	opacity: 1;
	z-index: 3;
	color: #FFFFFF;
}
.topmenusearch .btnstyle {
	top: 0px;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40px;
	line-height: 30px;
	z-index: 1;
	cursor: pointer;
	opacity: 0.3;
	color: #fff;
	z-index: 1000;
	background-color: transparent;
	border: solid 0px;
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.topmenusearch .btnstyle .fa {
	line-height: 38px;
	margin: 0;
	padding: 0;
	text-align: center;
}
.topmenusearch .btnstyle:hover {
	background-color: #282C37;
	opacity: 0.9;
}
.topmenusearch input:focus {
	width: 200px;
}
.topmenusearch {
	width: 150px;
}
*/
@media only screen and (max-width: 1130px){

.rightmenu{ 
	 position: absolute; 
	  overflow: hidden; 
	  clip: rect(0 0 0 0); 
	  height: 1px; width: 1px; 
	  margin: -1px; padding: 0; border: 0;
}

}

/* 20200515 Inicio | Changes */

.headerwp {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.headerfull {
  width: 100%;
  /*background-color: #fff;
  height: 60px;*/
  position: relative;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.posrlt {
  position: relative;
}

.headtoppart {
  display: block;
  width: 100%;
  /*background-color: #f8f8f8;
  background: rgba(36, 37, 37, 0.1) !important;*/
  height: 39px;
  margin: 0 auto;
  padding: 0;
  min-width: 320px;
}

.headertopleft {
  float: left;
  width: 50%;
}

.headertopleft a:hover {
  color: #fff;
  font-weight: bold;
}

.headertopright {
  float: right;
  text-align: left;
}
  
.headertopright a {
  line-height: 30px;
  color: #174d7b;
  font-size: 18px;
  padding: 0 8px;
  display: inline-block;
  float: left;
}

.headertopright a:hover {
  color: #fff;
  background-color: #272B37;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.headertopright a.facebookicon:hover {
  background-color: #3b5998;
  color: #fff;
}

.headertopright a.twittericon:hover {
  background-color: #55acee;
  color: #fff;
}

.headertopright a.instagramicon:hover {
  background-color: #cd486b;
  color: #fff;
}

.headertopright a.youtubeicon:hover {
  background-color: #FF0000;
  color: #fff;
}

.headertopright a.wordpressicon:hover {
  background-color: #1D1540;
  color: #fff;
}
/* 20200525 JBM Commented
.address {
  padding: 10px 0 0 0;
  font-size: 12px;
  color: #b6b6b6;
}

.address a {
  color: #fff;
  font-size: 14px; !important
}

.address span {
  margin-right: 9px;
  color: #838383;
}

.address .fa {
  margin-right: 6px;
  margin-left: 6px;
  color: #fff;  
}
*/
.norlt {
  position: static;
}

.menuwrapper {
  position: relative;
}

.wsmenu-list > li > .navtext > span {
	font-size: 14px!important;
	line-height: 18px!important;
}

.wsmenu-list > li > .navtext > span+span {
	font-size: 15px!important;
	line-height: 18px!important;
}

.wsmenu-submenu li a {
	font-size: 14px!important;
}

.telefono_email {
	font-size: 21px;
	line-height: 24px;
	font-weight: 600;
}

.destinoActivo {
	color: #599bcd;
}

.logohome {
	float: left;
	padding: 0;
	margin-top: 10px;
	margin-left: 20px;
	width: 155px;
	height: 95px;
	background-image: url(../../../images/logo/logoWeb2020.jpg);
	background-size: 155px 95px;
	background-repeat: no-repeat;
	background-position: left;
	display: block;
}

.infotopbrand {
    padding: 0;
    clear: right;
    float: right;
    color: #174d7b;
    text-align: right;
    margin-top: 20px;
    margin-right: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
}

/* Color Pallete PasoNW */
.mytheme1 {
  color: #FFF !important;
}
.mytheme1 a {
  color: #174d7b !important;
}
.myfooter {
  color: #5a9ad1 !important;
}
.myfooter a {
  color: #FFF !important;
}
.myfooter a:hover {
  color: #5a9ad1 !important;
  text-decoration: none;
}
.mytheme1login {
  color: #174d7b !important;
  width: 100% !important;
}
/* Fin Color Pallete */

#topmenubrandid {
    margin-bottom: 10px;
}

.topmenubrand {
    background-color: #fff;
}

.newbrand {
	width:100%;
	text-align:center;
	top:30%;
}

@media (max-width:768px){

	.miviaje {
		padding-left: 5px;
	}


	#show-sidebar-filter{
		display:none;
	}
	.ins1{
		margin-top: 0px;
	}
	
	.well2 {
    	padding: 0px;
	}
	.well2_extra {
	    padding-top: 0px !important;
	    padding-bottom: 0px !important;
	}

	.brand_primary {
    	margin-top: 4px;
    	padding-top: 25px;
    	font-size: 25px;
    	line-height: 33px;
	}
	.brand_secondary{
		font-size:20px;
		line-height: 25px;	
	}
}

@media (min-width:769px){
	
	.miviaje {
		padding-left: 10px;
	}

	.brand_primary {
    	margin-top: 4px;
    	padding-top: 30px;
    	font-size: 30px;
    	line-height: 33px;
	}
	.brand_secondary{
		font-size:20px;
		line-height: 25px;	
	}
	
}

@media only screen and (max-width: 991px) {
	
	.wsmenu>.wsmenu-list>li.wsshopmyaccount>a {
		padding-left: 18px;
	}
	.wsmenu>.wsmenu-list>li.wsshopmyaccount {
    	float: none;
	}

}

/* 20200515 Fin | Changes */
