
#productCart,
#productCart {
	min-height: 250px;
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.grid {
	overflow: hidden;
	max-width: 1300px;
	margin: 0 auto;
	padding: 2.5% 0 1em;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
}

/* Clearfix */

.grid:after {
	content: '';
	display: block;
	clear: both;
}

.grid__item {
	display: inline-block;
	margin: 0.2em 0.1em;
	font-size: 2em;
	width: 5.5em;
	height: auto;
	border-radius: 4px;
	background: #FFF;
	color: #d2dee5;
	text-align: center;
	border: 1px solid #ddd;
}

.grid__item:hover {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.grid__item:active {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.grid__item img {
	width: 5em;
	max-height: 5em;
	margin: 0.25em;
}

.grid__item h2 {
	position: absolute;
	top: 7.3em;
	text-transform: uppercase;
	color: #1e1f1f;
	font-size: 15px;
	background: rgba(255,255,255,0.6);
	width: 100%;
	margin: 0;
	padding: 5px;
}

.is-dragging {
	background: #525b62;
}

.is-active {
	z-index: 100;
}

.is-dropped {
	opacity: 0;
	-webkit-transform: scale3d(0.7,0.7,1) !important;
  transform: scale3d(0.7,0.7,1) !important;
}

.is-complete {
	opacity: 1;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s !important;
	transition: opacity 0.3s, transform 0.3s !important;
	-webkit-transform: scale3d(1,1,1) !important;
	transform: scale3d(1,1,1) !important;
}

.animate {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.drop-area {
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 99;
	width: 19em;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: #34495e;
	text-align: left;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transform: translate3d(20px,0,0);
	transform: translate3d(20px,0,0);
}

.drop-area.show {
	-webkit-transform: translate3d(-16em,0,0);
	transform: translate3d(-16em,0,0);
}

.drop-area > div {
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.4s 0.1s;
	transition: transform 0.4s 0.1s;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
}

.drop-area.show > div {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.drop-area__item {
	position: relative;
	display: inline-block;
	margin: 3em 0 1em 2em;
	width: 12em;
	height: 12em;
	border-radius: 4px;
	background: #6686a7;
	text-align: center;
	-webkit-transition: -webkit-transform 0.3s, background 0.3s;
  transition: transform 0.3s, background 0.3s;
}

.drop-area__item.highlight {
	background: #84a4c4;
	-webkit-transform: scale3d(1.08,1.08,1);
	transform: scale3d(1.08,1.08,1);
}

.drop-area__item::before,
.drop-area__item::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	color: rgba(0,0,0,0.15);
	font-size: 1.5em;
	margin-top: -0.35em;
	font-family: FontAwesome;
	pointer-events: none;
}

.drop-area__item::before {
	content: '\f067';
}

.drop-feedback.drop-area__item::before {
	opacity: 0;
	-webkit-transform: scale3d(0,0,1);
	transform: scale3d(0,0,1);
}

.drop-area__item::after {
	color: rgba(52,73,94,0.6);
	content: '\f00c';
	font-size: 3em;
	margin-top: -0.5em;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: scale3d(2,2,1);
	transform: scale3d(2,2,1);
}

.drop-feedback.drop-area__item::after {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

.dummy,
.dummy::after {
	position: absolute;
	bottom: 100%;
	left: 0;
	margin: 0.25em 0;
	height: 0.65em;
	border-radius: 2px;
	background: rgba(255,255,255,0.1);
	-webkit-backface-visibility: hidden;
}

.dummy {
	width: 80%;
}

.dummy::after {
	width: 90%;
	content: '';
}

.drop-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	pointer-events: none;
}

.drop-area.show + .drop-overlay {
	opacity: 1;
}

.helper {
	font-size: 2em;
	position: absolute !important;
	margin: 0;
}

.grid__item.ex-moved {
	position: relative;
}

.grid__item.ex-moved img {
	/* height: 15%; */
	/* width: 15%; */
	/* float: left; */
}

.grid__item.ex-moved h2 {
}

.grid__item.ex-moved .spinner {
	position: relative;
	margin: 0 10px 0.5rem;
	max-width: 100%;
	left: 0;
	bottom: 0px;
}

#productList .removeMe {
	display: none;
}

#productCart .removeMe {
	position: absolute;
	right: -1px;
	width: 30px;
	height: 30px;
	background: #e2001c;
	color: #FFF;
	border-radius: 4px;
	font-size: 25px;
	line-height: 23px;
	font-weight: 100;
	/* top: 0px; */
}

#productList .moveTo {
	display: block;
	position: relative;
	margin: 0 6px 0.5rem;
	max-width: 100%;
	left: 0;
	bottom: 0px;
}

#productList .moveToRight {
	padding: 10px 0;
	background: #e2001c;
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	font-weight: bolder;
	min-width: 100%;
	display: block;
	margin: 0;
}

#productCart .moveTo {
	display: none;
}

#productList .spinner {
	display: none;
}

#productCart .spinner input {
  text-align: right;
}

#productCart .spinner .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 2%;
  vertical-align: middle;
  display: table-cell;
}

#productCart .spinner .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin-left: -1px;
  position: relative;
  border-radius: 0;
  margin: 0;
  color: #000 !important;
}

#productCart .spinner .input-group-btn-vertical > .btn:first-child {
  border-top-right-radius: 4px;
}

#productCart .spinner .input-group-btn-vertical > .btn:last-child {
  margin-top: -2px;
  border-bottom-right-radius: 4px;
}

#productCart .spinner .input-group-btn-vertical i {
  position: absolute;
  top: 0;
  left: 4px;
}

@media screen and (max-width: 50em) {
	.grid__item {
		font-size: 1.5em;
	}
	.drop-area {
		font-size: 0.6em;
	}
}

@media screen and (max-width: 25.5em) {
	.grid {
		padding: 0 2em;
	}
	.grid__item {
		font-size: 1em;
	}
}

#filters .btn,
#sorts .btn {
	padding: 5px 10px;
	font-size: 10px;
	margin: 0 0 3px 0;
	background: #d2001c;
}


#rateBar {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.75em 5em;
    text-align: center;
    background: #191a1b;
    -webkit-transform: translate3d(0, 0, 0);
    margin: 0;
}

#rateBar .quoteRateNRate {
	padding: 5px 10px;
	font-size: 10px;
	margin: 0 0 3px 0;
	background: #d2001c;
}

#requestQuote {
	background: #e2001c;
	color: #FFF;
}
