:root {
  --bodyFont: 'Open Sans', sans-serif !important;
  --bodyColor: #383F45 !important;
  --bodyBg: #FBFBFD !important;
  --panelBg: #FFFFFF !important;
  --buttonBg: #F19242 !important;
  --fontColor: #172D54 !important;
  --linkColor: #296BF2 !important;
  --messageFont: 'Open Sans', sans-serif !important;
}

/*************************
*******Typography******
**************************/

body {
  background: var(--bodyBg) !important;
  font-family: var(--bodyFont) !important;
  color: var(--bodyColor);
  line-height: 22px !important;
  font-size: 14px !important;
  font-weight: regular !important;
  min-height: 100vh;
  position: relative;
  letter-spacing: 0.03rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: var(--fontColor);
}

h1 {
  font-size: 36px;
  color: var(--panelBg);
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h4 {
  font-size: 16px;
}

a {
  color: var(--linkColor);
  -webkit-transition: color 300ms, background-color 300ms;
  -moz-transition: color 300ms, background-color 300ms;
  -o-transition: color 300ms, background-color 300ms;
  transition: color 300ms, background-color 300ms;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--fontColor);
}

hr {
  background-color: #D1D5D8;
  height: 1px;
}

label {
  font-weight: 600;
}

textarea {
  resize: vertical;
  padding: 14px 12px !important;
  resize: none;
}

p {
  word-break: break-word
}

.btn {
  border-radius: 5px !important;
}

.btn-primary {
  padding: 8px 20px;
  background: var(--fontColor);
  color: var(--panelBg);
  border-radius: 5px !important;
  border: none;
  margin-top: 10px;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--fontColor);
  outline: none;
  box-shadow: none;
}

.btn-transparent {
  border: 3px solid var(--panelBg);
  background: transparent;
  color: var(--panelBg);
}

.btn-transparent:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

a:hover,
a:focus {
  color: #111;
  text-decoration: none;
  outline: none;
}

.dropdown-menu {
  margin-top: -1px !important;
  min-width: 180px;
  z-index: 9999;
}

.center h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
}

body>section {
  padding: 70px 0;
}

.center {
  text-align: center;
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

.lead {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.transparent-bg {
  background-color: transparent !important;
  margin-bottom: 0;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.form-control {
  border-radius: 5px !important;
  padding: 26px 12px;
  margin-top: 3px;
}

select.form-control {
  padding: 0 12px;
  height: 50px;
  appearance: none;
  background-image: url(/AccountManagement/images/angle-down-solid.svg);
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 12px auto;
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--buttonBg);
  cursor: pointer;
  padding: 0;
  font-size: 50px;
  font-weight: bold;
}

.content-wrap {
  padding-bottom: 202px;
}

.content-page {
  background: var(--bodyBg);
  padding-top: 40px;
  padding-bottom: 70px;
}

.login-page .custom-card {
  box-shadow: 2px 5px 5px rgb(0 0 0 / 25%);
  padding: 12px;
  background: var(--panelBg);
  height: auto;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

.mr-0 {
  margin-right: 0 !important;
}

.custom-card .form-group p {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
}

.custom-card .panel-default {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.custom-card .panel-header {
  font-size: 22px;
  font-weight: 600;
  padding: 22px 22px;
  border-bottom: 1px solid #dddddd;
  border-radius: 10px 10px 0 0;
}

.custom-card .panel-body {
  border-radius: 0 0 10px 10px;
}

.remove-token-label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

/*****************************/
/* Login Page Styles - Start */
/*****************************/

.login-page {
  background: transparent !important;
  max-width: 1600px;
  margin: 0 auto;
  font-family: 'poppins',sans-serif;
}

.login-page h1{
  font-size: 4.5rem;
  font-family: 'poppins',sans-serif;
  line-height: 1em;
}
.login-page h2{
  font-size: 1.25rem; 
  color: white; 
  line-height: 1.5em; 
  font-weight: 400; 
  margin-top: 20px;
  font-family: 'poppins',sans-serif;
}
@media screen and (max-width: 480px) {
  .login-page h2{
    font-size: 1rem; 
  }
}
@media screen and (max-width: 991px) {
  .login-page h1{
    text-align: center;
  }
  .login-page h2{
    text-align: center;
  }
}
@media screen and (max-width: 1325px) {
  .login-page h1{
    font-size: 3rem;
  }
}
.login-page .custom-card{
background: #182f5770;
box-shadow: none;
margin-top: 0;
}

.login-page .custom-card .panel-header{
  border: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}

.login-page .custom-card .panel-body label{
  color: #fff;
}

.login-page .custom-card .panel-body p{
  color: #fff;
}

.login-page .panel-body {
  padding: 20px 12px 0 12px;
}

.login-page .login-new-account{
  color: #fff;
  border: 0;
  padding-top: 0;
}

.login-page .login-new-account a{
  color: #f2932a;
}

.login-page .login-link a{
  color: #fff;
  text-align: left;
  color: #f2932a;
}
.login-page .recovery-block{
  color: #fff;
}

.login-body{
  /* background-image: url(/AccountManagement/images/surfing-bg-signin.jpg) !important; */
  background-image: linear-gradient(to bottom, rgba(0, 54, 105, 0.811) 20%, rgba(0, 54, 105, 0) 70%), url(/MainSite/images/golf-login-pages.jpg) !important;
  background-blend-mode: multiply;
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  display: block !important;
}
.recovery-body,
.reset-body {
  /* background-image: url(/AccountManagement/images/surfing-bg-signin.jpg) !important; */
  background-image: linear-gradient(to bottom, rgba(0, 34, 63, .7) 5%, rgba(0, 22, 42, 0) 70%), url(/MainSite/images/golf-login-pages.jpg) !important;
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  display: block !important;
}

.login-body .has-error .help-block, 
.recovery-body .has-error .help-block, 
.reset-body .has-error .help-block { 
  color: #F54E62; 
  text-shadow: 1px 1px 1px #000;  
}

ul.login-links {
  padding-left: 0;
  padding-top: 10px;
  font-size: 14px;
  margin-bottom: 6px;
}

ul.login-links li {
  list-style: none;
  padding-bottom: 5px;
  font-weight: 600;
}

.user-login-btn,
.user-recovery-btn, 
.user-reset-btn {
  width: 100%;
  margin-top: 0 !important;
}

.custom-card .form-group {
  font-size: 16px;
  font-weight: 600 !important;
  margin-bottom: 15px;
}

.login-links-group {
  margin-bottom: 0 !important;
}

.login-link,
.login-forgot-link {
  text-align: right;
  font-size: 12px;
  padding: 0.5rem 0.6rem 0 0;
}

.login-new-account {
  padding: 22px;
  margin-top: 23px;
  border-top: 1px solid #dddddd;
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-weight: 500;
}

.recovery-text {
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
}

.recovery-block {
  padding-bottom: 6px;
}


/*************************
*******Header******
**************************/
.login-body #header,
.recovery-body #header,
.reset-body #header {
  position: relative;
}

#header {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.10);
}

.navbar>.container .navbar-brand {
  margin-left: 0;
}

.navbar-header {
  float: none;
}

.top-bar {
  padding: 10px 0;
  background: var(--fontColor);
  border-bottom: 1px solid #222;
  line-height: 28px;
  height: 56px;
}

.top-bar-icon button.navbar-toggler {
  width: 45px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar {
  border-radius: 0 !important;
  margin-bottom: 0;
  background: var(--panelBg) !important;
  padding: 0;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.navbar-nav {
  margin-top: 10px;
}

.navbar-nav>li {
  margin-left: 12px;
  padding-bottom: 10px;
  margin-right: 20px;
}

.navbar-expand-lg .navbar-nav>li>a {
  padding: 5px 12px;
  margin: 0;
  border-radius: 3px !important;
  color: var(--fontColor);
  line-height: 24px;
  display: inline-block;
}

.navbar-expand-lg .navbar-nav>li>a:hover {
  background-color: var(--fontColor) !important;
  color: var(--panelBg) !important;
}

.navbar-expand-lg {
  border: none;
}

.navbar-expand-lg .navbar-brand {
  font-size: 36px;
  line-height: 50px;
  color: var(--panelBg);
}

.navbar-expand-lg .navbar-nav>.active>a,
.navbar-expand-lg .navbar-nav>.active>a:hover,
.navbar-expand-lg .navbar-nav>.active>a:focus,
.navbar-expand-lg .navbar-nav>.open>a,
.navbar-expand-lg .navbar-nav>.open>a:hover,
.navbar-expand-lg .navbar-nav>.open>a:focus {
  background-color: #455681 !important;
  color: var(--panelBg);
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  background-color: var(--panelBg) !important;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125) !important;
  -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125) !important;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.25) !important;
  border: 0;
  padding: 0;
  margin-top: 0 !important;
  border-top: 0;
  border-radius: 0 0 4px 4px !important;
  left: 0;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu:before {
  position: absolute;
  top: 0;
}

.navbar-expand-lg .navbar-nav .dropdown-menu>li>a {
  padding: 8px 15px;
  color: var(--fontColor) !important;
}

.navbar-expand-lg .navbar-nav>li>a.disabled {
  display: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu>li:focus>a,
.navbar-expand-lg .navbar-nav .dropdown-menu>li.active>a {
  background-color: var(--fontColor) !important;
  color: var(--panelBg) !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu>li:hover>a {
  background-color: #dddddd;
  cursor: pointer;
  color: var(--bodyColor)
}

.navbar-expand-lg .navbar-nav .dropdown-menu>li:last-child>a {
  border-radius: 0 0 3px 3px !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu>li.divider {
  background-color: transparent;
}

.navbar-expand-lg .navbar-collapse,
.navbar-expand-lg .navbar-form {
  border-top: 0;
  padding-bottom: 0;
}

.navbar-collapse {
  padding-left: 0;
}

.navbar-expand-lg .navbar-toggle {
  border-color: var(--fontColor) !important;
  background-color: var(--fontColor) !important;
}

.top-bar-icon {
  float: right;
  display: flex;
}

.top-bar-icon a {
  text-align: center;
  color: var(--panelBg);
}

.top-bar-icon a:hover,
.top-bar-icon a:focus {
  color: var(--panelBg);
}

.navbar-brand-user {
  height: 38px;
  width: 38px;
}

.navbar-brand-user i {
  font-size: 28px;
  background: #6B7984;
  border-radius: 50%;
  padding: 5px 7px;
  margin-top: 0;
}

.navbar-brand-user img#user-image-top-bar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 1px 1px 3px 0px rgb(0 0 0 / 70%);
}

.navbar-brand-envelope {
  height: 38px;
  width: 38px;
}

.navbar-brand-envelope i {
  font-size: 30px;
  margin-top: 5px;
  position: relative;
  text-shadow: 1px 1px 3px rgb(0 0 0 / 70%);
}

.navbar-brand-envelope i.fa-clock {
  position: absolute;
  bottom: 0;
  right: -4px;
  display: block;
  color: var(--panelBg);
  font-size: 12px;
}

.navbar-brand-envelope i.fa-circle {
  position: absolute;
  top: -4px;
  left: -4px;
  display: block;
  color: #FF0000;
  font-size: 12px;
}

/* -------------- */
/* Dropdown Notifications */
/* -------------- */
.dropdown-notifications {
  height: 46px;
  width: 38px;
  margin-right: 14px;
  text-align: center;
}

.dropdown-notifications .dropdown-menu {
  top: 47px !important;
  left: -160px !important;
  float: left !important;
  display: none; 
  padding: 0;
}

.dropdown-notifications:hover .dropdown-menu { 
  display: block; 
}

.dropdown-notifications .alert-list {
  color: var(--bodyColor) !important;
  width: 260px !important;
  padding: 0 !important;
  max-height: 250px;
  overflow-y: auto;
  text-align: left;
  border-radius: 0 0 4px 4px;
  box-shadow: 2px 5px 5px rgb(0 0 0 / 25%) !important;
  border: none;
}

.dropdown-notifications .alert-list li {
  border-bottom: 1px solid #EEEEEE;
  padding: 6px 0 4px 14px;
}

.dropdown-notifications .alert-list li.alert-list-row:hover {
  background-color: #dddddd;
  cursor: pointer;
  color: var(--bodyColor);
}

.dropdown-notifications .alert-list p.excerpt {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}

.dropdown-notifications .alert-list p.title {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.no-notifications {
  padding: 6px 12px;
}

/* ------------------- */
/* Dropdown View Profile */
/* -------------------- */
.dropdown-view-profile {
  margin-right: 12px;
  height: 46px;
  text-align: center;
}

.dropdown-view-profile .dropdown-menu {
  top: 47px !important;
  left: -80px !important;
  float: left !important;
  border-radius: 0 0 4px 4px;
  box-shadow: 2px 5px 5px rgb(0 0 0 / 25%) !important;
  border: none;
  display: none; 
  padding: 0;
}

.dropdown-view-profile:hover .dropdown-menu { 
  display: block; 
}

.dropdown-view-profile .dropdown-menu>li>a {
  padding: 4px 12px;
  text-align: left;
  color: var(--bodyColor);
  display: block;
}

.dropdown-view-profile .dropdown-menu>li>a:hover {
  background-color: #dddddd;
  cursor: pointer;
  color: var(--bodyColor);
}
.dropdown-view-profile .dropdown-menu>li:last-child>a:hover {
  border-radius: 0 0 4px 4px;
}

.dropdown-view-profile .dropdown-menu>li>a>i {
  margin-right: 6px;
}

.display-name-profile {
  color: var(--panelBg);
  margin-top: 4px;
  margin-right: 8px;
}

/*************************
*******Home Page******
**************************/

.no-margin {
  margin: 0;
  padding: 0;
}

#middle {
  background: #f2f2f2;
}

.skill h2 {
  margin-bottom: 25px;
}

.panel-default {
  border-color: transparent;
}

.panel-default>.panel-heading,
.panel {
  background-color: var(--panelBg);
  border: 0 none;
  box-shadow: none;
}

.panel-default>.panel-heading+.panel-collapse .panel-body {
  background: var(--panelBg);
  color: #858586;
}

.panel-body {
  padding: 20px 20px 10px 20px;
}

.panel-group .panel+.panel {
  margin-top: 0;
  border-top: 1px solid #d9d9d9;
}

.panel-group .panel {
  border-radius: 0 !important;
}

.panel-heading {
  border-radius: 0 !important;
}

.panel-title>a {
  color: var(--linkColor);
}

.panel-heading.active {
  background: #1f1f20;
}

.panel-heading.active .panel-title>a {
  color: var(--panelBg);
}

.nav-tabs>li {
  margin-bottom: 0px;
  margin-right: 20px;
}

.nav-tabs {
  border-bottom: transparent;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.nav-tabs>li>a {
  color: var(--fontColor);
  border-radius: 3px 3px 0 0 !important;
  line-height: 24px;
  margin-right: 0;
  padding: 13px 15px 10px 15px;
  border: none;
  border-bottom: 1px solid #e6e6e6;
}


.nav-stacked>li+li {
  margin-top: 0;
}

.nav-tabs>li>a:hover {
  background: var(--fontColor);
  color: var(--panelBg);
}

.tab-wrap {
  border: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

.tab-content {
  padding: 18px 10px 3px 10px;
}

.tab-content h2 {
  margin-top: 0;
}

.tab-content img {
  border-radius: 0 !important;
}

/***********************
********* Footer ******
************************/

#footer {
  padding-top: 30px;
  padding-bottom: 20px;
  color: var(--panelBg);
  background: #212529;
  border-top: 3px solid var(--buttonBg);
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 162px;
}

#footer a {
  color: var(--panelBg);
  font-size: 14px;
}

#footer .footer-links a {
  font-size: 16px;
}

#footer a:hover {
  color: var(--panelBg);
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  margin-bottom: 0;
}

#footer ul>li {
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 6px;
}

#footer .copyright {
  list-style: none;
  padding: 10px 0 0 0;
  margin: 0;
  text-align: center;
  font-size: 14px;
}

.custom-edit-panel .btn-delete {
  background-color: transparent !important;
  color: #a94442 !important;
  font-size: 16px !important;
  box-shadow: none !important;
  padding: 10px 30px !important;
  border: none !important;
  font-weight: 500 !important;
}

.custom-edit-panel .btn-delete:hover {
  background-color: transparent !important;
  color: #F12730 !important;
  border: none !important;
}

.custom-edit-panel .btn-delete:focus,
.custom-edit-panel .btn-delete:active {
  background-color: transparent;
  color: #a94442;
  outline: 0;
  border: none;
  box-shadow: none !important;
}

.btn-submit {
  background-color: var(--buttonBg);
  color: var(--panelBg);
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25) !important;
  margin-top: 24px;
  padding: 10px 50px !important;
  border: 1px solid transparent;
}

.btn-submit:hover {
  background-color: var(--fontColor) !important;
  color: var(--panelBg);
  box-shadow: none;
}

.btn-submit:focus,
.btn-submit:active {
  background-color: var(--buttonBg);
  color: var(--panelBg);
  outline: 0;
}

.btn-submit[disabled="disabled"],
button[disabled],
html input[disabled] {
  background-color: #D2D2D4 !important;
  color: var(--panelBg) !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

.toggle {
  position: relative;
  display: block;
  width: 45px;
  height: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.toggle:before {
  content: "";
  position: relative;
  top: 6px;
  left: 0px;
  width: 45px;
  height: 14px;
  font-size: 10px;
  display: block;
  background: #eb8427;
  border-radius: 8px !important;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}

.toggle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background: var(--bodyBg);
  border: 3px solid #eb8427;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

#cbx:checked+.toggle:before {
  background: #eb8427;
}

#cbx:checked+.toggle span {
  background: var(--bodyBg);
  border: 3px solid #eb8427;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -o-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -webkit-box-shadow: 0 3px 8px rgba(255, 123, 176, 0.2);
  box-shadow: 0 3px 8px rgba(255, 123, 176, 0.2);
}

#cbx:checked+.toggle span:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

input[type="checkbox"] {
  width: 28px;
  height: 16px;
}

.help-block {
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
}

.info-tooltip {
  position: relative;
  top: -3px;
}

.info-tooltip i {
  font-size: 12px;
  border: 2px solid var(--fontColor);
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 8px;
  color: var(--fontColor);
}

.field-icon {
  right: 26px;
  top: 52px;
  position: absolute;
  font-size: 18px;
  float: right;
}

.table-responsive {
  border: none;
}

.btn-custom {
  background-color: var(--buttonBg);
  color: var(--panelBg);
  font-size: 16px !important;
  font-weight: 400 !important;
  box-shadow: 2px 3px 3px rgb(0 0 0 / 25%) !important;
  margin-top: 10px !important;
}

.btn-custom:hover {
  background-color: var(--fontColor);
  color: var(--panelBg);
}

.btn-custom[disabled] {
  background-color: #D2D2D4 !important;
  color: var(--panelBg) !important;
  opacity: 1 !important;
}

.modal-header {
  font-weight: 600;
  color: var(--bodyBg);
  background: var(--fontColor);
  border-radius: 4px 4px 0 0;
  border: none;
}

.modal-header .title-bar {
  font-size: 22px;
  font-weight: 600;
  color: var(--bodyBg);
  background: var(--fontColor);
}

.modal-header .close {
  color: var(--panelBg);
  opacity: 1;
  margin-top: -14px;
}

.modal-footer {
  border-top: none;
  padding: 12px 20px 20px 20px
}

.sn-checkbox-use-protocol {
  display: none;
}

.col-btn-submit {
  text-align: center;
}

/* Works on Firefox */
* {
  /* scrollbar-width: thin; */
  scrollbar-color: var(--fontColor) var(--panelBg);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: var(--panelBg);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--fontColor);
  border-radius: 20px;
  border: 1px solid var(--panelBg);
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-control-feedback {
  position: relative;
  top: -36px;
  right: 12px;
  font-size: 18px;
  float: right
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error label,
.has-error .form-control-feedback {
  color: #a94442;
}

.ui-tooltip {
  border-width: 0 !important;
  padding: 5px !important;
  z-index: 0 !important;
  box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 8%) !important;
  font-size: 10px !important;
}

.btn-group>.btn {
  z-index: 0 !important;
}

.note-editor.note-frame {
  border: 1px solid #ccc !important;
}

.custom-new-record {
  color: var(--linkColor);
  background: transparent;
  font-weight: bold;
  border: none;
  outline: 0;
}

.custom-new-record:hover {
  color: var(--fontColor) !important;
}

.custom-new-record:focus {
  outline: 0;
  color: var(--linkColor);
}

.custom-new-record[disabled] {
  color: #d5d5d5 !important;
  background: transparent !important;
}

.custom-list-dropdown {
  border-color: #ccc;
  border-radius: 3px;
  height: 28px;
  width: 66px;
  text-align: center;
  margin-right: 20px;
  outline: none;
}

.custom-lists {
  overflow-y: auto;
  max-height: 480px;
  border-right: 1px solid #dddddd;
  border-radius: 0 0 0 10px;
}

.custom-lists .custom-dropdown-icon {
  position: absolute;
  right: 12px;
  top: 18px;
  font-size: 14px;
  color: #555555;
}

.custom-lists .dropdown-menu {
  width: 100%;
  max-height: 480px;
  overflow-x: auto;
  position: relative !important;
  z-index: 1;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  transform: translate3d(0, 0, 0) !important;
}

.custom-lists .dropdown-toggle {
  width: 100%;
  background: #ffff;
  border: 1px solid #dddddd;
  min-height: 50px;
  height: auto;
  padding: 0 12px;
  position: relative;
}

.custom-lists .list-row {
  display: flex;
  padding: 13px 30px;
}

.custom-lists .list-row:hover {
  background-color: #dddddd;
  cursor: pointer;
  color: var(--bodyColor);
}

.custom-lists .cf-internal-code {
  margin-right: 12px;
  font-weight: 600;
}


.custom-lists .row-description {
  font-weight: 500;
  white-space: initial;
  text-align: left;
  margin-right: 12px;
  word-break: break-word;
}

.content-page .panel-body {
  border: 0;
}

.border {
  border: 1px solid #dddddd;
}

.custom-new-record-panel {
  padding: 6px 0 6px 0;
  box-shadow: 0 1px 3px #cecece;
  border-right: 1px solid #dddddd;
  text-align: center;
  position: sticky !important;
  top: 56px;
  z-index: 1;
  background: var(--panelBg);
}

.custom-new-record-panel .new-record {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.custom-lists .active {
  background: #39476B;
  color: #FBFBFD;
}

.custom-edit-panel {
  padding-top: 26px;
  min-height: 480px;
  height: auto;
  padding-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
}

.custom-edit-panel .link-group a {
  font-size: 14px;
  margin-right: 10px;
  font-weight: 500;
}

.custom-loading-md {
  font-size: 22px;
  font-weight: 600;
  color: var(--fontColor);
  position: absolute;
  top: 50%;
  margin-left: 33%;
  z-index: 5;
}

.custom-loading-md i {
  font-size: 24px;
  margin-right: 4px;
}

.custom-loading-lg {
  font-size: 26px;
  font-weight: 600;
  color: var(--fontColor);
  position: absolute;
  top: 46%;
  width: 100%;
  z-index: 5;
  display: inline-block;
  text-align: center;
}

.custom-loading-lg i {
  font-size: 28px;
  margin-right: 4px;
}

.custom-loading-sm {
  font-size: 18px;
  font-weight: 600;
  color: var(--fontColor);
  position: absolute;
  top: 12px;
  margin-left: 12px;
  z-index: 5;
}

.custom-loading-sm i {
  font-size: 18px;
  margin-right: 4px;
}

.custom-panel-list {
  position: inherit;
}

.custom-edit-panel .link-group {
  padding-right: 0;
  margin-top: 12px;
}

.dropdown-backdrop {
  position: relative;
  z-index: 0;
}

.dropdown-btn-label {
  margin-top: 3px;
  font-size: 16px;
  display: flex;
  color: var(--bodyColor);
}

.dropdown-toggle {
  background-color: transparent !important;
}

.dropdown-toggle::after {
  display: none;;
}

.btn-delete {
  background-color: #d43f3a;
  color: var(--panelBg);
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25) !important;
  margin-top: 0;
  padding: 8px 26px !important;
  border: 1px solid transparent;
}

.btn-delete:hover {
  background-color: var(--fontColor) !important;
  color: var(--panelBg);
  box-shadow: none;
}

.btn-delete:focus,
.btn-delete:active {
  background-color: #a94442;
  color: var(--panelBg);
  outline: 0;
}

.btn-save {
  background-color: var(--buttonBg);
  color: var(--panelBg);
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25) !important;
  margin-top: 0;
  padding: 8px 26px !important;
  border: 1px solid transparent;
}

.btn-save:hover {
  background-color: var(--fontColor) !important;
  color: var(--panelBg);
  box-shadow: none;
}

.btn-save:focus,
.btn-save:active {
  background-color: var(--buttonBg);
  color: var(--panelBg);
  outline: 0;
}

.btn-cancel {
  background-color: var(--bodyBg);
  color: var(--bodyColor);
  font-size: 16px !important;
  font-weight: 600 !important;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25) !important;
  margin-top: 0;
  padding: 8px 20px !important;
  border: 1px solid #dddddd;
}

.btn-cancel:hover {
  background-color: var(--panelBg);
  color: var(--bodyColor);
  box-shadow: none;
}

.btn-cancel:focus,
.btn-cancel:active {
  background-color: var(--panelBg);
  color: var(--bodyColor);
  outline: 0;
}

.button-group {
  text-align: center;
}

.popover {
  max-width: 350px !important;
}

.tooltip-c {
  position: relative;
  display: inline-block;
  color: #959596;
}

.tooltip-c:hover {
  cursor: pointer;
}

.tooltip-c .tooltiptext {
  visibility: hidden;
  width: max-content;
  background-color: var(--panelBg);
  color: var(--bodyColor);
  text-align: center;
  border-radius: 5px;
  padding: 0 5px;
  position: absolute;
  z-index: 1;
  bottom: 28px;
  right: 0;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid #ccc;
  font-size: 10px;
}

.tooltip-c .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 5px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
}

.tooltip-c:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  z-index: 14;
}

.input-group input.form-control {
  border-radius: 0 5px 5px 0 !important;
}

/* Notifications Inbox */
#modalNotificationsInbox {
  padding-right: 0;
  padding-left: 0 !important;
}

#modalNotificationsInbox .modal-content {
  border-radius: 10px;
  border: none;
  overflow: hidden;
}

#modalNotificationsInbox .modal-header {
  border-radius: 8px 8px 0 0;
}

#modalNotificationsInbox .title-bar {
  font-size: 28px;
}

#modalNotificationsInbox .close {
  margin-top: -10px;
}

#modalNotificationsInbox .modal-body {
  min-height: 480px;
  height: auto;
}

#modalNotificationsInbox .modal-body .notification-list {
  min-height: 480px;
  height: 480px;
  overflow-y: auto;
  padding: 0;
  border-right: 1px solid #dddddd;
  margin-top: 0;
  margin-bottom: 0;
}

#modalNotificationsInbox .modal-body .notification-details-panel {
  /* min-height: 480px; */
  height: auto;
}

/* #modalNotificationsInbox .modal-body .notification-details {
  padding: 15px;
} */

.notification-details-head {
  border-bottom: 1px solid #DDDDDD;
  padding: 15px 15px 0px 15px;
}

.notification-details-body {
  padding: 15px;
}

#modalNotificationsInbox .modal-body .notification-row {
  padding: 10px 12px 10px 18px;
  border-top: 1px solid #fbfbfd;
  box-shadow: 0px 0px 2px #d2d2d4;
}

#modalNotificationsInbox .modal-body .notification-row.unread {
  font-weight: 600;
}

#modalNotificationsInbox .modal-body .notification-row.read {
  font-weight: 400;
}

#modalNotificationsInbox .modal-body .notification-row[data-acknowledgement="1"] {
  border-left: 3px solid #3B3B3D;
}

#modalNotificationsInbox .modal-body .notification-row:hover {
  background-color: #dddddd;
  cursor: pointer;
  color: var(--bodyColor);
}

#modalNotificationsInbox .notification-row .summary {
  font-size: 18px;
  margin-bottom: 3px;
}

#modalNotificationsInbox .notification-row .excerpt {
  font-size: 14px;
  margin-bottom: 0;
}

#modalNotificationsInbox .fa-circle-info::after {
  color: #16AB4A;
  opacity: 1;
}

#modalNotificationsInbox .fa-circle-info::before {
  color: var(--panelBg);
}

#modalNotificationsInbox .fa-star-circle::after {
  color: #F7AF07;
  opacity: 1;
}

#modalNotificationsInbox .fa-star-circle::before {
  color: var(--panelBg);
}

#modalNotificationsInbox .fa-exclamation-triangle::after {
  color: #F12730;
  opacity: 1;
}

#modalNotificationsInbox .fa-exclamation-triangle::before {
  color: var(--panelBg);
}

#modalNotificationsInbox .notification-details .summary {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

#modalNotificationsInbox .notification-delete {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 16px;
  color: #3B3B3D;
}

.notification-details-panel {
  padding: 0;
  max-height: 480px;
  border-radius: 0 0 10px 0;
  overflow: auto;
}

#modalNotificationsInbox .modal-dialog {
  max-width: 90%;
}

#modalNotificationsInbox .notification-list .active:hover p {
  color: #333;
} 
#modalNotificationsInbox .custom-lists .active p {
  color: #FBFBFD;
}

div[data-notify="container"] {
  z-index: 9999 !important;
}

.notification-mobile-bar {
  background: #E1E1E3;
  padding: 12px 10px;
  width: 100%;
  height: 42px;
  margin-bottom: 12px;
  position: sticky;
  opacity: 1;
  top: 0;
  z-index: 1;
}

.notification-mobile-bar>div {
  width: 50%;
}

.notification-mobile-bar i {
  color: #3B3B3D;
  font-size: 20px;
}

.notification-mobile-bar .notification-trash {
  margin-right: 30px;
}

.notification-mobile-bar .notification-trash[disabled="disabled"],
.notification-mobile-bar .notification-down[disabled="disabled"],
.notification-mobile-bar .notification-up[disabled="disabled"],
#modalNotificationsInbox .notification-delete[disabled="disabled"] {
  color: #7C7C7D;
}

.notification-mobile-bar .notification-down {
  margin-right: 8px;
}

.notification-mobile-bar .notification-up {
  margin-right: 12px;
}

.notification-mobile-bar .notification-back {
  margin-left: 6px;
}

.notification-mobile-bar-right {
  width: 50%;
  float: left;
  text-align: right;
}

.notification-mobile-bar-left {
  width: 50%;
  float: left;
}

.notification-acknowledge-btn {
  position: sticky;
  bottom: 0;
  background: white;
  padding-top: 14px;
  padding-bottom: 12px;
}

.custom-card {
  margin-top: 36px;
  padding: 0;
  background: var(--panelBg);
  border-radius: 10px;
  box-shadow: 1px 3px 5px 1px rgb(0 0 0 / 25%);
  visibility: visible;
}

::-webkit-input-placeholder {
  /* WebKit browsers */
  text-transform: none;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  text-transform: none;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  text-transform: none;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  text-transform: none;
}

::placeholder {
  /* Recent browsers */
  text-transform: none;
}

div.dataTables_processing div {
  display: none;
}

.table-loading {
  font-size: 26px;
}

.custom-card .panel-header .info-tooltip {
  position: absolute;
  top: 22px;
  right: 12px;
}

.pull-right {
  float: right;
}

.btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1 !important;
}

div[data-notify="container"] .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  top: 15px !important;
}

.custom-lists .dropdown {
  position: initial;
  padding-left: 14px;
  padding-right: 14px;
  width: 100%;
}

.top-bar-icon .navbar-toggler-icon i {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: bold;
  margin-top: -3px;
}

#modalNotificationsInbox .notification-content {
  width: 100%;
}