.text-xs-right {
	text-align: right;
}
.capitalize {
  text-transform: capitalize;
}
span.indent-me {
  padding-left: 20px;
  display: block;
}
.indent-title {
  margin-left: -20px;
}
.patterns,
.basecloths-wrap {
	display: flex;
	flex-direction: column;
}
.pattern-filters {
  min-width: 140px;
  text-align: center;
}
.pattern-filters h3 {
  text-transform: uppercase;
  font-size: 18px !important;
  font-weight: normal;
  line-height: 1 !important;
  margin: 0;
  color: #707070;
}
.pattern-filters h4 {
  font-weight: normal;
  border-top: 1px solid #ccc;
  font-size: 17px !important;
  line-height: 1 !important;
  padding-top: 8px;
  margin: 10px 0 10px 0;
  color: #707070;
}
.field {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  position: relative;
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1;
  padding: 3px 0;
  font-weight: normal;
  color: #707070;
}
.field input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}
.checkmark {
  height: 12px;
  width: 12px;
  background-color: #fff;
  margin-left: 6px;
  box-shadow: inset 0px 0px 0px 2px #9e9e9e;
}
/* When the checkbox is checked, add a blue background */
.field input:checked ~ .checkmark {
  background-color: #9e9e9e;
  box-shadow: none;
}

@media screen and (min-width: 640px){
	
	.patterns,
	.basecloths-wrap {
	  height: 100%;
	  min-height: 100%;
	  display: flex;
	  flex-direction: row;
	  height: 100%;
	}
	.pattern-filters {
  	text-align: right;
		border-right: 1px solid #ccc;
		padding-right: 5px;
		margin-right: 15px;
	}
	.field {
		justify-content: flex-end;
	}
	
}

a.previous,
a.next {
	font-size: 14px;
	color: #707070;
}
.section-title {
	font-size: 24px !important;
	line-height: 1.3 !important;
	margin-bottom: 24px;
}

.pattern-grid,
.basecloth-grid {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}
.grid-item {
  width: 50%;
  padding: 10px;
}
.grid-item a {
  width: 100%;
  display: block;
}
.grid-item svg {
	width: 100%;
	height: auto;
}
.basecloths .grid-item a {
  max-height: 160px;
  overflow: hidden;
}
.grid-item img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.grid-item p {
  margin: 0;
  padding: 5px 0;
  font-size: 14px !important;
  color: #707070;
  line-height: 1.4;
}

.single-pattern-wrap {
  background: #f4f4f4;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.pattern-hero {
  width: 100%;
}
.pattern-hero img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.colorway-name {
  font-size: 12px;
  margin: 0;
  line-height: 1;
  padding-top: 5px;
}
.pattern-details {
  width: 100%;
}

@media screen and (min-width: 640px){
	
	.single-pattern-wrap {
		flex-direction: row;
	}
	.pattern-hero {
  	width: 50%;
	}
	.pattern-details {
  	width: 50%;
		padding-left: 30px;
	}
	.grid-item {
    width: 25%;
    padding: 10px;
  }
	
}

.pattern-details h3 {
  font-size: 32px;
  line-height: 1;
  margin: 0 0 20px;
}
.pattern-details .meta-holder {
  display: flex;
  margin-bottom: 20px;
}
.pattern-details .meta-holder .meta-title {
  width: 50%;
}
.pattern-details .meta-holder .meta-title p {
  font-size: 16px;
  width: 100%;
  margin: 0;
}
.pattern-details .meta-holder .meta-title p:first-of-type {
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  font-weight: bold;
}
.pattern-details .meta-holder .meta-title:last-of-type p {
  text-align: right;
}
.selects a,
.rounded-button {
  border: 1px solid #333;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 13px;
  color: #333;
  line-height: 1;
  transition: 0.3s ease-out all;
  cursor: pointer;
}
.selects a:hover,
.rounded-button:hover {
	text-decoration: none;
	background: #333;
	color: #fff;
}

/* Color Picker */
.color-tabs {
	display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.picker {
	position: relative;
	height: 200px;
	width: 65px;
	border: 1px solid #ccc;
	border-radius: 4px;
	flex: auto;
  margin: 0 1px;
  overflow: hidden;
  transition: 0.3s ease;
}
.picker:hover {
	transform: translateY(-2px);
}
.picker a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.picker .color-preview {
	
}

.picker .color-meta {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	right: 0;
	background: #919191;
	color: #fff;
	text-align: center;
	font-size: 9px;
  line-height: 1.2;
  padding-bottom: 5px;
}

.picker .color-meta span {
	display: inline-block;
}
.picker .color-meta .plus-sign {
	color: #fff;
  display: inline-block;
  margin: 8px auto;
  padding: 1px 6px;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: 3px;
}



.colorways {
  width: 100%;
  padding-top: 30px;
}
.colorways-title {
  width: 100%;
  margin: 0 0 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
}
.colorways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.c-grid-item img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.form-field {
  padding-bottom: 20px;
  width: 700px;
  max-width: 100%;
  
}
.form-field label {
  display: block;
  color: #333;
}

@media screen and (min-width: 640px){
	
	.form-field {
  	display: flex;
  }
	.form-field label {
  	min-width: 200px;
  	display: inline-block;
  	text-align: right;
  	padding-right: 15px;
  }
}


.printable-spec-sheet {
	color: #333;
}
.r-logo {
	
}
.spec-h1 {
	font-weight: 700;
	font-size: 34px;
	margin-top: 28px;
  display: inline-block;
}
.spec-h2 {
	color: #333;
  font-weight: 600;
  font-size: 30px;
  display: block;
  line-height: 1.2;
}
.spec-h3 {
	font-size: 28px;
  display: inline-block;
  margin-bottom: 30px;
}
.spec-p {
	display: block;
	margin-bottom: 3px;
}
.spec-list {
	margin: 0;
  padding: 10px 0 0 20px;
}
.spec-small {
	font-size: 16px;
}
.printable-spec-sheet svg {
	width: 430px;
	max-width: 100%;
	height: auto;
}
.printable-spec-sheet hr {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
	border-top: 1px solid #a6a6a6 !important;
}
.date-created {
	padding-left: 20px;
	font-weight: lighter;
}
.big-margin-top {
	margin-top: 30px;
}
.small-margin-top {
	margin-top: 20px;
}
.huge-margin-top {
  margin-top: 70px;
}


.lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #414141 transparent #414141 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-overlay {
	display: flex;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 1em;
  background-color: rgba(0,0,0,0.4);
  line-height: 1;
  position: fixed;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.loading-container {
	position: relative;
  padding: 20px;
  text-align: center;
  
}

.alert-overlay {
  display: flex;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.85);
  line-height: 1;
  position: fixed;
  -webkit-transform-style: "";
  transform-style: "";
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  will-change: opacity;
  z-index: 1000;
}
.alert-message {
  z-index: 1001;
  background: #fff;
  -webkit-box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2),
    1px 3px 15px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2),
    1px 3px 15px 2px rgba(0, 0, 0, 0.2);
  -webkit-transform-origin: 50% 25%;
  transform-origin: 50% 25%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 0.28571429rem;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  will-change: top, left, margin, transform, opacity;
  position: relative;
  padding: 20px 30px;
  text-align: center;
  font-size: 16px;
}
.alert-message p {
	margin-bottom: 0px !important;
	font-size: 16px !important;
}
.close-alert {
  position: absolute;
  top: 10px;
  right: 10px;
}
.close-alert:hover {
	text-decoration: none;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.modal-mask {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  z-index: 200000;
  outline: none;
  background: rgba(0,0,0,0.8);
}

/*
.modal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
*/

.modal-container {
  margin: 0px auto;
  padding: 0px;
  background-color: #fff;
  max-width: 1000px;
  box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2), 0px 24px 38px 3px rgba(0,0,0,0.14), 0px 9px 46px 8px rgba(0,0,0,0.12);
  border-radius: 2px;
  margin: 24px;
  overflow-y: auto;
  pointer-events: auto;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  z-index: inherit;
  max-height: 90%;
}
.modal-container .modal-header {
	
}
.modal-container .modal-header p {
	line-height: 1 !important;
}
.modal-container .modal-header .tiny {
	font-size: 14px !important;
}
.modal-container .half {
	width: 50%;
	flex: 1;
}

.header-row {
	position: relative;
  padding-top: 10px;
}
.close-modal {
  position: absolute;
  top: -8px;
  right: 17px;
  color: #333;
}
.modal-header h3 {
  margin-top: 0;
  color: #42b983;
}
.search-input {
	margin-top: 15px;
}

.modal-body {
  margin: 20px 0;
 }
.color-palette {
	display: flex;
}
.color-shades {
/* 	width: 20%; */
	padding-right: 5px;
}
.color-shades p {
	font-size: 13px !important;
	margin-bottom: 2px;
  border-bottom: 1px solid #ccc;
  padding: 4px 0 4px 6px;
}
.color-shades p a {
	color: #333;
}
.color-shades p:last-of-type {
	border-bottom: none;
}
.color-hexes {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	overflow: scroll;
	max-height: 558px;
}
.color-explorer .color-hexes {
  max-height: inherit;
}
.color-swatch {
	width: 30%;
	padding-top: 130px;
	cursor: pointer;
	position: relative;
	margin: 1px;
}
.color-swatch:after {
	content: attr(data-tooltip);
  background: #333;
  color: #fff;
  padding: 5px;
  position: absolute;
  z-index: 1;
  font-size: 12px;
  right: 0;
  top: 0;
  line-height: 1;
  display: none;
}
.color-swatch:hover:after {
	display: block;
}
.modal-default-button {
  float: right;
}
.modal-footer {
	text-align: left !important;
}
.selected-color {
	width: 240px;
	border: 1px solid #ccc;
}
.selected-color .bg-color {
	height: 90px;
	width: 100%;
	position: relative;
}
.selected-color .white-text {
	display: none;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	position: absolute;
	top: 5px;
	right: 5px;
}
.selected-color .selected-color-name {
	font-size: 13px;
	padding: 10px 5px;
	line-height: 1;
	color: #333;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*  Account Page  */
h3.ul-title {
	font-size: 24px !important;
}
ul.bordered-list {
  list-style-type: none;
  margin-bottom: 30px;
  padding-left: 0;
}
ul.bordered-list li {
	border-top: 1px solid #e6e6e6;
	padding: 10px 0;
}
ul.bordered-list li a {
  display: block;
}
.spec-title {
	color: #333;
}
.saved-date {
	font-size: 14px;
	display: block;
}

@media screen and (min-width: 640px){
  
  ul.bordered-list li {
    width: 48%;
    margin-right: 1%;
    float: left;
  }
  
}

/* Color Explorer */

ul.color-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
ul.color-list li {
  display: inline;
}
ul.color-list li span.color-swatch {
  cursor: default;
  width: 100px;
  height: 100px;
  display: block;
}


/*!
 * # Semantic UI 2.4.0 - Loader
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */
.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;-webkit-box-shadow:0 0 0 1px transparent;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.mini.loader:after,.ui.mini.loader:before{width:1rem;height:1rem;margin:0 0 0 -.5rem}.ui.tiny.loader:after,.ui.tiny.loader:before{width:1.14285714rem;height:1.14285714rem;margin:0 0 0 -.57142857rem}.ui.small.loader:after,.ui.small.loader:before{width:1.71428571rem;height:1.71428571rem;margin:0 0 0 -.85714286rem}.ui.loader:after,.ui.loader:before{width:2.28571429rem;height:2.28571429rem;margin:0 0 0 -1.14285714rem}.ui.large.loader:after,.ui.large.loader:before{width:3.42857143rem;height:3.42857143rem;margin:0 0 0 -1.71428571rem}.ui.big.loader:after,.ui.big.loader:before{width:3.71428571rem;height:3.71428571rem;margin:0 0 0 -1.85714286rem}.ui.huge.loader:after,.ui.huge.loader:before{width:4.14285714rem;height:4.14285714rem;margin:0 0 0 -2.07142857rem}.ui.massive.loader:after,.ui.massive.loader:before{width:4.57142857rem;height:4.57142857rem;margin:0 0 0 -2.28571429rem}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(255,255,255,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#fff transparent transparent}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.87)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1rem;height:1rem;font-size:.78571429em}.ui.inverted.dimmer .ui.tiny.loader,.ui.tiny.loader{width:1.14285714rem;height:1.14285714rem;font-size:.85714286em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.71428571rem;height:1.71428571rem;font-size:.92857143em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.28571429rem;height:2.28571429rem;font-size:1em}.ui.inverted.dimmer .ui.large.loader,.ui.large.loader{width:3.42857143rem;height:3.42857143rem;font-size:1.14285714em}.ui.big.loader,.ui.inverted.dimmer .ui.big.loader{width:3.71428571rem;height:3.71428571rem;font-size:1.28571429em}.ui.huge.loader,.ui.inverted.dimmer .ui.huge.loader{width:4.14285714rem;height:4.14285714rem;font-size:1.42857143em}.ui.inverted.dimmer .ui.massive.loader,.ui.massive.loader{width:4.57142857rem;height:4.57142857rem;font-size:1.71428571em}.ui.mini.text.loader{min-width:1rem;padding-top:1.78571429rem}.ui.tiny.text.loader{min-width:1.14285714rem;padding-top:1.92857143rem}.ui.small.text.loader{min-width:1.71428571rem;padding-top:2.5rem}.ui.text.loader{min-width:2.28571429rem;padding-top:3.07142857rem}.ui.large.text.loader{min-width:3.42857143rem;padding-top:4.21428571rem}.ui.big.text.loader{min-width:3.71428571rem;padding-top:4.5rem}.ui.huge.text.loader{min-width:4.14285714rem;padding-top:4.92857143rem}.ui.massive.text.loader{min-width:4.57142857rem;padding-top:5.35714286rem}.ui.inverted.loader{color:rgba(255,255,255,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#fff}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;-webkit-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}

@media print { 
 
 body {
	 padding-top: 0px !important;
	 font-size: 14px;
 }
 .hide-for-print {
   display: none;
 }
 
 header, footer {
	 display: none;
 }
 .fl-module-heading,
 .actions-row,
 .prev-next,
 a[href]:after,
 header.fl-builder-content,
 footer.fl-builder-content,
 header.fl-post-header,
 div.fl-row-bg-photo,
 noscript {
	 display: none !important;
 }
 .printable-spec-sheet {
	 width: 100%;
	 background: #fff;
	 font-size: 15px;
 }
 .printable-spec-sheet .spec-h2 {
   font-size: 25px;
 }
 .printable-spec-sheet ul li {
   line-height: 1;
 }
 .printable-spec-sheet .big-margin-top {
   margin-top: 15px;
 }
 .printable-spec-sheet .small-margin-top {
   margin-top: 10px;
 }
 .printable-spec-sheet .spec-small {
   font-size: 14px;
 }
 
@page {
  size: A4;
  margin: 0;
/*   padding: 2in; */
/*   background: #cccccc; */
}
 
}