﻿@charset "UTF-8";
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?phv79r");
  src: url("../fonts/icomoon.eot?phv79r#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?phv79r") format("truetype"), url("../fonts/icomoon.woff?phv79r") format("woff"), url("../fonts/icomoon.svg?phv79r#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-wallet:before {
  content: "";
}

.icon-code:before {
  content: "";
}

.icon-avatar:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-info:before {
  content: "";
}

.icon-contract:before {
  content: "";
}

.icon-mark:before {
  content: "";
}

.icon-clock:before {
  content: "";
}

.icon-tel:before {
  content: "";
}

.icon-edit:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-id:before {
  content: "";
}

.icon-folder:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-eye:before {
  content: "";
}

.icon-email:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.icon-arrow-left:before {
  content: "";
}

.icon-pin:before {
  content: "";
}

:root {
  --body-color: #eef0f8;
  --text-color: #1e1e2d;
  --text-color-rgba: 30, 20, 45;
  --sidebar-bg: #1e1e2d;
  --sidebar-head-bg: #1b1b28;
  --input-bg: #f3f6f9;
  --blue: #009ef6;
  --blue-rgba: 0, 158, 246;
  --blue-hover: #008bd9;
  --blue-lt-rgba: 237, 248, 255;
  --white: #fff;
  --black: #000;
  --green: #1bc5bd;
  --green-alt: #1bc5bc;
  --green-lt: #c9f7f5;
  --green-dk: #00a739;
  --orange: #ff8c51;
  --orange-alt: #ffe5db;
  --yellow: #ffa800;
  --yellow-alt: #fff4de;
  --yellow-light: #fff7e7;
  --yellow-dk: #634100;
  --purple: #8a50fc;
  --purple-alt: #eee5ff;
  --pink: #f65464;
  --pink-alt: #ffe2e6;
  --red: #f23f44;
  --heading-color: #2F3044;
  --font-family-sans-serif: "Arial", "Helvetica Neue", sans-serif;
  --font-family-serif: "Times New Roman", "Times", "Baskerville", "Georgia", serif
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --poppins-family: "Poppins", sans-serif;
  --rubik-family: "Rubik", sans-serif;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  max-height: 1000000px;
}

body {
  font: 16px/1.75 var(--poppins-family);
  background: var(--body-color);
  color: var(--text-color);
  min-width: 320px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body:before {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  body.db-sidebar-active {
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  body.db-sidebar-active:before {
    opacity: 1;
    visibility: visible;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

a,
button,
input[type=submit] {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

p {
  color: rgba(var(--text-color-rgba), 0.7);
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  p {
    margin: 0 0 15px;
    font-size: 14px;
  }
}

ul {
  line-height: 1.75;
  color: rgba(var(--text-color-rgba), 0.7);
}

.db-button {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 12px 15px;
  min-width: 157px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .db-button {
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .db-button {
    font-size: 13px;
    line-height: 18px;
    min-width: 120px;
    padding: 8px 15px;
  }
}
.db-button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}
.db-button.db-button-outline {
  color: var(--blue);
  background: var(--white);
}
.db-button.db-button-outline:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}
.db-button.db-button-black {
  color: var(--white);
  background: var(--text-color);
  border-color: var(--text-color);
  min-width: 120px;
}
.db-button.db-button-black:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.db-button-sm {
  font-size: 13px;
  line-height: 20px;
  padding: 5px 10px;
  display: inline-block;
  text-align: center;
  color: var(--blue);
  background: rgb(var(--blue-rgba), 0.1);
  text-decoration: none;
  border-radius: 8px;
  width: 86px;
}
.db-button-sm:hover {
  background: rgb(var(--blue-rgba), 0.2);
}

#db-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.db-choose-block {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.db-choose-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  max-width: 1340px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .db-choose-block ul {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .db-choose-block ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 0 15px;
  }
}
.db-choose-block ul li {
  width: 50%;
  padding: 0 35px;
}
@media (max-width: 991px) {
  .db-choose-block ul li {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .db-choose-block ul li {
    width: 100%;
    padding: 8px 0;
  }
}

.db-choose-box {
  height: 300px;
  border-radius: 12px;
  padding: 48px 30px 16px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--white);
  position: relative;
}
@media (max-width: 991px) {
  .db-choose-box {
    height: 250px;
    padding: 30px 20px 20px;
  }
}
@media (max-width: 767px) {
  .db-choose-box {
    height: 220px;
  }
}
.db-choose-box:before {
  width: 100%;
  height: 65px;
  background: url("../images/lines.png") no-repeat;
  background-size: 100% 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 62%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.db-choose-box .db-choose-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.db-choose-box .db-icon {
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 767px) {
  .db-choose-box .db-icon {
    font-size: 35px;
  }
}
.db-choose-box .db-icon.icon-id {
  font-size: 49px;
}
@media (max-width: 767px) {
  .db-choose-box .db-icon.icon-id {
    font-size: 44px;
  }
}
.db-choose-box .db-icon-button {
  width: 48px;
  height: 48px;
  font-size: 20px;
  line-height: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 767px) {
  .db-choose-box .db-icon-button {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 8px;
  }
}
.db-choose-box .db-title {
  position: relative;
  z-index: 1;
}
.db-choose-box h1 {
  font-size: 30px;
  line-height: 1.5;
  font-family: var(--rubik-family);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.8px;
}
@media (max-width: 1199px) {
  .db-choose-box h1 {
    font-size: 25px;
    margin: 0 0 5px;
  }
}
@media (max-width: 991px) {
  .db-choose-box h1 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .db-choose-box h1 {
    font-size: 19px;
  }
}

.db-bg-green {
  background: var(--green-alt);
}

.db-bg-blue {
  background: var(--blue);
}

.db-bg-orange {
  background: var(--orange);
}

.db-bg-yellow {
  background: var(--yellow-alt);
}

.db-bg-purple {
  background: var(--purple-alt);
}

.db-bg-green-alt {
  background: var(--green-lt);
}

.db-bg-pink {
  background: var(--pink-alt);
}

.db-bg-orange-alt {
  background: var(--orange-alt);
}

.db-dashboard-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
}
@media (max-width: 1399px) {
  .db-dashboard-list {
    margin: 0 -10px;
  }
}
@media (max-width: 1199px) {
  .db-dashboard-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.db-dashboard-list > li {
  width: 36.3%;
  padding: 10px 20px;
}
@media (max-width: 1399px) {
  .db-dashboard-list > li {
    padding: 10px;
  }
}
@media (max-width: 1199px) {
  .db-dashboard-list > li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .db-dashboard-list > li {
    width: 100%;
  }
}
.db-dashboard-list > li:last-child {
  width: 27.4%;
}
@media (max-width: 1199px) {
  .db-dashboard-list > li:last-child {
    width: 100%;
  }
}

.db-dashboard-box {
  background: var(--white);
  border-radius: 12px;
  height: 100%;
  padding: 0 0 31px;
}
@media (max-width: 1199px) {
  .db-dashboard-box {
    padding: 0 0 15px;
  }
}
.db-dashboard-box .db-choose-box {
  height: 242px;
  padding: 20px 30px;
  margin: 0 0 -46px;
}
@media (max-width: 767px) {
  .db-dashboard-box .db-choose-box {
    padding: 15px;
    height: 220px;
  }
}
.db-dashboard-box .db-choose-box:before {
  top: 55%;
}
.db-dashboard-box .db-choose-box h1 {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--poppins-family);
}
@media (max-width: 991px) {
  .db-dashboard-box .db-choose-box h1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .db-dashboard-box .db-choose-box h1 {
    font-size: 20px;
  }
}

.db-stats-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
  position: relative;
  z-index: 1;
  padding: 0 30px;
}
@media (max-width: 1399px) {
  .db-stats-list {
    padding: 0 10px;
    margin: 0 -5px;
  }
}
.db-stats-list li {
  padding: 0 10px;
  width: 100%;
  max-width: 165px;
}
@media (max-width: 1399px) {
  .db-stats-list li {
    padding: 0 5px;
  }
}

.db-stats-box {
  width: 100%;
  height: 130px;
  border-radius: 12px;
  margin: 0 auto;
  padding: 11px 13px;
}
@media (max-width: 767px) {
  .db-stats-box {
    height: 120px;
  }
}
.db-stats-box .db-stats-icon {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 8px;
}
.db-stats-box strong {
  display: block;
}
.db-stats-box .db-stats-title {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.35;
  margin: 0 0 5px;
  font-weight: 500;
  margin: 0 0 13px;
}
@media (max-width: 767px) {
  .db-stats-box .db-stats-title {
    font-size: 12px;
  }
}
.db-stats-box .db-stats-figures {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 767px) {
  .db-stats-box .db-stats-figures {
    font-size: 20px;
  }
}
.db-stats-box.db-bg-yellow .db-stats-title,
.db-stats-box.db-bg-yellow .db-stats-figures {
  color: var(--yellow-dk);
}
.db-stats-box.db-bg-purple .db-stats-title,
.db-stats-box.db-bg-purple .db-stats-figures {
  color: var(--purple);
}
.db-stats-box.db-bg-purple .db-stats-icon {
  margin-left: 3px;
}
.db-stats-box.db-bg-green-alt .db-stats-title,
.db-stats-box.db-bg-green-alt .db-stats-figures {
  color: var(--green-alt);
}
.db-stats-box.db-bg-pink .db-stats-title,
.db-stats-box.db-bg-pink .db-stats-figures {
  color: var(--pink);
}
.db-stats-box.db-bg-orange-alt .db-stats-title,
.db-stats-box.db-bg-orange-alt .db-stats-figures {
  color: var(--orange);
}
.db-stats-box.db-bg-orange-alt .db-stats-title {
  opacity: 0.6;
}

.db-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 265px;
  overflow: hidden;
  z-index: 11;
  background: var(--sidebar-bg);
  -webkit-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .db-sidebar {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  }
}
.db-sidebar .db-sidebar-head {
  background: var(--sidebar-head-bg);
  overflow: hidden;
  padding: 15px 25px;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991px) {
  .db-sidebar .db-sidebar-head {
    height: 75px;
  }
}
@media (max-width: 767px) {
  .db-sidebar .db-sidebar-head {
    height: 55px;
  }
}
.db-sidebar .db-sidebar-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  height: 50px;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 19px;
  z-index: 1;
}
@media (max-width: 991px) {
  .db-sidebar .db-sidebar-trigger {
    display: none;
  }
}

.db-logo {
  font-size: 18px;
  line-height: 22px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--rubik-family);
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

.db-sidebar-wrap {
  width: 265px;
}

.db-sidebar-content {
  height: calc(100vh - 88px);
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .db-sidebar-content {
    height: calc(100vh - 75px);
  }
}
@media (max-width: 767px) {
  .db-sidebar-content {
    height: calc(100vh - 55px);
  }
}

.db-sidebar-nav {
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 40px 0;
}
.db-sidebar-nav > li > a {
  padding: 12px 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.db-sidebar-nav > li > a .db-icon {
  width: 25px;
  margin: 0 12px 0 0;
  text-align: center;
}
.db-sidebar-nav > li > a .db-text {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.db-sidebar-nav > li > a.db-opener {
  position: relative;
}
.db-sidebar-nav > li > a.db-opener:after {
  font-size: 6px;
  line-height: 1;
  color: var(--white);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "icomoon";
  content: "";
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.db-sidebar-nav > li:hover > a, .db-sidebar-nav > li.current > a, .db-sidebar-nav > li.active > a {
  opacity: 1;
  background: var(--blue);
}
.db-sidebar-nav > li.active > a.db-opener:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.db-sidebar-nav > li > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 10px 0 10px 55px;
  border-left: 2px solid var(--blue);
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.db-sidebar-nav > li > ul > li + li {
  padding-top: 10px;
}
.db-sidebar-nav > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 35px 0 12px;
  color: var(--white);
  text-decoration: none;
  position: relative;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.db-sidebar-nav > li > ul > li > a:after {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 100%;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.db-sidebar-nav > li > ul > li:hover > a {
  opacity: 1;
  background: var(--sidebar-head-bg);
}
.db-sidebar-nav > li > ul > li.current > a:after {
  display: block;
}

@media (min-width: 992px) {
  .db-sidebar-active .db-sidebar {
    width: 70px;
  }
}
@media (max-width: 991px) {
  .db-sidebar-active .db-sidebar {
    -webkit-transform: none;
            transform: none;
  }
}
@media (min-width: 992px) {
  .db-sidebar-active .db-sidebar .db-logo {
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .db-sidebar-active .db-sidebar .db-sidebar-trigger {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  .db-sidebar-active .db-sidebar-nav > li > a .db-text {
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .db-sidebar-active .db-sidebar-nav > li > ul {
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .db-sidebar-active .db-container {
    padding-left: 70px;
  }
}
@media (min-width: 992px) {
  .db-sidebar-active .db-content-header {
    left: 70px;
  }
}

.db-container {
  overflow: hidden;
  padding-left: 265px;
  padding-top: 88px;
  -webkit-transition: padding 0.25s ease-in-out;
  transition: padding 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .db-container {
    padding: 75px 0 0;
  }
}
@media (max-width: 767px) {
  .db-container {
    padding: 55px 0 0;
  }
}

.db-content-header {
  padding: 15px 40px;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--white);
  position: fixed;
  left: 265px;
  top: 0;
  right: 0;
  z-index: 9;
  -webkit-box-shadow: 0 10px 30px 0 rgba(82, 63, 105, 0.05);
          box-shadow: 0 10px 30px 0 rgba(82, 63, 105, 0.05);
  -webkit-transition: left 0.25s ease-in-out;
  transition: left 0.25s ease-in-out;
}
@media (max-width: 1399px) {
  .db-content-header {
    padding: 15px 20px;
  }
}
@media (max-width: 991px) {
  .db-content-header {
    height: 75px;
    left: 0;
    padding: 10px 15px 10px 65px;
  }
}
@media (max-width: 767px) {
  .db-content-header {
    height: 55px;
    padding: 5px 15px 5px 55px;
  }
}
.db-content-header .db-sidebar-opener {
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  border-radius: 6px;
  display: none;
}
@media (max-width: 991px) {
  .db-content-header .db-sidebar-opener {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .db-content-header .db-sidebar-opener {
    left: 8px;
  }
}
.db-content-header .db-sidebar-opener:hover {
  background: rgba(var(--blue-rgba), 0.1);
}
.db-content-header .db-header-title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  letter-spacing: 0.5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
@media (max-width: 767px) {
  .db-content-header .db-header-title {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .db-content-header .db-header-title {
    font-size: 14px;
    line-height: 1.25;
  }
}

.db-header-dropdown {
  position: relative;
}
.db-header-dropdown.active .db-dropdown-opener:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.db-dropdown-opener {
  font-size: 13px;
  line-height: 20px;
  border: 1px solid #bdc2de;
  border-radius: 25px;
  min-width: 185px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  text-decoration: none;
}
@media (max-width: 767px) {
  .db-dropdown-opener {
    font-size: 11px;
    line-height: 14px;
    min-width: inherit;
    height: 40px;
    padding: 2px;
  }
}
.db-dropdown-opener:after {
  font-size: 9px;
  line-height: 1;
  color: var(--blue);
  position: absolute;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "icomoon";
  content: "";
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .db-dropdown-opener:after {
    font-size: 6px;
    right: 10px;
  }
}
.db-dropdown-opener .db-user-avatar {
  font-size: 18px;
  line-height: 1.5;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 13px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(27, 197, 189, 0.2);
}
@media (max-width: 767px) {
  .db-dropdown-opener .db-user-avatar {
    width: 34px;
    height: 34px;
    margin: 0 5px 0 0;
  }
}
.db-dropdown-opener .db-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.db-dropdown-opener .db-user-text {
  padding-right: 34px;
}
@media (max-width: 767px) {
  .db-dropdown-opener .db-user-text {
    padding-right: 24px;
  }
}

.db-header-dropslide {
  padding: 20px 16px;
  background: var(--white);
  width: 217px;
  position: absolute;
  right: 0;
  top: 100%;
  -webkit-box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.db-header-dropslide .db-user-avatar {
  font-size: 32px;
  line-height: 1.5;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  overflow: hidden;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(27, 197, 189, 0.2);
}
.db-header-dropslide .db-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.db-header-dropslide .db-user-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  font-weight: 600;
  display: block;
  text-align: center;
  margin: 0 0 20px;
}
.db-header-dropslide ul {
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 8px 0 0;
  margin: 0 0 -2px;
  border-top: 1px solid #e5eaee;
}
.db-header-dropslide ul li {
  padding: 8px 0;
}
.db-header-dropslide ul li:last-child {
  padding-bottom: 0;
}
.db-header-dropslide ul li a {
  color: var(--black);
  opacity: 0.7;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.db-header-dropslide ul li a .db-icon {
  font-size: 17px;
  line-height: 1;
  margin: 0 10px 0 0;
  opacity: 0.6;
}
.db-header-dropslide ul li a .db-icon.icon-lock {
  font-size: 20px;
}
.db-header-dropslide ul li a:hover {
  opacity: 1;
}

.db-accordion :not(.active) .db-slide {
  display: none;
}

.db-open-close .db-slide {
  display: none;
}

.db-content-container {
  max-width: 1320px;
  padding: 30px 40px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .db-content-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .db-content-container {
    padding: 15px;
  }
}

.db-content {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 30px;
  min-height: 670px;
}
@media (max-width: 1199px) {
  .db-content {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .db-content {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .db-content {
    min-height: inherit;
  }
}

.db-forms {
  width: 100%;
}
.db-forms .db-form-group {
  overflow: hidden;
  margin: 0 0 28px;
}
@media (max-width: 991px) {
  .db-forms .db-form-group {
    margin: 0 0 21px;
  }
}
@media (max-width: 767px) {
  .db-forms .db-form-group {
    margin: 0 0 15px;
  }
}
.db-forms .db-form-group:only-child {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .db-forms .db-form-group:only-child {
    margin-bottom: 25px;
  }
}
.db-forms .db-label {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 1199px) {
  .db-forms .db-label {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .db-forms .db-label {
    font-size: 12px;
    margin: 0 0 5px;
  }
}
.db-forms .db-label span {
  font-weight: 400;
  margin: 0 0 0 5px;
}
.db-forms .db-label span.db-staric {
  color: var(--blue);
  margin: 0;
}
.db-forms .db-text-input {
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-bg);
  border-radius: 10px;
  color: var(--black);
  font-weight: 500;
  margin: 0;
  padding: 12px 18px;
  font-family: var(--poppins-family);
}
@media (max-width: 991px) {
  .db-forms .db-text-input {
    padding: 10px 16px;
  }
}
@media (max-width: 767px) {
  .db-forms .db-text-input {
    font-size: 13px;
    line-height: 18px;
    padding: 8px 15px;
    border-radius: 7px;
  }
}
.db-forms .db-text-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}
.db-forms .db-text-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}
.db-forms .db-text-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}
.db-forms .db-text-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}
.db-forms .db-text-input::placeholder {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}
.db-forms .db-text-input:focus {
  outline: none;
}
.db-forms .db-location-link {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: var(--black);
  padding: 15px 16px;
  text-decoration: none;
  margin: -15px 0 0;
}
@media (max-width: 991px) {
  .db-forms .db-location-link {
    margin: -5px 0 15px;
  }
}
@media (max-width: 767px) {
  .db-forms .db-location-link {
    margin: 0 0 15px;
  }
}
.db-forms .db-location-link .db-icon {
  font-size: 20px;
  line-height: 1;
  margin: 0 12px 0 0;
}
.db-forms .db-location-link .db-text {
  opacity: 0.7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.db-forms .db-location-link:hover .db-text {
  opacity: 1;
}

.db-two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -8px;
}
.db-two-columns .db-column {
  width: 50%;
  padding: 0 8px;
}
@media (max-width: 991px) {
  .db-two-columns .db-column {
    width: 100%;
  }
}
.db-two-columns .db-column.full-width {
  width: 100%;
}
.db-two-columns .db-column.full-width .db-form-group {
  width: 50%;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .db-two-columns .db-column.full-width .db-form-group {
    width: 100%;
  }
}
.db-two-columns .db-column.full-width .db-column-name {
  margin: 0 -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.db-heading-h2 {
  font-size: 24px;
  line-height: 1.185;
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: 0.6px;
  font-family: var(--rubik-family);
}
@media (max-width: 991px) {
  .db-heading-h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .db-heading-h2 {
    font-size: 18px;
    margin: 0 0 15px;
  }
}

.db-add-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 0 37px;
}
@media (max-width: 991px) {
  .db-add-more {
    padding: 5px 0 20px;
    margin: 0;
  }
}
.db-add-more .db-add-link {
  line-height: 1.5;
  display: block;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}
.db-add-more .db-add-link:hover {
  color: var(--blue-hover);
  text-decoration: underline;
}

.db-sections-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 0 30px;
  border-bottom: 1px solid #e5eaee;
}
@media (max-width: 767px) {
  .db-sections-nav {
    margin: 0 0 15px;
  }
}
.db-sections-nav > li {
  border-top: 1px solid #e5eaee;
  padding: 18px 0 18px 0;
}
@media (max-width: 767px) {
  .db-sections-nav > li {
    padding: 10px 0;
  }
}
.db-sections-nav > li.active > a > .db-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.db-sections-nav > li > a {
  text-decoration: none;
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}
.db-sections-nav > li > a.db-heading-h2 {
  margin: 0;
}
@media (max-width: 767px) {
  .db-sections-nav > li > a.db-heading-h2 {
    font-size: 16px;
  }
}
.db-sections-nav > li > a > .db-icon {
  font-size: 7px;
  line-height: 1;
  width: 32px;
  height: 32px;
  color: var(--white);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 0 10px;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .db-sections-nav > li > a > .db-icon {
    width: 24px;
    height: 24px;
    font-size: 5px;
    border-radius: 6px;
  }
}
.db-sections-nav > li > a:hover {
  color: var(--blue);
}

.db-case-content {
  padding: 0 0 2px;
}

.db-types-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -10px;
}
.db-types-list > li {
  padding: 0 10px;
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .db-types-list > li {
    width: 50%;
  }
}

.db-types-button {
  position: relative;
  display: block;
}
.db-types-button .db-types-box {
  background: #F3F6F9;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  width: 145px;
  height: 88px;
  display: block;
  cursor: pointer;
}
@media (max-width: 767px) {
  .db-types-button .db-types-box {
    width: 100%;
    text-align: center;
    padding: 13px 10px 11px;
  }
}
.db-types-button input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.db-types-button input[type=radio]:checked + .db-types-box {
  background: var(--blue);
  -webkit-box-shadow: 0px 22px 48px rgba(0, 157, 245, 0.3);
          box-shadow: 0px 22px 48px rgba(0, 157, 245, 0.3);
}
.db-types-button input[type=radio]:checked + .db-types-box svg path {
  fill: var(--white);
}
.db-types-button input[type=radio]:checked + .db-types-box .db-types-icon {
  background: rgba(var(--blue-lt-rgba), 0.1);
}
.db-types-button input[type=radio]:checked + .db-types-box .db-types-text {
  color: var(--white);
}
.db-types-button .db-types-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin: 0 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(var(--blue-rgba), 0.1);
}
@media (max-width: 767px) {
  .db-types-button .db-types-icon {
    margin: 0 auto 5px;
  }
}
.db-types-button .db-types-text {
  font-size: 14px;
  line-height: 1.5;
  display: block;
  color: #1a1a1a;
}
@media (max-width: 374px) {
  .db-types-button .db-types-text {
    font-size: 12px;
  }
}

.db-checkboxs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 3% 0 0;
}
@media (max-width: 1399px) {
  .db-checkboxs-list {
    padding: 5px 0 0;
  }
}
.db-checkboxs-list li {
  width: 30%;
  max-width: 290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 5px 0 4px;
}
@media (max-width: 1199px) {
  .db-checkboxs-list li {
    width: 50%;
    max-width: 40%;
  }
}
@media (max-width: 767px) {
  .db-checkboxs-list li {
    width: 100%;
    max-width: inherit;
  }
}
.db-checkboxs-list .db-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.db-checkboxs-list .db-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  display: block;
  color: #464E5F;
  margin: 0 10px 0 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
@media (max-width: 1399px) {
  .db-checkboxs-list .db-title {
    font-size: 15px;
  }
}
@media (max-width: 479px) {
  .db-checkboxs-list .db-title {
    font-size: 14px;
  }
}
.db-checkboxs-list .db-checkbox {
  margin: 0 20px 0 0;
}
@media (max-width: 1399px) {
  .db-checkboxs-list .db-checkbox {
    margin: 0 15px 0 0;
  }
}

.db-btn-view {
  font-size: 16px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--black);
  text-decoration: none;
}
.db-btn-view .db-icon {
  opacity: 0.5;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.db-btn-view:hover {
  color: var(--blue);
  background: rgba(var(--blue-rgba), 0.1);
}
.db-btn-view:hover .db-icon {
  opacity: 1;
}

.db-checkbox {
  position: relative;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.db-checkbox .db-label-text {
  font-size: 14px;
  line-height: 1.5;
  color: #464e5f;
  padding: 0 0 0 15px;
  display: inline-block;
}
.db-checkbox .db-checkbox-placeholder {
  width: 25px;
  height: 25px;
  font-size: 9px;
  line-height: 1;
  border-radius: 6px;
  background: var(--input-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 0 0;
}
.db-checkbox .db-checkbox-placeholder:before {
  opacity: 0;
}
.db-checkbox input[type=radio] + .db-checkbox-placeholder {
  border-radius: 100%;
}
.db-checkbox input[type=checkbox],
.db-checkbox input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.db-checkbox input[type=checkbox]:checked + .db-checkbox-placeholder,
.db-checkbox input[type=radio]:checked + .db-checkbox-placeholder {
  background: var(--blue);
  color: var(--white);
}
.db-checkbox input[type=checkbox]:checked + .db-checkbox-placeholder:before,
.db-checkbox input[type=radio]:checked + .db-checkbox-placeholder:before {
  opacity: 1;
}

.db-table-scroller {
  overflow: auto;
}

.db-digital-table {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
}
@media (max-width: 1399px) {
  .db-digital-table {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .db-digital-table {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .db-digital-table {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .db-digital-table {
    font-size: 12px;
    min-width: 500px;
    margin: 8px 0;
  }
}
.db-digital-table th {
  background: #f5f8fa;
  color: #464e5f;
  padding: 12px 20px;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 767px) {
  .db-digital-table th {
    padding: 12px 15px;
  }
}
.db-digital-table th:first-child {
  border-radius: 6px 0 0 6px;
  width: 40.4%;
}
@media (max-width: 1399px) {
  .db-digital-table th:first-child {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .db-digital-table th:first-child {
    width: 32%;
  }
}
.db-digital-table th:last-child {
  border-radius: 0 6px 6px 0;
  width: 24%;
}
@media (max-width: 1399px) {
  .db-digital-table th:last-child {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .db-digital-table th:last-child {
    width: 32%;
  }
}
.db-digital-table td {
  font-weight: 400;
  padding: 15px 20px 5px;
}
@media (max-width: 767px) {
  .db-digital-table td {
    padding: 15px 15px 5px;
  }
}
.db-digital-table .db-button-sm {
  width: 100%;
}
@media (max-width: 1399px) {
  .db-digital-table.db-add-style, .db-digital-table.five-cols, .db-digital-table.four-cols {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .db-digital-table.db-add-style, .db-digital-table.five-cols, .db-digital-table.four-cols {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .db-digital-table.db-add-style, .db-digital-table.five-cols, .db-digital-table.four-cols {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .db-digital-table.db-add-style, .db-digital-table.five-cols, .db-digital-table.four-cols {
    font-size: 12px;
    min-width: 720px;
    margin: 0 0 20px;
  }
}
.db-digital-table.db-add-style th:first-child, .db-digital-table.five-cols th:first-child, .db-digital-table.four-cols th:first-child {
  width: auto;
}
.db-digital-table.five-cols th:last-child {
  width: 120px;
}
.db-digital-table.four-cols th:last-child {
  width: 230px;
}

.db-buttons-footer {
  margin: 0 -7px;
}
@media (max-width: 767px) {
  .db-buttons-footer {
    margin: 0 -3px;
  }
}
.db-buttons-footer .db-button {
  margin: 0 7px;
}
@media (max-width: 767px) {
  .db-buttons-footer .db-button {
    margin: 0 3px;
  }
}
@media (max-width: 479px) {
  .db-buttons-footer .db-button {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 479px) {
  .db-buttons-footer .db-button + .db-button {
    margin-top: 10px;
  }
}

.db-letter-block {
  padding: 0 0 19px;
  margin: 0 0 30px;
  overflow: hidden;
  border-bottom: 1px solid #e5eaee;
}
.db-letter-block .db-letter-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.db-letter-block .db-letter-head .db-heading-h2 {
  margin: 0;
}
@media (max-width: 1199px) {
  .db-letter-block .db-letter-head .db-heading-h2 {
    margin: 0 0 15px;
  }
}
.db-letter-block .db-letter-head .db-button {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 991px) {
  .db-letter-block .db-letter-head .db-button {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .db-letter-block .db-letter-head .db-button {
    font-size: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 7px;
    width: 100%;
  }
}
.db-letter-block .db-letter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .db-letter-block .db-letter-form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .db-letter-block .db-letter-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.db-letter-block .custom-select {
  margin-left: 15px;
}
@media (max-width: 767px) {
  .db-letter-block .custom-select {
    width: 48%;
    margin: 10px 0 0;
  }
}
@media (max-width: 479px) {
  .db-letter-block .custom-select {
    width: 100%;
  }
}
.db-letter-block .custom-select.select-type {
  width: 244px;
}
@media (max-width: 767px) {
  .db-letter-block .custom-select.select-type {
    width: 48%;
  }
}
@media (max-width: 479px) {
  .db-letter-block .custom-select.select-type {
    width: 100%;
  }
}
.db-letter-block.style {
  border: 0;
  padding: 0;
  margin: 0;
}
.db-letter-block.style .db-letter-head {
  margin: 0 0 20px;
}
@media (max-width: 1199px) {
  .db-letter-block.style .db-letter-head {
    margin: 0;
  }
}

.db-inline-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 -7px;
}
@media (max-width: 767px) {
  .db-inline-form {
    margin: 0;
  }
}
.db-inline-form .db-form-group {
  width: 50%;
  max-width: 335px;
  padding: 0 7px;
}
@media (max-width: 1199px) {
  .db-inline-form .db-form-group {
    max-width: 265px;
  }
}
@media (max-width: 767px) {
  .db-inline-form .db-form-group {
    width: 100%;
    max-width: inherit;
    padding: 0;
  }
}
.db-inline-form .db-form-group .custom-select {
  margin: 0;
}
@media (max-width: 767px) {
  .db-inline-form .db-form-group .custom-select {
    width: 100%;
  }
}
.db-inline-form .db-button {
  margin-top: 28px;
  margin-left: 8px;
}
@media (max-width: 1199px) {
  .db-inline-form .db-button {
    min-width: inherit;
  }
}
@media (max-width: 767px) {
  .db-inline-form .db-button {
    margin: 0 0 20px;
  }
}
@media (max-width: 479px) {
  .db-inline-form .db-button {
    width: 100%;
  }
}

.db-letter-preview-holder {
  overflow: hidden;
}
.db-letter-preview-holder .db-letter-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.db-letter-preview-holder .db-letter-head .db-heading-h2 {
  margin: 0;
}
.db-letter-preview-holder .db-letter-head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .db-letter-preview-holder .db-letter-head-left .db-heading-h2 {
    margin: 0;
  }
}
.db-letter-preview-holder .db-back-button {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  margin: 0 10px 0 -10px;
}
.db-letter-preview-holder .db-back-button:hover {
  color: var(--blue);
}
.db-letter-preview-holder .db-letter-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 0;
}
@media (max-width: 767px) {
  .db-letter-preview-holder .db-letter-foot {
    display: block;
    padding: 15px 0 0;
  }
}

.db-links-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -30px;
}
@media (max-width: 1199px) {
  .db-links-list {
    margin: 0 -10px;
  }
}
@media (max-width: 767px) {
  .db-links-list {
    width: 100%;
    margin: 0 -10px 15px;
    font-size: 13px;
  }
}
@media (max-width: 374px) {
  .db-links-list {
    margin: 0 -7px 15px;
    font-size: 12px;
  }
}
.db-links-list li {
  padding: 0 30px;
}
@media (max-width: 1199px) {
  .db-links-list li {
    padding: 0 10px;
  }
}
@media (max-width: 374px) {
  .db-links-list li {
    padding: 0 7px;
  }
}
.db-links-list li a {
  display: block;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.db-links-list li a:hover {
  text-decoration: underline;
}

.db-edit-link {
  color: var(--blue);
  font-weight: 500;
  font-family: var(--rubik-family);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.db-edit-link:before {
  font-family: "icomoon";
  content: "";
  margin: 0 7px 0 0;
}
.db-edit-link:hover {
  color: var(--blue-hover);
}

.db-letter-preview {
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 991px) {
  .db-letter-preview {
    padding: 22px;
  }
}
@media (max-width: 767px) {
  .db-letter-preview {
    padding: 15px;
  }
}
.db-letter-preview h1 {
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 1;
  font-family: var(--rubik-family);
}
@media (max-width: 767px) {
  .db-letter-preview h1 {
    margin: 0 0 15px;
  }
}
.db-letter-preview ul {
  margin: 20px 0 20px 40px;
}
@media (max-width: 767px) {
  .db-letter-preview ul {
    margin: 15px 0 15px 15px;
  }
}

.db-editors-holder {
  overflow: hidden;
  margin: 0 0 50px;
}
@media (max-width: 991px) {
  .db-editors-holder {
    margin: 0 0 35px;
  }
}
@media (max-width: 767px) {
  .db-editors-holder {
    margin: 0 0 20px;
  }
}

.db-tracker-block {
  width: 100%;
}
.db-tracker-block .db-tracker-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.db-tracker-block .db-tracker-head .db-heading-h2 {
  margin: 0;
}
@media (max-width: 1199px) {
  .db-tracker-block .db-tracker-head .db-heading-h2 {
    margin: 0 0 15px;
  }
}
.db-tracker-block .db-tracker-head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .db-tracker-block .db-tracker-head-left .db-heading-h2 {
    margin: 0;
  }
}
.db-tracker-block .db-back-button {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  margin: 0 10px 0 -10px;
}
.db-tracker-block .db-back-button:hover {
  color: var(--blue);
}
.db-tracker-block .db-icon-info {
  font-size: 30px;
  line-height: 1;
  opacity: 0.5;
  color: var(--black);
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  margin: 0 0 0 15px;
}
.db-tracker-block .db-icon-info:hover {
  opacity: 0.75;
}
.db-tracker-block .db-tracker-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .db-tracker-block .db-tracker-form {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .db-tracker-block .db-tracker-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.db-tracker-block .db-tracker-form.db-forms {
  width: auto;
}
@media (max-width: 1199px) {
  .db-tracker-block .db-tracker-form.db-forms {
    width: 100%;
  }
}
.db-tracker-block .custom-select {
  margin-left: 15px;
}
@media (max-width: 1199px) {
  .db-tracker-block .custom-select {
    width: 49%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .db-tracker-block .custom-select {
    margin: 10px 0 0;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .db-tracker-block .db-form-search {
    width: 49%;
    max-width: inherit;
  }
}
@media (max-width: 767px) {
  .db-tracker-block .db-form-search {
    width: 100%;
  }
}
.db-tracker-block .db-table-scroller {
  margin: 0 -30px;
}
@media (max-width: 1199px) {
  .db-tracker-block .db-table-scroller {
    margin: 0 -20px;
  }
}
@media (max-width: 991px) {
  .db-tracker-block .db-table-scroller {
    margin: 0 -15px;
  }
}
.db-tracker-block .db-table-scroller + .db-heading-h2 {
  padding: 30px 0 0;
}
.db-tracker-block .db-table-scroller + .db-tracker-head {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e5eaee;
}
.db-tracker-block .db-table-scroller.db-no-margin {
  margin: 0;
}

.db-circle-check {
  width: 25px;
  height: 25px;
  font-size: 9px;
  line-height: 1;
  background: var(--green-dk);
  border-radius: 100%;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 0 0;
}

.db-form-search {
  position: relative;
  max-width: 236px;
}
.db-form-search .db-text-input {
  padding-right: 40px;
}
.db-form-search .db-btn-search {
  width: 32px;
  height: 32px;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #494a4b;
  text-decoration: none;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .db-form-search .db-btn-search {
    font-size: 14px;
    right: 5px;
  }
}
.db-form-search .db-btn-search:hover {
  color: var(--blue);
}

.db-tracker-table {
  font-size: 13px;
  line-height: 20px;
  width: 100%;
  border-collapse: collapse;
  color: var(--black);
}
@media (max-width: 1399px) {
  .db-tracker-table {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .db-tracker-table {
    min-width: 1000px;
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .db-tracker-table {
    font-size: 11px;
    min-width: 850px;
  }
}
.db-tracker-table th {
  color: var(--white);
  font-weight: 600;
  background: var(--sidebar-bg);
  padding: 14px;
  text-align: left;
}
@media (max-width: 1399px) {
  .db-tracker-table th {
    padding: 14px 12px;
  }
}
.db-tracker-table th:first-child {
  padding-left: 35px;
}
@media (max-width: 1399px) {
  .db-tracker-table th:first-child {
    padding-left: 12px;
  }
}
.db-tracker-table th:last-child {
  padding-right: 35px;
  width: 116px;
}
@media (max-width: 1399px) {
  .db-tracker-table th:last-child {
    padding-right: 12px;
    width: 100px;
  }
}
.db-tracker-table th[colspan] {
  text-align: center;
}
.db-tracker-table td {
  padding: 15px 14px;
  border-bottom: 1px solid #e5eaee;
}
@media (max-width: 1399px) {
  .db-tracker-table td {
    padding: 15px 12px;
  }
}
.db-tracker-table td:first-child {
  padding-left: 35px;
}
@media (max-width: 1399px) {
  .db-tracker-table td:first-child {
    padding-left: 12px;
  }
}
.db-tracker-table td:last-child {
  padding-right: 35px;
}
@media (max-width: 1399px) {
  .db-tracker-table td:last-child {
    padding-right: 12px;
  }
}
.db-tracker-table .db-date {
  display: block;
  color: #b5b5c3;
}
.db-tracker-table .db-checkbox,
.db-tracker-table .db-table-text {
  display: inline-block;
  vertical-align: middle;
}
.db-tracker-table .db-table-text {
  padding: 0 0 0 5px;
}
.db-tracker-table .db-link {
  color: var(--blue);
  text-decoration: none;
}
.db-tracker-table .db-link:hover {
  text-decoration: underline;
}
.db-tracker-table .db-button-sm {
  width: 100%;
}
@media (max-width: 1199px) {
  .db-tracker-table.db-add-style {
    min-width: inherit;
  }
}
@media (max-width: 991px) {
  .db-tracker-table.db-add-style {
    min-width: inherit;
  }
}
@media (max-width: 767px) {
  .db-tracker-table.db-add-style {
    min-width: 400px;
  }
}
.db-tracker-table.db-add-style th:last-child {
  width: 250px;
}
@media (max-width: 1199px) {
  .db-tracker-table.db-add-style th:last-child {
    width: auto;
  }
}

.db-color-red {
  color: var(--red);
}

.db-color-blue {
  color: var(--blue);
}

.db-color-green {
  color: var(--green-dk);
}

.db-color-yellow {
  color: va(--yellow);
}

.jcf-select {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #fff;
  min-width: 133px;
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-bg);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .jcf-select {
    border-radius: 7px;
  }
}

.jcf-select select {
  z-index: 1;
  left: 0;
  top: 0;
}

.jcf-select .jcf-select-text {
  font-size: 14px;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  display: block;
  margin: 0 36px 0 18px;
  padding: 12px 0;
  color: var(--black);
  opacity: 0.7;
  font-weight: 500;
  font-family: var(--poppins-family);
}
@media (max-width: 991px) {
  .jcf-select .jcf-select-text {
    padding: 10px 0;
    margin: 0 36px 0 16px;
  }
}
@media (max-width: 767px) {
  .jcf-select .jcf-select-text {
    font-size: 13px;
    line-height: 21px;
    padding: 8px 0;
    margin: 0 36px 0 15px;
  }
}

.jcf-select .jcf-select-opener {
  position: absolute;
  text-align: center;
  background: var(--input-bg);
  width: 36px;
  bottom: 0;
  right: 0;
  top: 0;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .jcf-select .jcf-select-opener {
    border-radius: 7px;
  }
}
.jcf-select .jcf-select-opener:before {
  font-size: 6px;
  line-height: 1;
  font-family: "icomoon";
  content: "";
  color: #494b4b;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body > .jcf-select-drop {
  position: absolute;
  margin: 1px 0 0;
  z-index: 9999;
}

body > .jcf-select-drop.jcf-drop-flipped {
  margin: 1px 0 0;
}

.jcf-select .jcf-select-drop {
  position: absolute;
  margin-top: 0px;
  z-index: 9999;
  top: 100%;
  left: -1px;
  right: -1px;
}

.jcf-select .jcf-drop-flipped {
  bottom: 100%;
  top: auto;
}

.jcf-select-drop .jcf-select-drop-content {
  border: 1px solid var(--input-bg);
  border-radius: 10px;
  overflow: hidden;
}

.jcf-list-box {
  overflow: hidden;
  display: inline-block;
  border: 1px solid #b8c3c9;
  min-width: 200px;
  margin: 0 15px;
}

.jcf-list {
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  background: var(--input-bg);
}
@media (max-width: 767px) {
  .jcf-list {
    font-size: 13px;
  }
}

.jcf-list .jcf-list-content {
  vertical-align: top;
  display: inline-block;
  overflow: auto;
  width: 100%;
}

.jcf-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jcf-list ul li {
  overflow: hidden;
  display: block;
}

.jcf-list .jcf-overflow {
  overflow: auto;
}

.jcf-list .jcf-option {
  overflow: hidden;
  cursor: default;
  display: block;
  padding: 5px 18px;
  color: var(--black);
  opacity: 0.7;
  height: 1%;
  font-weight: 500;
}
@media (max-width: 991px) {
  .jcf-list .jcf-option {
    padding: 5px 16px;
  }
}
@media (max-width: 767px) {
  .jcf-list .jcf-option {
    padding: 5px 15px;
  }
}

.jcf-list .jcf-disabled {
  background: #fff !important;
  color: #aaa !important;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
  background: rgba(var(--blue-rgba), 0.1);
  opacity: 1;
}

.jcf-list .jcf-optgroup-caption {
  white-space: nowrap;
  font-weight: bold;
  display: block;
  padding: 5px 9px;
  cursor: default;
  color: #000;
}

.jcf-list .jcf-optgroup .jcf-option {
  padding-left: 30px;
}

.db-user-block {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
}
@media (max-width: 767px) {
  .db-user-block {
    display: block;
  }
}

.db-left-column {
  min-height: 100vh;
  background: var(--sidebar-bg);
  width: 42.9%;
  padding: 85px 30px 110px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .db-left-column {
    padding: 100px 20px;
  }
}
@media (max-width: 767px) {
  .db-left-column {
    width: 100%;
    min-height: auto;
    display: block;
    padding: 25px 15px;
  }
}
.db-left-column .db-logo {
  position: absolute;
  left: 30px;
  top: 30px;
}
@media (max-width: 991px) {
  .db-left-column .db-logo {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .db-left-column .db-logo {
    position: static;
    margin: 0 0 25px;
  }
}
.db-left-column .db-sidebar-box {
  overflow: hidden;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 1199px) {
  .db-left-column .db-sidebar-box {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .db-left-column .db-sidebar-box {
    max-width: 100%;
    display: none;
  }
}
.db-left-column .db-sidebar-box p {
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 75px;
  letter-spacing: -0.5px;
}
@media (max-width: 1199px) {
  .db-left-column .db-sidebar-box p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .db-left-column .db-sidebar-box p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .db-left-column .db-sidebar-box p {
    font-size: 14px;
    letter-spacing: normal;
  }
}
.db-left-column .db-sidebar-box .db-sidebar-icon {
  overflow: hidden;
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .db-left-column .db-sidebar-box .db-sidebar-icon {
    margin: 0 0 10px;
  }
}
@media (max-width: 767px) {
  .db-left-column .db-sidebar-box .db-sidebar-icon img {
    width: 40px;
  }
}

.db-contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 32px;
  bottom: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 1199px) {
  .db-contact-info {
    font-size: 14px;
    line-height: 18px;
    left: 20px;
  }
}
@media (max-width: 991px) {
  .db-contact-info {
    left: 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .db-contact-info {
    position: static;
    font-size: 13px;
  }
}
.db-contact-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 18px;
}
@media (max-width: 1199px) {
  .db-contact-info li {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .db-contact-info li {
    padding: 0 15px 0 0;
  }
}
@media (max-width: 767px) {
  .db-contact-info li:last-child {
    padding-right: 0;
  }
}
.db-contact-info li .db-icon {
  font-size: 18px;
  line-height: 1;
  margin: 0 19px 0 0;
  color: var(--blue);
}
@media (max-width: 1199px) {
  .db-contact-info li .db-icon {
    font-size: 16px;
    margin: 0 12px 0 0;
  }
}
@media (max-width: 991px) {
  .db-contact-info li .db-icon {
    font-size: 12px;
    margin: 0 8px 0 0;
  }
}
.db-contact-info li a {
  color: var(--white);
  text-decoration: none;
}
.db-contact-info li a:hover {
  color: var(--blue);
}
.db-contact-info li a.db-email {
  letter-spacing: -0.5px;
}

.db-right-column {
  min-height: 100vh;
  background: var(--white);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding: 112px 80px 85px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .db-right-column {
    padding: 85px 50px;
  }
}
@media (max-width: 991px) {
  .db-right-column {
    padding: 85px 35px;
  }
}
@media (max-width: 767px) {
  .db-right-column {
    padding: 25px 15px;
    display: block;
    min-height: inherit;
  }
}
.db-right-column .db-new-user {
  position: absolute;
  right: 80px;
  top: 30px;
  font-size: 18px;
  line-height: 1.5;
  color: #a7a8bb;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .db-right-column .db-new-user {
    font-size: 16px;
    right: 50px;
  }
}
@media (max-width: 991px) {
  .db-right-column .db-new-user {
    font-size: 14px;
    right: 35px;
  }
}
@media (max-width: 767px) {
  .db-right-column .db-new-user {
    position: static;
    margin: 0 0 15px;
  }
}
.db-right-column .db-new-user a {
  color: var(--blue);
  text-decoration: none;
}
.db-right-column .db-new-user a:hover {
  color: var(--blue-hover);
}
.db-right-column .db-address {
  font-size: 16px;
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: -0.4px;
  min-width: 420px;
}
@media (max-width: 1199px) {
  .db-right-column .db-address {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .db-right-column .db-address {
    letter-spacing: normal;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .db-right-column .db-address {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.db-right-column .db-address .db-icon {
  color: var(--blue);
  font-size: 19px;
  line-height: 1;
  margin: 0 20px 0 0;
}
@media (max-width: 1199px) {
  .db-right-column .db-address .db-icon {
    font-size: 17px;
    margin: 0 15px 0 0;
  }
}
@media (max-width: 991px) {
  .db-right-column .db-address .db-icon {
    margin: 0 10px 0 0;
    font-size: 15px;
  }
}

.db-user-form {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .db-user-form {
    margin: 0 0 20px;
    max-width: 100%;
  }
}
.db-user-form .db-user-form-head {
  overflow: hidden;
  margin: 0 0 13px;
}
.db-user-form h1 {
  font-size: 30px;
  line-height: 1.5;
  color: var(--heading-color);
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
@media (max-width: 991px) {
  .db-user-form h1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .db-user-form h1 {
    font-size: 20px;
  }
}
.db-user-form p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.5px;
}
@media (max-width: 991px) {
  .db-user-form p {
    font-size: 14px;
    letter-spacing: normal;
  }
}
@media (max-width: 767px) {
  .db-user-form p {
    font-size: 13px;
  }
}
.db-user-form .db-check-wrap {
  margin-top: -10px;
  margin-bottom: 38px;
}
@media (max-width: 991px) {
  .db-user-form .db-check-wrap {
    margin-top: -5px;
  }
}
@media (max-width: 767px) {
  .db-user-form .db-check-wrap {
    margin-top: 0;
  }
}
.db-user-form .db-forms-button {
  overflow: hidden;
  margin: 0 0 15px;
}
.db-user-form .db-button {
  width: 100%;
}
.db-user-form .db-forget-password {
  overflow: hidden;
  text-align: right;
}
.db-user-form .db-link {
  font-size: 14px;
  line-height: 1.5;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}
.db-user-form .db-link:hover {
  color: var(--blue-hover);
}
.db-user-form .db-text-note {
  font-weight: 600;
  color: rgba(var(--text-color-rgba), 0.7);
  padding: 40px 0 20px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .db-user-form .db-text-note {
    padding: 20px 0;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .db-user-form .db-text-note {
    padding: 0 0 20px;
    font-size: 13px;
  }
}

.db-text-content {
  overflow: hidden;
}
@media (max-width: 1199px) {
  .db-text-content {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .db-text-content {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .db-text-content p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .db-text-content p {
    font-size: 14px;
  }
}
.db-text-content .db-heading-h2 {
  letter-spacing: 0.65px;
  margin: 0 0 15px;
}
.db-text-content .db-heading-h2 span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(30, 30, 45, 0.5);
  display: block;
  font-weight: 500;
  padding: 0 0 7px;
  letter-spacing: 0.15px;
}
.db-text-content .db-columns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .db-text-content .db-columns-wrap {
    display: block;
  }
}
.db-text-content .db-textbox {
  width: 41%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 15px;
}
@media (max-width: 1199px) {
  .db-text-content .db-textbox {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .db-text-content .db-textbox {
    width: 100%;
    margin: 0 0 25px;
  }
}
.db-text-content .db-textbox .db-textbox-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.db-text-content .db-textbox .db-heading-h2 {
  margin: 0 0 22px;
}
@media (max-width: 767px) {
  .db-text-content .db-textbox .db-heading-h2 {
    margin: 0 0 15px;
  }
}
.db-text-content .db-textbox p {
  letter-spacing: -0.45px;
  line-height: 1.728;
  margin: 0 0 28px;
}
@media (max-width: 767px) {
  .db-text-content .db-textbox p {
    margin: 0 0 15px;
    letter-spacing: normal;
  }
}
.db-text-content .db-textbox .db-button {
  width: 100%;
}
.db-text-content .db-info-column {
  width: 47%;
}
@media (max-width: 767px) {
  .db-text-content .db-info-column {
    width: 100%;
  }
}
.db-text-content .db-info-box {
  padding: 30px 30px 15px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .db-text-content .db-info-box {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .db-text-content .db-info-box {
    padding: 15px;
  }
}
.db-text-content .db-info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 0 85px;
}
@media (max-width: 767px) {
  .db-text-content .db-info-box ul {
    margin: 0 0 25px;
  }
}
.db-text-content .db-info-box ul li {
  margin: 0 0 18px;
}
.db-text-content .db-info-box ul .db-subtitle {
  display: block;
  font-weight: 500;
  color: var(--text-color);
  margin: 0 0 3px;
  letter-spacing: 0.5px;
}
.db-text-content .db-info-box ul .db-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.db-text-content .db-info-box ul .db-icon {
  font-size: 21px;
  line-height: 1;
  margin: 0 11px 0 0;
  color: var(--black);
}
@media (max-width: 1199px) {
  .db-text-content .db-info-box ul .db-icon {
    font-size: 18px;
    margin: 0 8px 0 0;
  }
}
.db-text-content .db-info-box ul .db-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
  opacity: 0.7;
}
.db-text-content .db-info-box .db-link-text .db-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.db-text-content .db-info-box .db-link-text .db-link:hover {
  text-decoration: underline;
}

.db-warning-block {
  background: var(--yellow-light);
  border: 1px dashed #ffa800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  padding: 20px;
  color: #3F4254;
  font-weight: 600;
  margin: 0 0 42px;
}
@media (max-width: 767px) {
  .db-warning-block {
    padding: 12px;
    margin: 0 0 30px;
  }
}
.db-warning-block .icon-mark {
  font-size: 15px;
  line-height: 1;
  width: 25px;
  height: 25px;
  min-width: 25px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(248, 156, 71, 0.3);
  color: #f89c47;
  margin: 0 15px 0 0;
}
@media (max-width: 767px) {
  .db-warning-block .icon-mark {
    margin: 0 10px 0 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 11px;
  }
}
.db-warning-block p {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 767px) {
  .db-warning-block p {
    font-size: 13px;
  }
}

.db-contact-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -7px -25px;
}
.db-contact-boxes .db-contact-column {
  width: 50%;
  padding: 0 7px;
  margin: 0 0 25px;
}
@media (max-width: 767px) {
  .db-contact-boxes .db-contact-column {
    width: 100%;
  }
}
.db-contact-boxes .db-contact-box {
  padding: 16px;
  border-radius: 10px;
  background: #F3F6F9;
  height: calc(100% - 47px);
}
@media (max-width: 991px) {
  .db-contact-boxes .db-contact-box {
    height: calc(100% - 40px);
  }
}
@media (max-width: 767px) {
  .db-contact-boxes .db-contact-box {
    height: calc(100% - 36px);
  }
}
.db-contact-boxes .db-map {
  overflow: hidden;
  border-radius: 10px;
  margin: -15px;
  height: calc(100% + 30px);
}
.db-contact-boxes .db-map img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

.db-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.db-contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 13px;
}
.db-contact-list li + li {
  border-top: 1px solid #e5eaee;
  padding: 13px 0;
}
.db-contact-list li:last-child {
  padding-bottom: 0;
}
.db-contact-list .db-contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  margin: 0 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(var(--blue-rgba), 0.1);
  border-radius: 12px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}
.db-contact-list .db-contact-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.db-contact-list .db-contact-text .subtitle {
  display: block;
  font-weight: 500;
  color: #464e5f;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 3px;
}
.db-contact-list .db-contact-text .text {
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: #b5b5c3;
  font-weight: 500;
}
.db-contact-list .db-contact-text .text a {
  color: #b5b5c3;
  text-decoration: none;
}
.db-contact-list .db-contact-text .text a:hover {
  color: var(--blue);
}

.db-conveyancer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .db-conveyancer-box {
    display: block;
  }
}
.db-conveyancer-box .db-conveyancer-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding: 0 15px 0 0;
}
.db-conveyancer-box .db-conveyancer-name {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  color: #464E5F;
  font-weight: 600;
  margin: 0 0 10px;
}
@media (max-width: 1199px) {
  .db-conveyancer-box .db-conveyancer-name {
    font-size: 18px;
    margin: 0 0 5px;
  }
}
.db-conveyancer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1199px) {
  .db-conveyancer-box ul {
    font-size: 14px;
  }
}
.db-conveyancer-box ul li {
  margin: 0 0 6px;
}
@media (max-width: 1199px) {
  .db-conveyancer-box ul li {
    margin: 0 0 4px;
  }
}
.db-conveyancer-box ul li:last-child {
  margin: 0;
}
.db-conveyancer-box .db-title {
  font-weight: 400;
  color: #464E5F;
  display: block;
  margin: 0 0 -5px;
}
.db-conveyancer-box .db-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}
.db-conveyancer-box .db-link:hover {
  color: var(--blue-hover);
}
.db-conveyancer-box .db-conveyancer-img {
  width: 102px;
  height: 102px;
  min-width: 102px;
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .db-conveyancer-box .db-conveyancer-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin: 0 0 10px;
  }
}
.db-conveyancer-box .db-conveyancer-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.db-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  padding: 10px;
}
.db-popup .db-popup-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
}
.db-popup .db-popup-box {
  min-height: 0;
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: 480px;
}
.db-popup .db-popup-holder {
  background: var(--white);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  width: 100%;
  padding: 30px;
}
@media (max-width: 479px) {
  .db-popup .db-popup-holder {
    padding: 15px;
  }
}
.db-popup .db-popup-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 24px;
}
.db-popup .db-popup-head .db-heading-h2 {
  margin: 0;
}
.db-popup .db-popup-close {
  font-size: 20px;
  line-height: 1;
  color: var(--black);
  opacity: 0.7;
  text-decoration: none;
  margin: 0 0 0 15px;
}
.db-popup .db-popup-close:hover {
  opacity: 1;
}
.db-popup .db-forms .db-form-group {
  margin: 0 0 35px;
}
.db-popup .db-forms .db-label {
  margin: 0 0 5px;
}
.db-popup .db-button {
  width: 100%;
  cursor: pointer;
}

.db-popup-active .db-popup {
  opacity: 1;
  visibility: visible;
}

.db-tabsnav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 9px;
  font-weight: 500;
  border-bottom: 1px solid #c7c7c7;
  margin: 0 0 30px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .db-tabsnav {
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .db-tabsnav {
    margin: 0 0 15px;
  }
}
.db-tabsnav span {
  color: var(--text-color);
  display: block;
  font-size: 14px;
}
.db-tabsnav strong {
  font-size: 14px;
  font-weight: 700;
}
.db-tabsnav li {
  padding: 0 0 10px;
  margin: 0 35px 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .db-tabsnav li {
    margin: 0 15px 0 0;
  }
}
.db-tabsnav li:after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.db-tabsnav li:last-child {
  margin: 0;
}
.db-tabsnav li.active:after, .db-tabsnav li:hover:after {
  width: 100%;
}
.db-tabsnav li a {
  width: 96px;
  display: block;
  color: #8f8f96;
  text-decoration: none;
}

.db-forms-content {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  .db-forms-content {
    font-size: 14px;
  }
}
.db-forms-content .db-forms-content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 44px;
}
@media (max-width: 767px) {
  .db-forms-content .db-forms-content-head {
    display: block;
    margin: 0 0 20px;
  }
}
.db-forms-content .db-logo-box {
  font-size: 24px;
  line-height: 1.5;
  max-width: 305px;
  width: 29.7%;
  text-align: right;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  font-family: var(--rubik-family);
}
@media (max-width: 1199px) {
  .db-forms-content .db-logo-box {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .db-forms-content .db-logo-box {
    margin-left: auto;
    width: 122px;
    max-width: 122px;
  }
}
.db-forms-content .db-logo-box img {
  display: block;
  max-width: none;
  width: 100%;
  height: auto;
}
.db-forms-content .db-heading-h2 {
  letter-spacing: 0.65px;
  line-height: 1.5;
  margin: 0 15px 0 0;
  max-width: 600px;
}
@media (max-width: 1199px) {
  .db-forms-content .db-heading-h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .db-forms-content .db-heading-h2 {
    font-size: 18px;
  }
}
.db-forms-content .db-heading-h2 span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(30, 30, 45, 0.5);
  display: block;
  font-weight: 400;
  padding: 0 0 7px;
  letter-spacing: 0.15px;
}
.db-forms-content .db-heading-h2 span.db-inline {
  display: inline;
  color: var(--black);
  font-weight: 500;
}
.db-forms-content .db-title {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (max-width: 1199px) {
  .db-forms-content .db-title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .db-forms-content .db-title {
    font-size: 16px;
  }
}
.db-forms-content .db-title + .db-title {
  margin: 0 0 25px;
}
.db-forms-content .db-title + .db-label {
  padding-top: 10px;
}
.db-forms-content .db-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0 0 30px;
}
.db-forms-content .db-list:last-child {
  margin: 0;
}
.db-forms-content .db-list li {
  position: relative;
  padding-left: 23px;
}
@media (max-width: 767px) {
  .db-forms-content .db-list li {
    padding-left: 20px;
  }
}
.db-forms-content .db-list li:before {
  background: var(--text-color);
  width: 4px;
  height: 4px;
  border-radius: 100%;
  position: absolute;
  left: 9px;
  top: 10px;
  content: "";
}
@media (max-width: 1199px) {
  .db-forms-content .db-list li:before {
    top: 8px;
  }
}
@media (max-width: 767px) {
  .db-forms-content .db-list li:before {
    left: 5px;
  }
}
.db-forms-content p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}
@media (max-width: 1199px) {
  .db-forms-content p {
    font-size: 14px;
  }
}
.db-forms-content p:last-child {
  margin: 0;
}
.db-forms-content p a {
  color: var(--blue);
  text-decoration: none;
}
.db-forms-content p a:hover {
  text-decoration: underline;
}
.db-forms-content .db-forms-content-foot {
  padding: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #c7c7c7;
}
@media (max-width: 1199px) {
  .db-forms-content .db-forms-content-foot {
    padding: 20px 0 0;
  }
}
@media (max-width: 991px) {
  .db-forms-content .db-forms-content-foot {
    padding: 15px 0 0;
  }
}
.db-forms-content .db-forms-number {
  color: var(--text-color);
}
.db-forms-content .db-buttons-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -12px;
}
@media (max-width: 1199px) {
  .db-forms-content .db-buttons-footer {
    margin: 0 -7px;
  }
}
.db-forms-content .db-buttons-footer .db-button {
  margin: 0 12px;
}
@media (max-width: 1199px) {
  .db-forms-content .db-buttons-footer .db-button {
    margin: 0 7px;
  }
}
@media (max-width: 767px) {
  .db-forms-content .db-buttons-footer .db-button {
    min-width: inherit;
    width: auto;
  }
}
.db-forms-content .db-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  margin: 0 12px 0 0;
}
@media (max-width: 1199px) {
  .db-forms-content .db-link {
    margin: 0 7px 0 0;
  }
}
.db-forms-content .db-link:hover {
  text-decoration: underline;
}

.db-outlined-forms {
  overflow: hidden;
  width: 100%;
  padding: 0 0 20px;
}
.db-outlined-forms .db-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .db-outlined-forms .db-form-group {
    display: block;
    margin: 0 0 20px;
  }
}
.db-outlined-forms .db-form-group.d-block {
  display: block;
}
.db-outlined-forms .db-form-group.d-block p {
  padding-left: 0;
}
.db-outlined-forms .db-label {
  width: 225px;
  min-width: 225px;
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-color);
  margin: 0 18px 0 0;
}
@media (max-width: 1199px) {
  .db-outlined-forms .db-label {
    min-width: 180px;
    width: 180px;
  }
}
@media (max-width: 767px) {
  .db-outlined-forms .db-label {
    width: 100%;
    margin: 0 0 7px;
  }
}
.db-outlined-forms .db-label strong {
  display: block;
}
.db-outlined-forms strong.db-label {
  font-weight: 700;
}
.db-outlined-forms .db-field-holder {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  position: relative;
}
@media (max-width: 767px) {
  .db-outlined-forms .db-field-holder {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
  }
}
.db-outlined-forms .db-text-input {
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  background: var(--white);
  padding: 11px 15px;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 1199px) {
  .db-outlined-forms .db-text-input {
    font-size: 14px;
  }
}
.db-outlined-forms textarea.db-text-input {
  resize: none;
  height: 153px;
}
.db-outlined-forms textarea.db-small {
  height: 81px;
}
.db-outlined-forms .db-postal-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 2px;
  padding: 20px 20px 19px;
  background: var(--white);
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1199px) {
  .db-outlined-forms .db-postal-box {
    padding: 19px 15px;
  }
}
@media (max-width: 767px) {
  .db-outlined-forms .db-postal-box {
    position: static;
    padding: 20px 0 0;
  }
}
.db-outlined-forms .db-postal-box .db-label {
  min-width: inherit;
  width: auto;
  margin: 0 8px 0 0;
}
@media (max-width: 1199px) {
  .db-outlined-forms .db-postal-box .db-label {
    min-width: inherit;
    width: auto;
  }
}
@media (max-width: 767px) {
  .db-outlined-forms .db-postal-box .db-label {
    margin: 0 0 7px;
  }
}
.db-outlined-forms .db-postal-box .db-text-input {
  width: 37px;
  height: 34px;
  border-radius: 5px;
  text-align: center;
  padding: 4px 5px;
}
@media (max-width: 1199px) {
  .db-outlined-forms .db-postal-box .db-text-input {
    width: 34px;
  }
}
.db-outlined-forms .db-postal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}
@media (max-width: 1199px) {
  .db-outlined-forms .db-postal-list {
    margin: 0 -2px;
  }
}
.db-outlined-forms .db-postal-list li {
  padding: 0 5px;
}
@media (max-width: 1199px) {
  .db-outlined-forms .db-postal-list li {
    padding: 0 2px;
  }
}
.db-outlined-forms .db-postal-field textarea.db-text-input {
  padding-bottom: 70px;
}
.db-outlined-forms .db-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.db-outlined-forms .db-form-group-row {
  overflow: hidden;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .db-outlined-forms .db-form-group-row {
    margin: 0 0 10px;
  }
}
.db-outlined-forms .db-form-group-row .db-label {
  min-width: inherit;
  width: 100%;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .db-outlined-forms .db-form-group-row .db-label {
    margin: 0 0 10px;
  }
}
.db-outlined-forms .db-form-group-row .db-text-info {
  display: block;
  margin: -15px 0 0;
}
.db-outlined-forms .db-form-group-row .db-text-info a {
  color: var(--blue);
  text-decoration: none;
}
.db-outlined-forms .db-form-group-row .db-text-info a:hover {
  text-decoration: underline;
}
.db-outlined-forms .db-form-group-row.db-add-space {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .db-outlined-forms .db-form-group-row.db-add-space {
    padding: 20px 0 10px;
  }
}
.db-outlined-forms .db-form-group-row .db-text-center {
  text-align: center;
  padding: 10px 0 0;
}
.db-outlined-forms .db-form-group-subrow {
  overflow: hidden;
}
.db-outlined-forms .db-form-group-subrow .db-text {
  display: block;
  margin: 0 0 20px;
}
.db-outlined-forms .db-checkbox .db-checkbox-placeholder {
  background: #ebebeb;
}

.db-form-property-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.db-form-property-list > li {
  margin: 0 0 22px;
}
.db-form-property-list .db-text {
  color: var(--text-color);
  padding: 6px 0 0;
  display: block;
}
.db-form-property-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: -4px 0;
}
.db-form-property-list ul > li {
  width: 28%;
}
@media (max-width: 767px) {
  .db-form-property-list ul > li {
    width: 50%;
  }
}
.db-form-property-list ul > li:first-child {
  width: 44%;
}
@media (max-width: 767px) {
  .db-form-property-list ul > li:first-child {
    width: 100%;
    margin: 0 0 10px;
  }
}
.db-form-property-list ul .db-checkbox-wrap {
  padding: 4px 0;
}

.db-checkboxes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: -10px -10px 20px;
}
@media (max-width: 767px) {
  .db-checkboxes-list {
    margin: 0 -10px 15px;
  }
}
.db-checkboxes-list li {
  padding: 5px 10px;
  min-width: 135px;
}
.db-checkboxes-list .db-form-group-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .db-checkboxes-list .db-form-group-field {
    width: 100%;
  }
}
.db-checkboxes-list .db-form-group-field .db-label-text {
  font-size: 14px;
  line-height: 1.5;
  color: #464e5f;
  padding: 0 15px 0 0;
  display: inline-block;
}
.db-checkboxes-list .db-form-group-field .db-form-group-inputfield {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  position: relative;
}
.db-checkboxes-list .db-form-group-field .db-form-group-inputfield + .db-label-text {
  padding: 0 0 0 15px;
}
.db-checkboxes-list .db-form-group-field .db-currency {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.db-checkboxes-list .db-form-group-field .db-text-input {
  min-width: 364px;
}
@media (max-width: 1199px) {
  .db-checkboxes-list .db-form-group-field .db-text-input {
    min-width: 250px;
  }
}
@media (max-width: 767px) {
  .db-checkboxes-list .db-form-group-field .db-text-input {
    width: 100%;
    min-width: 100%;
  }
}
.db-checkboxes-list.db-input-styles {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .db-checkboxes-list.db-input-styles {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.db-checkboxes-list.db-input-styles.align-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.db-checkboxes-list.no-margin {
  margin-bottom: 0;
}

.db-form-group-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 920px;
  margin: 0 0 15px;
}
.db-form-group-columns .db-form-group-col {
  width: 44%;
}
@media (max-width: 1199px) {
  .db-form-group-columns .db-form-group-col {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .db-form-group-columns .db-form-group-col {
    width: 100%;
  }
}
.db-form-group-columns .db-form-group-col .db-form-group-input {
  margin: 0 0 22px;
}
.db-form-group-columns .db-form-group-col .db-text-input {
  border: 0;
  padding: 2px 0 6px;
  border-radius: 0;
  border-bottom: 1px solid var(--black);
}
.db-form-group-columns.db-add-styles .db-form-group-col {
  width: 57%;
}
@media (max-width: 767px) {
  .db-form-group-columns.db-add-styles .db-form-group-col {
    width: 100%;
  }
}
.db-form-group-columns.db-add-styles .db-form-group-col:last-child {
  width: 32%;
}
@media (max-width: 1199px) {
  .db-form-group-columns.db-add-styles .db-form-group-col:last-child {
    width: 37%;
  }
}
@media (max-width: 767px) {
  .db-form-group-columns.db-add-styles .db-form-group-col:last-child {
    width: 100%;
  }
}

.db-contact-block {
  overflow: hidden;
}
.db-contact-block .db-contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .db-contact-block .db-contact-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin: 0;
  }
}
.db-contact-block .db-contact-col {
  width: 42%;
  padding-left: 7%;
}
@media (max-width: 1199px) {
  .db-contact-block .db-contact-col {
    width: 46%;
    padding-left: 3%;
  }
}
@media (max-width: 767px) {
  .db-contact-block .db-contact-col {
    width: 100%;
    padding-left: 0;
  }
}
.db-contact-block .db-contact-col:first-child {
  width: 58%;
  padding-left: 0;
}
@media (max-width: 1199px) {
  .db-contact-block .db-contact-col:first-child {
    padding-left: 0;
    width: 58%;
  }
}
@media (max-width: 767px) {
  .db-contact-block .db-contact-col:first-child {
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .db-contact-block .db-contact-col:nth-child(2) .db-label {
    display: none;
  }
}
@media (min-width: 768px) {
  .db-contact-block .db-contact-col:nth-child(2) .db-label:only-child {
    display: block;
  }
}
.db-contact-block .db-contact-col .db-contact-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .db-contact-block .db-contact-col .db-contact-group {
    margin: 0 0 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.db-contact-block .db-contact-col .db-contact-group:first-child {
  margin: 0 0 10px;
}
.db-contact-block .db-contact-col .db-contact-field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.db-contact-block .db-contact-col .db-label {
  min-width: inherit;
  width: 40%;
  text-align: left;
  margin: 0;
}
@media (max-width: 1199px) {
  .db-contact-block .db-contact-col .db-label {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .db-contact-block .db-contact-col .db-label {
    width: 100%;
    margin: 0 0 5px;
  }
}
.db-contact-block .db-contact-col .db-label:only-child {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .db-contact-block .db-contact-col .db-label:only-child {
    text-align: left;
  }
}

.db-table-block {
  overflow: hidden;
}
.db-table-block .db-table-head {
  overflow: hidden;
  margin: 0 0 25px;
  padding: 10px 0 0;
}
@media (max-width: 767px) {
  .db-table-block .db-table-head {
    margin: 0 0 15px;
  }
}
.db-table-block .db-table-head .db-heading-h3 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0 0 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .db-table-block .db-table-head .db-heading-h3 {
    margin: 0 0 15px;
    font-size: 18px;
  }
}
.db-table-block .db-table-head p {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .db-table-block .db-table-head p {
    margin: 0 0 15px;
  }
}
.db-table-block + .db-table-block {
  padding-top: 50px;
}

.db-form-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .db-form-table {
    min-width: 650px;
    font-size: 13px;
  }
}
.db-form-table th {
  padding: 6px 15px;
  text-align: center;
}
@media (max-width: 1399px) {
  .db-form-table th {
    padding: 6px 10px;
    min-width: inherit;
  }
}
.db-form-table th:first-child {
  padding-left: 0;
}
.db-form-table th:nth-last-child(2) {
  width: 155px;
}
@media (max-width: 1399px) {
  .db-form-table th:nth-last-child(2) {
    width: 120px;
  }
}
.db-form-table th:last-child {
  width: 265px;
  padding-right: 0;
}
@media (max-width: 1399px) {
  .db-form-table th:last-child {
    width: 220px;
  }
}
.db-form-table tr:first-child td {
  border: 0;
}
.db-form-table tr.db-subtitle-row td {
  border: 0;
}
.db-form-table tr.db-subtitle-row + tr td {
  border: 0;
}
.db-form-table td {
  text-align: center;
  padding: 10px 15px;
  border-top: 1px solid #c7c7c7;
}
@media (max-width: 1399px) {
  .db-form-table td {
    padding: 10px 10px;
  }
}
.db-form-table td:first-child {
  text-align: left;
  padding-left: 0;
  min-width: 100px;
}
.db-form-table td:last-child {
  padding-right: 0;
}
.db-form-table td:nth-last-child(2) .db-text-input {
  min-width: 80px;
}
.db-form-table td[colspan] {
  padding-top: 15px;
  padding-bottom: 15px;
}
.db-form-table .db-text-input {
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  background: var(--white);
  padding: 3px 10px;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  max-width: 275px;
  min-width: 200px;
}
@media (max-width: 1199px) {
  .db-form-table .db-text-input {
    font-size: 14px;
  }
}

.error-mobile {
    /* display: none; */
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545;
}

.error{
    color:red;
}