/************************************************
	************************************************
								Table of contents
	************************************************
************************************************/

/************************************************
	************************************************
						A1. Importing Sass Variables
	************************************************
************************************************/

/*************** 1.Variables ***************/

/*************** 2.Mixins ***************/

/************************************************
	************************************************
							A2. Importing Web Fonts
	************************************************
************************************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400&display=swap');
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap");
/************************************************
	************************************************
										A3. Body CSS
	************************************************
************************************************/

html {
  height: 100%;
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-size: .875rem;
  /* font: normal .875rem 'Open Sans', sans-serif; */
  font-family: 'Montserrat', sans-serif;
  color: #6e6b7b;
  /* color: #242e64; */
  /* background: #d5e7ff; */
  background-color: #f8f8f8;
  min-height: 100%;
  position: relative;
}

body.authentication {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/bg5.jpeg);
  background-size: cover;
  background-position: center center;
}

.error-message {
  color : red;
}

/************************************************
	************************************************
									A4. Loading CSS
	************************************************
************************************************/

#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  background: rgba(7, 75, 156, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading-wrapper .spinner-wrapper {
  width: 100px;
  height: 120px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: calc(50% - 60px);
}

#loading-wrapper .spinner {
  width: 100%;
  height: 100%;
  position: absolute;
}

#loading-wrapper .spinner .inner {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 5px solid rgba(254, 209, 48, 0.8);
  border-right: none;
  border-top: none;
  backgroudn-clip: padding;
  box-shadow: inset 0px 0px 10px rgba(254, 209, 48, 0.3);
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loading-wrapper .spinner:nth-of-type(0) {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

#loading-wrapper .spinner:nth-of-type(0) .inner {
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

#loading-wrapper .spinner:nth-of-type(1) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#loading-wrapper .spinner:nth-of-type(1) .inner {
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

#loading-wrapper .spinner:nth-of-type(2) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#loading-wrapper .spinner:nth-of-type(2) .inner {
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

#loading-wrapper .loading-wrapper {
  -webkit-animation: spin 5s infinite linear;
  animation: spin 5s infinite linear;
}

/************************************************
	************************************************
									A5. Re-usable Classes
	************************************************
************************************************/

a {
  color: #d5e7ff;
}

a:hover {
  text-decoration: none;
  color: white;
}

img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.custom {
  font-size: .825rem;
  margin: 20px 0 0 20px;
}

ul.custom li {
  line-height: 180%;
}

ul.custom-list2 {
  font-size: .825rem;
  list-style-type: disc;
  margin: 0 0 0 15px;
}

ul.custom-list2 li {
  line-height: 100%;
}

ul.custom-list2 li a {
  display: flex;
  line-height: 200%;
}

ul.custom-list2 li a:hover {
  text-decoration: underline;
  color: #242e64;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: .8rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: .4rem;
}

h5 {
  font-size: 1rem;
  margin-bottom: .3rem;
}

h6 {
  font-size: .85rem;
  margin-bottom: .2rem;
}

p {
  margin-bottom: .2rem;
  line-height: 180%;
  font-weight: 400;
}

h1.styled {
  text-align: center;
  position: relative;
  line-height: 180%;
  padding-bottom: .2rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

h1.styled:after {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
  background: #242e64;
  height: 5px;
  width: 70px;
}

h2.styled {
  text-align: center;
  position: relative;
  line-height: 180%;
  padding-bottom: .2rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

h2.styled:after {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  background: #242e64;
  height: 4px;
  width: 50px;
}

h3.styled {
  text-align: center;
  position: relative;
  line-height: 180%;
  padding-bottom: .2rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

h3.styled:after {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  background: #242e64;
  height: 3px;
  width: 30px;
}

.text-primary {
  color: #242e64 !important;
}

.text-secondary {
  color: #a90724 !important;
}

.text-success {
  color: #108075 !important;
}

.text-info {
  color: #3f3bd0 !important;
}

.text-warning {
  color: #b96e00 !important;
}

.text-danger {
  color: #ab141b !important;
}

.text-muted {
  color: #b3b3b3 !important;
}

.bg-primary, a.bg-primary {
  background-color: #242e64 !important;
}

.bg-primary:hover, .bg-primary:focus, a.bg-primary:hover, a.bg-primary:focus {
  background-color: #1d2551 !important;
}

.bg-secondary, a.bg-secondary {
  background-color: #a90724 !important;
}

.bg-secondary:hover, .bg-secondary:focus, a.bg-secondary:hover, a.bg-secondary:focus {
  background-color: #91061f !important;
}

.bg-success, a.bg-success {
  background-color: #108075 !important;
}

.bg-success:hover, .bg-success:focus, a.bg-success:hover, a.bg-success:focus {
  background-color: #0d6960 !important;
}

.bg-info, a.bg-info {
  background-color: #3f3bd0 !important;
}

.bg-info:hover, .bg-info:focus, a.bg-info:hover, a.bg-info:focus {
  background-color: #332fc3 !important;
}

.bg-warning, a.bg-warning {
  background-color: #b96e00 !important;
}

.bg-warning:hover, .bg-warning:focus, a.bg-warning:hover, a.bg-warning:focus {
  background-color: #a05f00 !important;
}

.bg-danger, a.bg-danger {
  background-color: #ab141b !important;
}

.bg-danger:hover, .bg-danger:focus, a.bg-danger:hover, a.bg-danger:focus {
  background-color: #941117 !important;
}

.img-48 {
  max-width: 48px;
  max-height: 48px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.img-72 {
  max-width: 72px;
  max-height: 72px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.img-90 {
  max-width: 90px;
  max-height: 90px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.rounded-2 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.rounded-3 {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.rounded-4 {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/************************************************
	************************************************
									A6. Animations CSS							
	************************************************
************************************************/

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 7%, 0);
    transform: translate3d(0, 7%, 0);
    visibility: visible;
    opacity: 0.2;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 2;
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 7%, 0);
    transform: translate3d(0, 7%, 0);
    visibility: visible;
    opacity: 0.2;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/************************************************
	************************************************
								A7. Header Section CSS
	************************************************
************************************************/

.header {
  padding: .4rem 0 .4rem 0;
  z-index: 100;
  position: relative;
  margin: 0;
  background-color: white;
  box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
}

.header a.logo {
  transition: all 0.5s ease;
  margin: 3px 0;
  display: inline-block;
  color: #242e64;
  font-size: 1.6rem;
  font-weight: 700;
}

.header a.logo span {
  font-size: .9rem;
  font-weight: 600;
}

.header a.logo:hover {
  text-decoration: none;
  opacity: 0.7;
}

.header a.logo img {
  max-width: 150px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-actions>li {
  float: left;
}

.header-actions>li>a {
  padding: 10px 15px 10px 15px;
  display: block;
  position: relative;
}

.header-actions>li>a>i {
  font-size: 1.2rem;
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  padding: .3em;
}

.header-actions>li>a>img.list-icon {
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
}

.header-actions>li>a .count-label {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: #b96e00;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.header-actions>li>a.user-settings {
  padding: 0 0 0 18px;
}

.header-actions>li>a.user-settings .avatar {
  /* position: relative;
  width: 130px;
  height: 40px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #242e64;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  margin: 0; */
  position: relative;
  width: 130px;
  height: 40px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  /* background: #ededed; */
  line-height: 40px;
  display: inline-block;
  text-align: center;
  color: #b88113;
  font-weight: 700;
  margin: 0;
}

.header-actions>li>a.user-settings .avatar .status {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 13px;
  height: 13px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 2px solid #ffffff;
}

.header-actions>li>a.user-settings .avatar .status.busy {
  background: #ab141b;
}

.header-actions>li>a.user-settings .avatar .status.online {
  background: #108075;
}

.header-actions>li>a.user-settings .avatar .status.away {
  background: #b96e00;
}

.header-actions>li>a.user-settings span.user-name {
  color: #242e64;
  margin-right: 5px;
  vertical-align: middle;
  font-size: .875rem;
  display: inline-block;
  max-width: 90px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 300;
}

.header-actions>li>a.help {
  padding: .3rem .7rem;
  background: #242e64;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .7rem;
  margin-top: 6px;
}

.header-actions>li:hover .dropdown-menu {
  margin-top: 0;
  display: block;
}

@media (max-width: 576px) {
  .header-actions>li {
    border-left: 0;
  }
  .header-actions>li>a.user-settings span.user-name {
    display: none;
  }
}

ul.header-notifications li a {
  padding: .7rem 1rem;
  display: block;
  transition: all 0.5s ease;
}

ul.header-notifications li a .avatar {
  float: left;
  position: relative;
  margin: 0;
}

ul.header-notifications li a .avatar img {
  width: 48px;
  height: 48px;
  line-height: 48px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

ul.header-notifications li a .avatar .notify-iocn {
  position: absolute;
  right: -5px;
  bottom: 0px;
  background: #ffffff;
  padding: 4px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: .75rem;
}

ul.header-notifications li a .details {
  display: block;
  margin-left: 65px;
}

ul.header-notifications li a .details h6 {
  color: #000000;
}

ul.header-notifications li a .details p {
  color: #999999;
  font-size: .825rem;
  line-height: 140%;
}

ul.header-notifications li a:hover {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.2);
}

ul.header-notifications li:first-child a {
  padding-top: 0;
}

.header-profile-actions {
  margin: 0;
  padding: .8rem 0;
}

.header-profile-actions .header-user-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: .5rem;
}

.header-profile-actions .header-user-profile .header-user {
  margin-bottom: .5rem;
}

.header-profile-actions .header-user-profile .header-user img {
  width: 4rem;
  height: 4rem;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.header-profile-actions .header-user-profile p {
  color: #b3b3b3;
  font-size: .825rem;
}

.header-profile-actions a {
  border-bottom: 1px dotted rgba(1, 118, 192, 0.1);
  padding: .5rem 1rem;
  transition: all 0.5s ease;
  display: block;
  color: #a90724;
  font-size: .8rem;
  font-weight: 400;
}

.header-profile-actions a:hover {
  background: #d5e7ff;
  color: #a90724;
}

.header-profile-actions a i {
  font-weight: 700;
  margin-right: .5rem;
  font-size: 1rem;
  vertical-align: text-top;
}

.header-profile-actions a:last-child {
  border-bottom: 0;
}

/************************************************
	************************************************
									A7. Main Container
	************************************************
************************************************/

.main-container {
  margin: 0 auto 0 auto;
  padding: 0;
}

/************************************************
	************************************************
									A8. Content Wrapper
	************************************************
************************************************/

.content-wrapper {
  padding: 1.5rem 1rem 1.5rem 1rem;
  /* background: #d5e7ff; */
  min-height: calc(100vh - 195px);
  background-color: white;
  border-radius: .48rem;
  margin-bottom: 25px;
}

/************************************************
	************************************************
									A9. Page Header
	************************************************
************************************************/

.page-header {
  padding: .5rem 1rem;
  background: #f6f7f7;
  /* background: #242e64; */
  margin: 0;
  min-height: 44px;
  max-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.page-header h5.title {
  margin: 0;
  font-weight: 600;
  font-size: .9rem;
  color: #ffffff;
}

.page-header .breadcrumb {
  padding: 0;
}

.page-header .contact {
  padding: .8rem 1.2rem;
  background: #a90724;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 100%;
  display: flex;
  flex-direction: row;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 0 0;
  min-width: 120px;
  margin-top: -55px;
  position: relative;
}

.page-header .contact>img {
  margin: 0 .5rem 0 0;
  width: 48px;
  height: 48px;
}

.page-header .contact>.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header .contact>.details .info {
  font-size: .7rem;
  margin: 0 0 .5rem 0;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.page-header .contact>.details .contact-number {
  font-size: 1.1rem;
}

/************************************************
	************************************************
									A10. Page Wrapper
	************************************************
************************************************/

.page-wrapper {
  padding: 0;
}

/************************************************
	************************************************
									A11. Main Footer
	************************************************
************************************************/

.main-footer {
  background: #242e64;
  padding: .9rem 1.3rem;
  font-size: .75rem;
  margin: 0;
  color: #ffffff;
}

/************************************************
	************************************************
									A12. Components
	************************************************
************************************************/

.chart-height {
  position: relative;
  height: 250px;
}

.chart-height-md {
  position: relative;
  height: 190px;
}

.chart-height-sm {
  position: relative;
  height: 150px;
}

.chart-height-xs {
  position: relative;
  height: 120px;
}

.map-xl {
  width: 100%;
  height: 350px;
  background: #f7fafe;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

#google-map {
  height: calc(100vh - 300px);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.card-body-275 {
  position: relative;
  min-height: 275px;
}

.card-body-320 {
  position: relative;
  min-height: 320px;
}

.h-150 {
  min-height: 150px;
}

.h-180 {
  min-height: 180px;
}

.h-250 {
  min-height: 250px;
}

/************************************************
	************************************************
			A13. Login, Signup, Lock and Error Screens
	************************************************
************************************************/

.error-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  height: 100vh;
}

.error-screen h1 {
  margin-bottom: 2rem;
  font-size: 5rem;
}

.error-screen p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 150%;
}

.error-screen .btn {
  font-size: 1.2rem;
  padding: .5rem 2rem;
  font-weight: 600;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.login-screen {
  position: relative;
  background: #ffffff;
  margin: 60px auto;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.login-screen .login-logo {
  margin: 1rem 0 2rem 0;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #a90724;
  width: 50%;
}

.login-screen .login-box {
  padding: 1.5rem;
}

.login-screen .login-box h5 {
  margin: 0 0 1rem 0;
  font-weight: 400;
  font-size: .925rem;
  line-height: 150%;
}

.login-screen .actions {
  display: flex;
  margin-bottom: .5rem;
  -webkit-box-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: end;
  align-items: center;
}

.login-screen .actions a {
  color: #999999;
  padding-right: 10px;
}

.login-screen .actions a:hover {
  color: #666666;
}

.login-screen .additional-link {
  text-decoration: none;
  margin: .5rem auto 0 auto;
  display: inline-block;
  color: #999999;
}

.login-screen .additional-link a {
  margin-left: 5px;
  display: inline-block;
}

.login-screen p.info {
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 150%;
  color: #999999;
  text-align: center;
}

.or {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.or::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 1px;
  background-color: #f7fafe;
}

.or span {
  position: relative;
  background-color: #ffffff;
  padding: 0 10px;
  z-index: 10;
}

/************************************************
	************************************************
										A14. Pages
	************************************************
************************************************/

.newsletter {
  background-color: #ffffff;
  border: 1px solid #cddcea;
  padding: 2rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.newsletter img.mail-icon {
  position: absolute;
  right: 30px;
  top: 30px;
  max-width: 80px;
  max-height: 80px;
}

.newsletter .title {
  margin-bottom: 1.5rem;
}

.newsletter .title h3 {
  padding-top: .8rem;
  position: relative;
}

.newsletter .title h3:before {
  background: #242e64;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 3px;
  display: block;
}

.newsletter h6 {
  margin: .7rem 0;
}

.newsletter .styled-input-wrapper {
  margin: 1.5rem 0 0 0;
}

.icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.icons span {
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #242e64;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #d5e7ff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 2px;
}

.icons span:hover {
  background-color: #242e64;
  color: #ffffff;
}

.search-result {
  margin-bottom: 3rem;
  max-width: 80%;
}

.search-result a {
  color: #242e64;
  font-size: 1rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  display: inline-block;
}

.search-result p.title {
  font-size: .9rem;
  color: #999999;
  margin: 0;
}

.search-result p.desc {
  font-size: .9rem;
  margin: 0;
  line-height: 150%;
}

@media (max-width: 767px) {
  .search-result {
    max-width: 100%;
  }
}

figure.user-card {
  background: #ffffff;
  border: 0;
  margin-bottom: 1rem;
  box-shadow: 0 0 25px rgba(26, 107, 225, 0.1);
  text-align: center;
  padding: 1.25rem 1.25rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

figure.user-card .profile {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  max-width: 72px;
  margin-bottom: 20px;
}

figure.user-card h5 {
  margin: 0 0 5px 0;
}

figure.user-card h6.designation {
  margin: 0 0 15px 0;
  color: #999999;
  font-weight: 400;
}

figure.user-card p {
  margin: 0;
  padding: 0 0 15px 0;
  line-height: 150%;
  font-size: .85rem;
}

figure.user-card p.timing {
  margin: 0;
  padding: 0 0 15px 0;
  font-size: .75rem;
  color: #108075;
}

figure.user-card a i {
  font-size: .825rem;
  vertical-align: middle;
}

.media.comments {
  margin-top: 0;
}

.media.comments .media-left a {
  display: block;
}

.media.comments a .empty-avatar {
  height: 64px;
  width: 64px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: #ffffff;
  text-align: center;
  display: block;
  line-height: 60px;
}

.media.comments a .empty-avatar.sm {
  width: 48px;
  height: 48px;
  line-height: 48px;
}

.media.comments .media-body h5.media-heading {
  font-size: 1rem;
}

.media.comments .media-body h5.media-heading span.date {
  font-size: .75rem;
  padding-left: 5px;
}

.media.comments .media-body p {
  padding: 0 0 0 15px;
  margin: 15px 0;
  border-left: 3px solid #cddcea;
}

.media.comments .comments-footer {
  margin: 25px 0 50px 20px;
}

.media.comments .comments-footer ul li {
  float: left;
  margin-right: 10px;
}

.media.comments .comments-form .form-group {
  margin-bottom: 10px;
}

.media.disabled {
  opacity: 0.3;
  cursor: no-drop;
}

@media (max-width: 767px) {
  .media.comments {
    overflow: auto;
  }
}

.media .thumb {
  width: 60px;
  height: 60px;
}

.media .thumb.mr {
  margin-right: 15px;
}

.media .thumb.ml {
  margin-left: 15px;
}

.media .thumb.mb {
  margin-bottom: 15px;
}

.media.center {
  text-align: center;
}

.blog {
  background: #ffffff;
  margin-bottom: 1.25rem;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.blog .blog-body {
  background: #ffffff;
  border: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 0 25px rgba(26, 107, 225, 0.1);
  padding: 1.25rem;
  position: relative;
}

.blog .blog-body h1.blog-title {
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.blog .blog-body h2.blog-title {
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.blog .blog-body h3.blog-title {
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.blog .blog-body h6.blog-date {
  font-size: .7rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
}

.blog .blog-body h6.blog-date .category {
  font-style: italic;
  color: #242e64;
  margin-right: .7rem;
}

.blog .blog-body h6.blog-date .divider {
  color: #999999;
  margin-right: .5rem;
}

.blog .blog-body h6.blog-date .date {
  color: #999999;
}

.blog .blog-body .blog-description {
  margin: 0 0 1rem 0;
}

.blog .blog-body .blog-description p {
  margin: 0 0 1.5rem 0;
}

.blog .blog-body ul.blog-list {
  margin: 2rem 0 2rem 4rem;
}

.blog .blog-body ul.blog-list li {
  padding: .5rem 0;
}

.blog .blog-body ul.blog-list li:before {
  content: "";
  display: block;
  float: left;
  margin-top: 0.60em;
  margin-left: -20px;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  background: #a90724;
}

.blog .blog-body .img-fluid {
  margin: 0 0 1rem 0;
}

.blog .blog-body .blog-actions {
  margin: 2rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog .blog-body .blog-actions .actions {
  display: flex;
  justify-content: center;
}

.blog .blog-body .blog-actions .actions a {
  margin-left: 1rem;
  color: #000000;
  font-weight: 700;
  font-size: .725rem;
  display: flex;
  align-items: center;
}

.blog .blog-body .blog-actions .actions a i {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  margin-right: .7rem;
  vertical-align: middle;
  color: #ffffff;
}

.blog .blog-body .blog-actions .actions a i.red {
  background: #ab141b;
  box-shadow: 0px 0px 0px 5px #ee6a70;
}

.blog .blog-body .blog-actions .actions a i.green {
  background: #108075;
  box-shadow: 0px 0px 0px 5px #86f0e5;
}

.blog .blog-body .blog-actions .actions a i.blue {
  background: #3f3bd0;
  box-shadow: 0px 0px 0px 5px #e0e0f7;
}

.blog .blog-body .blog-actions .actions a i.grey {
  background: #999999;
  box-shadow: 0px 0px 0px 5px #d9d9d9;
}

.blog img.blog-img {
  width: 100%;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}

.categories {
  display: flex;
  flex-wrap: wrap;
}

.categories .badge {
  margin: 0 .3rem .3rem 0;
  background: transparent;
  border: 1px solid #cddcea;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.popular-posts a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 0 .7rem 0;
  margin: 0 0 .7rem 0;
  display: flex;
  align-items: center;
}

.popular-posts a img.post-img {
  max-width: 60px;
  margin-right: .8rem;
}

.popular-posts a .post-content h6.post-title {
  margin: 0 0 .4rem 0;
  font-weight: 600;
  font-size: .7rem;
}

.popular-posts a .post-content h6.post-date {
  font-size: .7rem;
  font-weight: 400;
  margin: 0;
}

.popular-posts a .post-content h6.post-date .category {
  text-transform: uppercase;
  color: #242e64;
  margin-right: .2rem;
  font-weight: 600;
}

.popular-posts a .post-content h6.post-date .divider {
  color: #999999;
  margin-right: .2rem;
}

.popular-posts a .post-content h6.post-date .date {
  color: #999999;
}

.popular-posts a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.account-settings .user-profile {
  margin: 0 0 1rem 0;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 1rem;
  text-align: center;
}

.account-settings .user-profile .user-avatar {
  margin: 0 0 1rem 0;
}

.account-settings .user-profile .user-avatar img {
  width: 90px;
  height: 90px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.account-settings .user-profile h5.user-name {
  margin: 0 0 .5rem 0;
}

.account-settings .user-profile h6.user-email {
  margin: 0;
  font-weight: 400;
  color: #999999;
}

.account-settings .setting-links a {
  display: flex;
  flex-direction: row;
  padding: .8rem 0;
  font-size: .8rem;
  margin: 0;
}

.account-settings .setting-links a i {
  font-size: 1.1rem;
  color: #242e64;
  margin: 0 .8rem 0 0;
  vertical-align: middle;
  position: relative;
}

.account-settings .setting-links a i:after {
  content: '';
  width: 30px;
  height: 30px;
  opacity: 0.1;
  background: #999999;
  position: absolute;
  -webkit-border-radius: 30px 10px 30px 10px;
  -moz-border-radius: 30px 10px 30px 10px;
  border-radius: 30px 10px 30px 10px;
  top: -7px;
  left: -7px;
  z-index: 2;
}

.grid-container .column {
  border: 1px solid #242e64;
  background: #242e64;
  color: #ffffff;
  padding: .5rem .8rem;
  font-size: .725rem;
  margin: .2rem 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group .avatar {
  display: inline-block;
}

.avatar {
  width: 48px;
  height: 48px;
  position: relative;
  margin: .5rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar img.circle {
  border-radius: 100% !important;
}

.avatar img.half-circle {
  border-radius: 30% !important;
}

.avatar img.rounded {
  border-radius: 10% !important;
}

.avatar.xs {
  width: 24px;
  height: 24px;
}

.avatar.sm {
  width: 36px;
  height: 36px;
}

.avatar.md {
  width: 48px;
  height: 48px;
}

.avatar.lg {
  width: 64px;
  height: 64px;
}

.avatar.xl {
  width: 72px;
  height: 72px;
}

.avatar.xxl {
  width: 90px;
  height: 90px;
}

.avatar.xxxl {
  width: 120px;
  height: 120px;
}

.text-avatar-group {
  display: flex;
  align-items: center;
}

.text-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: .5rem;
  background: #242e64;
  color: #ffffff;
  font-weight: 700;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  position: relative;
}

.text-avatar.xs {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

.text-avatar.sm {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.text-avatar.md {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.text-avatar.lg {
  width: 64px;
  height: 64px;
  font-size: 21px;
}

.text-avatar.xl {
  width: 72px;
  height: 72px;
  font-size: 30px;
}

.text-avatar.xxl {
  width: 90px;
  height: 90px;
  font-size: 36px;
}

.text-avatar.xxxl {
  width: 120px;
  height: 120px;
  font-size: 48px;
}

.text-avatar.circle {
  border-radius: 100% !important;
}

.text-avatar.rounded {
  border-radius: 10% !important;
}

.text-avatar.green {
  background: #108075;
}

.text-avatar.yellow {
  background: #b96e00;
}

.text-avatar.red {
  background: #ab141b;
}

.text-avatar.blue {
  background: #3f3bd0;
}

/************************************************
	************************************************
									A15. Widgets CSS
	************************************************
************************************************/

.events-container .event-list {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0 0 1rem 0;
}

.events-container .event-list .event-icon {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-container .event-list .event-info {
  margin-left: 1rem;
}

.events-container .event-list .event-info .event-title {
  font-size: .875rem;
  margin: 0 0 2px 0;
  font-weight: 600;
}

.events-container .event-list .event-info .event-date {
  color: #999999;
  font-size: .8rem;
}

.events-container .event-list:last-child {
  margin: 0;
}

.overall-events {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.overall-events a.event-block {
  padding: 1rem;
  margin: 1px;
  flex-basis: 100%;
  flex: 1;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: #ffffff;
}

.overall-events a.event-block i {
  font-size: 2rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  display: inline-block;
}

.overall-events a.event-block .total-events {
  font-size: 2rem;
  margin: 0;
}

.custom-btn-group {
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-btn-group .btn {
  margin: .3rem;
  min-width: 90px;
}

.custom-dropdown-group .dropdown {
  margin: 0 .3rem .3rem 0;
  display: inline-block;
}

.custom-dropdown-group .btn-toolbar {
  margin: 0 .3rem .3rem 0;
  display: inline-block;
}

.alert-notify {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #ffffff;
  margin: 1rem 0 2rem 0;
}

.alert-notify.info .type {
  background: #3f3bd0;
}

.alert-notify.danger .type {
  background: #ab141b;
}

.alert-notify.success .type {
  background: #108075;
}

.alert-notify .alert-notify-body {
  padding: 1.5rem 1.25rem .75rem 1.25rem;
  position: relative;
}

.alert-notify .alert-notify-body .type {
  position: absolute;
  left: 1.25rem;
  top: -.5rem;
  padding: .3rem .7rem;
  color: #ffffff;
  font-size: .75rem;
  display: inline-block;
  line-height: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.alert-notify .alert-notify-body .alert-notify-title {
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 150%;
}

.alert-notify .alert-notify-body .alert-notify-title img {
  float: right;
  margin-left: 1rem;
  max-width: 48px;
  max-height: 48px;
  vertical-align: top;
}

.alert-notify .alert-notify-body .alert-notify-title i {
  float: right;
  margin-left: 1rem;
  font-size: 2.5rem;
  vertical-align: top;
}

.alert-notify .alert-notify-body .alert-notify-text {
  margin-bottom: .25rem;
  font-size: .75rem;
  line-height: 140%;
}

/************************************************
	************************************************
							A16. Hospital Dashboard
	************************************************
************************************************/

.hospital-tiles {
  position: relative;
  padding: 25px 15px 25px 15px;
  margin-bottom: .9rem;
  background: #ffffff;
  color: #242e64;
  text-align: center;
  /* box-shadow: 0 0 25px rgb(26 107 225 / 10%); */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
}

.hospital-tiles img {
  max-width: 40px;
  max-height: 40px;
  opacity: 0.7;
  margin: 1rem 0;
}

.hospital-tiles p {
  line-height: 100%;
  margin: 0 0 1rem 0;
}

.hospital-tiles h2 {
  margin: 0;
  line-height: 100%;
}

.doctor-profile .doctor-thumb {
  margin-bottom: 1.5rem;
  text-align: center;
}

.doctor-profile .doctor-thumb img {
  max-height: 150px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.training-schedule {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.training-schedule a.schedule-block {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #ffffff;
  max-width: 16%;
  min-width: 16%;
  padding: 1rem;
  font-size: .725rem;
  line-height: 170%;
  margin-bottom: .5rem;
}

.training-schedule a.schedule-block:hover {
  background: #a90724;
  color: #ffffff;
}

a.hospital-list {
  background: #d5e7ff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: flex;
  padding: 1rem 1rem;
  margin: 0 0 1rem 0;
}

a.hospital-list img.hospital-thumb {
  width: 90px;
  height: 90px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin: 0 1rem 0 0;
}

a.hospital-list .hospital-details {
  width: 100%;
}

a.hospital-list .hospital-details .hospital-location h5 {
  margin: 0 0 .5rem 0;
  color: #242e64;
}

a.hospital-list .hospital-details .hospital-location p {
  color: #999999;
  font-size: .775rem;
  margin: 0 0 .7rem 0;
  line-height: 150%;
}

a.hospital-list .hospital-details .hospital-location p span {
  color: #000000;
}

a.hospital-list .hospital-details .hospital-rating-price {
  display: flex;
}

a.hospital-list .hospital-details .hospital-rating-price .ratings {
  margin: 0 0 .5rem 0;
}

a.hospital-list .hospital-details .hospital-rating-price .ratings img {
  max-width: 15px;
  padding: 3px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #ffffff;
}

a.hospital-list .hospital-details .hospital-rating-price .hospital-price {
  margin-left: auto;
  text-align: right;
}

a.hospital-list .hospital-details .hospital-rating-price .hospital-price p.actual-price {
  color: #999999;
  font-size: .875rem;
  line-height: 100%;
  font-weight: 600;
  margin: 0;
  text-decoration: line-through;
}

a.hospital-list .hospital-details .hospital-rating-price .hospital-price h5.after-discount {
  margin: 0;
  color: #000000;
  font-size: 1.2rem;
}

a.hospital-list:hover {
  box-shadow: inset 0 0 0 2px #242e64;
}

.hospital-maps-container {
  margin: 0 0 1rem 0;
}

.hospital-maps-container a.hospital-listing {
  background: #d5e7ff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: flex;
  padding: 1rem 1rem;
  margin: 0 0 .4rem 0;
}

.hospital-maps-container a.hospital-listing img.hospital-image {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin: 0 .7rem 0 0;
}

.hospital-maps-container a.hospital-listing .hospital-location .hospital-title {
  margin: 0 0 .3rem 0;
  color: #242e64;
  font-weight: 700;
}

.hospital-maps-container a.hospital-listing .hospital-location .hospital-address {
  font-size: .8rem;
  margin: 0 0 .3rem 0;
  color: #4d4d4d;
}

.hospital-maps-container a.hospital-listing .hospital-location .hospital-opens {
  font-size: .7rem;
  margin: 0 0 .3rem 0;
  color: #a90724;
}

.hospital-maps-container a.hospital-listing .hospital-location .hospital-rating {
  margin: 0;
}

.hospital-maps-container a.hospital-listing .hospital-location .hospital-rating img {
  max-width: 16px;
  padding: 3px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #ffffff;
}

.hospital-maps-container a.hospital-listing:hover {
  box-shadow: inset 0 0 0 2px #242e64;
}

.hospital-maps-container a.hospital-listing:last-child {
  margin: 0;
}

.doctors-list a {
  font-size: .725rem;
  display: flex;
  color: #000000;
  background-color: #d5e7ff;
  margin-bottom: 5px;
  padding: 5px 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.doctors-list a:hover {
  background: #242e64;
  color: #ffffff;
}

.hospital-ratings .total-ratings {
  display: flex;
  margin: 0 0 1rem 0;
}

.hospital-ratings .total-ratings h2 {
  margin: 0;
  line-height: 100%;
}

.hospital-ratings .total-ratings .rating-stars {
  margin: .3rem 0 0 .7rem;
}

.hospital-ratings .total-ratings .rating-stars img {
  max-width: 17px;
  padding: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #d5e7ff;
}

.hospital-ratings .ratings-list-container .ratings-list {
  font-size: .825rem;
  display: flex;
  padding: 0 0 .6rem 0;
  margin: 0 0 .6rem 0;
  border-bottom: 1px solid #f7f7f7;
}

.hospital-ratings .ratings-list-container .ratings-list:last-child {
  border-bottom: 0;
  padding: 0;
  margin: 0;
}

.hospital-ratings .ratings-list-container .ratings-list .rating-level {
  margin: 0 .5rem 0 0;
}

.hospital-ratings .ratings-list-container .ratings-list .rating-stars {
  line-height: 100%;
  margin: .1rem 0 0 0;
}

.hospital-ratings .ratings-list-container .ratings-list .rating-stars img {
  max-width: 10px;
}

.hospital-ratings .ratings-list-container .ratings-list .total {
  margin-left: auto;
  font-weight: 600;
}

.hospital-ratings .ratings-list-container .ratings-list .total .percentage {
  margin-left: 10px;
  font-size: .725rem;
  font-weight: 700;
  color: #108075;
}

.top-doctors-container {
  margin: 0;
}

.top-doctors-container .top-doctor {
  margin: 0 0 1.8rem 0;
  padding-bottom: .5rem;
  display: flex;
  align-items: flex-start;
}

.top-doctors-container .top-doctor img.avatar {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
}

.top-doctors-container .top-doctor .doctor-details {
  flex-direction: column;
  flex: 1;
}

.top-doctors-container .top-doctor .doctor-details h6 {
  margin: 0 0 .5rem 0;
  font-size: .825rem;
}

.top-doctors-container .top-doctor .doctor-details .doctor-score .progress {
  height: 4px;
  margin: 0 0 .4rem 0;
}

.top-doctors-container .top-doctor .doctor-details .doctor-score .points {
  display: flex;
  justify-content: space-between;
  font-size: .775rem;
}

.top-doctors-container .top-doctor .doctor-details .doctor-score .points .left {
  color: #999999;
}

.top-doctors-container .top-doctor .doctor-details .doctor-score .points .right {
  color: #000000;
  text-transform: uppercase;
  font-size: .7rem;
}

.top-doctors-container .top-doctor:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

ul.custom-messages li {
  margin-bottom: 1.3rem;
}

ul.custom-messages li:last-child {
  margin-bottom: 0;
}

ul.custom-messages li:last-child .delivery-details p {
  margin-bottom: 0;
}

ul.custom-messages li .customer {
  float: left;
  background: #a90724;
  width: 48px;
  height: 48px;
  line-height: 48px;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

ul.custom-messages li .customer.secondary {
  background: #242e64;
}

ul.custom-messages li .delivery-details {
  margin-left: 65px;
}

ul.custom-messages li .delivery-details .badge {
  font-size: .7rem;
  padding: 3px 10px 4px 10px;
  margin: 5px 0 5px 0;
  background: #d5e7ff;
  color: #000000;
}

ul.custom-messages li .delivery-details h5 {
  margin: 0;
  line-height: 180%;
  font-size: .9rem;
}

ul.custom-messages li .delivery-details p {
  font-size: .8rem;
}

/************************************************
	************************************************
									A17. Vendor CSS
	************************************************
************************************************/

.btn-bs-select {
  padding: .375rem 1rem !important;
}

.bs-actionsbox, .bs-donebutton, .bs-searchbox {
  padding: 4px 0px;
}

.bootstrap-select .dropdown-menu {
  box-shadow: none;
  border: 1px solid #cddcea;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin: 0;
  border-top: 0;
  width: inherit;
  padding: 3px;
}

.bootstrap-select .dropdown-menu.inner li.selected {
  background: #242e64;
}

.bootstrap-select .dropdown-menu.inner li.selected a {
  color: #ffffff;
}

.bootstrap-select .dropdown-menu.inner li.selected a:hover {
  pointer-events: none;
  background: #242e64;
  color: #ffffff;
}

.bootstrap-select .dropdown-menu.inner li.selected:hover {
  pointer-events: none;
}

.bootstrap-select .dropdown-menu.inner li.selected .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.bootstrap-select .dropdown-menu .dropdown-header {
  padding: 0.5rem 0.5rem;
}

.bootstrap-select>.dropdown-toggle {
  height: 38px;
  line-height: 24px;
  font-size: .825rem;
}

.bootstrap-select .dropdown-item.active {
  background: #242e64;
  color: #ffffff;
}

.bootstrap-select .dropdown-item:focus {
  outline: none;
}

.bootstrap-select .dropdown-item.bg-success {
  color: #ffffff;
}

.bootstrap-select .dropdown-item.bg-success:hover {
  background: #0d6960 !important;
}

.bootstrap-select .dropdown-item.bg-danger {
  color: #ffffff;
}

.bootstrap-select .dropdown-item.bg-danger:hover {
  background: #941117 !important;
}

.bootstrap-select .dropdown-item.bg-info {
  color: #ffffff;
}

.bootstrap-select .dropdown-item.bg-info:hover {
  background: #332fc3 !important;
}

.bootstrap-select .dropdown-item.bg-warning {
  color: #ffffff;
}

.bootstrap-select .dropdown-item.bg-warning:hover {
  background: #a05f00 !important;
}

.gallery {
  margin: 0 auto;
}

.gallery a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
  margin: 0 0 15px 0;
  opacity: 1;
  padding: 3px;
  background: #ffffff;
}

.gallery a img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.gallery a .overlay {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  position: absolute;
  z-index: 20;
  background: #ab141b;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.gallery a .expand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  border: 2px solid #ffffff;
  text-align: center;
  color: #ffffff;
  line-height: 32px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-size: 20px;
  margin-left: -18px;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery a:hover {
  opacity: 1;
}

.gallery a:hover .overlay {
  opacity: 1;
}

.gallery a:hover span.expand {
  width: 36px;
  height: 36px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.jvectormap-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

.jvectormap-tip {
  position: absolute;
  display: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #000000;
  color: #ffffff;
  font-size: .75rem;
  padding: 6px 12px;
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.jvectormap-marker {
  opacity: 0;
  animation: showHideDot 1.5s ease-in-out infinite;
}

/************************************************
	************************************************
								A18. Invoice Page
	************************************************
************************************************/

.invoice-container .invoice-header {
  padding: .5rem 1.5rem;
}

.invoice-container .invoice-header .invoice-logo {
  font-size: 1.2rem;
  color: #242e64;
  font-weight: 700;
}

.invoice-container .invoice-address {
  padding: 1rem 1.5rem;
  line-height: 130%;
  font-size: 1rem;
  /* border-bottom: 1px solid #f2f2f2; */
  /* border-top: 1px solid #f2f2f2;  */
}

.invoice-container address {
  margin-top: 10px;
  font-size: .8rem;
}

.invoice-container .invoice-details {
  margin-top: 2.5rem;
  text-align: right;
}

.invoice-container .invoice-body {
  padding: 3rem 1.5rem 1rem 1.5rem;
}

.invoice-container .invoice-footer {
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: .7rem;
  border-top: 1px solid #f2f2f2;
}

.invoice-container .invoice-payment {
  text-align: right;
  font-size: .8rem;
  line-height: 200%;
}

.invoice-status {
  text-align: center;
  padding: 1rem;
  background: #ffffff;
  margin-bottom: 1rem;
  /* box-shadow: 0 0 25px rgba(26, 107, 225, 0.1); */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.invoice-status h2.status {
  margin: 0 0 .8rem 0;
}

.invoice-status h5.status-title {
  margin: 0 0 .8rem 0;
}

.invoice-status p.status-type {
  line-height: 150%;
}

.invoice-status i {
  font-size: 2rem;
  margin: 0 0 .5rem 0;
  display: inline-block;
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 0 25px rgba(26, 107, 225, 0.1);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

/************************************************
	************************************************
							A19. Custom Tabs Container
	************************************************
************************************************/

.custom-tabs-container {
  background: #ffffff;
  padding: 1rem 0 0 0;
  margin-bottom: 1rem;
  box-shadow: 0 0 25px rgba(26, 107, 225, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/************************************************
	************************************************
								A20. Custom Tables
	************************************************
************************************************/

.table-container {
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 0 25px rgba(26, 107, 225, 0.1);
  border-top: 2px solid #242e64;
}

.table-container h5.table-title {
  font-size: .9rem;
  padding: 10px 15px;
  margin: 0;
}

/************************************************
	************************************************
						A21. Bootstrap Overwrite CSS
	************************************************
************************************************/

.accordion {
  border: 0;
}

.accordion .accordion-container {
  background: #f7fafe;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 0;
  margin: 0 0 .5rem 0;
}

.accordion .accordion-container .accordion-header {
  background: #242e64;
  padding: .725rem 1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.accordion .accordion-container .accordion-header a {
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.accordion .accordion-container .accordion-header a i.icon {
  margin-right: .5rem;
  font-size: 1.3rem;
  vertical-align: middle;
}

.accordion .accordion-container .accordion-body {
  padding: 1.5rem;
}

.accordion .accordion-container .collapse.show {
  border-bottom: 1px solid #f2f2f2;
}

.accordion.toggle-icons a {
  position: relative;
  display: block;
}

.accordion.toggle-icons a[aria-expanded="true"]:before {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  content: "\e916";
  font-family: 'icomoon' !important;
}

.accordion.toggle-icons a[aria-expanded="false"]:before {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  content: "\e90f";
  font-family: 'icomoon' !important;
}

.alert {
  margin-bottom: .5rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 0;
  padding: .75rem 1rem;
  font-size: .8rem;
  color: #ffffff;
  background: #242e64;
}

.alert .alert-link {
  color: #ffffff;
  font-weight: 600;
}

.alert.alert-success {
  background: #108075;
}

.alert.alert-danger {
  background: #ab141b;
}

.alert.alert-info {
  background: #3f3bd0;
}

.alert.alert-warning {
  background: #b96e00;
}

.alert i {
  margin-right: 10px;
  vertical-align: middle;
}

.alert .alert-link {
  text-decoration: underline;
  font-weight: 400;
}

.alert .alert-heading {
  font-weight: 600;
  margin-bottom: 1rem;
}

.alert .close {
  font-size: 1.1rem;
  font-weight: 600;
}

.alert .close:hover {
  color: #ffffff;
}

.badge {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
  padding: .35rem .7rem;
  line-height: 100%;
  vertical-align: middle;
}

.badge.badge-primary {
  background: #242e64;
}

.badge.badge-secondary {
  background: #a90724;
}

.badge.badge-success {
  background: #108075;
}

.badge.badge-info {
  background: #3f3bd0;
}

.badge.badge-danger {
  background: #ab141b;
}

.badge.badge-warning {
  background: #b96e00;
  color: #ffffff;
}

.badge.badge-white {
  background: #ffffff;
  color: #000000;
}

.badge.badge-pill {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.blockquote {
  font-size: .9rem;
  margin-bottom: 2rem;
}

.blockquote .blockquote-footer {
  font-size: 95%;
}

.breadcrumb {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: transparent;
  margin: 0;
  font-size: 1rem;
  align-items: center;
}

.breadcrumb .breadcrumb-item {
  color: #ffffff;
  font-size: .825rem;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .breadcrumb-item a {
  color: #ffffff;
}

.breadcrumb .breadcrumb-item.active {
  color: #6e6b7b;
  font-weight: 500;
  font-size: .9rem;
}

.breadcrumb.info {
  background: #3f3bd0;
}

.breadcrumb.warning {
  background: #b96e00;
}

.breadcrumb.success {
  background: #108075;
}

.breadcrumb.danger {
  background: #ab141b;
}

.breadcrumb.with-arrows .breadcrumb-item i {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: middle;
}

.breadcrumb.with-arrows .breadcrumb-item+.breadcrumb-item::before {
  content: none;
}

button:focus {
  outline: none;
}

.btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: .825rem;
  font-weight: 400;
}

.btn .badge {
  top: 0;
}

.btn i {
  vertical-align: middle;
}

.btn-primary {
  color: #ffffff;
  background-color: #242e64;
  border-color: #242e64;
  border-radius: 5px;
  /* -webkit-box-shadow: 0 1px 6px 1px #242e64!important;
  box-shadow: 0 1px 6px 1px #242e64!important */
}

.btn-danger {
  border-radius: 5px;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #1d2551;
  border-color: #1d2551;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 87, 136, 0.2);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #ffffff;
  background-color: #242e64;
  border-color: #242e64;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: #1d2551;
  border-color: #1d2551;
}

.show>.btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #1d2551;
  border-color: #1d2551;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 87, 136, 0.2);
}

.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 87, 136, 0.2);
}

.btn-secondary {
  color: #ffffff;
  background-color: #a90724;
  border-color: #a90724;
}

.btn-secondary:hover {
  color: #ffffff;
  background-color: #91061f;
  border-color: #91061f;
}

.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(135, 122, 216, 0.2);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #ffffff;
  background-color: #a90724;
  border-color: #a90724;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: #91061f;
  border-color: #91061f;
}

.show>.btn-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #91061f;
  border-color: #91061f;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(135, 122, 216, 0.2);
}

.show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(135, 122, 216, 0.2);
}

.btn-light {
  color: #000000;
  background-color: #d5e7ff;
  border-color: #d5e7ff;
}

.btn-light:hover {
  color: #000000;
  background-color: #bcd8ff;
  border-color: #bcd8ff;
}

.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(135, 122, 216, 0.2);
}

.btn-light.disabled, .btn-light:disabled {
  color: #000000;
  background-color: #d5e7ff;
  border-color: #d5e7ff;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active {
  color: #000000;
  background-color: #bcd8ff;
  border-color: #bcd8ff;
}

.show>.btn-light.dropdown-toggle {
  color: #000000;
  background-color: #bcd8ff;
  border-color: #bcd8ff;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(135, 122, 216, 0.2);
}

.show>.btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(135, 122, 216, 0.2);
}

.btn-success {
  color: #ffffff;
  background-color: #108075;
  border-color: #108075;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #0d6960;
  border-color: #0d6960;
}

.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 184, 148, 0.2);
}

.btn-success.disabled, .btn-success:disabled {
  color: #ffffff;
  background-color: #108075;
  border-color: #108075;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: #0d6960;
  border-color: #0d6960;
}

.show>.btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #0d6960;
  border-color: #0d6960;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(164, 203, 119, 0.25);
}

.show>.btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(164, 203, 119, 0.25);
}

.btn-info {
  color: #ffffff;
  background-color: #3f3bd0;
  border-color: #3f3bd0;
}

.btn-info:hover {
  color: #ffffff;
  background-color: #332fc3;
  border-color: #332fc3;
}

.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 201, 242, 0.2);
}

.btn-info.disabled, .btn-info:disabled {
  color: #ffffff;
  background-color: #3f3bd0;
  border-color: #3f3bd0;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: #332fc3;
  border-color: #332fc3;
}

.show>.btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: #332fc3;
  border-color: #332fc3;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 201, 242, 0.2);
}

.show>.btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 201, 242, 0.2);
}

.btn-danger {
  color: #ffffff;
  background-color: #ab141b;
  border-color: #ab141b;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #941117;
  border-color: #941117;
}

.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 113, 113, 0.2);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #ffffff;
  background-color: #ab141b;
  border-color: #ab141b;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: #941117;
  border-color: #941117;
}

.show>.btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #941117;
  border-color: #941117;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 113, 113, 0.2);
}

.show>.btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 113, 113, 0.2);
}

.btn-warning {
  color: #ffffff;
  background-color: #b96e00;
  border-color: #b96e00;
}

.btn-warning:hover {
  color: #ffffff;
  background-color: #a05f00;
  border-color: #a05f00;
}

.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(250, 191, 70, 0.2);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #ffffff;
  background-color: #b96e00;
  border-color: #b96e00;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active {
  color: #ffffff;
  background-color: #a05f00;
  border-color: #a05f00;
}

.show>.btn-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #a05f00;
  border-color: #a05f00;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(250, 191, 70, 0.2);
}

.show>.btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(250, 191, 70, 0.2);
}

.btn-lg, .btn-group-lg>.btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.btn-sm, .btn-group-sm>.btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.btn-link {
  font-weight: 400;
  color: #242e64;
  border: 0;
  padding: .5rem .5rem;
  background: transparent;
}

.btn-link:hover {
  color: #38489c;
  text-decoration: none;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: none;
  box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #1d2551;
  opacity: 0.7;
  pointer-events: none;
}

.btn-link.secondary {
  color: #a90724;
}

.btn-link.secondary:hover {
  color: #600414;
}

.btn-link.secondary:disabled, .btn-link.secondary.disabled {
  color: #600414;
}

.btn-link.info {
  color: #3f3bd0;
}

.btn-link.info:hover {
  color: #28259a;
}

.btn-link.info:disabled, .btn-link.info.disabled {
  color: #28259a;
}

.btn-link.success {
  color: #108075;
}

.btn-link.success:hover {
  color: #073c37;
}

.btn-link.success:disabled, .btn-link.success.disabled {
  color: #073c37;
}

.btn-link.warning {
  color: #b96e00;
}

.btn-link.warning:hover {
  color: #6d4100;
}

.btn-link.warning:disabled, .btn-link.warning.disabled {
  color: #6d4100;
}

.btn-link.danger {
  color: #ab141b;
}

.btn-link.danger:hover {
  color: #670c10;
}

.btn-link.danger:disabled, .btn-link.danger.disabled {
  color: #670c10;
}

.carousel {
  margin-bottom: 2rem;
}

.card {
  background: #ffffff;
  border: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
  box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
  border-radius: 0.428rem;
}

.card .card-header {
  padding: 1rem 1.25rem 1rem 1.25rem;
  background-color: #ffffff;
  border-bottom: 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 0;
  border-radius: .428rem .428rem 0 0;
}

.card .card-header .card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: #6e6b7b;
}

.card .card-header .card-sub-title {
  margin-top: 1rem;
  font-size: .8rem;
  color: #999999;
  line-height: 150%;
}

.card .card-body {
  padding: 1.25rem 1.25rem;
  position: relative;
}

.card .card-body .card-title {
  margin-bottom: .7rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}

.card .card-body .card-sub-title {
  margin-bottom: 1rem;
  font-size: .8rem;
  color: #999999;
  line-height: 140%;
}

.card .card-body .card-text {
  margin-bottom: 1rem;
  line-height: 180%;
}

.card .card-footer {
  background: transparent;
  border-top: 1px solid #f2f2f2;
  padding: 1rem 1.25rem;
}

.card .card-footer .view-all {
  color: rgba(0, 0, 0, 0.4);
  font-size: .8rem;
}

.card .card-footer .view-all i {
  font-size: 1.2rem;
  vertical-align: middle;
}

.card .card-footer .view-all:hover {
  color: #242e64;
}

.card .card-footer a.view {
  color: rgba(0, 0, 0, 0.4);
  font-size: .825rem;
  color: #242e64;
  font-weight: 700;
}

.card .card-footer a.view i {
  font-size: 1.5rem;
  margin: 0 10px;
  vertical-align: middle;
}

.card.red {
  border-top: 2px solid #ab141b;
}

.card.green {
  border-top: 2px solid #108075;
}

.card.blue {
  border-top: 2px solid #3f3bd0;
}

.card.yellow {
  border-top: 2px solid #b96e00;
}

.card .card-img-bottom {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.card .card-img-top {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.card.highlight {
  border: 1px solid #242e64;
  background: #242e64;
}

@media (max-width: 767px) {
  .card .card-body {
    padding: .75rem;
  }
}

.card-deck {
  margin-right: -10px;
  margin-left: -10px;
}

.card-deck .card {
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 1.25rem;
}

.dropdown-menu {
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0px 20px 30px -20px rgba(0, 0, 0, 0.3);
  width: 11rem;
}

/* .dropdown-menu:before {
  position: absolute;
  top: 9px;

  left: 12px;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #ffffff;
} */

.dropdown-menu {
  width: 100% !important;
}

.dropdown-menu.dropdown-menu-right:before {
  right: 12px;
  left: auto;
  top: -9px;
}

.dropdown-menu.sm {
  width: 10rem;
  left: 50%;
  margin-left: -5rem;
}

.dropdown-menu.sm:before {
  left: 50%;
  margin-left: -4px;
}

.dropdown-menu.lrg {
  width: 18rem;
  left: 50% !important;
  margin-left: -9rem;
}

.dropdown-menu.lrg:before {
  left: 50%;
  margin-left: -4px;
}

.dropdown-menu .dropdown-item {
  padding: .5rem 1rem .5rem 1rem;
  font-size: .85rem;
  line-height: 100%;
  position: relative;
  color: #333333;
}

.dropdown-menu .dropdown-item:hover {
  background: #f7fafe;
}

.dropdown-menu .dropdown-item:first-child {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.dropdown-menu .dropdown-item:last-child {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.dropdown-menu .dropdown-item.active-page {
  color: #242e64;
  background: #d5e7ff;
  pointer-events: none;
  cursor: not-allowed;
}

.dropdown-menu .dropdown-menu-header {
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d9d9d9;
}

.dropdown-menu .dropdown-menu-header p.sub-title {
  color: #999999;
  font-size: .8rem;
}

.dropdown-menu .dropdown-menu-header p.sub-title i {
  vertical-align: middle;
  margin-right: 5px;
}

.dropdown-toggle::after {
  vertical-align: middle;
}

.dropdown-divider {
  margin: .3rem 0;
}

.dropdown-toggle-split {
  padding-right: .8rem;
  padding-left: .8rem;
}

.form-control {
  border: 1px solid #cddcea;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: .825rem;
}

.form-control:focus {
  border-color: #3f51af;
  box-shadow: none;
}


label {
  margin-bottom: .3rem;
  font-size: .825rem;
}

.input-group-text {
  border: 1px solid #cddcea;
  background: #d5e7ff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: .825rem;
}

.input-group-sm>.input-group-prepend>.input-group-text {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.input-group-lg>.input-group-prepend>.input-group-text {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/* .custom-select {
  font-size: .825rem; } */

.custom-select:hover {
  line-height: 1.5;
}

.custom-select:focus {
  line-height: 1.5;
}

.custom-file-input {
  font-size: .825rem;
}

.custom-file-label {
  font-size: .825rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.custom-file-label::after {
  background: #cddcea;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
}

.custom-checkbox .custom-control-label::before {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.custom-control-label::before {
  top: .2rem;
}

.custom-control-label::after {
  top: .2rem;
}

.custom-control-input:checked~.custom-control-label::before {
  background: #242e64;
  border-color: #242e64;
}

.custom-control.custom-switch .custom-control-label::after {
  top: 5px;
}

.jumbotron {
  background: #f7fafe;
}

.list-group {
  margin-bottom: 2rem;
}

.list-group .list-group-item {
  font-size: .825rem;
  padding: .5rem 1.25rem;
  border: 1px solid #d5e7ff;
}

.list-group .list-group-item:first-child {
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}

.list-group .list-group-item:last-child {
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
}

.list-group .list-group-item.active {
  background-color: #242e64;
  border-color: #242e64;
}

.list-group .list-group-item.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.list-group .list-group-item-success {
  background: #108075;
  border: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.list-group .list-group-item-danger {
  background: #ab141b;
  border: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.list-group .list-group-item-warning {
  background: #b96e00;
  border: 0;
  margin: 0;
  color: #ffffff;
}

.list-group .list-group-item-info {
  background: #3f3bd0;
  border: 0;
  margin: 0;
  color: #ffffff;
}

.modal {
  text-align: left;
}

.modal .modal-dialog {
  margin-top: 5rem;
}

.modal .modal-content {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.modal .modal-header {
  background: #242e64;
  color: #ffffff;
  border: 0;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}

.modal .modal-footer.custom {
  padding: 0;
}

.modal .modal-footer.custom .left-side, .modal .modal-footer.custom .right-side {
  display: inline-block;
  text-align: center;
  width: 49%;
}

.modal .modal-footer.custom .divider {
  background-color: #cddcea;
  display: inline-block;
  float: inherit;
  width: 1px;
  height: 60px;
  margin: 0px -3px;
}

.modal .modal-footer.custom .btn-link {
  padding: 1rem;
  font-size: .9rem;
  text-transform: uppercase;
  font-weight: 700;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.close {
  color: #ffffff;
  text-shadow: 0 1px 0 #000000;
}

.navbar {
  margin-bottom: .3rem;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #f7fafe;
}

.navbar .navbar-brand {
  padding: .3rem 1rem .3rem 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.navbar .navbar-brand img {
  width: 20px;
  height: 20px;
}

.navbar .navbar-nav .nav-item .nav-link {
  padding: .3rem .8rem;
  color: rgba(255, 255, 255, 0.7);
}

.navbar .navbar-nav .nav-item .nav-link.disabled {
  color: rgba(255, 255, 255, 0.5);
}

.navbar .navbar-nav .nav-item.active a {
  color: #ffffff;
  font-weight: 700;
}

.navbar.danger {
  background: #ab141b;
}

.navbar.warning {
  background: #b96e00;
}

.navbar.success {
  background: #108075;
}

.navbar.info {
  background: #3f3bd0;
}

.nav-link {
  color: #666666;
  font-weight: 600;
}

.nav-link.active {
  color: #242e64;
}

.nav-link.disabled {
  color: #999999;
}

.nav-pills .nav-link {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.nav-pills .nav-link:hover {
  background: #242e64;
  color: #ffffff;
}

.nav-pills .nav-link.active {
  background-color: #242e64;
  pointer-events: none;
}

.nav-pills.danger .nav-link:hover {
  background: #ab141b;
  color: #ffffff;
}

.nav-pills.danger .nav-link.active {
  background-color: #ab141b;
}

.nav-pills.info .nav-link:hover {
  background: #3f3bd0;
  color: #ffffff;
}

.nav-pills.info .nav-link.active {
  background-color: #3f3bd0;
}

.nav-pills.success .nav-link:hover {
  background: #108075;
  color: #ffffff;
}

.nav-pills.success .nav-link.active {
  background-color: #108075;
}

.nav-pills.warning .nav-link:hover {
  background: #b96e00;
  color: #ffffff;
}

.nav-pills.warning .nav-link.active {
  background-color: #b96e00;
}

.navbar-toggler {
  display: none;
  padding: 0;
  border: 0;
  width: 48px;
  height: 48px;
  vertical-align: top;
  -webkit-transition: all .3s;
  background: #242e64;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  position: relative;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
  width: auto;
  height: auto;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon i {
  position: absolute;
  display: block;
  height: 2px;
  background: #ffffff;
  width: 30px;
  left: 9px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon i:nth-child(1) {
  top: 16px;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon i:nth-child(2) {
  top: 23px;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon i:nth-child(3) {
  top: 30px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  width: auto;
  height: auto;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i {
  position: absolute;
  display: block;
  height: 2px;
  background: #ffffff;
  width: 30px;
  left: 9px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(1) {
  top: 24px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(2) {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(3) {
  top: 24px;
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

@media (max-width: 992px) {
  .navbar-toggler {
    display: inline-block;
  }
}

.custom-navbar {
  background: #ffffff;
  padding: 0.5rem;
  box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
  margin-top: 17px;
  margin-bottom: 7px;
  border-radius: 5px;
}

.custom-navbar ul.navbar-nav li.nav-item .nav-link {
  position: relative;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  background: transparent;
  min-width: 100px;
  text-align: center;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin-right: 1.0rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6e6b7b;
}

.custom-navbar ul.navbar-nav li.nav-item .nav-link img.nav-icon {
  max-width: 30px;
  max-height: 30px;
  display: block;
  margin: 0 auto 10px auto;
}

.custom-navbar ul.navbar-nav li.nav-item .nav-link i.nav-icon {
  font-size: 1.4rem;
  display: block;
  margin: 0 5px 0 0;
  text-align: center;
  opacity: 0.5;
}

.custom-navbar ul.navbar-nav li.nav-item .nav-link.active-page {
  position: relative;
  color: #c39126;
  /* background: #c1c1c1; */
  border-radius: 5px;
  font-weight: bold;
  /* -webkit-box-shadow: 0 0 6px 1px rgb(89 88 103 / 60%);
      box-shadow: 0 0 6px 1px rgb(89 88 103 / 60%); */
  /* background: linear-gradient(
        90deg, rgba(9,9,121,1) 0%, rgba(195,145,38,1) 38%, rgba(36,46,100,1) 73%, rgba(127,103,64,1) 82%, rgba(36,46,100,1) 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
}

.custom-navbar ul.navbar-nav li.nav-item .nav-link:hover {
  color: #c08d21;
  /* background: #f1f1f1; */
  border-radius: 5px;
}

.custom-navbar ul.navbar-nav li.nav-item:hover {
  color: #242e64;
  background: #ffffff;
}

.custom-navbar ul.navbar-nav li.nav-item:hover>a {
  color: #242e64;
}

/* .custom-navbar ul.navbar-nav li.nav-item:hover .nav-link.active-page {
     color: #242e64;
      background: #ffffff !important; 
    } */

.custom-navbar ul.navbar-nav li.nav-item:hover .nav-link.active-page>a {
  color: #242e64;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu {
  margin-top: 0;
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-border-radius: 0 4px 4px 4px;
  -moz-border-radius: 0 4px 4px 4px;
  border-radius: 0 4px 4px 4px;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu a.dropdown-item {
  padding: .7rem 1rem .7rem 1rem;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu a.dropdown-item:hover {
  color: #242e64;
  background: #f1f1f1;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu li {
  position: relative;
  border-bottom: 1px solid #f7fafe;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu li:last-child {
  border-bottom: 0;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu li a.sub-nav-link {
  padding: .7rem 1rem .7rem 1rem;
  display: block;
  font-size: .85rem;
  font-weight: 400;
  color: #333333;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu li a.sub-nav-link:hover {
  color: #ffffff;
  background: #3f3bd0;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu li ul.dropdown-menu {
  -webkit-border-radius: 4px 0 4px 4px;
  -moz-border-radius: 4px 0 4px 4px;
  border-radius: 4px 0 4px 4px;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu li ul.dropdown-menu-right {
  -webkit-border-radius: 0 4px 4px 4px;
  -moz-border-radius: 0 4px 4px 4px;
  border-radius: 0 4px 4px 4px;
}

.custom-navbar ul.navbar-nav ul.dropdown-menu-right {
  -webkit-border-radius: 4px 0 4px 4px;
  -moz-border-radius: 4px 0 4px 4px;
  border-radius: 4px 0 4px 4px;
}

@media (max-width: 991px) {
  .custom-navbar {
    margin: .5rem 1rem;
  }
  .custom-navbar ul.navbar-nav li.nav-item a.nav-link {
    padding: .8rem 1rem;
    font-size: .9rem;
    text-align: left;
    margin: 0;
  }
  .custom-navbar ul.navbar-nav li.nav-item a.nav-link img.nav-icon {
    max-width: 21px;
    max-height: 21px;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: text-bottom;
  }
  .custom-navbar ul.navbar-nav li.nav-item a.nav-link i.nav-icon {
    font-size: 1rem;
    font-weight: 300;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: bottom;
  }
  .custom-navbar ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
  }
  .custom-navbar ul.navbar-nav li.nav-item a.nav-link.active-page:before {
    background: none !important;
  }
  .custom-navbar ul.navbar-nav li.nav-item.show {
    background: #ffffff;
  }
  .custom-navbar ul.navbar-nav li.nav-item.show a.nav-link {
    color: #242e64;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu {
    position: relative;
    width: auto;
    margin: 0 10px 0 10px;
    top: 0;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu li {
    position: relative;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu li ul.dropdown-menu {
    left: 0 !important;
  }
}

@media (min-width: 993px) {
  .custom-navbar ul.navbar-nav li.nav-item:hover>ul.dropdown-menu {
    display: block;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu li ul.dropdown-menu {
    display: none;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu li:hover ul.dropdown-menu {
    top: 0;
    left: 11rem;
    display: block;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu li:hover ul.dropdown-menu:before {
    position: absolute;
    top: 10px;
    left: -17px;
    right: 100%;
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 9px solid #ffffff;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu li.open-left:hover ul.dropdown-menu {
    top: 0;
    left: -11rem !important;
    display: block;
  }
  .custom-navbar ul.navbar-nav ul.dropdown-menu li.open-left:hover ul.dropdown-menu:before {
    position: absolute;
    top: 10px;
    right: -9px;
    left: 100%;
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 9px solid #ffffff;
    border-right: 0;
  }
}

.nav-tabs {
  padding: 0 1rem;
  border-bottom: 1px solid #d5e7ff;
}

.nav-tabs .nav-item .nav-link {
  position: relative;
  border: 0;
  font-weight: 600;
  padding: .6rem 1.8rem;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border-top: 1px solid transparent;
}

.nav-tabs .nav-item .nav-link i {
  font-size: 1rem;
  margin: 0 .3rem 0 0;
}

.nav-tabs .nav-item .nav-link i.block {
  display: block;
  text-align: center;
  margin: 0 0 .3rem 0;
}

.nav-tabs .nav-item .nav-link.active {
  color: #242e64;
  border: 1px solid #d5e7ff;
  border-bottom: 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  pointer-events: none;
}

.nav-tabs .nav-item .nav-link:hover {
  border: 0;
  border-top: 1px solid transparent;
}

.tab-content {
  padding: 1rem;
}

.pagination .page-item .page-link {
  background: transparent;
  color: #000000;
  margin: 0;
  border: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  min-width: 28px;
  text-align: center;
}

.pagination .page-item .page-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
}

.pagination .page-item .page-link i {
  font-weight: 700;
  vertical-align: middle;
  font-size: .8rem;
}

.pagination .page-item.active .page-link {
  background: #242e64;
  color: #ffffff;
  pointer-events: none;
}

.pagination .page-item.disabled .page-link {
  background: transparent;
  color: #b3b3b3;
}

.pagination.success .page-item.active .page-link {
  background: #108075;
}

.pagination.info .page-item.active .page-link {
  background: #3f3bd0;
}

.pagination.warning .page-item.active .page-link {
  background: #b96e00;
}

.pagination.danger .page-item.active .page-link {
  background: #ab141b;
}

.pagination.rounded .page-item .page-link:hover {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.pagination.rounded .page-item.active .page-link {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.popover {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.img-thumbnail {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #d5e7ff;
}

.progress {
  margin-bottom: 1rem;
  border: 0;
  background: #d5e7ff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.progress .progress-bar {
  background-color: #a90724;
}

.progress.md {
  height: .9rem;
}

.progress.sm {
  height: .6rem;
}

.progress.xs {
  height: .3rem;
}

.progress.xsl {
  height: .15rem;
}

.toast {
  box-shadow: none;
  background: #d5e7ff;
  border: 0;
  margin-bottom: 1rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  max-width: 100%;
}

.toast .toast-header {
  background: #d5e7ff;
  border: 0;
  color: #666666;
}

.toast .toast-header i {
  font-size: 1rem;
  margin-right: .2rem;
  vertical-align: middle;
}

.toast .toast-header span.title {
  margin-right: auto;
  font-weight: 600;
}

.toast .toast-header small {
  font-weight: 400;
}

.toast .toast-header .close {
  margin-left: .5rem;
  font-weight: 600;
  color: #666666;
  text-shadow: none;
}

.toast .toast-body {
  color: #666666;
  font-size: .8rem;
}

.toast.danger {
  background: #ab141b;
}

.toast.danger .toast-header {
  background: #a2131a;
  color: #ffffff;
}

.toast.danger .toast-header .close {
  color: #ffffff;
}

.toast.danger .toast-body {
  color: #ffffff;
}

.toast.info {
  background: #3f3bd0;
}

.toast.info .toast-header {
  background: #3733ce;
  color: #ffffff;
}

.toast.info .toast-header .close {
  color: #ffffff;
}

.toast.info .toast-body {
  color: #ffffff;
}

.toast.warning {
  background: #b96e00;
}

.toast.warning .toast-header {
  background: #af6800;
  color: #ffffff;
}

.toast.warning .toast-header .close {
  color: #ffffff;
}

.toast.warning .toast-body {
  color: #ffffff;
}

.toast.success {
  background: #108075;
}

.toast.success .toast-header {
  background: #0f776d;
  color: #ffffff;
}

.toast.success .toast-header .close {
  color: #ffffff;
}

.toast.success .toast-body {
  color: #ffffff;
}

.toast.pos-top-right {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.toast.pos-btm-right {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.toast.pos-btm-left {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.toast.pos-top-left {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.table {
  background: #ffffff;
  color: #666666;
  border: 0;
  font-size: 14px;
  /* font-size: .775rem; */
}

.table thead {
  background: #f3f2f7;
  color: #6e6b7b;
}

.table thead th {
  padding: .75rem;
  font-weight: 600;
  border: 0;
}

.table tbody tr:nth-of-type(even) {
  background-color: #f7fafe;
}

.table td {
  vertical-align: middle;
  padding: .5rem .75rem;
  border: 0;
}

.table-success, .table-success>td, .table-success>th {
  background: #86f0e5;
  border-color: #42e7d7;
  color: black;
}

.table-danger, .table-danger>td, .table-danger>th {
  background: #f5a6a9;
  border-color: #f28f93;
  color: #220405;
}

.table-warning, .table-warning>td, .table-warning>th {
  background: #ffb953;
  border-color: #ff9a06;
  color: #201300;
}

.table-info, .table-info>td, .table-info>th {
  background: #e0e0f7;
  border-color: #cccbf3;
  color: #18165c;
}

.tooltip {
  font-size: .7rem;
}

.tooltip-inner {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.gutters {
  margin-right: -8px;
  margin-left: -8px;
}

.gutters>.col, .gutters>[class*="col-"] {
  padding-right: 8px;
  padding-left: 8px;
}

code {
  color: #a90724;
  word-break: break-word;
}

.form-p {
  font-size: 13px;
  margin-bottom: -21px;
}

.branch-card i {
  font-weight: bold;
}

.branch-card .card-body {
  height: 184px;
}

.branch-card .card-header {
  background: #f1f1f1;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
  color: #6e6b7b !important;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
  color: #6e6b7b !important;
}

.edit-icon:hover {
  text-decoration: none;
  color: #242e64 !important;
}

.edit-icon i {
  font-weight: bold;
}

.edit-icon {
  color: #6e6b7b;
  padding: 4px;
  font-size: 14px;
}

.delete-icon i {
  font-weight: bold;
  color: #ab141b;
}

.delete-icon {
  color: #6e6b7b;
  padding: 4px;
  font-size: 14px;
}

.delete-icon:hover {
  text-decoration: none;
  color: #6e6b7b !important;
}

.breadcrumb-main-icon {
  font-size: 19px;
  color: grey;
}

.mt-25 {
  margin-top: 25px;
}

.float-right {
  float: right;
}

.status-change-area {
  border: 15px solid #f1f1f1;
  /* height: 170px; */
  height: 250px;
  
  padding: 20px;
  margin-top: 24px;
}

.booking-status label {
  display: block !important;
}

.booking-list span {
  font-weight: 500;
}

.w-100 {
  width: 100% !important;
}

.new {
  padding: 50px;
}

.w-25 {
  width: 27% !important;
}

.w-20 {
  width: 20% !important;
}

.w-50 {
  width: 50% !important;
}

.booking-list .form-group {
  display: block;
  margin-bottom: 0;
}

.booking-list .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.booking-list .form-group label {
  position: relative;
  cursor: pointer;
}

.booking-list .form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #0079bf;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 0;
}

.booking-list .form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate( 45deg);
}

.booking_search {
  padding: 25px;
  border: 5px solid #f2f2f2;
  margin: 25px;
}

.filter_btn {
  box-shadow: none !important;
  background-color: #b9861c !important;
  border-color: #b9861c !important;
  position: absolute;
  top: 22px;
}

/* AIRWAY BILL STYLES 
 */

.air_way_bill_payment tr td {
  text-align: right;
  padding-right: 10px;
}

.air_way_bill_package tr td {
  text-align: right;
  padding-right: 10px;
  vertical-align: baseline;
}

.air_way_bill tbody tr th {
  text-align: left;
  padding-bottom: 10px !important;
  font-weight: normal;
  padding-top: 10px;
  font-size: 15px;
  vertical-align: baseline;
}

.air_way_bill p {
  font-size: 15px !important;
}

.invoice-status table tr.main_tr {
  border-bottom: 1px solid #f1f1f1;
}

.invoice-status table tr td table tr:last-child td {
  background: #f1f1f1;
  padding: 5px;
  font-size: 11px;
  color: #857083;
  margin-bottom: 0;
  border-radius: 9px;
}

.invoice-status table tr td {
  text-align: left;
  font-size: .85rem;
  padding-bottom: 5px;
  padding-top: 2px;
  font-size: 12px;
}

/* PRINT BILL  */

.invoice-status tr.main_tr td.main_td:first-child {
  padding-left: 10px;
  padding-top: 5px;
  vertical-align: top;
  font-size: 13px;
}

.invoice-status tr.main_tr {
  border-bottom: 1px solid #f1f1f1;
  /* box-shadow: 0 0 25px rgb(26 107 225 / 10%); */
  border-radius: 9px;
}

.invoice-status tr td table tr:last-child td {
  background: #f1f1f1;
  padding: 5px;
  font-size: 11px;
  color: #857083;
  margin-bottom: 0;
  border-radius: 9px;
}

.invoice-status tr td {
  text-align: left;
  font-size: .85rem;
  padding-bottom: 5px;
  padding-top: 2px;
}

.manifest thead tr {
  font-weight: 400;
  text-transform: uppercase;
  color: black;
  font-size: 13px;
}

.manifest tbody tr th {
  text-align: left;
  padding-bottom: 10px !important;
  font-weight: normal;
  padding: 10px 5px 0 5px;
  font-size: 13px;
  color: black;
  border: 1px solid #eaeaea !important;
}

.manifest tbody tr td {
  padding: 5px;
  font-size: 12px;
  color: black;
  border: 1px solid #eaeaea;
}

.manifest tbody tr th:nth-child(odd) {
  text-align: left;
  padding-bottom: 10px !important;
  font-weight: 600;
  padding: 10px 5px 0 5px;
  font-size: 11px;
  border: none;
}

.manifest thead tr th {
  border: 1px solid #eaeaea;
  border-bottom: none !important;
  font-size: 11px;
}

.manifest p {
  font-size: 17px !important;
}

/* DATA TABLE STYLE CHANGED  */

.dataTables_length .bootstrap-select {
  width: 75px !important;
  display: inline-block !important;
}

.input .btn-group {
  width: 100%;
}

.input .btn-group .form-control {
  text-align: left;
}

.dimention-childs div:not(:last-child) {
  border-right: 2px solid black !important;
}

div.input {
  margin-bottom : 5px;
}

@media (max-width:993px) and (min-width:768px) {
  .navbar-toggler {
    display: none;
  }
}

.pw-show-hide-icon {
  position: absolute;
  cursor: pointer;
  right: 29px;
  margin-top: -24px;
}

.ml-0 {
  margin-left: 0 !important;
}

@media screen and (max-width: 360px) {
  .booking-btn {
    float: none;
    margin: 15px 0 15px 0;
  }
}

@media screen and (max-width: 450px) {
  .booking-btn {
    float: none;
    margin: 15px 0 15px 0;
  }
}