@import "reset.css";
/*	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	-o-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
	box-shadow:0 5px 20px #666;
*/
/*-------------- typo font start --------------*/


@font-face {
 font-family: 'open_sansbold';
 src: url('font/opensans-bold-webfont.eot');
 src: url('font/opensans-bold-webfont.eot?#iefix') format('embedded-opentype'), url('font/opensans-bold-webfont.woff') format('woff'), url('font/opensans-bold-webfont.ttf') format('truetype'), url('font/opensans-bold-webfont.svg#open_sansbold') format('svg');
 font-weight: normal;
 font-style: normal;
}
@font-face {
 font-family: 'open_sans_lightregular';
 src: url('font/opensans-light-webfont.eot');
 src: url('font/opensans-light-webfont.eot?#iefix') format('embedded-opentype'), url('font/opensans-light-webfont.woff') format('woff'), url('font/opensans-light-webfont.ttf') format('truetype'), url('font/opensans-light-webfont.svg#open_sans_lightregular') format('svg');
 font-weight: normal;
 font-style: normal;
}
@font-face {
 font-family: 'open_sansregular';
 src: url('font/opensans-regular-webfont.eot');
 src: url('font/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'), url('font/opensans-regular-webfont.woff') format('woff'), url('font/opensans-regular-webfont.ttf') format('truetype'), url('font/opensans-regular-webfont.svg#open_sansregular') format('svg');
 font-weight: normal;
 font-style: normal;
}
@font-face {
 font-family: 'open_sans_semibold';
 src: url('font/opensans-semibold-webfont.eot');
 src: url('font/opensans-semibold-webfont.eot?#iefix') format('embedded-opentype'), url('font/opensans-semibold-webfont.woff') format('woff'), url('font/opensans-semibold-webfont.ttf') format('truetype'), url('font/opensans-semibold-webfont.svg#open_sans_semibold') format('svg');
 font-weight: normal;
 font-style: normal;
}
@font-face {
 font-family: 'opensans-italic';
 src: url('font/opensans-italic-webfont.eot');
 src: url('font/opensans-italic-webfont.eot?#iefix') format('embedded-opentype'), url('font/opensans-italic-webfont.woff') format('woff'), url('font/opensans-italic-webfont.ttf') format('truetype'), url('font/opensans-italic-webfont.svg#opensans-italic') format('svg');
 font-weight: normal;
 font-style: normal;
}
/*-------------- typo fonts end --------------*/
/*----------- general classes start ----------*/
* {
	outline:none;
}
:focus {
	outline:none;
}
.group:before, .group:after {
	content:"";
	display:table;
}
.group:after {
	clear:both;
}
.group {
	zoom:1; /* For IE 6/7 (trigger hasLayout) */
}
.clear-fix {
	clear:both;
}
a {
	color:#216EAB;
}
img{
	max-width: 100%;
	height: auto;
}
.pull-left {
	float:left;
}
.pull-right {
	float:right;
}

body{
	overflow-x:hidden; 
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    -moz-transform: translate3d(0, 0, 0) rotate(0deg);
    -ms-transform: translate3d(0, 0, 0) rotate(0deg);
    -o-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) rotate(360deg);
    -moz-transform: translate3d(0, 0, 0) rotate(360deg);
    -ms-transform: translate3d(0, 0, 0) rotate(360deg);
    -o-transform: translate3d(0, 0, 0) rotate(360deg);
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}

/* line 186, ../sass/style.scss */
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
}



/*----------- general classes end ----------*/
/*-------------- buttons start --------------*/
.btn {
	display:inline-block;
	background: #ed008c;
	border-radius:5px;
	font:15px arial;
	color:#fff;
	padding:3px 15px;
	text-align:center;
	cursor:pointer;
	position:relative;
 -webkit-transition:all .3s ease-in-out;
 -moz-transition:all .3s ease-in-out;
 -o-transition:all .3s ease-in-out;
 transition:all .3s ease-in-out;
}
.btn a {
	color:#fff;
}
.btn img {
	vertical-align:middle;
}
.btn a:hover {
	color:#edce28;
 -webkit-transition:all .3s ease-in-out;
 -moz-transition:all .3s ease-in-out;
 -o-transition:all .3s ease-in-out;
 transition:all .3s ease-in-out;
}
.btn.blue {
	background:#2e3092
}

.new-spinner{
	position: absolute;
    top: 4px;
    width: 30px;
    height: 30px;
    right: -35px;
}

.new-spinner.right{
	right: -35px;
}

.new-spinner.left{
	left: -35px;
}

.new-spinner.center{
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 6px;
}


.new-spinner img{
	width: 30px;
    height: 30px;
}

/*-------------- buttons end --------------*/
/*------------------------ general form fields start ------------------------*/
input[type="text"] {
    background: #f7f7f7;
    border: 1px solid #d9d6d6;
    color: #666666;
    display: block;
    float: left;
    font: 14px 'open_sansregular', Arial, Helvetica, sans-serif;
    height: 40px;
    margin-right: 22px;
    padding: 5px 12px;
    width: 100%;
    box-sizing: border-box;
}
input[type="text"]:focus {
	background-color:#fffdd2;
	box-shadow:none;
 -webkit-transition:all .3s ease-in-out;
 -moz-transition:all .3s ease-in-out;
 -o-transition:all .3s ease-in-out;
 transition:all .3s ease-in-out;
}
input[type="text"].last {
	margin-right:0px;
}
input[type="password"] {
    background: #f7f7f7;
    border: 1px solid #d9d6d6;
    color: #666666;
    display: block;
    float: left;
    font: 14px 'open_sansregular', Arial, Helvetica, sans-serif;
    height: 40px;
    margin-right: 22px;
    padding: 5px 12px;
    width: 100%;
    box-sizing: border-box;
}
input[type="text"].fileupload {
	cursor:pointer;
	border: 1px dashed #bbc2c8;
}
input[type="text"].invalid, input[type="password"].invalid, textarea.invalid, select.invalid {
	border: 1px solid #e17070 !important;
	color:#ca5757!important;
}
textarea {
	background: #FFFFFF;
	border: 1px solid #dddddd;
	box-shadow:0 0px 4px #ccc inset;
	color: #666;
	display: block;
	font:14px/20px 'allerregular', Arial, Helvetica, sans-serif;
	padding:5px;
}
select {
	border: 1px solid #dddddd;
	box-shadow:0 0px 4px #ccc inset;
	font:14px/24px 'allerregular', Arial, Helvetica, sans-serif;
	height:36px;
	color: #666;
	display: block;
	padding: 6px 5px;
	background: #FFFFFF;
}
select:focus {
	background-color:#fffdd2;
	box-shadow:none;
 -webkit-transition:all .3s ease-in-out;
 -moz-transition:all .3s ease-in-out;
 -o-transition:all .3s ease-in-out;
 transition:all .3s ease-in-out;
}
textarea:focus {
	background-color:#fffdd2;
	box-shadow:none;
 -webkit-transition:all .3s ease-in-out;
 -moz-transition:all .3s ease-in-out;
 -o-transition:all .3s ease-in-out;
 transition:all .3s ease-in-out;
}
/*------------------------ general form fields end ------------------------*/

.top {
	background:#ededed;
	height:5px;
	width:100%
}
.wrraper {
width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: 1024px;
}
.left-circle {
	position:absolute;
	left:0px;
	top:0px;
}
.logo {
	margin:30px 0;
	float:left;
	height: auto;
    width: 420px;
}
.logo img {
	width: 100%;
}
.order-detail {
	float: right;
	margin-top: 27px;
	position: relative;
	width: 423px;
}
.order-detail p {
	font: 12px/13px 'open_sansregular';
	color:#713b0c;
	padding-top: 5px;
}
.center {
	text-align:center;
	width:218px;
}
.order-detail h1 {
	color: #717171;
	font: 19px/13px 'open_sansregular';
	padding-top: 12px;
}
.order-detail h1 span {
	font:28px/38px 'open_sansbold';
	color:#ed008c;
	display:block;
}
.van {
	position:absolute;
	right:0px;
	top:0px;
}
.nav {
	background:#2e3092 url(../images/nav-bg.jpg) repeat-x;
	display:block;
	height:49px;
	    margin-top: 5px;
}
.nav ul {
	margin: 0 auto;
	top: 0;
	width: 719px;
}
.nav ul li {
	border-right: 1px dotted #EC008C;
	color: #FFFFFF;
	float: left;
	font: 700 20px Arial, Helvetica, sans-serif;
	text-align: center;
 -webkit-transition:all .3s ease-in-out;
 -moz-transition:all .3s ease-in-out;
 -o-transition:all .3s ease-in-out;
 transition:all .3s ease-in-out;
}
.nav ul li a {
	color:#fff;
	padding: 12px 31px;
	display:inline-block;
}
.nav ul li:hover a {
	color:#fff;
	background:#ec008c;
 -webkit-transition:all .3s ease-in-out;
 -moz-transition:all .3s ease-in-out;
 -o-transition:all .3s ease-in-out;
 transition:all .3s ease-in-out;
}
.nav ul li.selected a {
	color:#fff;
	background:#ec008c;
}
.nav ul li.last {
	border-right:none;
}
.content-bg {
	background:#ebebeb;
	min-height:510px;
	border-top:1px solid #8f8d8d;
	border-bottom:1px solid #8f8d8d;
}
.bor-line {
	background:url(../images/bor-line.jpg) repeat-x;
	height:2px;
	width:100%;
	margin-top:20px
}
.text-line {
	text-align:center;
	margin:30px 0 20px;
}
.content {
    width: 100%;
    margin: 0 auto;
    max-width:1024px;
}
.services {
	position: relative;
}
.services ul {
	width: 100%;
	text-align: center;
	position: relative;
}

.services ul li{
display: inline-block;
    margin-right: 0;
    position: relative;
    width: 24.5%;
    text-align: left;
    margin-right: 0;
    vertical-align: top;
}

.services ul li:nth-child(3){
	margin-top: 0 !important;
}

.services ul li:nth-child(3),.services ul li:nth-child(4){
	left: 0 !important;
}

.services ul li:nth-child(3) .service-pic,.services ul li:nth-child(4) .service-pic{
	left: 0 !important;
}

.services ul li img{
	width: 112%;
	max-width: inherit;
}

.services ul li img {
}
.services ul li.last {
	margin-right:0px;
}

.service-pic {
	left:0px;
	top:0px;
	position:relative;
}

.services-details {
	position: relative;
	width:100%;
	margin-top:10px;
}
.count {
	background: none repeat scroll 0 0 #FFB97D;
	border-radius: 50px 50px 50px 50px;
	color: #2E3092;
	float: left;
	font: 13px 'open_sansregular';
	height: 13px;
	margin-right: 10px;
	padding: 13px 0;
	text-align: center;
	width: 38px;
}
.count span {
	font-weight:bold;
}
.services-details h2 {
	color:#ed008c;
	font:17px 'open_sansregular', Arial;
}
.services-details ul {
    left:60px;
    position: relative;
    top: -8px;
    width: 73%;
}
.services-details ul li {
    color: #000000;
    float: none;
    font: 12px/18px 'open_sansregular';
    list-style: disc outside none;
    margin-left: 1px;
    position: relative;
    width: 100%;
}

.services-details ul li:before{
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    left: -12px;
    background: #000;
    border-radius: 100%;
    top: 8px;
}

#footer {
	width:100%;
}
.footer {
	background:#2e3092;
	border-bottom:1px solid #4e51c7;
}
.text-footer {
	text-align:center;
	text-align:center;
	padding:10px;
}
.text-footer h2 {
	font:32px 'open_sans_lightregular';
	color:#ffb97d
}
.text-footer h2 span {
	color:#fff;
}
.footer-qote {
	width:100%
}
.footer-bor {
	background:url(../images/footer-bor.png) repeat-x;
	height:2px;
}
.quicklink {
	margin: 20px auto 10px;
	overflow: hidden;
	width: 100%;
}
.footer-logo {
	float:left;
	margin-right:30px;
	    width: 30%;
}
.quicklink ul {
	float:left;
	margin-right:18px;
	    width: 15%;
}
.quicklink ul.last {
	margin-right:0px;
}

.quicklink ul.last li{
	position: relative;
	right:15px;
}

.quicklink ul li h2 {
	font:14px Arial, Helvetica, sans-serif;
	color:#fff;
	font-weight:bold;
	padding-bottom:3px;
}
.quicklink ul li {
	color: #FFB97D;
	cursor: pointer;
	font: 14px/12px Arial, Helvetica, sans-serif;
	padding-bottom: 8px;
	text-shadow: 0 1px 0 #21237B;
	width: 150px;
}
.quicklink ul li:hover {
	color:#ed7c1b;
}
.quicklink ul li img {
	vertical-align:middle;
}
.quicklink ul.text-rignt {
	text-align:right;
	    width: 30%;
}

.quicklink ul.text-rignt li{
	    width:100%;
}

.footer-bottom {
	padding:15px;
	background:#ed008c;
	border-top:1px solid #ff00ff;
}

.footer-bottom .wrraper{
	width: 100% !important;
}

.footer-bottom p {
	color: #FFB97D;
	font: 14px/12px Arial, Helvetica, sans-serif;
}
.footer-bottom p a {
	color: #FFB97D;
}
.footer-bottom p a:hover {
	color:#ed7c1b;
}
.about {
	margin-top:20px;
	padding-bottom:20px;
}
.about h1 {
	color: #ED008C;
	display: block;
	font: 28px/38px 'open_sansbold';
}
.about h2 {
	font: 17px 'open_sansbold';
	padding: 5px 0;
	color: #2e3092;
}
.about p {
	color: #000;
	font: 14px/21px 'open_sansregular';
	padding-top: 5px;
}
#coustomer-form, #price-details {
	overflow:hidden;
	margin-bottom:20px;
}
.order-now, .pricelist {
	padding-bottom:20px;
	width:691px;
	margin:20px auto;
	overflow:hidden
}
.order-now h1, .pricelist h1 {
	color: #ED008C;
	display: block;
	font: 28px/38px 'open_sansbold';
	text-align:center;
	margin-bottom:20px;
}
.order-now h2, .pricelist h2 {
	font: 28px/38px 'open_sansbold';
	color:#2e3092;
}
.order-now h2 span, .pricelist h2 span {
	color:#ed008c
}
.exisiting-customer {
	float: left;
	width:326px;
	background:#fff;
	box-shadow:0px 0px 5px #c5c4c4;
	border-radius:5px;
	border:1px solid #c5c4c4;
	padding-bottom: 15px;
	    min-height: 340px;
}
.exisiting-customer h2, .new-customer h2 {
	background:#2e3092;
	font: 20px 'open_sansbold';
	color:#fff;
	text-align:center;
	margin:30px 0 0;
	padding:10px 0
}
.form {
	overflow: hidden;
	padding: 15px 15px 0;
}
.form label {
	color: #000000;
	display: block;
	font: 18px 'open_sansregular';
	padding-bottom:10px;
}
.btn.login {
	font: 18px 'open_sansregular';
	padding: 10px 24px;
	text-align: center;
}
.row-bottom {
	margin:20px 15px;
}
.row-bottom span {
	font: 13px 'open_sansregular';
	color:#575757
}
.row-bottom span a {
	color:#575757
}
.row-bottom span a:hover {
	color:#2e3092;
	text-decoration:none
}
.new-customer {
	float: right;
	width:326px;
	background:#fff;
	box-shadow:0px 0px 5px #c5c4c4;
	border-radius:5px;
	border:1px solid #c5c4c4;
	padding-bottom: 15px;
	    min-height: 340px;
}
.washing {
	float: left;
	width:326px;
	background:#f8f8f8;
	box-shadow:0px 0px 5px #c5c4c4;
	border-radius:5px;
	border:1px solid #c5c4c4;
}
.washing ul {
}
.washing ul li {
	font:18px 'open_sansregular';
	color:#000;
	position:relative;
	padding:10px 15px;
	border-bottom:1px solid #c0bfbf
}
.washing ul li span {
	position: absolute;
	right: 15px;
	top: 13px;
}
.washing ul li.gray-line {
	background:#efefef
}
.washing ul li.last {
	border:none;
	border-radius: 0 0 5px 5px;
}
.washing h3 {
	background:#2e3092;
	font: 20px 'open_sansbold';
	color:#fff;
	padding:0px;
	padding:10px 15px;
}
.dry-cleaning {
	float: right;
	width:326px;
	background:#fff;
	box-shadow:0px 0px 5px #c5c4c4;
	border-radius:5px;
	border:1px solid #c5c4c4;
}
.dry-cleaning ul li {
	font:18px 'open_sansregular';
	color:#000;
	position:relative;
	padding:10px 15px;
	border-bottom:1px solid #c0bfbf
}
.dry-cleaning ul li span {
	position: absolute;
	right: 15px;
	top: 13px;
}
.dry-cleaning ul li.gray-line {
	background:#efefef
}
.washing h2, .dry-cleaning h2 {
	background:#2e3092;
	font: 20px 'open_sansbold';
	color:#fff;
	padding:10px 15px;
	border-radius:5px 5px 0 0;
}
.contact {
	margin-top:20px;
	padding-bottom:20px;
}
.contact h1 {
	color: #ED008C;
	display: block;
	font: 28px/38px 'open_sansbold';
}
.contact h2 {
	font: 17px 'open_sansbold';
	padding: 5px 0;
	color: #2e3092;
}
.contact p {
	color: #000;
	font: 14px/21px 'open_sansregular';
	padding-top: 5px;
}
.left-panel {
	float:left;
	    width: 65%;
	margin-bottom:20px;
}

.left-panel.custom1,.right-panel.custom1{
	width: 48%;
}

.right-panel.custom1{
	float: right;
}

.left-panel.new-customer-page{

}

.left-panel.new-customer-page label{
	text-align: left;
}

.contact-form {
}
.form-row {
	padding: 10px 0;
	position:relative;
	float:left;
}

.contact-form .form-row{
	width: 100%;
}

.form-row label {
	color: #000;
	display: block;
	font: 18px 'open_sansregular';
	margin-bottom: 10px;
	position: relative;
	text-shadow: 0 1px 0 rgb(255, 255, 255);
	text-transform: uppercase;
	width:49%;
	float: left;
	margin-right:2%;
}

.form-row label.full{
	width: 100%;
}

.form-row label span {
	color:#FF0000;
}
.form-row label.last {
	margin-right:0px;
}
.form-row input[type="text"]:focus {
	background:#fdfeb6;
}
.form-row input[type="text"].last {
	margin-right:0px;
}
.form-row input[type="text"]:hover {
	box-shadow:none;
}
.form-row input[type="text"] {
    width: 49%;
    background: #fff;
    margin-right: 2%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 35px;
}

.form-row textarea {
    background: none #FFFFFF;
    border: 1px solid #D0D0D0;
    box-shadow: 0 3px 0 #E6E5E5;
    color: #9D9B9B;
    display: block;
    font: 14px/22px 'open_sansregular';
    height: 159px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.form-row textarea:hover {
	background:#fdfeb6;
}
.form-row textarea:hover {
	box-shadow:none;
}
.right-panel {
	float: right;
	width: 32%;
}
.get-in-touch {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #C5C4C4;
	border-radius: 5px 5px 5px 5px;
	box-shadow: 0 0 5px #C5C4C4;
	float: left;
	padding-bottom: 15px;
	width:99%;
}
.get-in-touch h2 {
	background: #2e3092;
	font: 20px 'open_sansbold';
	color: #fff;
	padding: 10px;
	border-radius:  4px 4px 0 0;
}
.get-in-touch ul {
}
.get-in-touch ul li {
	border-bottom: 1px solid #FFFFFF;
	border-top: 1px solid #D5D2CF;
	color: #ED008C;
	font: 16px 'open_sansbold';
	list-style: none outside none;
	padding: 6px 17px;
}
.get-in-touch ul li p {
	color: #000000;
	font: 14px/21px 'open_sansregular';
	padding-top: 5px;
}
.get-in-touch ul li img {
	margin-right: 5px;
	vertical-align: middle;
	width:16px;
}
.table-liting-data {
    border: 1px solid #CBD0D5;
    border-radius: 5px 5px 5px 5px;
    float: left;
    margin: 10px 2% 10px 0;
    width: 48%;
}
.table-liting-data span{font: 12px 'open_sansregular'; color:#fff; text-align:center; margin-left:20px;}
.table-liting-data tr {
	border-bottom:1px solid #cbd0d5;
}
.table-liting-data tr td input {
	width:100px;
	margin-right: 0px;
	float:none;
	height:30px;
}
.table-liting-data tr.last {
	border-bottom:none;
}
.table-liting-data tr.title {
	background:#2E3092;
}
.table-liting-data tr.title td {
	color:#fff;
	font: 16px 'open_sansbold', Arial, Helvetica, sans-serif;
	background:#2E3092;
}
.table-liting-data tr.title td.last {
	border-right: none
}
.table-liting-data tr td {
	font: 16px 'open_sansregular', Arial, Helvetica, sans-serif;
	color:#2E3092;
	background:#fff;
	padding:8px 10px;
	border-right:1px solid #cbd0d5;
}
.table-liting-data tr td input[type="checkbox"] {
	margin:0px 5px 0 0;
}
.table-liting-data tr td.first {
	border-left:0;
	padding:8px;
}
.table-liting-data h2 {
	background:#ec008c;
	font:18px 'open_sansbold', Arial, Helvetica, sans-serif;
	color:#fff;
	padding:10px;
	border-radius:5px 5px 0 0;
}
.form-row p {
	color: #FF0000;
	font: 12px 'open_sansregular', Arial, Helvetica, sans-serif;
	position: absolute;
	right: 5px;
	top: 9px;
}
.your-order {
	 background: none repeat scroll 0 0 #F8F8F8;
    border: 1px solid #C5C4C4;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 5px #C5C4C4;
    margin-bottom: 20px;
    
}
.your-order h1 {  background: none repeat scroll 0 0 #2E3092;
    border-radius: 5px 5px 0 0;
    color: #FFFFFF;
    display: block;
    font: 22px 'open_sansbold';
    padding: 10px 15px;
}
.your-order ul {
}
.about ul {list-style-type:square;}
.about ul li {color: #000000;
font: 13px 'open_sansregular';
padding: 4px 2px;
height: 25px;}

.your-order ul li {
	  border-bottom: 1px solid #D9D6D6;
    color: #000000;
    font: 15px/21px 'open_sansregular';
    
    padding: 5px 19px; height:25px;
	
}

.your-order ul li p{color: #2e3092;
font: 14px/21px 'open_sansregular';
padding-top: 5px;}
.your-order ul li span{
font: 15px 'open_sansbold';
padding: 5px 0;
color: #2e3092; width:150px; display:inline-block}


.note{  background: #2E3092;
    color: #fff;
    font: 14px/21px 'open_sansregular';
    height: 71px;
    margin-left: -15px;
    padding: 10px;
    width: 480px; }

.collection-form{
    width: 100%; padding:15px;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}
.form-row select{ width:  216px; margin-right:15px; float:left;border: 1px solid #D9D6D6; box-shadow:none}
.form-row.delivery{ padding:0px;}
.form-row label.coll{ width:49%;}

.col-full{
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
}

.col-half{
	width: 48%;
}

.col-full .form-row.delivery{
	width: 100%;
}

.col-medium{
	width: 68%;
}

.col-small{
	width:28%;
}

.full-width{
	width: 100% !important;
}

.margin-bottom-15px{
	margin-bottom: 15px;
}

.form-row input[type="text"].colle{ width:188px;}
.form-row input[type="text"].last{ margin-right:0px;}


.col-full .form-row select {
	width: 100%;
}


.table-liting-data.collection-page{

}

.table-liting-data.collection-page .padding-15px{
	padding:15px;
}

.table-liting-data.collection-page .collection-form{
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	padding: 15px;
	width: 100%;
}

/*
Spinners
*/

.spinner1{
	position: absolute;
    margin-left: 102px;
    top: 6px;
    display: none;
}

.spinner2{
    position: absolute;
    margin-left: 104px;
    top: 6px;
    display: none;
}

.spinner3{
    position: absolute;
    margin-left: -94px;
    margin-top: -28px;
    width: 28px;
    display: none;
}

.spinner4{
    position: absolute;
    margin-left: 119px;
    margin-top: -38px;
    display: none;
    width: 35px;
    height: 35px;
}

.spinner5{
    position: absolute;
    margin-top: -22px;
    margin-left: 109px;
    width: 28px;
    display: none;
}

.spinner6{
	    position: absolute;
    margin-top: -22px;
    margin-left: 114px;
    width: 35px;
    display: none;
    height: 35px;
}

@media screen and (max-width:1024px){
	.contact,.about{
		max-width:98%;
	}
}


	.half-field{
		width: 48% !important
	}

	.field-70{
		width:60% !important;
		margin-right:0px !important;
	}

	.field-30{
		width:35% !important
	}

@media screen and (max-width:900px){

.wrraper{
	max-width:98%;
}

.logo{
	width:38%;
	    margin-top: 35px;
}	

.btn{
	font: 12px arial;
}

.order-detail{
	    width: 52%;
}

.order-detail h1{
	    font: 15px/9px 'open_sansregular';
}

.order-detail h1 span{
    font: 22px/20px 'open_sansbold';
    padding-top: 5px;
}

.order-detail p{
	font: 12px/16px 'open_sansregular';
	    width: 91%;
    text-align: left;
    margin: 0 auto;
}

.van{
	position: relative;
        width: 40%;
    display: inline-block;
    float: right;
}

.nav{
	    height: 42px;
}

.nav ul{
	width: 100% !important;
	text-align: center;
	font-size: 0px;
}

.nav ul li{
	float: none;
	display: inline-block;
	font: 700 16px Arial, Helvetica, sans-serif;
}

.nav ul li a {
    padding: 12px 13px;
}

.services > ul{
	margin-bottom: 30px;
}

.services ul li{
    width: 35%;
    margin-right: 4%;
}

.services ul li:nth-child(2),.services ul li:nth-child(4){
    margin-right:0%;
}

.services-details ul li{
	width: 100%;
}

.text-line{
	    margin: 30px 0 0px;
}

.text-footer h2{
    font: 20px 'open_sans_lightregular';
        margin: 12px 0 0;
}

.quicklink{
	    max-width: 98%;
}

.quicklink ul{
	width: 22%;
}

.quicklink ul.text-rignt{
	float: right;
}


.footer-logo{
    width: 35%;
}

.footer-bottom{
	text-align: center;
}

.footer-bottom .wrraper{
	width:90% !important;
}

.footer-bottom p{
	float: none;
    text-align: center;
    margin-bottom: 5px;
}

	.order-now, .pricelist{
		    width: 90%;
	}

	.exisiting-customer,.new-customer,.washing,.dry-cleaning{
		width: 48%;
		    min-height: 335px;
	}

	.form label{
		    font: 14px 'open_sansregular';
	}

	input[type="text"],input[type="password"]{
		height:40px;
		margin-right:0px;
		padding: 5px 12px;
		width: 100%;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	}


	.btn.login {
    	font: 14px 'open_sansregular';
    	padding: 8px 18px;
    	text-align: center;
	}

	.exisiting-customer h2, .new-customer h2 ,.washing h2, .dry-cleaning h2{
		    font: 20px/24px 'open_sansbold';
		        text-indent: 18px;
		            text-align: left;
	}

	.order-now h2, .pricelist h2 {
	    font: 24px/38px 'open_sansbold';
	    text-align: left;
	    text-indent: 17px;
	}
	.washing ul li,.dry-cleaning ul li{
		font: 14px 'open_sansregular';
	}

	.about{
		max-width: 93%;
	}

	.left-panel {
    	width: 55%;
	}

	.right-panel {
    	width: 42%;
	}

	.content.contact .left-panel{
		    width: 100%;
	}

	.form-row label{
		    font: 15px 'open_sansregular';
	}

	.orderInnerPage .table-liting-data{
		width: 100%;
	}

	.table-liting-data.orderInnerPageCal{
		width: 100%;
	}

	.table-liting-data.orderInnerPageCal textarea{
		width: 97%;
	}

	.table-liting-data.collection-page span{
		width: 60%;
		float: right;
		text-align: left;
	}

}

@media screen and (max-width:640px){

	body{
		overflow-x:hidden; 
	}

	.nav{
		    height: 39px;
	}
	.nav ul{
		    height: 40px;
		    width: 100%
	}
	.nav ul li{
			font: 400 14px Arial, Helvetica, sans-serif;
			text-align: center;
			display: inline-block;
			float: none;
			vertical-align: top;
	}

	.nav ul li a{
		 padding: 12px 12px;
		 display: block;
	}

	.services ul li{
		    width: 42%;
	}

	.services-details ul li{
		width: 100%;
	}

	.services-details h2{
		    font: 17px 'open_sansregular', Arial;
	}

	.services-details ul li{
		        font: 12px/19px 'open_sansregular';
	}

	.text-footer h2{
		font: 18px 'open_sans_lightregular';
	}	

	.services ul li img{
		width: 100%;
	}

	.footer-logo{
		width: 240px;
	}

	.quicklink ul {
    	width:16%;
    	margin-right: 2%;
	}

	.quicklink ul li{
		width: 100%;
		    font: 11px/12px Arial, Helvetica, sans-serif;
	}

	.quicklink ul li h2{
		    font: 13px Arial, Helvetica, sans-serif;
	}

	.quicklink ul li > img {
	    /*width: 20px; */
	}

	.contact {
    	max-width: 92%;
	}

	.left-panel {
    	width: 100%;
	}

	.right-panel {
    	width: 100%;
	}

	.exisiting-customer h2, .new-customer h2{
		    font: 16px/20px 'open_sansbold';
	}

	.order-now h1, .pricelist h1{
		font: 22px/26px 'open_sansbold';
	}

	.order-now h2, .pricelist h2{
		    font: 20px/23px 'open_sansbold';
	}

	.content-bg{
		min-height: inherit;
	}

	.table-liting-data{
		    width:100%;
	}

	.table-liting-data tr.title td{
		font: 14px 'open_sansbold', Arial, Helvetica, sans-serif;
	}
	.table-liting-data tr td{
		    font: 12px 'open_sansregular', Arial, Helvetica, sans-serif;
	}
}

@media screen and (max-width:500px){
	
	.logo {
	    width: 230px;
	    margin-top: 12px;
	    margin: 0 auto;
	    float: none;
	    margin-top: 12px;
	}

	.order-detail {
    	width: 100%;
    	text-align: center;
    	margin-top: 15px;
    	float: none;
    	margin-bottom: 11px;
	}
	
	.order-detail .center{
		width: 100%;
	}

	.van{
		display: none;
	}

	.order-detail h1{
		font: 13px/9px 'open_sansregular';
	}

	.order-detail h1 span{
		    font: 17px/16px 'open_sansbold';
	}

		.order-detail p{
		    width: 71%;
		    text-align: center;
	}
	.nav {
    	height: 38px;
    	margin-bottom: 75px;
	}

	.nav .wrraper{
		overflow: visible;
	}

	.nav ul{
		text-align: center;
	}

	.nav ul li {
	    font: 400 12px Arial, Helvetica, sans-serif;
	    width: auto;
	}
	
	.nav ul li a {
    	    padding: 11px 10px;
    }

    .nav ul li.last{
		position: absolute;
		width: 250px;
		left: 0;
		right: 0;
		margin: 0 auto;
		top: 55px;
		background: #ec008c;
		font-size:17px;
		border-radius: 20px;
		animation: none;
    }

    .nav ul li.last.selected a{
    	background: none;
    }

	.text-line {
	    width: 66%;
	    margin: 40px auto 0;
	}

	.services ul li {
	     width: 100%;
	    max-width: 240px;
	    float: none;
	    margin: 0 auto;
	}

	.services ul li img {
    	width: 130%;
	}

    	
	.text-footer h2 {
    	font: 14px 'open_sans_lightregular';
	}

	.footer-logo {
		width: 220px;
		display: block;
		float: none;
		margin: 0 auto;
	}

	.quicklink {
    	max-width: 95%;
	}

	.quicklink ul {
    width: 100%;
    margin-right: 0%;
    /* height: 129px; */
    text-align: center;
	}

	.quicklink > ul:nth-child(3){
		text-align: left;
	}

	.quicklink ul.text-rignt {
		float: none;
		text-align: left;
		width: 200px;
		margin: 0 auto;
	}

	.quicklink ul li{
		font: 12px/12px Arial, Helvetica, sans-serif;
		width: auto;
		display: inline-block;
		text-align: center;
		margin: 10px 15px 5px;
	}

	.quicklink ul li h2  img{
		    width: 64px;
	}

	.footer-bottom {
    	text-align: center;
    	padding: 15px 0px 8px;
	}

	.footer-bottom .wrraper {
    	width: 95% !important;
	}

	.footer-bottom p{
		text-align: center;
		font: 13px/16px Arial, Helvetica, sans-serif;
	}

	.footer-bottom p a {
		display: inline-block;
		    width: 42%;
		text-align: right;
	}

	.footer-bottom p a:nth-child(2){
		text-align:left;
	}

	.exisiting-customer,.new-customer,.washing,.dry-cleaning{
		width: 98%;
		margin: 0 auto;
		margin-bottom: 25px;
		float: none;
		min-height: inherit;
	}

	.new-customer,.dry-cleaning{
		margin-bottom: 0px;
	}

	.order-now > h2, .pricelist > h2{
	    padding: 0;
	    text-align: left;
	    font-size: 15px;
	    padding: 0 0;
	    margin: 0;
	    text-indent: 0;
	}

	.form label{
		    font: 14px 'open_sansregular';
	}

	input[type="text"]{
	    width: 100%;
	    box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    margin: 0 auto;
	    padding: 8px 10px;
	    height: 38px;
	}

	.exisiting-customer h2, .new-customer h2,.washing h2,.washing h3 ,.dry-cleaning h2{
		font: 16px/20px 'open_sansbold';
		text-align: left;
		text-indent: 18px;
		    padding: 12px 0;
	}

	.order-now h1, .pricelist h1 ,.about h1,.contact h1{
		font: 20px/38px 'open_sansbold';
		text-align: center;
		    margin-bottom: 12px;
	}

	.about h1 ,.contact h1{
	    text-align: left;
	    padding: 0;
	    line-height: 19px;
	    margin: 0;
	}

	.about h2{
		font: 15px 'open_sansbold';
	}

	.about p, .contact p{
		font: 12px/18px 'open_sansregular';
	}

	.exisiting-customer h2, .new-customer h2{
		    color: #fff;
    text-align: left;
	}

	.washing ul li, .dry-cleaning ul li {
    	font: 12px 'open_sansregular';
	}

	.form-row label{
		font: 14px 'open_sansregular';
		margin-bottom: 4px;
	}

	.get-in-touch ul li{
		font: 12px 'open_sansbold';
	}

	.get-in-touch ul li p{
		    font: 12px/21px 'open_sansregular';
	}

	.get-in-touch ul li img{
		    width: 14px;
	}

	.about ul {
    	list-style-type: square;
    	position: relative;
    	left: 4%;
    	width: 95%;
	}
	.for-desktop-only{
		display: none !important; 
	}

	.for-mobile-only{
		display: block !important;
		    margin-top: 20px;

	}

	.form-row input[type="text"]{
		width: 100%;
	}

	.col-half{
		width: 100%;
	}

	.col-full .col-half{
		width: 100%;
	}

	.col-full .col-half:nth-child(1){
		margin-bottom: 15px;
	}

	.contact h2{
		    font: 14px 'open_sansbold';
	}

	@media screen and (max-width:360px){
		.nav ul li a {
    		padding: 12px 8px;
   		 }
		.nav ul li{
			font: 400 11px Arial, Helvetica, sans-serif;
    		width: auto;
		}

	}

}