:root {
  --btn-primary: #6190EA;
  --btn-primary1: #6190EA;
  --gradient-1: #a6c0ef;
  --gradient-2: #6190EA;
  --footer-bg: #a27a00;
  --white: #ffffff;
  --black: #000;
  --link-hover: #01a9e0;
  --input-base-shadow: inset 0 0 0 .5px #ededed, 0 1.5px 0 -.5px #c7c7c7;
}

::-webkit-scrollbar {
  width: 5px;
  height: 7px;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: var(--gradient-2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--link-hover);
  border-radius: 3px;
}


body {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
}

/* Login */
body[data-path="login"] {
  display: table;
}

[data-path="login"] nav {
  display: none;
}

#page-login {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

#page-login .loginbox {
  background-color: var(--white);
  display: flex;
  max-width: 800px;
  min-height: 500px;
  width: 100%;
  margin: 1.875rem auto;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#page-login .loginbox .login-left {
  align-items: center;
  flex-direction: column;
  width: 400px;
  display: flex;
  background: linear-gradient(180deg, var(--gradient-1), var(--gradient-2));
  border-radius: 6px 0 0 6px;
  padding: 80px;
  justify-content: center;
  align-items: center;
}

#page-login .loginbox .login-left .img-fluid {
  max-width: 100%;
  height: auto;
}

#page-login .loginbox .login-right {
  padding: 40px;
  width: 400px;
}

#page-login .page-card {
  background-color: transparent;
  border: none;
}

#page-login .loginbox .login-right h1 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
}

#page-login .btn.btn-primary {
  padding: 8px 8px;
  background-color: var(--btn-primary1);
  border: 1px solid var(--btn-primary1);
}

/* Footer */
body[data-path="login"] .footer-one {
  display: none !important;
}

.footer-one {
  clear: both;
  background: var(--footer-bg);
  color: var(--white);
}

.footer-one .footer-top {
  margin: 0;
  padding: 50px 0;
}

.footer-top .footer-logo {
  margin: 0;
  padding: 0;
  height: auto;
  text-align: center;
}

.footer-top .footer-logo img {
  height: auto;
  width: 200px;
}

.footer-top .footer-address {
  margin: 0;
  padding: 0;
  padding: 20px 0;
}

.footer-top .footer-title {
  margin: 0;
  padding: 0;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-one .footer-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-one .footer-top li.foot-item {
  margin-bottom: 15px;
}

.footer-one .footer-top li.foot-item a {
  color: var(--white);
  position: relative;
  overflow: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-left: 0;
  font-size: 14px;
}

.footer-one .footer-top li.foot-item a:hover {
  color: var(--link-hover);
  padding-left: 20px;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.footer-one .footer-top .subscribe-form {
  position: relative;
  margin-bottom: 20px;
}

.footer-one .footer-top .subscribe-form .form-control {
  font-weight: 500;
  font-size: 14px;
  min-height: 46px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 6px 0px 0px 6px;
  margin: 0;
  padding: 6px 112px 6px 15px;
}

.footer-one .footer-top .subscribe-form .btn {
  font-weight: normal;
  margin: 0;
  padding: 11px 16px !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--white);
  background: var(--link-hover);
  border: 1px solid var(--link-hover);
  box-shadow: inset 0 0 0 0 var(--white);
  margin-right: -5px;
}

.footer-one .footer-bottom .copyright {
  border-top: 1px solid var(--white);
  margin: 0;
  padding: 15px 0;
}

.footer-bottom .copyright .policy-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.footer-bottom .copyright p a:hover {
  color: var(--link-hover);
}

.footer-bottom .copyright .policy-menu li {
  display: inline-block;
  margin-right: 10px;
  color: var(--white);
  font-weight: 500;
}

.footer-bottom .copyright .policy-menu li a {
  color: var(--white);
}

.footer-one .footer-bottom .copyright .policy-menu li a:hover {
  color: var(--link-hover);
}

.footer-one .footer-bottom .copyright .policy-menu li::after {
  font-size: 15px;
  color: var(--white);
  content: "|";
  font-weight: 500;
  position: relative;
  left: 5px;
}

.footer-one .footer-bottom .copyright .policy-menu li:last-child::after {
  content: "";
}

/* Header */
.navbar.navbar-expand-lg {
  position: sticky;
  border: none;
  -o-box-shadow: 0 13px 35px -12px rgb(61 98 174 / 25%);
  -ms-box-shadow: 0 13px 35px -12px rgb(61 98 174 / 25%);
  box-shadow: 0 13px 35px -12px rgb(61 98 174 / 25%);
  width: 100%;
  background-color: #F4F7FE;
  height: 70px;
  z-index: 9999;
  top: 0;
}

.navbar-nav input {
  border: 1px solid var(--link-hover);
  box-shadow: inset 0 0 0 0 var(--white);
}

.navbar-nav a {
  position: relative;
  overflow: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
}

.navbar-nav a:hover {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

main {
  min-height: 53.5vh;
}

.sidebar-column {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  margin: 20px 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
}

.sidebar-column .web-sidebar {
  padding: 0px !important;
}

.sidebar-column ul {
  color: #757575;
  font-size: 14px;
  line-height: 17px;
  list-style: none;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}

.sidebar-column li {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.sidebar-column li a {
  color: #757575;
  display: block;
  padding: 10px 15px;
}

.sidebar-column li a:hover,
.sidebar-column li a.active {
  color: #0de0fe;
}

.main-column h3 {
  margin: 0;
  padding: 10px 0;
  font-size: 18px;
}

.website-list {
  border: 1px solid #f0f0f0;
}

.empty-apps-state {
  text-align: center;
  padding: 50px 0;
}

[data-doctype="Web Form"] .page-content-wrapper .container .page_content,
.my-account-container {
  max-width: initial;
}

@media (max-width: 767.98px) {
  .footer-one .footer-top {
    padding: 10px 0;
  }

  #page-login .loginbox {
    min-height: auto
  }

  #page-login .loginbox .login-left {
    display: none;
  }

  #page-login .loginbox .login-right {
    padding: 20px;
    width: 100%;
  }

  .loginbox .login-right h1 {
    margin: 0;
  }

  .footer-top .row {
    display: block;
  }

  .footer-bottom .copyright .policy-menu,
  .copyright,
  .footer-address {
    text-align: center;
  }

  .footer-bottom .copyright .policy-menu li {
    display: block;
  }

  .footer-one .footer-bottom .copyright .policy-menu li::after {
    content: "";
  }
}

/* Animations */
[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
  transition-timing-function: ease;
  transition-duration: 1.2s;
}

.control-label {
  font-weight: 600 !important;
}

.form-control {
  background-color: #f8faff !important;
  box-shadow: var(--input-base-shadow) !important;
  border: 0 !important;
}

.btn.btn-primary {
  white-space: nowrap;
  --icon-stroke: currentColor;
  --icon-fill-bg: var(--btn-primary);
  --btn-outline-color: var(--btn-primary);
  --btn-outline-width: 0px;
  overflow: visible;
  box-shadow: 0 0 0 var(--btn-outline-width) var(--btn-outline-color), var(--btn-shadow) !important;
  transition-timing-function: cubic-bezier(.2, .9, .3, 1.2);
}

.btn.btn-primary:not(:disabled, .disabled):hover:not(:active) {
  --btn-outline-width: 2px;
}
input.form-control:focus {
  box-shadow:0 0 4px 2px rgb(0 132 245 / 25%) !important
}