﻿@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&family=Roboto&display=swap');
menu, ol, ul, li {
	list-style:none
}
blockquote, q {
	quotes:none
}
blockquote:before, blockquote:after, q:before, q:after {
	content:none
}
ins {
	text-decoration:none
}
del {
	text-decoration:line-through
}
.cursor_pointer {
	cursor:pointer
}
.cursor_default {
	cursor:default
}
strong, b {
	font-weight:bold
}
body {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	
	font-family: 'Lato', sans-serif;
	font-weight:normal;
	font-style:normal;
	text-decoration:none
}
a, abbr, acronym, address, applet, b, big, blockquote, button, canvas, caption, center, cite, code, dd, del, dfn, div, dl, dt, em, embed, fieldset, font, form, h1, h2, h3, h4, h5, h6, hr, html, i, iframe, img, ins, kbd, label, legend, li, menu, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, tt, u, ul, var {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
}
br {
	height:18px !important
}
*:focus {
    outline: none !important
	border: none;
}
button:focus {
  outline:none;
  box-shadow: none;
}
.left {
	float:left
}
.right {
	float:right
}
.clearfix {
*zoom:1
}
.clearfix:before, .clearfix:after {
	content:'.';
	display:block;
	height:0;
	visibility:hidden
}
.clearfix:after {
	clear:both
}
html, body, #body-container {
	height:100%
}
html {
    position: relative;
    min-height: 100%;
}
body, input, button, textarea {
	font-family:arial, sans-serif;
	font-size:13px
}

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}
#formContent {
    -webkit-border-radius: 2px 2px 2px 2px;
    border-radius: 2px 2px 2px 2px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 570px;
    position: relative;
    padding: 50px 88px;
    -webkit-box-shadow: 0 0px 24px -7px rgba(0,0,0,0.3);
    box-shadow: 0 0px 24px -7px rgba(0,0,0,0.3);
    text-align: center;
}
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}
/*Icons*/
.icn-search-btn{
	background: url(../images/sprite.png) -35px -88px no-repeat;
    width: 25px;
    position: relative;
    height: 17px;
    display: inline-block;
    top: 2px;
}
.icn-top-login{
	background: url(../images/sprite.png) -33px 1px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-top-register{
	background: url(../images/sprite.png) -33px -27px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-edit-profile{
	background: url(../images/sprite.png) 0px 0px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-comp-listing{
	background: url(../images/sprite.png) 0 -27px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-add-comp{
	background: url(../images/sprite.png) 0px -54px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-change-password{
	background: url(../images/sprite.png) 0px -81px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-edit-profile-w{
	background: url(../images/sprite.png) -6px -111px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-comp-listing-w{
	background: url(../images/sprite.png) -6px -138px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-add-comp-w{
	background: url(../images/sprite.png) -6px -165px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-change-password-w{
	background: url(../images/sprite.png) -6px -192px no-repeat;
    width: 25px;
    position: relative;
    height: 25px;
    display: inline-block;
    top: 2px;
}
.icn-tick-sml{
	    background: url(../images/sprite.png) -34px -59px no-repeat;
    width: 20px;
    position: relative;
    height: 20px;
    display: inline-block;
    top: 3px;
    margin-right: 5px;
}
.icn-phone{
    background: url(../images/sprite.png) -65px -1px no-repeat;
    width: 50px;
    display: inline-block;
    height: 50px;
    float: left;    
}
.icn-mobile{
    background: url(../images/sprite.png) -65px -55px no-repeat;
    width: 50px;
    display: inline-block;
    height: 50px;
    float: left;    
}
.icn-website{
    background: url(../images/sprite.png) -62px -111px no-repeat;
    width: 50px;
    display: inline-block;
    height: 50px;
    float: left;    
}
.iconForm01{
	background: url(../images/sprite.png) -125px 0px no-repeat;
    width: 40px;
    display: inline-block;
    height: 50px;
    float: left;
}
.iconForm02{
	background: url(../images/sprite.png) -125px -42px no-repeat;
    width: 40px;
    display: inline-block;
    height: 50px;
    float: left;
}
.iconForm03{
	background: url(../images/sprite.png) -125px -83px no-repeat;
    width: 40px;
    display: inline-block;
    height: 50px;
    float: left;
}
.iconForm04{
	background: url(../images/sprite.png) -125px -125px no-repeat;
    width: 40px;
    display: inline-block;
    height: 50px;
    float: left;
}
/*General*/
.m-auto{margin:auto}
.m-auto-btm-1{margin:auto;    margin-bottom: 1rem;}
.p-0{padding: 0px !important}
.p-35{padding: 0 15px !important;}
.mrgnR-15{margin-right: 15px !important;}
@media (min-width: 300px){	
	.container-fluid, .container {
		max-width: 980px;
	}
}

@media (min-width: 1486px){
	.container-fluid, .container {
		max-width: 1486px;
	}
}
header{
	background-color: #02283f;
    border-bottom: #2d7faf 17px solid;
    overflow: hidden;
    height: 91px;
	padding: 0 40px;
}
.logo{float:left;padding-top: 3px;width:220px;}
.forUser{    
	position: relative;
    top: 19px;
	right: -10px;
}
.forUser button{
	background-color: #2d7fae;
    padding: 0px 18px 5px;
    color: #fff;
	margin-left: 20px;
}
.forUser button:hover{background-color:#6b9fbd}
.innerbg{
	background-color:#fafbfb;
	padding: 20px 0 50px;
	overflow: hidden;
}
footer{
	background-color:#3d3d3d;
	overflow: hidden;
    /*position: absolute;
    bottom: 0px;
	position: absolute;
    bottom: -45px;*/
    width: 100%;
	padding: 20px 30px;
}
.f-link{
	float:left;
	font-size: 14px;
	color: #fff;
}
.f-link a{
	font-size: 14px;
	color: #fff;
	text-decoration:none
}
.f-link a:hover{
	color:#ccc;
	text-decoration:none
}
.copyright{
	float:right;
	color:#bcbcbc;    
	font-size: 14px;
}
 .adv-blck {
    margin: 25px auto;
    float:left;
	    width: 100%;
}
.adv-blck img {
    width: 100%;
}
.pad15{overflow:hidden; padding-top: 15px;}
.pageTitle{
	color: #4d4d4f;
    width: 100%;
    font-size: 20px;
    padding: 20px 0;
}
.pagesecondTitle{
	    color: #2d7fae;
    width: 100%;
    font-size: 19px !important;
    font-weight: 500 !important;
    padding: 0;
    margin: 0 0 15px;
}
.f-left{float:left}
.f-right{float:right}
@media (max-width: 840px){
.adv-blck {
    margin: 20px auto 55px;
    width: 100%;
    height: 70px;
}}
/*Login*/
.earth-bg{    
	background: url(../images/earth-bg.png) bottom center repeat-x #fff;
	height: 100vh;
}
.form-control{    
	border: #e7e7e7 1px solid !important;
	height: 48px !important;
}
.signinTxt{
	font-size:22px;
	color:#5c5c5c;
	font-weight:bold;
	margin: 40px 0 20px;
}
.loggedIn{
	float:left;
	color:#9f9f9f
}
.btn-submit{
	width: 100%;
    background: #2d7fae !important;
    border: none !important;
    height: 50px;
    border-radius: 2px;
	margin-top: 30px;
}
.reg-now{
	margin-top: 90px;
	color:#9f9f9f;
}
.reg-now a{
	color:#353535;
}
/*Registration*/
.btn-commp-exits{
	position: absolute;
    font-size: 12px !important;
    right: 0;
    top: 0;
    background-color: #0d47a1 !important;
    color: #fff !important;
    padding: 13px 10px !important;
}
.f-name{
	width: 48% !important;
	float: left !important;
	margin-right: 12px !important;
}
.l-name{width: 48% !important;}
.regis-wd60{width: 60% !important;}
/*Change Password*/
.chngpswrd-wd-65{width: 65%;position:relative}
.chng-pswrd-left-nav{ 
	-webkit-box-shadow: 0 0px 24px -7px rgba(0,0,0,0.3);
    box-shadow: 0 0px 24px -7px rgba(0,0,0,0.3);
    width: 264px;
	color:#4d4d4f;
	font-size:20px;
    padding: 30px 20px;
	background-color: #fff;margin-bottom:30px
}
.chng-pswrd-left-nav a{
	color:#4d4d4f;
	text-decoration:none
}
.chng-pswrd-left-nav a:hover{
	text-decoration:none
}
.btn-2d7fae{
	background-color: #2d7fae !important;
    border-radius: 0 !important;
    border: none !important;
	margin: auto;
	padding:10px 25px !important
}
.btn-a5a5a5{
	background-color: #a5a5a5 !important;
    border-radius: 0 !important;
    border: none !important;
	margin: auto;
	padding:10px 25px !important
}
/*Contact Us*/
.contactus_blck{border-radius: 2px 2px 2px 2px;
    background: #fff;
    padding: 30px;
    max-width: 95%;
    margin: auto;
    text-align: center;
    position: relative;
    padding: 70px 88px;
    -webkit-box-shadow: 0 0px 5px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0px 5px 0px rgba(0,0,0,0.3);
}
.adv-center{width: 806px;margin:auto;}
.h-175{height:175px !important}
.subm-cancl-blck{
	width: 215px;
	margin: 35px auto 0;
}
.submit-cancel-blck{
    max-width: 204px;
    margin: 35px 0 0 213px;
}
.notrobot-blck{font-size:13px;width:400px;margin:auto}
/*Add-Edit*/
.btn-add {
    background-color: #0d47a1 !important;
    border: none !important;
}
.btn-delete {
    background-color: #c8102e !important;
    border: none !important;
}
.add-edit-btn-pos{
	    position: absolute;
    right: -75px;
    top: 5px;
    min-width: 64px;
    height: 37px;
    font-size: 12px !important;
}
/*Company Details*/
.compdetails label{
    color:#003b5c;
    font-size:17px;
    font-weight: 500;
	width:100%
}
.compdetails p{color:#757575;font-size:15px;}
.compdetails span{color:#757575;font-size:15px;margin-right: 20px;}
.compdetails{padding: 0 20px;margin-bottom: 25px !important}
.smlTxt{font-size: 15px;
    color: #003b5c;
    display: block;
    margin-bottom: 10px;}
.compdetails-blck{
    background-color: #eeefef;
    margin: 28px;
    padding: 35px;
    
}
.compdetails-blck label{
    color: #003b5c;
    font-size: 17px;
    font-weight: 500;
}
.compdetails-blck p{
    color: #757575;
    font-size: 15px;
    font-weight: 500;
}
.bgcolc8102e{background-color: #c8102e !important}
/*Spam Report*/
.spam-report-blck {
    -webkit-box-shadow: 0 0px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0 0px 5px 0px rgba(0,0,0,0.3);
    width: 100%;
    color: #003b5c;
    font-size: 19px;
    padding: 15px 20px;
    background-color: #fff;
    margin-bottom: 30px;
}
.spam-report-blck input{
    margin-right: 15px;

}
/*Homepage*/
.cust-mid-home{float:left;}
.cust-mid-home .p-0{padding:0 35px !important}
.home-search-blck{
	width: 100%;
    background-color: #fff;
    border: #cecece 1px solid;
    padding: 65px 0px;
    border-radius: 8px;
	text-align: center;
	}
	.home-search-blck input{
		border:#868686 1px solid;
    border-radius: 2px;
    padding: 10px;
	}
.home-search-blck button{
	background-color: #0d47a1;
    padding: 10px;
    text-align: center;   
    color: #fff;
    text-transform: uppercase;
    border-radius: 3px;
}
.leftAdv{float:left;padding: 0 !important;}
.rightAdv{float:left;padding: 0 !important;}
.earth-bg-home{    
	background: url("../images/earth-bg-home.png") top center no-repeat #fff;
}
.home-abtus{background-color: #fafbfb}
.home-abtus p{color:#717171}
.listing-home{float:left}
.listing-home div{color:#0d47a1}
.readmore{    
	color: #252525;
    display: block;
    text-decoration: none;
    margin: 10px 0 30px;
    font-weight: 500;
    float:right;
}
.home-select-btn{
	float: right;
    width: 150px !important;
    margin: 0 5px;
    padding: 6px !important;
    border: #004596 1px solid !important;
    height: 42px !important;
}
/*Listing*/
.num-pagination ul{width:80%;margin:auto;}
ul.pagination-lg li{    
color: #0080ca;
    font-size: 20px; 
    border-radius: 4px;
	margin-bottom: 15px;
}
.pagination-active{background-color: #0b263b !important;
    color: #fff !important;}
ul.pagination-lg li a{    
	color: #0080ca;
    font-size: 20px;
    background: #fff;
    border-radius: 4px;
    padding: 6px 0;
    min-width: 35px;
    text-decoration: none;
    display: block;
    margin: 0 4px;
    text-align: center;
}
.num-pagination{
	background-color: #ebeef0;
    overflow: hidden;
    margin-top: -20px !important;
    padding-top: 20px;"
}
.listing-list{float:left} 
.listing-list div a{ color: #0d47a1;
    font-size: 13px;}	
/*Company Listing*/	
.complisting_blck {
    border-radius: 2px 2px 2px 2px;
    background: #fff;
    padding: 30px;
    max-width: 96%;
    margin: auto;
    text-align: center;
    position: relative;
    padding: 10px;
	    margin-bottom: 5px;
    -webkit-box-shadow: 0 0px 4px 0px rgba(0,0,0,0.3);
    box-shadow: 0 0px 4px 0px rgba(0,0,0,0.3);
}
.complisting_blck table tr th{    
	border: none;
    color: #01273e !important;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff !important;
	text-align:left !important
}
.complisting_blck table tr td{
	text-align:left !important;
	color:#0a0d14;
	font-size:14px;
}
.wd440{width:650px;}
.wd200{width:250px;}
.wd290{width:390px;}
/*Media Query*/
@media (min-width:300px) and (max-width:600px){
    
	.pagesecondTitle {

    margin: 15px 0 15px;
}
.contact-us-frm-cust {
    max-width: 90% !important;
    padding: 20px;
}
.side-menu{right:10px !important}
.num-pagination ul {
    overflow: hidden;
    width: 295px !important;
    margin: 10px auto;
    display: block !important;
}
ul.pagination-lg li {
    width: 48px;
    float: left;
}
ul.pagination-lg li a{
	margin: 0 3px;
}
.submit-cancel-blck {
    max-width: 204px;
    margin: 35px auto 0;
}
	.compdetails-blck {
    padding: 35px 15px;
}
.home-select-btn {
    float: left;
    width: 130px !important;
    margin: 20px 5px;
    padding: 6px !important;

}
.innerbg{
	padding: 0px 0 50px;
}
.chng-pswrd-leftmenu-cust{
		padding-top:25px;
}
.home-search-blck {
    padding: 65px 25px;
	}
	.home-search-blck button{
		    margin-top: 10px;
	}
.leftAdv{display:none}
.rightAdv{display:none}
	.p-35 {
    padding: 0 15px !important;
}
.cust-wd-74{    width: 74% !important;}
.add-edit-btn-pos {    
    right: -68px;
}
.adv-center {
    width: 288px;
    margin: auto;
}
.contactus_blck{
	    padding: 70px 20px;
		margin-top: 25px;
		max-width: 90%;
}
.notrobot-blck{    
width: 225px;
}
.wd290{width:125px;}
#formContent {   
    padding: 50px 25px;
}
.wd125{    width: 125px;
    display: block;}
    
.mob-wd100{
	width:100%
}
.reg-now {
    margin-top: 30px;
}
.signinTxt {
    font-size: 22px;
    color: #5c5c5c;
    font-weight: bold;
    margin: 30px 0 20px;
}
.f-name{
	margin-bottom: 15px;
	}
.f-name, .l-name{
	width:100% !important
}
.btn-commp-exits {
    position: relative;   
    width: 100%;
    margin-top: 5px;
	padding: 8px 10px !important;
}

.regis-wd60{width:100% !important}
.chngpswrd-wd-65 {
    width: 100%;
}
.mob-comp-details-btn{float: inherit;
    margin: auto auto 22px;
    width: 100%;
text-align: center;}
footer {    
	bottom: inherit;
}
.chng-pswrd-left-nav {    
	width: 100%;
}
.forUser {
    position: relative;
    top: 19px;
    right: 0px;
    margin: auto;
    width: 150px;
	text-align: center;
	float: initial !important;
}
.adv-blck {
    margin: 20px auto 0px;

}
.compdetails span{width:100%;display:block}
header {
	height: 100px;
}
.logo {
    float: left;
    padding-top: 11px;
    width: 178px;
}
.forUser button{margin-left:0;margin-bottom:10px;}
.f-link{text-align:center}
.copyright { 
    width: 100%;
    text-align: center;
    padding-top: 10px;
}
.chng-pswrd-frm-cust {
    max-width: 85% !important;
    padding: 25px 0;
}
}
 @media (min-width: 768px) and (max-width: 1366px) 
 {

	 .home-select-btn {
    
    width: 130px !important;
	
	 }
	 	.submit-cancel-blck {
    max-width: 204px;
	margin: 35px auto 0
		}
	 .comp-details-wd{
		max-width: 100% !important;
		flex: 100% !important;
	 }
	 .cust-mid-home{
		 float:left;    
		 max-width: 100% !important;
		 padding: 0 !important;
	}
	 .leftAdv, .rightAdv{
		 display:none
	 }
	 .chng-pswrd-leftmenu-cust, .chng-pswrd-frm-cust{
		 max-width: 100% !important;
	 }
.chngpswrd-wd-65 {
    width: 100% !important;
}
.earth-bg-home .pad15{
	padding:0px 15px
}
.adv-center {
    width: 500px;
    margin: auto;
}
.chng-pswrd-left-nav {
    width: 210px;
    padding: 30px 10px;
    float: left;
    margin-right: 28px;
}
.cust-wd-74{    
width: 84% !important;
}
.wd290 {
    width: 525px;
}
 }
 @media (min-width: 1200px){
.container-fluid, .container {
    max-width: 1015px;
 }}
 @media (min-width: 1440px){
.container-fluid, .container {
    max-width: 1024px;
 }}
 @media (min-width: 1486px){
.container-fluid, .container {
    max-width: 1486px;
 }}
 html, body {
  height: 100%;
  margin: 0;
}
.wrapper-h{padding: 0px;
  min-height: 100%;
margin: 0 auto -25px;}
@media (min-width: 768px) and (max-width:991px){
	.adv-center {
    width: 500px;
    margin: auto;
	    margin: 20px auto 25px;
}
}

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    width: 100%;
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}


/* style 1 */

.inputfile-1 + label {
    color: #f1e5e6;
    background-color: #d3394c;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    background-color: #722040;
}


/* style 2 */

.inputfile-2 + label {
    color: #d3394c;
    border: 2px solid currentColor;
}

.inputfile-2:focus + label,
.inputfile-2.has-focus + label,
.inputfile-2 + label:hover {
    color: #722040;
}


/* style 3 */

.inputfile-3 + label {
    color: #d3394c;
}

.inputfile-3:focus + label,
.inputfile-3.has-focus + label,
.inputfile-3 + label:hover {
    color: #722040;
}


/* style 4 */

.inputfile-4 + label {
    color: #d3394c;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: #722040;
}

.inputfile-4 + label figure {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d3394c;
    display: block;
    padding: 20px;
    margin: 0 auto 10px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: #722040;
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}


/* style 5 */

.inputfile-5 + label {
    color: #d3394c;
}

.inputfile-5:focus + label,
.inputfile-5.has-focus + label,
.inputfile-5 + label:hover {
    color: #722040;
}

.inputfile-5 + label figure {
    width: 100px;
    height: 135px;
    background-color: #d3394c;
    display: block;
    position: relative;
    padding: 30px;
    margin: 0 auto 10px;
}

.inputfile-5:focus + label figure,
.inputfile-5.has-focus + label figure,
.inputfile-5 + label:hover figure {
    background-color: #722040;
}

.inputfile-5 + label figure::before,
.inputfile-5 + label figure::after {
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
}

.inputfile-5 + label figure::before {
    border-top: 20px solid #dfc8ca;
    border-left: 20px solid transparent;
}

.inputfile-5 + label figure::after {
    border-bottom: 20px solid #722040;
    border-right: 20px solid transparent;
}

.inputfile-5:focus + label figure::after,
.inputfile-5.has-focus + label figure::after,
.inputfile-5 + label:hover figure::after {
    border-bottom-color: #d3394c;
}

.inputfile-5 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}


/* style 6 */

.inputfile-6 + label {
    color: #d3394c;
}

.inputfile-6 + label {
    border: #e7e7e7 1px solid !important;
    height: 48px !important;
    background-color: #fff;
    padding: 0;
}

.inputfile-6:focus + label,
.inputfile-6.has-focus + label,
.inputfile-6 + label:hover {
    border-color: #722040;
}

.inputfile-6 + label span,
.inputfile-6 + label strong {
       padding: 10px 12px;
    height: 38px !important;
    border-radius: 4px;
    top: 5px;
    right: 6px;
	position:absolute
}

.inputfile-6 + label span {
    width: 200px;
    min-height: 2em;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
}

.inputfile-6 + label strong {
    height: 100%;
    color: #fff;
    background-color: #0d47a1;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
}

.inputfile-6:focus + label strong,
.inputfile-6.has-focus + label strong,
.inputfile-6 + label:hover strong {
    background-color: #02283f;
}

@media screen and (max-width: 50em) {
	.inputfile-6 + label strong {
		display: block;
	}
}
.box input{
	display:none
}
@media (min-width: 1420px) and (max-width:1460px){
	.submit-cancel-blck {
    max-width: 204px;
    margin: 35px auto 0 114px;
}
.leftAdv{display:none}
.rightAdv{display:none}
.cust-mid-home{
		 float:left;    
		 max-width: 100% !important;
		 padding: 0 !important;
	}
	.num-pagination ul {
    overflow: hidden;
    width: 870px !important;
    margin: 10px auto;
    display: block !important;
}
ul.pagination-lg li {
    width: 48px;
    float: left;
}
ul.pagination-lg li a{
	margin: 0 3px;
}
}


@media (min-width: 750px) and (max-width:1250px){
.home-select-btn {
    width: 130px !important;
}
.cust-wd-home-search{width: 560px !important;}
.cust-wd-home-search-btn{max-width: 160px !important;}
.num-pagination ul {
    overflow: hidden;
    width: 528px !important;
    margin: 10px auto;
    display: block !important;
}
ul.pagination-lg li {
    width: 48px;
    float: left;
}
ul.pagination-lg li a{
	margin: 0 3px;
}
}

@media (min-width: 850px) and (max-width:1300px){
.num-pagination ul {
    overflow: hidden;
    width: 865px !important;
    margin: 10px auto;
    display: block !important;
}
ul.pagination-lg li {
    width: 48px;
    float: left;
}
ul.pagination-lg li a{
	margin: 0 3px;
}
}
@media (min-width: 1000px) and (max-width:1100px){
	.num-pagination ul {
    overflow: hidden;
    width: 570px !important;
    margin: 10px auto;
    display: block !important;
}
}
.menu{display:none}
@media  (max-width:1450px){
	.side-menu{
		background: url(../images/icn-menu.png) top center no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 30px;
    top: 20px;
}	
.forUser, .chng-pswrd-leftmenu-cust{display:none}

.chng-pswrd-frm-cust{
	max-width:100% !important;
}
.contact-us-frm-cust{
	/* max-width:100% !important; */
	    padding: 20px;
}
/* .chngpswrd-wd-65 { */
    /* width: 84%; */
/* } */
.menu{
	position:absolute;
	-webkit-box-shadow: 0px 3px 5px 2px rgba(0,0,0,0.17);
	-moz-box-shadow: 0px 3px 5px 2px rgba(0,0,0,0.17);
	box-shadow: 0px 3px 5px 2px rgba(0,0,0,0.17);
    background-color: #02283f;
    z-index: 99;
    right: 30px;
    width: 230px;
	display:none;
	 animation: mymove 1s;
  animation-fill-mode: forwards;
}
@keyframes mymove {
  from {top: 30px;}
  to {top: 85px; }
}
.menu ul{margin:0;padding:0}
.menu ul li{
	border-bottom: #2d7faf 1px solid;
    padding: 10px 20px;
    color: #fff;
    list-style: none;
}
.menu ul li a{
	 color: #fff;
}
.menu ul li:last-child{
	border:none
}
.menu ul li i{
	    margin-right: 6px;
}
.arrow-up{
	width: 0px;
    height: 0px;
   border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #02283f;
	position: absolute;
    top: -9px;
    right: 9px;
}
}

/* @media  (max-width:768px){ */
/* .chng-pswrd-frm-cust { */
    /* max-width: 85% !important; */
/* } */
/* }	 */

@media (min-width:768px) and (max-width:1000px){
	.container-fluid, .container {
		max-width: 1000px;
	}
	.contact-us-frm-cust{
	max-width:93% !important;
	    padding: 20px;
}
}



.validator {
	color: Red;
	font-size: 14px;
    float:left;
}

.AutoExtender {
	font-family: 'Roboto', sans-serif;
	font-size: .9em;
	font-weight: normal;
	border: solid 1px #006699;
	line-height: 17px;
	padding: 10px;
	background-color: White;
	margin-left: 5px;
}
.AutoExtenderList {
	border-bottom: dotted 1px #006699;
	cursor: pointer;
	color: Maroon;
}
.AutoExtenderHighlight {
	color: White;
	background-color: #006699;
	cursor: pointer;
}

.sushibar {
	width: 880px;
	overflow: auto;
	text-align: left;
    margin:auto;
}
.sushibar * {
	padding:0;
	margin:0;
}
.sushi {
	overflow:hidden;
	padding:12px 10px 12px 10px;
	height:auto;
}
.category {
	float: left;
	width: 300px;
	border-style:none;
	border-color:White;
	text-align: left;
}

@media (max-width: 700px){
    .category {
        float: left;
        width: 100%;
    }
}


@media (min-width: 1030px) and (max-width: 1370px){
.category {
        float: left;
        width: 300px;
    }
}

    @media (min-width: 768px) and (max-width: 1500px){
.category {
        float: left;
        width: 222px;
    }
}


/*18Aug style*/
.listing-list div a{margin-right:5px}
.compdetails p img{margin-left:5px}

/* 26aug */
.compdetails span.verified-txt{
	    color: #198600;
    font-size: 15px;
    margin-right: 20px;
    border: #659a3f 1px solid;
    padding: 7px 10px 8px 5px;
    border-radius: 6px;
	    margin-left: 7px;
}
.compdetails p img {
    margin-left: 5px;
    position: relative;
    top: -1px;
}
.category-optn{
	height: 40px !important;
    width: 185px !important;
    margin-left: 15px;
    position: absolute;
    right: 46px;
    bottom: 15px;
}
.num-pagination ul{
	position:relative;
}
@media (max-width: 600px) and (min-width: 300px){
.compdetails span.verified-txt{
	margin-left:0px;
	margin-top: 7px;
}
.category-optn {
    height: 40px !important;
    width: 98px !important;
    margin-left: 15px;
    position: absolute;
    right: 6px;
    bottom: 16px;
    font-size: 12px !important;
}
}
@media (max-width: 1000px) and (min-width: 1300px) {
    .category-optn {    
    position: absolute;
    right: 10px;
    bottom: 15px;
}
}
 @media (min-width: 1400px) and (max-width: 1480px) {
    .category-optn {    
    position: absolute;
    right: 10px;
    bottom: 15px;
}
}
 @media (min-width: 1250px) and (max-width: 1320px) {
    .category-optn {    
    position: absolute;
    right: 10px;
    bottom: 15px;
}
}
