@charset "utf-8";
 
 
/* [Object] Modal
 * =============================== */
.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  z-index:500000;
  transition: opacity .25s ease;
}

.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
   background:#333;
   opacity: 0.9;
}

.modal-state {
  display: none;
}

.modal-state:checked + .modal {
  opacity: 1;
  visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
  top: 0;
}

.modal__inner {
  transition: top .25s ease;
  -webkit-transition: top .25s ease;
  -ms-transition: top .25s ease;
  -o-transition: top .25s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 420px;
  width:90%;
  margin: auto;
  overflow: auto;
  background:#fff;
  border-radius: 5px;
  padding: 1em 2em;
  height: 78%;
  z-index:500000 !important;
}

.modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
}

.modal__close:after,
.modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #000;
  font-weight:bold;
  display: block;
  transform: rotate(45deg);
  left: 98%;
  margin: -3px 0 0 -1px;
  top: 0;
}

.modal__close:hover:after,
.modal__close:hover:before {
  background: #aaa;
}

.modal__close:before {
  transform: rotate(-45deg);
}

.btn {
  cursor: pointer;
  
}

.modal__inner h4 {
	font-size:18px;
	margin-bottom:20px;
}


.modal__inner label {
    float: left;
    padding-bottom: 3px;
    width: 100%;
}







.login_lft {
	width:100%;
	float:left;
	text-align:center;
	font-size:26px;
	color:#000;
	padding-top:20px;
	padding-bottom:20px;
	font-family: myfont1,sans-serif;
	 
}

.login_lft img {
	margin-bottom:10px;
}

.login_lft label {
	width:100%;
	float:left;
	text-align:left;
	padding-bottom:4px;
	font-size:18px;
	color:#524c48;
	font-family: myfont4,sans-serif;
}

.login_lft input {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.1);
  font-size: 17px;
  margin-bottom: 15px;
  min-height: 42px;
  padding: 5px 2%;
  width: 96%;
}
.btn-sub {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  text-align:center;
}
.login_lft .btn-sub button {
  background-color: #ed2121;
  border-radius: 5px;
  font-weight: 600;
  height: auto;
  padding: 8px 12px;
  width: auto;
  margin-bottom:0;
}
.login_lft .btn-sub button:hover, .login_lft .btn-sub button:focus {
  background-color: #494949;
}

.login_lft button {
	width:95px;
	height:48px;
	text-align:center;
	line-height:28px;
	font-size:18px;
	text-transform:uppercase;
	background:#41b64a;
	font-family: myfont3,sans-serif;
	font-weight:300;
	border:none;
	outline:none;
	color:#fff;
	cursor:pointer;
	margin-bottom:15px;
}
.row {
	width:100%;
	margin-bottom:12px;
	float:left;
	font-size:16px;
	color:#41B64A;
	text-align:center;
	font-family: myfont3,sans-serif;
}

.row a  {
	color:#41B64A; text-decoration:none;
}

.row1 {
	width:100%;
	margin-bottom:5px;
	float:left;
	font-size:15px;
	font-family: myfont4,sans-serif;
	color:#98928f;
}

.check {
	width:20px !important;
	height:20px !important;
	margin-right:10px !important;
	background:#dad7d6;
}


 .modal__inner .sm-head {
  font-size: 20px;
}
.modal__inner .sm-head.bottm-text {
  max-width: 395px;
  width:100%;
  text-align: right;
}
.modal__inner h1 {
  color: red;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 1px;
  margin-top: 1px;
  text-transform:uppercase;
}
.modal__inner .modal__close {
  float: none;
  font-size: 18px;
  right: 18px;
  width: 25px;
}
.modal__inner .bottom-logo {
  margin-bottom: 20px;
  text-align: center;
}
.modal__inner .bottom-logo img {
  max-width: 208px;
  width: 100%;
}
.login_lft #email_status {
  color: #ff0000;
  font-size: 15px;
  margin-bottom: 10px;
}
.subscribe-link a {
  background-color: #E53D22;
  border-right: 5px none;
  color: #fff;
  font-size: 28px;
  border-radius: 5px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 6px;
  padding-bottom: 6px;
  text-transform:capitalize;
}
.subscribe-link a:hover, .subscribe-link a:focus {
  background-color: #1C1B1B;
}
.sub-sec {
  display: block;
  margin: 5px auto 25px;
  max-width: 1000px;
  width: 100%;
}
  

/* ---------------------- RESPONSIVE STUFF - ONLY TOUCH IF YOUR'E CONFIDENT WITH CSS ---------------------- */
 

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

 
.modal__inner {
	height:40%;
	width:84%;
}
.mob_ecom {
	  display:none !important;
  }
  
 
	
}

/*Ipad Portrait*/
@media only screen and (max-width: 835px) {
	

 
.modal__inner {
	height:45%;
	width:90%;
}

 


	
}

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


 
.modal__inner {
    width: 90%;
    height: 80%;
    box-sizing: border-box;
	z-index:900000000 !important;
  }
  
	
}

@media only screen and (min-width: 1600px) {

.hm_search {
	margin-top:19%;
}

}

@media only screen and (min-width: 1900px) {
	
.modal__inner {
	width:56%;
	height:54%;
}
	
}
