


.padder
{
	padding: 0;	
}



/*----------------------------------  Header footer ----------------*/



 
.header
{
  
}

.header-div {
    box-shadow: 1px 1px 4px 2px hsla(208, 67%, 27%, 0.42);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 10px;
    height: 110px;
    margin-top: 30px;
}
.header img
{
    width: 90px;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-left: 16px;
}
 
.header h2
{
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: sans-serif;
    color: #174975;
    position: relative;
    top: 15px;
    text-transform: capitalize;
}


.header .input-group
{
    background: #174975;
    position: relative;
    top: 25px;
    border-radius: 24px;
    padding: 3px 0;
    width: 240px;
    float: right;
    margin-right: 20px;
}


.header .input-group .form-control {
    background: transparent;
    color: white;
    font-size: 16px;
    border: 0;
    outline: 0;
    outline: none;
    padding-left: 16px;
}




.header .input-group .input-group-addon {
    background: transparent;
    color: white;
    font-size: 22px;
    border: 0;
    padding: 0 0 0 10px;
}




 
 .footer
 {
  padding: 35px 0;
 }
.footer img
{
    width: 90px;
    margin: 0 auto;
    display: block;
}

.footer h2
{
    text-align: center;
    font-size: 14px;
    color: #174975;
    font-weight: 300;
    margin: 0;
    padding: 6px 0;
}

.footer h2 a
{
    text-decoration: none;
}


/*----------------------------------DEtails Div---------------------------------------------*/

.deatils
{
	margin-top: 35px;	
}


.deatils .table-responsive {
    min-height: .01%;
    overflow-x: auto;
    box-shadow: 1px 1px 4px 2px hsla(208, 67%, 27%, 0.42);
    border-radius: 25px;
    margin: 0;
    padding: 0;
}
.deatils .table-bordered {
    border: 0px solid #ddd;
    background: white;
    /* border-radius: 20px; */
    overflow: hidden;    margin: 0;
    /* box-shadow: 1px 1px 4px 2px #174975; */
}



.deatils th {
    background: #174975;
    color: white;
    font-weight: 600;
    font-family: sans-serif;
    text-align: center;
    height: 75px;
    vertical-align: middle !important;
    border: 0 !important;
}

.deatils td
{

}
.deatils td label
{
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    display: block;
    color: #174975;
    margin: 0;
    padding: 7px 12px;
}
.deatils td p
{
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    display: block;
    color: #174975;
    margin: 0;
    padding: 7px 12px;
}


.deatils td {
    padding: 8px 8px !important;
    border: 1px solid rgba(221, 221, 221, 0.4196078431372549) !important;
}














/*----------------------------  login page  ------------------------*/


.login-wrapper{
		    width: 600px;
    background: #164875;
    padding: 10px 40px;
    margin: 0 auto;
    display: block;
   
    border-radius: 25px;
    margin-top: 15px;
	}
	.main-wrapper-top{
		
	}
	.logo-img{
    width: 130px;
    margin: 10px auto;
    display: block;
    margin-bottom: 30px;
	}
	.Pseudo-div-input-text{
    margin: 30px auto;
    width: 340px;
    margin-top: 0;
	}
	.Pseudo-div-input-text input{
	
    padding: 25px 7px;
    border-radius: 50px;
    border-left: 0;
	}
	.Pseudo-div-input-text input::placeholder{
		color: #164875;
	}
	.Pseudo-div-input-text span{
		    background: #FFFFFF;
    border-width: 1px 1px 1px 0px;
    border-radius: 50px 0px 0px 50px;
    border-right: 0
	}
	.Pseudo-div-input-text span img{
		
    width: 20px;
    padding: 8px 0;
	}

    .Pseudo-div-input-text span i
    {

    color: #164875;
    }

	.input-checkbox{
		    width: 100%;
    max-width: 340px;
    text-align: center;
    margin: 0 auto;
    float: left;
    color: #fff;
	}
	.para{
        color: #fff;
    }
    .para a{
    color: white;
    text-decoration: none;
    }


	.text-center{
		text-align: center;
	}
	.login-btn{
		    background: #FF434B;
    border: 0;
    padding: 11px 30px;
    border-radius: 50px;
    margin: 15px auto;
    display: block;
    color: #ffff;
    width: 100%;
    max-width: 50%;
    outline: none;
    margin-bottom: 35px;
	}
	.parar-2{
		    color: #FF434B;
    text-align: center;

	}
	.para-3{
		text-align: center;
		color: #164875;
	}


	/* The container */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 100;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
    background-color: #164875;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
        left: 7px;
    top: -5px;
    width: 9px;
    height: 19px;
    border: solid #ff434b;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.container-checkbox input:checked ~ .checkmark {
    background-color: #164875;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 96px;
    height: 20px;
    width: 20px;
    background-color:#164875;
    border-radius: 50px;
    border: 1px solid #FF424B;
}




/*---------------------------  event-model*/


.event-model
{
    position: fixed;
    z-index: 999999;
    left: 25%;
    top: -8px;
}
.event-model .modal-header {
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}




.event-model .modal-title {
    margin: 0;
    line-height: 1.42857143;
    font-size: 18px;
    text-align: center;
    background: #174975;
    color: white;
    padding: 20px 0;
}



.event-model .modal-header .close {
    margin-top: -2px;
    color: white;
    opacity: 1;
    border: 2px solid white;
    width: 35px;
    height: 35px;
    border-radius: 1px 1px 1px 27px;
}

.event-model .form-group {
    margin-bottom: 5px;
}

.event-model label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 200;
    font-size: 16px;
    text-transform: capitalize;
}
.event-model .form-control {
    border-radius: 0;
    font-size: 15px;
}


 


.deatils td .update-select
{
    background:#174975;
    color: white;
    font-size: 14px;
    padding: 4px 4px;

}



.padder-left
{    
    padding-left: 0;
}

.padder-left1
{    
    padding-left: 0;
    padding-right: 0;
}







.addbtn
{
    padding: 0;
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 4px 11px;
    border: 1px solid gray;
    border-radius: 0;
}



.top-header-menu
{
    
}

.top-header-menu ul
{
    list-style: none;
    padding: 0;
    margin: 5px auto; 
}

.top-header-menu li
{
    display: inline-block;
    margin: 0px 5px;
}

.top-header-menu li a
{
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
}
















