/*
* Selecter v3.2.4 - 2015-01-07
 * A jQuery plugin for replacing default select elements. Part of the Formstone Library. 
 * http://formstone.it/selecter/ 

 */


.selecter {
  position: relative;
  display: block;
  margin: 10px 0;
  z-index: 1;
  text-align: center;
}
.selecter:focus {
  box-shadow: none;
  outline: none;
}
.selecter,
.selecter * {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
.selecter,
.selecter *,
.selecter *:before,
.selecter *:after {
  box-sizing: border-box;
      width: 190px;
}
.selecter-element {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.selecter-element,
.selecter-element:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.no-opacity .selecter-element {
  left: -999999px;
}
.selecter-selected {
    position: relative;
    background: #ffffff;
    border: 1px solid #000000;
    color: #222222;
    cursor: pointer;
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    overflow: hidden;
    padding: 10px 15px;
    text-overflow: clip;
    z-index: 2;
    text-transform: uppercase;
  height: 40px;
}
.selecter-selected:after {
  height: 0;
  width: 0;
  position: absolute;
  top: -15px;
  right: 20px;
  bottom: 0;
  content: '\f107';
  display: block;
  margin: auto 0;
  font-family: fontAwesome;
  font-size: 16px;
}
.no-touch .selecter-selected:hover {
  color: #333333;
}
.no-touch .selecter.disabled .selecter-selected:hover {
  color: #cccccc;
}
.selecter-options {
  width: 100%;
  max-height: 475px;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #d4d4d4;
  border-top: 0;
  background-color: #ffffff;
  display: none;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  padding: 0;
  z-index: 50;
}
.selecter-options.scroller {
  position: absolute;
}
.no-opacity .selecter-options {
  width: auto;
}
.selecter-group {
  border-bottom: 1px solid #eee;
  color: #999999;
  display: block;
  font-size: 11px;
  padding: 10px 15px;
  text-transform: uppercase;
}
.selecter-item {
    width: 100%;
    background: #ffffff;
    color: #222222;
    cursor: pointer;
    display: block;
    font-size: 12px;
    margin: 0;
    overflow: hidden;
    padding: 10px 15px;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: uppercase;
}
.selecter-item.placeholder {
  display: none;
}
.selecter-item.selected {
  background: #fcfcfc;
}
.selecter-item.disabled {
  color: #999999;
  cursor: default;
}
.selecter-item:first-child {
  border-radius: 0;
}
.selecter-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 2px 2px;
}
.no-touch .selecter-item:hover,
.no-touch .selecter-item.selected:hover {
  color: #333333;
  background-color: #fcfcfc;
}
.selecter-item.disabled,
.no-touch .selecter-item.disabled:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter.open {
  z-index: 3;
}
.selecter.open .selecter-selected {
  z-index: 51;
  border-radius: 3px 3px 0 0;
}
.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
  background-color: #ffffff;
  box-shadow: 0;
}
.selecter.cover .selecter-options {
  border-width: 1px;
  top: 0;
  border-radius: 3px;
}
.selecter.cover .selecter-options .selecter-item.first {
  border-radius: 3px 3px 0 0;
}
.selecter.cover.open .selecter-selected {
  z-index: 49;
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .selecter-options {
  top: auto;
  bottom: 100%;
  border-width: 1px 1px 0;
}
.selecter.bottom .selecter-item:last-child {
  border: none;
}
.selecter.bottom.open .selecter-selected {
  border-radius: 0 0 3px 3px;
}
.selecter.bottom.open .selecter-options {
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .cover .selecter-options {
  top: auto;
  bottom: 0;
}
.selecter.bottom .cover.open .selecter-selected {
  border-radius: 3px;
}
.selecter.bottom .cover.open .selecter-options {
  border-radius: 3px;
}
.selecter.multiple .selecter-options {
  width: 100%;
  position: static;
  border-width: 1px;
  display: block;
  border-radius: 3px;
  box-shadow: none;
}
.selecter.disabled .selecter-selected {
  background: #ffffff;
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-options {
  background: #ffffff;
  border-color: #cccccc;
}
.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-item.selected,
.no-touch .selecter.disabled .selecter-item.selected:hover {
  background: #fafafa;
}
.selecter.disabled .selecter-item,
.no-touch .selecter.disabled .selecter-item:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter-options.scroller {
  overflow: hidden;
}
.selecter-options.scroller .scroller-content {
  max-height: 260px;
  padding: 0;
}
@media screen and (max-width: 740px) {
 /* .selecter {
    max-width: 40%;
  }*/ /* hidden because causes filters to be too small */
  
    .reset-filter a {
	display: block;
    top:0;
    margin: 12px 0;
    width: 190px;
  }

  
    .selecter-selected {

    z-index: -2;
 
}
  
  
  
}
@media screen and (max-width: 500px) {
  .selecter {
    max-width: 100%;
  }
}

.reset-filter a {
    background-color: #fff;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
   /* border: 1px solid black;*/
  text-decoration: underline;
    text-align: center;
    padding: 10px;
    margin: 18px 0;
   display: block; 
    position: relative;
    top: -16px;
}





/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
  margin: 0 auto;
}

.bx-wrapper img {
  display: block;
  
}

.bx-wrapper .bx-viewport {
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
  margin-top: 30px;
}



/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
   /* left: 50%;*/
    margin-left: -32px;
    background: transparent;
    top: 50%;
   
}

a.bx-prev:after {
    font-family: FontAwesome;
    font-size: 32px;
    color: #000000;
    content: "\f104";
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
}

.bx-wrapper .bx-next {
    right: 0;
    background: transparent;
 margin-right: -32px;
    top: 50%;
   
}

a.bx-next:after {
    font-family: FontAwesome;
    font-size: 32px;
    color: #000000;
    content: "\f105";
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	outline: 0;
	width: 32px;
	height: 32px;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

#mobile-product .bx-controls.bx-has-controls-direction {
   display: none; 
}


/***16Oct2019***/

@media only screen and (max-width:1220px){
.forsyth-collab-template .gallery-container.desktop-6 .caption{
	left: 62%!important;
}
.forsyth-collab-template #large-box-collab-gallery {
    max-height: initial;
}
  
   #large-box-collab-av {
  
   max-height: 553px;
 
}
}

@media only screen and (max-width:991px){
.forsyth-collab-template #large-box-collab-gallery .gallery-container.desktop-6 .caption {
    width: 100% !important;
    position: static !important;
    float: left !important;
}

.forsyth-collab-template #large-box-collab {
 max-height: initial;
}
.forsyth-collab-template #collab-beginnings {
    margin-top: 0;
}

.forsyth-collab-template #large-box-collab .collab-left #collab-about {
	margin-top: 0;
	margin-left: 20px;
	margin-right: 20px;
}

.forsyth-collab-template #collab-find {
	margin-top: 30px;
}
.forsyth-collab-template .gallery-container.desktop-6 .bx-wrapper {
	margin-top: 40px;
}
.forsyth-collab-template #large-box-collab-gallery .gallery-container.desktop-6 {
	margin-left: 0;
	margin-right: 0;
	left: 0;
	padding: 0 20px;
}

.forsyth-collab-template #large-box-collab .collab-right img, #large-box-collab img {
	width: 100%;
}
.forsyth-collab-template #large-box-collab-gallery .gallery-container.desktop-6 {
	box-sizing: border-box;
	margin: 0 !important;
	left: 0;
	padding: 0;
	top:0;
}
.forsyth-collab-template .gallery-container.desktop-6 .bx-wrapper {
	width: 83% !important;
}
.forsyth-collab-template #large-box-collab .collab-right-66 {
    width: 50%;
    float: right;
}
.forsyth-collab-template #large-box-collab .collab-left-33 {
	width: 50%;
}
.forsyth-collab-template #large-box-collab .collab-left {
	width: 50%;
	float: left;
}
.forsyth-collab-template #large-box-collab .collab-right {
	width: 50%;
}

#collab-find img {
 margin-top: 30px;
    width: 200px !important;
    margin-left: auto;
    margin-right: auto;
    
}

  #large-box-collab {
    max-height: 424px;
}
 
    #large-box-collab-av {
  
    max-height: 415px;
      margin-top: 20px;
    margin-bottom: 20px;
 
}

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

  .xslider-text {
    margin: 40px auto 30px auto;
    text-align: justify;
    font-size: 16px;
}
  .collab-title {
  margin-bottom: 30px;
}

  #large-box-collab-gallery {
    max-height: 742px;
    margin-top: 20px;
   margin-bottom: 0;
}

  #collab-about {
    margin: 0;
}

  #collab-find img {
 margin-top: 10px;
    width: 100px !important;
    margin-left: auto;
    margin-right: auto;
    
}

   #large-box-collab {
    max-height: 424px;
}
  
  
  #large-box-collab-av {
  
    max-height: 277px;
      margin-top: 20px;
    margin-bottom: 20px;
 
}
  
  
  #large-box-collab-design, #large-box-collab-design-2 {
    margin-bottom: 20px;
    margin-top: 0;
}
  
  
  .collab-left {
    margin-bottom: 30px;
}

  .collab-title-sm {
    padding-top:10px;
    
  }
  
  #collab-beginnings {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0px;
}
  
.forsyth-collab-template .gallery-container.desktop-6 .bx-wrapper {
	width: 70% !important;
	padding-left: 15px!important;
}
.forsyth-collab-template #large-box-collab .collab-right-66 {
    width: 100%;
    float: right;
}
.forsyth-collab-template #large-box-collab .collab-left-33 {
	width: 100%;
}
.forsyth-collab-template #large-box-collab .collab-left {
	width: 100%;
}
.forsyth-collab-template #large-box-collab .collab-right {
	width: 100%;
}

.forsyth-collab-template .gallery-container.desktop-6 .gallery-thumbs-container {
	width: 100% !important;
  display: none;
}
.forsyth-collab-template .gallery-container.desktop-6 .bx-wrapper .bx-viewport {
	margin: 0;
}
.forsyth-collab-template .gallery-container.desktop-6 .bx-wrapper {
	width: 100% !important;
	padding-left: 0 !important;
	margin: 0;
}
.gallery-container.desktop-6 .bx-controls.bx-has-controls-direction .bx-prev {
	left: 20px !important;
}
.gallery-container.desktop-6 .bx-controls.bx-has-controls-direction .bx-next {
	right: 20px !important;
}
}

@media only screen and (max-width:400px){
  
   #large-box-collab-av {

   max-height: 260px;
 
}
}


/*
 * Flickity carousel styles (replaces BX Slider, markup remains unchanged)
 */

/* Mobile PDP carousel */
ul.bxslider,
ul.carousel {
  list-style: none;
}

ul.bxslider.flickity-enabled,
ul.carousel.flickity-enabled {
  padding: 0 30px; 
}

ul.bxslider.flickity-enabled li,
ul.carousel.flickity-enabled li {
  text-align: center;
  width: 100%;

}

/* Desktop PDP thumbnail carousel */
.thumbnail-slider.flickity-enabled {
  padding: 0 40px;
}

.thumbnail-slider.flickity-enabled .slide {
  padding: 5px;
  width: 25%;
}

.flickity-enabled img.thumbnail {
  display: block;
  margin-bottom: 0;
  width: 100%;
}
    
.flickity-button {
  background: transparent;
}

.flickity-prev-next-button {
  width: 30px;
  height: 30px;
}

.flickity-button-icon {
  fill: black;
}

.flickity-prev-next-button.previous {
  left: 0;
}

.flickity-prev-next-button.next {
  right: 0;
}

/* For mobile PDP carousel videos */
video.vid_mobile,
video.vid_desktop_feature {
  max-width: 100%;
  height: auto;
/*   max-height: 360px; */
}

/* Lookbook carousel */
.lookbook ul.bxslider.flickity-enabled {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
