/*
 2.) Media Query for Tablet
 ===============================*/
@media only screen and (min-width : 768px) and (max-width : 1024px) {



}


/*
 3.) Media Query for mobile
 ===============================*/
@media only screen and (max-width : 767px){
	
#header .logo{ font-size: 18px; }
.vender{ line-height: 22px; }

.input-row .fl { width: 100%; padding: 0; margin-bottom: 15px; }
.input-row .fr{ width: 100%; padding: 0; }
.input-row .p-fl{ width: 30%; }
.input-row .p-fr{ width: 70%; }

.forget-row label{ display: block; margin-bottom: 10px; }

.primary-footer .box{ width: 100%; padding: 0; margin-bottom: 30px; }

}

