@font-face {
	font-family: 'icomoon';
	src:url('../assets/fonts/icomoon/icomoon.eot');
	src:url('../assets/fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../assets/fonts/icomoon/icomoon.woff') format('woff'),
		url('../assets/fonts/icomoon/icomoon.ttf') format('truetype'),
		url('../assets/fonts/icomoon/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* General button style (reset) */
.btn {
	border: none;
	font-family: Verdana;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 25px 80px;
	display: inline-block;
	margin: 15px 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

/* Pseudo elements for icons */
.btn:before,
.icon-heart:after,
.icon-star:after,
.icon-plus:after,
.icon-file:before {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}
btn:disabled,
button[disabled]{
  background-color: #cccccc;
  color: #666666;
}


.icon-cart:before {
	content: "\e007";
}

.icon-cart-2:before {
	content: "\e008";
}


.icon-arrow-right:before {
	content: "\e00d";
}

.icon-arrow-left:before {
	content: "\e003";
}

.icon-truck:before {
	content: "\e00e";
}

.icon-remove:before {
	content: "\e00f";
}

.icon-cog:before {
	content: "\e010";
}

.icon-plus:before,
.icon-plus:after {
	content: "\e011";
}

.icon-minus:before {
	content: "\e012";
}

.icon-remove-2:before {
	content: "\e005";
}

.icon-download:before {
	content: "\e933";
}


/* Button 3 */
.btn-line {
    min-width: 270px;
	color: #fff;
}


.btn-line:before {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	line-height: 3;
	font-size: 140%;
	width: 60px;
}


/* Button - red */
.btn-red {
    background:  #ff4e29;
	padding: 25px 60px 25px 90px;
}

.btn-red:active {
	background: #db2600;
	top: 2px;
}
.btn-red:before {
    background: #db2600;
}
.btn-red:hover:not([disabled]) {
	background: #db2600;
}

/* Button - green */
.btn-green {
    background:  #0dd659;
	padding: 25px 60px 25px 90px;
}

.btn-green:active {
	background: #0aa645;
	top: 2px;
}

.btn-green:before {
    background: #0aa645;

}
.btn-green:hover:not([disabled]) {
	background: #0aa645;
}

/* Button - blue */
.btn-blue {
    background: #37d6d1;
	padding: 25px 60px 25px 90px;
}

.btn-blue:active {
	background: #25b5b0;
	top: 2px;
}

.btn-blue:before {
    background: #25b5b0;
}

.btn-blue:hover:not([disabled]) {
	background: #25b5b0;
}

/* Resize Buttons for Mobile Screens */
@media (max-width: 768px) {
  .btn {
    padding:2px 4px;
    font-size:40%;
    line-height: 1;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .btn {
    padding:4px 9px;
    font-size:60%;
    line-height: 1.2;
  }
}