html{
	overflow-x:hidden;
	
}
body{
	font-family: inherit;
}
.register{
    background: -webkit-linear-gradient(left, #ff0000, #7f1d1d);
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 3%;
}
.input-group-text {
    
    color: #e30606 !important;
    
   
}
.register-left{
    text-align: center;
    color: #fff;
    margin-top: 4%;
}
.register-left input{
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    width: 60%;
    background: #f8f9fa;
    font-weight: bold;
    color: #383d41;
    margin-top: 30%;
    margin-bottom: 3%;
    cursor: pointer;
}
.register-right{
    background: #f8f9fa;
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
}
.register-left img{
    margin-top: 15%;
    margin-bottom: 5%;
    width: 25%;
    -webkit-animation: mover 2s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
.register-left p{
    font-weight: lighter;
    padding: 12%;
    margin-top: -9%;
}
.register .register-form{
    padding: 10%;
    margin-top: 10%;
}
.btnRegister{
    float: right;
    margin-top: 10%;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    background: #0062cc;
    color: #fff;
    font-weight: 600;
    width: 50%;
    cursor: pointer;
}
.register .nav-tabs{
    margin-top: 3%;
    border: none;
    background: #0062cc;
    border-radius: 1.5rem;
    width: 28%;
    float: right;
}
.register .nav-tabs .nav-link{
    padding: 2%;
    height: 34px;
    font-weight: 600;
    color: #fff;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}
.register .nav-tabs .nav-link:hover{
    border: none;
}
.register .nav-tabs .nav-link.active{
    width: 100px;
    color: #0062cc;
    border: 2px solid #0062cc;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.register-heading{
    text-align: center;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #3F51B5;
    text-transform: uppercase;
}
input.btnsearch {
    background: #e10707;
    font-size: 18px;
    color: #fff;
    padding: 3px 18px;
    margin-top: 3%;
    border: 1px solid #801d1d;
	border-radius: .25rem;
}
.form-control {
	height:40px;
}



/*** Menu Start ****/

/* breakpoint in pixels for responsive */
/* dropdown Menu core scss */
ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  
}
ul li {
  position: relative;
  display: inline-block;
}
ul li:hover > ul {
 display: inherit;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    width: 241px;
}
ul li:hover > ul li {
  display: list-item;
}
ul li a {
  display: block;
    text-transform: uppercase;
    font-family: Rubik;
    font-size: 13px;
	font-weight: 600;


}
ul li ul {
  display: none;
  position: absolute;
  /* optional: submenu is same width than parent entry width */
  min-width: 100%;
  /* optional: submenu background color */
  background-color: #fff;
}
ul li ul ul {
  left: 100%;
  top: 0;
}

/* Responsiveness core scss */
@media (max-width: 980px) {
  ul {
    display: inherit;
  }
  ul:first-child:before {
    background-color: #222;
    content: 'MENU';
    display: block;
    padding: 1rem;
    color: #fff;
    text-align: right;
  }
  ul:active li, ul:focus li, ul:hover li {
    display: list-item;
  }
  ul li {
    display: none;
   background-color: #f00;
  }
  ul li ul li a {
    color: #fff !important;
  }
  ul li ul {
    position: relative;
    min-width: auto;
    display: inherit;
    border-top: 2px solid #999;
  }
  ul li ul li {
    display: block;
  }
  ul li ul li a {
    position: relative;
  }
  ul li ul li a:before {
    content: '';
    padding-left: 1.5%;
  }
  ul li ul li ul {
    left: 0;
  }
}
/* ------------- optional styling below ------------ */
/* Following declarations are OPTIONAL */

nav {
  background-color: #e10009;
  
}
nav ul li:hover {
    background-color: transparent;
}

a {
  color: #fff;
  text-decoration: none;
  padding: 15px;
}
a:hover {
    /* background-color: rgba(0, 0, 0, 0.2); */
    
    text-decoration: none;
    background: transparent;
}
ul li a:hover{
	color:#fff;
}
ul li ul li a:hover{
	color:#333;
}
/*li > a:after {
  content: ' +';
  float: right;
  margin-left: 5px;
}**/

li > a:only-child:after {
  content: '';
}
ul li ul li a {
	color: #333;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
	}

/*** menu End ****/

.table td, .table th {
    padding: 4px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    
}
.max-table-size {
   
	box-shadow: 0px 0 5px 0 rgba(156, 168, 181, 0.96);
	top: 50%;
    position: relative;
}
a.viewbtn {
    background:#f90a0a;
    color: #fff;
    
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 17px;
}
a.viewbtn:hover
{
text-decoration:none;
}

/**** Media Queries ***/

@media (min-width: 320px) and (max-width: 767px) {
  
  .logo img{
  width:100% !important;
  }
  .register {
  padding:0px;
  }
  
  
}
@media (min-width: 1200px){
.menu-item {
        max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
	
}