/* Buttons */
button, .button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font:700 1em/1 "Open Sans",sans-serif;
  margin: 12px 0;
  position: relative;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 9px 24px 10px;
  background-color: #3498db;
  border-color: #217dbb;
  color: #fff;
  border-radius: 4px;
  -webkit-transition: all 120ms ease-out;
  -moz-transition: all 80ms ease-out;
  transition: all 120ms ease-out;
  background-image: -webkit-linear-gradient(top,  hsla(0,0%,100%,0.12) 0%,hsla(0,0%,100%,0) 100%); /* Chrome10+,Safari5.1+ */
  background-image: -ms-linear-gradient(top,  hsla(0,0%,0%,0) 0%,hsla(0,0%,0%,0.2) 100%); /* IE10+ */
  background-image: linear-gradient(to bottom,  hsla(0,0%,100%,0.12) 0%,hsla(0,0%,100%,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#33000000',GradientType=0 ); /* IE6-9 */
}


.button:hover {
    /* box-shadow: 0 0 0 1px hsla(0,0%,100%,.2) inset, 0 1px 3px hsla(0,0%,0%,.2); */
    box-shadow: 0 1px 4px hsla(0,0%,0%,.05);
    background-image: -webkit-linear-gradient(top,  hsla(0,0%,100%,.2) 0%,hsla(0,0%,100%,.1) 100%); /* Chrome10+,Safari5.1+ */
    background-image: -ms-linear-gradient(top,  hsla(0,0%,100%,.2) 0%,hsla(0,0%,100%,.1) 100%); /* IE10+ */
    background-image: linear-gradient(to bottom,  hsla(0,0%,100%,.2) 0%,hsla(0,0%,100%,.1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    color: #fff;
    border-color: #055c97;
}

.button:active {
    /* box-shadow: 0 0 0 1px hsla(0,0%,100%,.2) inset; */
    background-image: -webkit-linear-gradient(top,  hsla(0,0%,0%,0.1) 0%,hsla(0,0%,0%,0.05) 100%); /* Chrome10+,Safari5.1+ */
    background-image: -ms-linear-gradient(top,  hsla(0,0%,0%,0.1) 0%,hsla(0,0%,0%,0.05) 100%); /* IE10+ */
    background-image: linear-gradient(to bottom,  hsla(0,0%,0%,0.1) 0%,hsla(0,0%,0%,0.05) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22000000', endColorstr='#11000000',GradientType=0 ); /* IE6-9 */
    color: #fff;
}

.button:focus {
	outline: none;
	/* box-shadow: 0 0 0 1px hsla(0,0%,100%,.8) inset, 0 0 5px hsla(0, 0%, 0%, 0.3); */
}

.button.primary-dark {
  border-color: #2472a4;
  background-color: #006baf;
}
	.button.primary-dark:hover {border-color: #04578c;}

.button.secondary {
  border-color: #c5cfd1;
  background-color: #e5e5e9;
  color: #5a6169;
}
	.button.secondary:hover {border-color: #afb6b7}
	.button.secondary:focus {color: #333;}
	
.button.secondary-light {
  border-color: #d5d9da;
  background-color: #f0f0f0;
  color: #333e49;
}
	.button.secondary-light:hover {border-color: #afb6b7}
	.button.secondary-light:focus {color: #333e49;}
	
.button.secondary-dark {
  border-color: #c5cfd1;
  border-width: 1px;
  background-color: #f1f1f4;
  color: #3498db;
}
	.button.secondary-dark:hover {border-color: #aaacae; color: #258cd1;}
	.button.secondary-dark:focus {color: #006aad;}

.button.highlight {
  border-color: #c41a08;
  background-color: #ffa81a;
}
	.button.highlight:hover {border-color: #cf7000}

.button.highlight-dark {
  border-color: #e17f00;
  background-color: #fc9100;
}
	.button.highlight-dark:hover {border-color: #c56f00;}

.button.success {
  border-color: #229955;
  background-color: #229955;
}

.button.alert {
  background-color: #e74c3c;
  border-color: #d62c1a;
}

.button.inverse {
  border-color: #2b3c4e;
  background-color: #5a6169;
}
	.button.inverse:hover {border-color: #0f1b27}
	
.button.inverse-dark {
  border-color: #233140;
  background-color: #233140;
}
	.button.inverse-dark:hover {border-color: #0f1316}

.button.large {
  padding: 14px 30px;
  font-size: 1.2em;
}
.button.small {
  padding: 6px 12px;
  font-size: 0.75em;
}
.button.tiny {
  padding: 3px 8px;
  font-size: 0.625em;
}

.button.radius {
	border-radius: 3px;
}

.button.disabled, .button.disabled:hover, .button.disabled:active, .button[disabled], .button[disabled]:hover, .button[disabled]:active, .disabled > .button {
  cursor: default;
  opacity: 0.5;
  filter: alpha(opacity=50);
  box-shadow: none;
  background-image: none;
}

.button.in-action, .button.in-action:hover, .button.in-action:active, .button[in-action], .button[in-action]:hover, .button[in-action]:active, .in-action > .button {
	cursor: default;
  box-shadow: none;
  background-image: none;
  background-color: #e5e5e9;
  color: #b7b9bb;
  padding-left: 18px;
}
a.in-action {
	color: #b7b9bb;
	cursor: default;
}
.button.in-cart {background-color:#2f9f5f;}
.button.in-action:before, a.in-action:before {
	background: url('/image/lsa/ui/ajaxLoading.gif') center center no-repeat;
	content: '';
	width: 22px;
	height: 12px;
	display: inline-block;
	vertical-align: bottom;
}
.button.in-action:before {
	float: left;
	margin: 2px 0;
}
#flexInfoButtonContainer a.in-action {position:relative;}
#flexInfoButtonContainer a.in-action:before {position:absolute; bottom:10px; left:10px;}

.button.clear {
	float: left;
}

/* !select UI */

.button.select, .button.select:hover {
	padding: 10px 30px 10px 10px;
	border-radius: 3px;
	margin: 0;
	background-color: #fcfcfc;
	border-color: #9e9a9a;
	border-width: 1px;
	font-size: 0.8125em;
	border-radius: 3px;
	position: relative;
	color: inherit;
	font-weight: 400;
	white-space: nowrap;
	background-image: -webkit-linear-gradient(top,  hsla(0,100%,100%,0.05) 0%,hsla(0,0%,0%,0.12) 100%); /* Chrome10+,Safari5.1+ */
    background-image: -ms-linear-gradient(top,  hsla(0,100%,100%,0.05) 0%,hsla(0,0%,0%,0.12) 100%); /* IE10+ */
    background-image: linear-gradient(to bottom,  hsla(0,100%,100%,0.05) 0%,hsla(0,0%,0%,0.12) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11FFFFFF', endColorstr='#11000000',GradientType=0 ); /* IE6-9 */
}

.button.select:before, .button.select:after {
	position: absolute;
	top: 54%;
	right: 7px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	pointer-events: none;
	border-top-color: #444;
	border-width: 3px;
	margin-left: -10px;
    margin-right:0;
}

.button.select:after {
	top: auto;
	bottom: 53%;
	border-top-color: transparent;
	border-bottom-color: #444;
}
.button.multi-select, .button.multi-select:hover {
	  padding: 6px 30px 4px 8px;
  margin: 0 0 0.2em;
  background-color: #FBFBFB;
  border-radius: 0;
  border-color: #9e9a9a;
  border-width: 1px;
  font-size: 0.8125em;
  position: relative;
  color: inherit;
  font-weight: 400;
 }
.button.multi-select:after {
  font-family: iCons;
  content: ",";
  right: 4px;
  position: absolute;
  top: 0;
  top: 26%;
}


.opt-cont-small {width: 30%;}
.opt-cont-large {width: 70%;}
.opt-cont-small .button.select, .opt-cont-large .button.select {width:100%;}

.select-ui-options{
  display: none;
  text-align: left;
}
.select-open .select-ui-options{
  display:block;
}

.options-container {
	float: left;
	display: inline-block;
	margin: 0;
	padding: 0 0 12px 8px;
	position: relative;
/* 	border-bottom: 1px solid #c1c1c4; */
}

.options-container:first-child {padding-left: 0;}

.options-select section {
	position: absolute;
	top:20px;
	background-color: #f9f9f9;
	box-shadow: 0 5px 8px rgba(0,0,0,0.35);
	border: 1px solid #bbb;
	font-size: 0.8125em;
	padding:0;
	z-index: 12;
	border-radius: 4px;
	min-width: 150px;
}

.options-select ul {
	list-style: none;
	padding: 8px 0;
	margin: 0;
	float: left;
	width: 100%;
	max-height: 350px;
	overflow-x: auto;
}

.options-select li {
	padding: 3px 12px 3px 24px;
	margin: 0;
	position: relative;
	white-space: nowrap;
	float: left;
	width: 100%;
}

.options-select li.initial-select {
	
}

.options-select li:before {
	position: absolute;
	left:8px;
	top: 5px;
	font-size: 1.125em;
}

.options-select li:hover, .options-select li:hover:before {
	background-color: #333e49;
	color: #fff;
	cursor: pointer;
}

.options-select li.disabled, .options-select li.disabled:before, .options-select li.disabled:hover, .options-select li.disabled:hover:before {
	color: #999;
	cursor: default;
	background-color: transparent;
}

.options-select footer {
	border-top: 1px dotted #ccc;
	display: block;
	padding: 12px;
	margin-top: 6px;
	clear: both;
}

.options-select footer h5 {
	font-weight: 400;
	font-size: 1em;
	margin: 0;
}

.options-select footer p {
	padding: 0;
	margin: 0;
}
.options-select footer a{
	color:#3498DB;
}

.select-data {
	font-weight: 700;
	margin-right: 12px;
	float: left;
}
.opt-cont-small + .opt-cont-large .select-ui-options .select-data{
	width: 110px;
	padding-bottom: 2px;
	white-space: normal;
	line-height: 1.2;
}

/*LP-9140*/
.popupContent .opt-cont-small + .opt-cont-large .select-ui-options .select-data{
	width: 136px;
}


.options-container:first-child:last-child {
	width:100%!important;
}
.product-options .options-container:first-child:last-child .button.select {
	max-width:65%;
}
.options-select a {
	color:#333e49;
	cursor: pointer;
}
.options-select li:hover a {
	color:#fff;
}
.options-select a:before {
	color: inherit;
}

a.select .select-data {
	max-width: 130px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow:hidden;
} /*truncate LP-8597*/
a.select .select-data:hover {
	color:inherit
}

#shippingOptionsPlaceholder a.select .select-data {
	max-width:90%;
}

.segments-ui {
	display: flex;
	justify-content: center;
}
.segments-ui a {
	background: #fff;
	border-style: solid;
	border-width: 1px 1px 1px 0;
	border-color: #C1C1C4;
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: auto;
	padding: 0.5em 2em;
	font-size: 0.875rem;
}
.segments-ui a:first-child {
	border-left-width: 1px;
	border-radius: 1em 0 0 1em;
}
.segments-ui a:last-child {
	border-radius: 0 1em 1em 0;
}
.segments-ui a:hover,
.segments-ui a:active {
	background: #0084B6;
	border-color: #0084B6;
	color: #fff;
}
.segments-ui a.active {
	color: #fff;
	background: #868686;
	background: -webkit-linear-gradient(#868686 5%, #B1B1B1 95%);
	border-color: transparent;
}

/* !--- rwd small --- */
@media screen and (max-width:599px) {
	.opt-cont-small, .opt-cont-large {width:100%!important; padding:3px 0 0;}
	.options-select section {width: 104%; margin-left: -2%; top:24px;}
	.product-options section {width:auto;}
	.opt-cont-small + .opt-cont-large .select-ui-options .select-data {width: 100%}
	.select-stock {float: left!important; text-align: left!important;}
	.options-select li {border-bottom: 1px solid #d1d1d6; padding-top: 8px; padding-bottom: 8px;}
	.options-select li:before {top: 11px;}
	.options-select li:last-child {border-bottom: 0;}
	.options-select footer {padding: 8px 4%;}
}
/* !--- WEB-26039 ---*/
@media screen and (max-width: 400px){
	.options-select li{ white-space:normal;}	
}