/* common */
body {
   font-size: 13px;
   color: #242627;
   letter-spacing: .5px;}

::-moz-selection { background: #2c89c5; color: #fff; }
::selection { background: #2c89c5; color: #fff;}


/* placeholder */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
     color: #6d6a6a;
     font-weight: normal;}
::-moz-placeholder { /* Firefox 19+ */
     color: #6d6a6a;
     font-weight: normal;}
:-ms-input-placeholder { /* IE 10+ */
     color: #6d6a6a;
     font-weight: normal;}
:-moz-placeholder { /* Firefox 18- */
     color: #6d6a6a;
     font-weight: normal;} 

/* number icon remove */	 
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;}	
	
/* autofill */
@-webkit-keyframes autofill {
    to {
        color: #00051b;
        background: transparent;}
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;}
    
  




/* pre-loader */
.pre-loader {
	position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #1314143d;}
.pre-loader div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px; 
	margin-left: -50px;
  animation: rotation 1s infinite linear;
  border: 5px solid #013466;
  border-radius: 50%;
  border-top-color: #ffffffc2;}
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}



/* custom */
.m-t-55 {
  margin-top: 55px !important;}
.p-t-35 {
  padding-top: 35px !important;}
.m-b-55 {
  margin-bottom: 55px !important;}
.p-t-100 {
  padding-top: 100px !important;}
.height-35 {
  height: 35px !important;}
.m-r-10 {
  margin-right: 10px !important;}
.m-t-35 {
  margin-top: 35px !important;}
.fw-600{
  font-weight: 600;
}
/* required */
input[required]:invalid,
textarea[required]:invalid,
select[required]:invalid {
  border-color: #ff9292 !important;
}


/**/
select {
  background-color: #fff;
}


/* button */
button,
.a-btn {
  border: none;
  letter-spacing: 2px;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 25px;
  white-space: nowrap;
  line-height: normal;
  background: #013466;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;}
button:hover,
button:focus,
.a-btn:hover,
.a-btn:focus {
    outline: none;
    background: #00558e;
    color: #fff;}
.a-btn {
    display: inline-block;}
.a-btn:hover,
.a-btn:focus {
    text-decoration: none;}


/* m-green-btn */
.m-green-btn {
  background: #63eab0 !important;
  color: #054c42;}
.m-green-btn:hover {
  background: #63eab0 !important;}



/* red-btn */
.red-btn {
  background: #ff524f;
  color: #fff;}
.red-btn:hover {
  background: #ff524f;
  color: #fff;}



/* header */
header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  padding-left: 50px;
  padding-right: 50px;
  box-shadow: 0px 4px 9px 0px rgb(0 0 0 / 24%);}
@media (max-width: 991px) {
header {
  height: 60px;
  padding-left: 15px;
  padding-right: 15px;}
}


/* a-logo */
header .a-logo {
  display: inline-block;
  padding-top: 17px;}
header .a-logo .logo {
  max-width: 100%;
  height: 65px;}
@media (max-width: 991px) {
header .a-logo {
  padding-top: 8px;}
header .a-logo .logo {
  height: 45px;}
}



/* username */
header .username {
  color: #fff;
  margin-top: 32px;}
header .username a {
  font-size: 14px;
  color: #013466;
  background: #f3f3f3;
  width: 35px;
  height: 35px;
  padding: 0;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;}
header .username h6 {
  margin-bottom: 0;
  display: initial;
  font-size: 12px;
  margin-top: 10px;
  margin-right: 15px;}
@media (max-width: 991px) {
header .username {
  margin-top: 20px;}
header .username a {
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;}
header .username h6 {
  margin-top: 5px;}
}




/* main-div */
.main-div {
  padding-top: 100px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;}
@media (max-width: 991px) {
.main-div {
  padding-top: 60px;}
}



/* wrapper */   
.wrapper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;}
@media (min-width: 1200px) {
.wrapper {
    max-width: 2500px;
	  padding: 0 100px;}
}
@media (max-width: 1199px) {
.wrapper {
	padding: 0 70px;}
}  
@media (max-width: 991px) {
.wrapper {
	padding: 0 50px;}
} 
@media (max-width: 767px) {
.wrapper {
	padding: 0 25px;}
} 








/* login */
.login {
  margin: 0 auto;
  text-align: center;
  width: 95%;
  border-radius: 10px;
  max-width: 330px;
  background: #ffffff;
  box-shadow: 8px 22px 27px #dce4e0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);}
/* body */
.login .body {
  padding: 100px 30px 30px;}
.login .body h2 {
  margin-bottom: 55px;
  color: #2b2b2b;
  font-weight: bold;
  font-size: 25px;}	
.login .body .div-col {
  position: relative;}
.login .body .div-col img {
  height: 24px;
  position: absolute;
  left: 18px;
  top: 8px;}
.login .body .div-col input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  padding-left: 55px;
  margin-bottom: 15px;
  border: none;
  outline: none;
  background: #dcf8fd;}
/* placeholder */
.login .body .div-col ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #5ec5ea;}
.login .body .div-col ::-moz-placeholder { /* Firefox 19+ */
  color: #5ec5ea;}
.login .body .div-col :-ms-input-placeholder { /* IE 10+ */
  color: #5ec5ea;}
.login .body .div-col :-moz-placeholder { /* Firefox 18- */
  color: #5ec5ea;}
.login .body .primary-btn {
  padding: 10px 50px;
  font-size: 12px;
  width: 100%;
  border-radius: 10px;
  margin-top: 15px;
  background: #013466;
  color: #ffffff;
  padding: 12px 20px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 18px;}
.login .body .clone_copyright_t {
  font-size: 11px;
  margin-top: 50px;
  color: #575858;}
.login .body .clone_copyright_t a {
  color: #292b2b;}






/* payment-details */
.payment-details {
  color: #272829;
  background: #fff;
  box-shadow: 8px 12px 27px 3px #e4dfdf;
  padding: 20px;
  border-radius: 10px;}
.payment-details .header {
  text-align: center;
  padding: 20px 15px;
  display: block;}
.payment-details .header h5 {
  font-size: 16px;}
.payment-details .body .content-row [class^="col-"] {
  margin-bottom: 30px;}
.payment-details .body .div-col {
  box-shadow: 0 0 5px #d3d5d8;
  padding: 25px;
  height: 100%;}
.payment-details .body .div-col h4 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;}
.payment-details .body .div-col table {
  margin: auto;}
.payment-details .body .div-col table td,
.payment-details .body .div-col table th {
  padding-bottom: 8px;}
.payment-details .body .div-col table td:nth-of-type(2) {
  padding-left: 10px;
  padding-right: 10px;}
.payment-details .body .div-col .primary-img {
  max-height: 295px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -2px;
  display: block;}
/**/
.payment-details .page-form {
  box-shadow: none;}




/* pop-up and page-form */

/* col */
.pop-up .modal-body [class^="col-"],
.page-form .page-body [class^="col-"] {
  padding-bottom: 12px;}


/* input's */
.pop-up .modal-body input[type="text"],
.pop-up .modal-body input[type=""],
.pop-up .modal-body input[type="number"],
.pop-up .modal-body input[type="date"],
.pop-up .modal-body input[type="password"],
.pop-up .modal-body input[type="email"],
.pop-up .modal-body input[type="url"],
.pop-up .modal-body input[type="time"],
.pop-up .modal-body input[type="file"],
.pop-up .modal-body select,
.pop-up .modal-body textarea,
.page-form .page-body input[type="text"],
.page-form .page-body input[type=""],
.page-form .page-body input[type="number"],
.page-form .page-body input[type="date"],
.page-form .page-body input[type="password"],
.page-form .page-body input[type="email"],
.page-form .page-body input[type="url"],
.page-form .page-body input[type="time"],
.page-form .page-body input[type="file"],
.page-form .page-body select,
.page-form .page-body textarea {
  width: 100%;
  color: #000;
  padding-left: 15px;
  border: 1px solid #b2b9b9;
  border-radius: 5px;
  margin-top: 5px;
}

/* file */
.pop-up .modal-body input[type="file"],
.page-form .page-body input[type="file"] {
  padding-left: 0;
  border-color: transparent;}

.pop-up .modal-body textarea,
.page-form .page-body textarea {
  padding-top: 5px;
  height: 100px;
}

  .pop-up .modal-body input[type="text"],
  .pop-up .modal-body input[type=""],
  .pop-up .modal-body input[type="number"],
  .pop-up .modal-body input[type="date"],
  .pop-up .modal-body input[type="password"],
  .pop-up .modal-body input[type="email"],
  .pop-up .modal-body input[type="url"],
  .pop-up .modal-body input[type="time"],
  .pop-up .modal-body input[type="file"],
  .pop-up .modal-body select,
  .page-form .page-body input[type="text"],
  .page-form .page-body input[type=""],
  .page-form .page-body input[type="number"],
  .page-form .page-body input[type="date"],
  .page-form .page-body input[type="password"],
  .page-form .page-body input[type="email"],
  .page-form .page-body input[type="url"],
  .page-form .page-body input[type="time"],
  .page-form .page-body input[type="file"],
  .page-form .page-body select {
    height: 35px;}




/* chosen-container */
.pop-up .modal-body .chosen-container .chosen-single,
.page-form .page-body .chosen-container .chosen-single {
    padding-top: 8px;}
.pop-up .modal-body .chosen-container:not(.chosen-container-active) .chosen-single,
.page-form .page-body .chosen-container:not(.chosen-container-active) .chosen-single {
    padding-left: 15px;}



/* choose-img-show */
.pop-up .modal-body .choose-img-div,
.page-form .page-body .choose-img-div {
  position: relative;}
.pop-up .modal-body .choose-img-div .choose-img-show,
.page-form .page-body .choose-img-div .choose-img-show {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 40px;
  max-width: 100%;
  background: #ffff;}



/*/ pop-up Start /*/

/* pop-up-small */
@media (min-width: 768px) {
  .pop-up .body.pop-up-small {
    max-width: 700px;
    width: 80%;}
}
/* pop-up-x-small */
@media (min-width: 768px) {
  .pop-up .body.pop-up-x-small {
    max-width: 400px;}
}


/* common */
.modal.pop-up {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.pop-up .modal-content {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0;
  height: 100vh;
}

@media (min-width: 576px) {
  .pop-up .modal-dialog {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .pop-up .modal-dialog {
    max-width: 100%;
  }
}

/* body */
.pop-up .body {
  margin: 0 auto;
  background: #fff;
  border-radius: 23px;
}

@media (min-width: 768px) {
  .pop-up .body {
    width: 75%;
  }
}

@media (max-width: 767px) {
  .pop-up .body {
    width: 100%;
  }
}

/* modal-header */
.pop-up .modal-header {
  padding: 0;
}

.pop-up .modal-header h1,
.pop-up .modal-header h2 {
  margin: 0;
  color: #000;
}
.pop-up .modal-header h1 {
  padding-top: 9px;
}
.pop-up .modal-header .close-btn {
  color: #bfbfbf;
  position: relative;
  min-width: auto;
  bottom: 6px;
  left: 15px;
  font-size: 22px;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}

@media (min-width: 768px) {
  .pop-up .modal-header {
    padding: 15px 30px;
  }

  .pop-up .modal-header h1 {
    font-size: 20px;
  }

  .pop-up .modal-header h2 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .pop-up .modal-header {
    padding: 10px 25px;
  }

  .pop-up .modal-header h1 {
    font-size: 19px;
  }

  .pop-up .modal-header h2 {
    font-size: 17px;
  }
}

/* modal-body */
/* common */
.pop-up .modal-body label {
  margin: 10px 0 2px 0;
  width: 100%;
  font-size: 17px;
  color: #565857;
}

@media (min-width: 768px) {
  .pop-up .modal-body {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .pop-up .modal-body {
    padding: 10px 25px;
  }
}

/* modal-footer */
.pop-up .modal-footer {
  border-top: none;
  padding-top: 5px;
}
.pop-up .modal-footer.text-center {
  justify-content: center;
}
.pop-up .modal-footer button,
.pop-up .modal-footer .a-btn {
  min-width: 90px;}
.pop-up .modal-footer .delete-btn {
  margin-right: auto;
  padding-left: 0;
}
@media (min-width: 768px) {
  .pop-up .modal-footer {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .pop-up .modal-footer {
    padding: 10px 25px;
  }
}



/* radio-cbox-btn */
.pop-up .modal-body .radio-cbox-btn label {
  width: auto;
}



/* confirm-popup */
.confirm-popup h4 {
  font-size: 17px;
  padding-top: 15px;
  padding-bottom: 15px;}
@media (min-width: 768px) {
.pop-up .body.confirm-popup {
  width: 35%;}
}




/* confirm-modal */
.pop-up .body.confirm-modal {
  text-align: center;
  max-width: 360px;}
.pop-up .body.confirm-modal .modal-body .icon {
  font-size: 40px;
  color: #3eaae6;
  border: 1px solid;
  display: inline-block;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin-top: 20px;
  margin-bottom: 25px;}
.pop-up .body.confirm-modal .modal-body .icon-green {
  color: #4bbb4b;}
.pop-up .body.confirm-modal .modal-body h1 {
  font-size: 25px;
  color: #595959;}
.pop-up .body.confirm-modal .modal-body h2 {
  font-size: 18px;
  margin-top: 30px;
  color: #595959;}
.pop-up .body.confirm-modal .modal-body h6 {
  font-size: 14px;
  color: #8291a0;}
.pop-up .body.confirm-modal .modal-footer {
  padding-bottom: 25px;
  justify-content: center;}
.pop-up .body.confirm-modal .modal-footer button, 
.pop-up .body.confirm-modal .modal-footer .a-btn {
  font-size: 15px;}




/* main-details  */
.pop-up .modal-body .main-details .div-col label {
  margin-top: 0;
  width: initial;}



/* img-zoom-popup */
.pop-up .body.img-zoom-popup .modal-header {
  position: relative;
  border: none;
  padding: 0;}
.pop-up .body.img-zoom-popup .modal-header .close-btn {
  position: absolute;
  z-index: 1;
  right: 0;
  left: initial;
  bottom: inherit;
  top: -15px;
  background: #fff;}
.pop-up .body.img-zoom-popup .modal-body {
  padding: 0;}



/* common-table  */
/* common */
/*.pop-up .common-table {}*/

/*/ pop-up End /*/

/* page-form */
.page-form {
  background: #fff;
  box-shadow: 8px 12px 27px 3px #e4dfdf;
  border-radius: 10px;
}

/* page-form-head, page-body, page-footer */
.page-form .page-form-head,
.page-form .page-body,
.page-form .page-footer {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .page-form .page-form-head,
  .page-form .page-body,
  .page-form .page-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* page-form-head */
.page-form .page-form-head {
  padding-top: 20px;
  padding-bottom: 10px;
  position: relative;
}

.page-form .page-form-head h1 {
  font-size: 18px;
    margin-bottom: 0;
    font-weight: bold;
}
.page-form .page-form-head h2 {
  font-size: 15px;
    margin-bottom: 0;
}


/* page-body */
.page-form .page-body {
  padding-top: 5px;
  padding-bottom: 20px;
}

.page-form .page-body:after,
.page-form .page-body:before {
  display: table;
  content: " ";
}

.page-form .page-body:after {
  clear: both;
}

/* label */
.page-form .page-body label {
  font-size: 12px;
  margin: 5px 0 0;
  padding: 4px 0 1px;
  color: #565857;
}


/* section */
.page-form .section {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #000;}
.page-form .section h1 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;}


/* file-upload */ 
.page-form .file-upload {
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  text-align: center;} 
.page-form .file-upload input[type="file"] {
  visibility: hidden;
  margin: 0;
  height: 0;}
.page-form .file-upload img {
  display: block;
  margin: -15px auto 20px auto;
  height: 50px;}


/* multi_field_wrapper */
.page-form .multi_field_wrapper button {
  font-size: 11px;}

/* page-footer */
.page-form .page-footer {
  text-align: right;
  padding-bottom: 10px;
}
.page-form .page-footer button,
.page-form .page-footer .a-btn {
  margin: 8px 0;
  display: inline-block;
  min-width: 90px;
}





/* profile-section */
@media screen {
.profile-section {
  display: none;}
}
/* print */
@media print {
@page {
    size: auto !important;}
}
/**/
.profile-section {
  background-color: #fff;
  padding: 15px;}
/* head */
.profile-section .head {
  border-bottom: 15px solid #1b3764;
  padding-bottom: 15px;}
.profile-section .head h1 {
  color: #3b3d40;
  font-size: 35px;
  font-weight: bold;}
.profile-section .head h6 {
  color: #474748;
  font-size: 14px;}
.profile-section .head .user-sign-img {
  width: 125px;
  text-align: center;
  float: right;}
.profile-section .head .user-sign-img .user-img {
  max-width: 100%;
  max-height: 140px;}
.profile-section .head .user-sign-img .sign-img {
  max-width: 100%;
  max-height: 50px;}
.profile-section .head .details .div-col {
  font-size: 17px;}
/* body */
.profile-section .body {
  margin-top: 30px;}
/* base-table */
.profile-section .body .base-table {
  width: 100%;}
.profile-section .body .base-table .col-td {
  border: 1px solid #000;
  vertical-align: top;
  width: 50%;
  padding: 15px;}
.profile-section .body .base-table .border-b-0 {
  border-bottom: none;}
.profile-section .body .base-table .border-t-0 {
  border-top: none;}
.profile-section .body .base-table .border-l-1 {
  border-left: 1px solid #000;}
.profile-section .body .base-table .border-r-1 {
  border-right: 1px solid #000;}
.profile-section .body .base-table .border-b-1 {
  border-bottom: 1px solid #000;}
.profile-section .body .base-table hr {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 1px dotted #000;}
.profile-section .body .base-table table {
  width: 100%;}
.profile-section .body .base-table table td,
.profile-section .body .base-table table th {
  vertical-align: top;
  padding-top: 12px;
  padding-bottom: 12px;}
.profile-section .body .base-table table .dotted {
  width: 5%;
  text-align: center;}
.profile-section .body .base-table table tr td:first-of-type {
  width: 50%;}
.profile-section .body .base-table table tr th:last-of-type {
  width: 40%;
  font-weight: bold;}
/* .table */
.profile-section .body .table th,
.profile-section .body .table td {
  border: 1px solid #000;}
/* principal-sign */
.profile-section .body .principal-sign {
  border: 1px solid #999;}
.profile-section .body .principal-sign h6 {
  padding-top: 80px;
  padding-right: 10px;}





/* footer */
footer {
  text-align: center;
  padding: 15px;
  background: #252525;
  color: #949494}
footer p {
  margin-bottom: 0;}