html,
body {
  height: 100%;
  margin: 0;
  /* overflow: hidden; */
}
body {
  min-width: 320px;
  font-size: 15px;
  line-height: 1.73333333;
  font-family: "Manrope", sans-serif;
  background-color: #fff;
}
* {
  box-sizing: border-box;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Full viewport height */
  /* min-height: calc(100vh - 80px); */
  overflow-x: hidden;
}
main {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.login-page {
  background: url(../images/home-img-min.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: unset;
}
#header {
  background: #fff;
  padding: 32px 20px;
  box-sizing: border-box;
  /* height: 130px; */
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.5s;
}
#header.fixed-header {
  padding: 20px 20px;
  box-shadow: 0 0 10px 0 rgba(44, 44, 68, 0.1);
}
.logo {
  max-width: 160px;
  margin: 0;
}
.logo a {
  display: block;
  height: auto;
}
.logo a img {
  width: 100%;
  height: auto;
  display: block;
}
#nav {
  margin-left: auto;
  margin-top: 10px;
}
#nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
#nav ul li {
  position: relative;
}
#nav ul li a {
  color: #000;
  display: block;
  position: relative;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  cursor: pointer;
}
#nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #0e76bb;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: -2;
}
#nav ul li a:hover {
  color: #0e76bb;
}
#nav ul li.active a:after,
#nav ul li:hover a:after {
  width: 100%;
  z-index: 1;
}

/* Style the footer */
#footer {
  background-color: #efefef;
  text-align: center;
  padding: 44px 20px 38px;
  height: 120px;
}
#footer.login-footer {
  padding: 0;
  height: inherit;
  background-color: inherit !important;
}
#footer.login-footer .holder {
  width: 626px;
  background: #f7f7f7;
  padding: 32px 24px;
  height: 120px;
}
.copyright {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  justify-content: end;
}
.login-page .copyright {
  text-align: left;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
}
.login-page .holder {
  display: flex;
  justify-content: space-between;
}
.copyright li {
  padding: 0 10px;
  color: #000;
  border-left: 1px solid #000;
}
.copyright li:first-child {
  border-left: 0;
}
.copyright li a {
  color: #000;
  text-decoration: none;
}
.copyright li a:hover {
  color: #0e76bb;
  text-decoration: underline;
}
.copyright a {
  color: #000;
  display: contents;
}
.copyright a:hover {
  color: #0e76bb;
  text-decoration: underline;
}
.logo-login {
  max-width: 164px;
  margin: 0 0 48px;
  position: relative;
  z-index: 100;
}
.login-page #footer .logo-login {
  max-width: 235px;
  margin: 0 46px 0 0;
}
.logo-login a {
  display: block;
  height: auto;
}
.logo-login a img {
  width: 100%;
  height: auto;
  display: block;
}
/* login page style */
.login-frame {
  width: 626px;
  /* height: 543px; */
  padding: 56px 48px 56px 48px;
  background: #fff;
  overflow: hidden;
}
.login-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  height: calc(100vh - 120px);

  /* background: url(../images/login-img.jpg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right; */
}
.login-first-col {
  padding: 20px;
  width: 50%;
  height: 100%;
}
.login-first-col img {
  width: auto;
  height: 100%;
  display: block;
}
.login-holder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.14);
}
/* .login-frame{
  width: 50%;
  max-width: 396px;
  margin: auto;
} */
.login-frame h4 {
  color: #242424;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
  margin: 0 0 16px;
}
.form-group {
  margin: 0 0 16px;
}
.form-group label {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  display: block;
  margin: 0 0 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 98%;
}
.form-group label a {
  color: #212529;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.form-group label a:hover {
  color: #0e76bb;
  text-decoration: underline;
}
.sitemap-handler .form-group label {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0e76bb;
  margin-bottom: 8px;
}
.form-group label em {
  color: #b10e1c;
  font-size: 14px;
  margin-top: -10px;
  font-style: normal;
}
.form-control {
  padding: 0.55rem 0.75rem;
  color: #242424;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  border-color: #0e76bb;
  /* border-bottom: 2px solid #0E76BB; */
}
.create-new-quote .form-control {
  border-color: #d1d1d1;
}
.create-new-quote .form-control {
  height: 40px;
  border-bottom: 2px solid #535353;
}
.create-new-quote .upload-field .form-control {
  border-right: 0;
}
.form-control:focus {
  box-shadow: none !important;
  border-color: #0e76bb;
}
.form-control.error {
  border-color: #ff0000;
}
.form-control.success {
  border-color: #008000;
}
#errorMessage {
  color: #ff0000;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin: 0 0 10px;
}
.btn-primary {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 8px 16px;
  border-color: #0e76bb;
  background-color: #0e76bb;
  margin-left: auto;
  border-radius: 0;
  float: right;
  border-radius: 4px;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active,
.btn-primary:hover {
  opacity: 0.9;
  border-color: #0e76bb;
  background-color: #0e76bb;
}

.password-holder {
  position: relative;
}
.password-holder .form-control {
  padding-right: 40px;
  color: #242424;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.field-icon {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 12px;
  color: #616161;
}
/* Home Page */
#main.main-content {
  background: url("../images/home-img-min.jpg") no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 130px;
}
.txt-block {
  width: 496px;
}
.banner-text {
  width: 100%;
  padding: 72px 40px 72px 40px;
  border-radius: 8px;
  background: #fff;
  margin: 0 0 40px;
}
.banner-text span {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  display: block;
  color: #000;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.banner-text h1 {
  color: #0e76bb;
  font-family: "Manrope", sans-serif;
  font-size: 144px;
  font-weight: 700;
  line-height: 120px;
  text-align: left;
  margin: 0 0 27px;
  padding: 0 0 27px;
  border-bottom: 2px solid #0e76bb;
}
.banner-text p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: -0.5px;
  text-align: left;
}
.three-columns {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.three-columns li {
  border-radius: 16px;
  background: #0e76bb;
  height: 128px;
  width: 33.33%;
}
.three-columns li:hover {
  box-shadow: 0 0 20px #fff;
  box-shadow: 0 0 20px #00000059;
}
.three-columns li a {
  display: block;
  padding: 24px 16px;
  color: #fff;
  height: 100%;
  text-decoration: none;
}
.three-columns img {
  margin-bottom: 8px;
}
.three-columns li p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.6px;
  text-align: left;
  margin: 0;
  color: #fff;
}
.forgot-link {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  color: #667483;
  text-decoration: underline;
}
.forgot-link:hover {
  color: #0e76bb;
}
/* .login-frame .user-box {
  position: relative;
  border: 1px solid #505D6D;
}

.login-frame .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-frame .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #505D6D;
  pointer-events: none;
  transition: .5s;
}

.login-frame .user-box input:focus ~ label,
.login-frame .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #505D6D;
  font-size: 12px;
} */
/* create new quote */
.create-new-quote, .mainWrap {
  display: block;
  background: #fff;
  padding: 135px 0 34px;
}
.quote-block {
  overflow: hidden;
  margin: 0 0 24px;
}
.quote-block .holder {
  display: flex;
  align-items: center;
  gap: 15px;
}
.txt-frame {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.94px;
  text-align: left;
  margin: 0 0 10px;
  color: #64748b;
}
.btn-holder {
  margin-left: auto;
  gap: 10px;
  display: flex;
}
.heading-holder {
  /* width: 45%; */
  overflow: hidden;
}
.sitemap-handler .heading-holder {
  width: 75%;
}
.heading-holder h1 {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
  margin: 0 0 8px;
  color: #191d23;
}
.sitemap-handler .heading-holder h2 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #252c32;
}
.heading-holder p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.94px;
  text-align: left;
  margin: 0;
  color: #64748b;
}
.no-background {
  color: #3a3a3a;
  border-color: #3a3a3a;
  background-color: inherit;
}
.btn-holder .btn {
  border-radius: 4px;
  border-color: #0e76bb;
  background-color: #0e76bb;
}
.btn-holder .btn img {
  margin: -3px 0 0 -3px;
}
.btn-holder .btn.no-background:hover,
.btn-holder .btn:hover {
  border-radius: 4px;
  border-color: #0e76bb;
  background-color: #0e76bb;
}
.btn-holder .btn.no-background {
  border-color: #3a3a3a;
  background-color: inherit;
}
.quote-block h2 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-align: left;
  margin: 0 0 8px;
  padding: 0 0 8px;
  color: #191d23;
  border-bottom: 2px solid #e7eaee;
}
#BrokerageField {
  display: none;
}
.field-holder {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 1;
}
.field-holder .form-group {
  width: 25%;
}
.field-holder .form-group.percentage {
  width: 30%;
}
.second-row .field-holder .group-address {
  width: 44%;
}
.field-holder .btn-holder {
  margin-bottom: 16px;
}
.second-row .form-group {
  width: 14%;
}
.manage-login .btn {
  padding: 4px 8px;
}
.align-left {
  float: left;
}
.new-quote-page {
  overflow-y: auto;
}
.third-row .form-group {
  width: 50%;
}
.custom-file-uploader {
  position: relative;
  width: 85px;
  height: 40px;
  color: #fff;
  margin: 0 !important;
  padding: 8px 16px 8px 16px;
  background: #3a3a3a99;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
}
.custom-file-uploader:active,
.custom-file-uploader:hover {
  opacity: 0.9 !important;
  color: #fff !important;
  background: #3a3a3a99 !important;
  border-color: #3a3a3a99 !important;
}
.custom-file-uploader input[type="file"] {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: default;
}
/* quote-helper page */
.tabs-holder {
  display: flex;
}
.tabs-holder .tabs-list {
  width: 20%;
  flex-direction: column;
}
.tab-content {
  width: 80%;
  padding-left: 45px;
}
.nav-item {
  margin: 0 0 16px;
  padding-left: 16px;
  position: relative;
}
.nav-item .nav-link.active::after {
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #0e76bb;
  content: "";
}
.nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.006em;
  text-align: left;
  color: #252c32;
  padding: 0;
}
.nav-link:hover {
  color: #0e76bb;
}
.nav-link.active {
  color: #0e76bb;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: none;
  padding: 0;
}
.table {
  table-layout: fixed;
}
.table .text-right {
  float: right;
  color: #0e76bb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
}
.table .text-right:hover {
  text-decoration: underline;
}
.table th {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.6px;
  text-align: left;
  background: #e9e9e9;
}
.table td {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
}
.table td a {
  color: #000;
  text-decoration: none;
}
.table td a:hover {
  color: #0e76bb;
  text-decoration: underline;
}
.btn-action {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-action a {
  display: block;
  height: 100%;
  color: #0e76bb;
}
.btn-action a:hover path {
  fill: #0e76bb;
}
.action-table {
  table-layout: auto;
}
.action-table th:first-child,
.action-table td:first-child {
  width: 80%;
}
.action-table th,
.action-table td {
  width: 20%;
}
.ErrorQuotesTable{
  min-width: 800px;
}
.tab-content h5 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.006em;
  text-align: left;
  color: #252c32;
  margin: 0 0 16px;
}
.search-box {
  display: flex;
  padding: 12px;
  border-radius: 4px;
  justify-content: space-between;
  background: #f7f8f9;
  margin-bottom: 30px;
}
.input-group.search-bar {
  position: relative;
  max-width: 425px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e7eaee !important;
}
.search-bar .form-control {
  background: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 19.95px;
  text-align: left;
  color: #64748b;
  padding: 0.63rem 0.75rem;
  padding-left: 0;
}
.btn-search {
  color: #64748b;
}
.btn-search:active,
.btn-search:focus,
.btn-search:hover {
  opacity: 0.9;
  border-color: #ffffff !important;
  background-color: #ffffff !important;
}
.btn-filter {
  padding: 9px 16px 8px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 21.28px;
  text-align: left;
  color: #64748b;
}
.btn-filter .fa-filter {
  margin-right: 5px;
}
.btn-bars {
  display: none;
}
.show-on-mobile {
  display: none;
}
.table-holder.table-responsive {
  overflow-x: auto;
  margin-bottom: 24px;
}
.table-holder.table-responsive .table th,
.table-holder.table-responsive .table td {
  width: inherit;
}
.table-holder {
  overflow: hidden;
}
.table-holder .table {
  table-layout: auto;
}
.table-holder .table {
  width: 190%;
}
.table-holder .table td,
.table-holder .table th {
  width: 10%;
}
.input-group-append {
  margin: auto !important;
  padding: 0;
  background: none !important;
  font-family: "Manrope", sans-serif;
}
.input-group-append .input-group-text {
  background: none !important;
  border: none !important;
  color: #fff;
  height: 100%;
}
.input-group .btn {
  border-radius: 0 4px 4px 0;
}
.form-select:focus {
  box-shadow: none !important;
  border-color: #0e76bb;
}
.third-row .form-group .form-group {
  width: 100%;
}
.create-new-quote textarea.form-control {
  height: 117px;
  max-height: 117px;
  overflow-y: auto;
  resize: none;
  border-right: 1px solid #d1d1d1 !important;
}
.strip-link-style {
  color: inherit;
  text-decoration: inherit;
}
.editGroupPage .table-holder .form-select {
  border: 0;
  padding: 0 0.75rem;
  height: 25px;
  font-size: 12px;
}
.editGroupPage .table-holder .form-group {
  margin: 0;
}
.editGroupPage .table-holder .form-control {
  border: 0;
  padding: 0;
  height: 25px;
  font-size: 12px;
}
.delete-user {
  display: flex;
  gap: 12px;
}
.delete-user .btn-primary {
  margin-left: 0;
}
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the text */
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.hide-input {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  display: block;
  padding-top: 5px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("../../images/calendar_month.svg") no-repeat;
  background-size: 100%;
}
.radio-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 5px;
}
.table.table-hover.table-bordered .btn-primary {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.btn-link {
  color: #212529;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.txt-frame {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.94px;
  text-align: left;
  margin: 0 0 10px;
  color: #64748b;
}

.vl-top{
  vertical-align: top;
}

.custom-card{
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.custom-card table td{
  font-family: "Manrope", sans-serif;
  padding: 10px 20px;
  font-size: 12px;
}
.custom-card .card-header td {
  font-size: 15px;
  line-height: 22px;
}
.custom-card .head {
  font-size: 15px;
  color: #979797;
  margin-bottom: 4px;
  display: inline-block;
}
.custom-card .card-footer{
  background: transparent;
}
.tab-content .divTable {
  border: 0px;
}

/* .divTableCell select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='none' stroke='%23343a40' stroke-width='.5' d='M0 0l2 2 2-2'/%3E%3C/svg%3E");
 
  background-repeat: no-repeat;
  background-position: 97% 14px;
  background-size: 12px 12px;
} */

/* start responsive style */
@media (max-width: 1600px) {
  #header {
    padding: 15px 20px;
  }
  .banner-text {
    margin: 0 0 30px;
    padding: 30px 30px 20px;
  }
  .three-columns li {
    height: 120px;
  }
  #main.main-content {
    padding-top: 120px;
    padding-bottom: 30px;
  }
  #nav ul li a {
    font-size: 16px;
  }
  .logo {
    max-width: 140px;
  }
  #footer {
    padding: 24px 20px 18px;
    height: 80px;
  }
  .logo-login {
    max-width: 154px;
  }
}
@media (max-height: 768px) {
  body {
    overflow: visible;
  }
}
@media (max-width: 768px) {
  .margin-24 {
    margin-bottom: 24px !important;
  }
  .mt-xs-2 {
    margin-top: 12px;
  }
  .login-page {
    background: url(../images/home-img-mobile.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .login-frame {
    width: 100%;
    margin: -40px 0 26px;
    box-shadow: 0px 4px 8px 0px #00000024;
  }
  .logo-login,
  .login-page #footer .logo-login {
    max-width: 101px;
    margin: 0 16px 0 0 !important;
  }
  .copyright br {
    display: none;
  }
  .copyright a {
    color: #000;
    display: contents;
  }
  .copyright a:hover {
    color: #0e76bb;
    text-decoration: underline;
  }
  #footer.login-footer {
    background-color: #f7f7f7 !important;
  }
  #footer.login-footer .holder {
    width: 100%;
    height: 102px;
    padding: 24px 4px;
    align-items: center;
  }
  .login-page .copyright br {
    display: none;
  }
  /* index page */

  .btn-bars {
    position: absolute;
    right: 16px;
    top: 50%;
    text-align: left;
    width: 24px;
    height: 24px;
    z-index: 99999;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    border-right: 1px solid rgba(84, 153, 217, 0.1);
    display: block;
    transform: translateY(-50%);
  }
  .btn-bars .icon {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    top: 10px;
    left: 0;
    height: 3px;
    width: 22px;
    background-color: #192d41;
  }
  .btn-bars .icon:before {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 22px;
    height: 3px;
    background-color: #192d41;
    content: "";
    top: -7px;
  }
  .btn-bars .icon:after {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 22px;
    height: 3px;
    background-color: #192d41;
    content: "";
    top: 7px;
  }
  .btn-bars.open .icon {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: transparent;
  }
  .btn-bars.open .icon:before {
    background: #0e76bb;
    -webkit-transform: rotateZ(45deg) scaleX(1.25) translate(3px, 3px);
    transform: rotateZ(45deg) scaleX(1.25) translate(3px, 3px);
  }
  .btn-bars.open .icon:after {
    background: #0e76bb;
    -webkit-transform: rotateZ(-45deg) scaleX(1.25) translate(6px, -6px);
    transform: rotateZ(-45deg) scaleX(1.25) translate(6px, -6px);
  }
  .btn-bars:hover {
    cursor: pointer;
  }
  #header {
    padding: 16px 0;
  }
  #header .container.d-flex.align-items-center {
    display: block !important;
  }
  #nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e76bb;
    transition: all 0.5s;
    margin-top: 0;
    padding: 50px 16px;
    transition: all 1s;
    /* transition: transform 0.6s cubic-bezier(0.65, 0, 0.07, 1), opacity 0.01s linear 0.6s, -webkit-transform 0.6s cubic-bezier(0.65, 0, 0.07, 1); */
    margin-right: calc(-100vh - 97px);
    width: 100%;
    z-index: 10;
    height: calc(100vh - 97px);
  }
  #nav.slide-menu {
    margin-right: 0;
    transition: all 0.5s;
  }
  #nav ul {
    gap: 30px;
    flex-direction: column;
    align-items: start;
  }
  #nav ul li a {
    color: #fff;
    font-family: Manrope;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    padding-bottom: 10px;
  }
  #nav ul li a:hover {
    color: #fff;
  }
  #nav ul li a:after {
    background-color: #fff;
  }
  .txt-block {
    width: 100%;
  }
  .banner-text h1 {
    font-size: 112px;
    line-height: 85px;
  }
  .banner-text p {
    font-size: 20px;
    line-height: 25px;
  }
  .banner-text {
    width: 100%;
    padding: 32px 24px;
    box-shadow: 0px 4px 8px 0px #00000024;
  }
  .hide-on-mobile {
    display: none;
  }
  .show-on-mobile {
    display: block;
  }
  .copyright {
    text-align: left;
  }
  #footer {
    padding: 24px 16px;
    height: auto;
  }
  html,
  body {
    overflow: visible;
  }
  #main.main-content {
    margin-bottom: 40px;
  }
  #main.main-content {
    background: url(../images/mobile-image.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 120px;
    margin-top: 70px;
    margin-bottom: 0;
  }
  /* creat new quote */
  .quote-block .holder {
    flex-direction: column;
    align-items: start;
  }
  .field-holder {
    gap: unset;
    flex-direction: column;
  }
  .field-holder .form-group.percentage,
  .second-row .field-holder .group-address,
  .field-holder .form-group {
    width: 100%;
  }
  .form-group {
    margin: 0 0 10px;
  }
  .show-on-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-holder .btn {
    float: none;
    margin-left: 0;
  }
  .create-new-quote {
    padding: 110px 0 16px;
  }
  #header.fixed-header {
    padding: 16px 0;
  }
  .btn-width-100 {
    flex-direction: column-reverse;
    width: 100%;
    padding-top: 30px;
  }
  .tabs-holder {
    flex-direction: column;
  }
  .tabs-holder .tabs-list {
    width: 100%;
    flex-direction: row;
    overflow-x: scroll;
    flex-wrap: nowrap;
    gap: 16px;
    white-space: nowrap;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  .tabs-list .nav-item {
    margin: 0;
    padding-left: 0;
  }
  .nav-item .nav-link.active::after {
    display: none;
  }
  .tab-content {
    width: 100%;
    padding-left: 0;
  }
  .btn-filter span {
    display: none;
  }
  .input-group.search-bar {
    max-width: inherit;
  }
  .search-box {
    gap: 10px;
  }
  .btn-filter {
    width: 40px;
    height: 40px;
    padding: 9px 10px;
  }
  .table {
    table-layout: inherit;
  }
  .login-page .logo-login {
    margin: 0 0 16px !important;
  }
  .action-table th:first-child,
  .action-table td:first-child {
    width: 70%;
  }
  .action-table th,
  .action-table td {
    width: 30%;
  }
  .editGroupPage .table-holder.table-responsive .table {
    table-layout: fixed;
  }
  .editGroupPage .table-holder.table-responsive .table th,
  .editGroupPage .table-holder.table-responsive .table td {
    width: 160px !important;
  }
  .sitemap-handler .heading-holder {
    width: 100%;
  }
  .w-50 {
    width: 100% !important;
  }
}
@media only screen and (width: 768px) and (resolution: 163dpi) {
  #main.main-content {
    padding-top: 80px;
    margin-top: 70px;
    margin-bottom: 0;
  }
}
@media (max-width: 375px) {
  .login-frame {
    margin: 40px 0 10px;
  }
  .banner-text p {
    font-size: 18px;
    line-height: 23px;
  }
}
