@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --facebook: #3c5b9b;
  --twitter: #fff;
  --linkedin: #027ba5;
  --youtube: #f70000;
  --instagram: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  --whatsapp: #00cf4d;
  --blackColor: #000;
}

html {
  scrollbar-gutter: 'stable both-edges';
}

html,
body {
  background: #fff;
  color: #545454;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  padding-top: 66px;
}

body.modal-open {
  padding-right: 15px !important;
}

body.modal-open header {
  padding-right: 15px !important;
}

@supports (-moz-appearance: none) {
  body.modal-open {
    padding-right: 0 !important;
  }

  body.modal-open header {
    padding-right: 0 !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #121a26;
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  margin-top: 1.3em;
}

a {
  color: #0083e8;
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

samp {
  display: none;
}

img {
  max-width: 100%;
}

/* Header*/

header {
  float: left;
  width: 100%;
  margin: 0;
  padding: 5px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.container-fluid {
  padding: 0 30px;
}

.gmHome header {
  padding: 5px 0;
  border-bottom: 0;
}

/* header.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px 0;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  animation-name: "fadeInDown";
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
} */

header .topLinks {
  width: 100%;
  color: #fff;
  padding: 0px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
}

header .topLinks li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  line-height: 35px;
  vertical-align: middle;
  position: relative;
  color: #333;
}

.registerHeader .topLinks li {
  color: #333;
}

header.registerHeader .topRight .topLinks li a {
  color: #ef3b24;
  margin-left: 3px;
  font-weight: 600;
}

header.registerHeader .topLinks li a.login {
  color: #fff;
  padding: 7px 12px;
}

header .topLinks li ul.topSubMenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  margin: 0;
  padding: 0;
  background: #fff;
  list-style: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border: solid 1px #ccc;
  display: none;
  z-index: 99;
  border-radius: 12px;
}

header .topLinks li:hover a {
  color: #ef3b24;
}

header .topLinks li:hover ul.topSubMenu {
  display: block;
  will-change: transform;
}

header .topLinks li:hover ul.topSubMenu:after {
  content: "";
  position: absolute;
  border: solid rgba(33, 43, 54, 0.15);
  border-width: 0 2px 2px 0;
  padding: 5px;
  left: 20px;
  transform: rotate(-135deg);
  top: -7px;
  background: #fafafa;
}

header .topLinks li ul.topSubMenu li {
  border-bottom: solid 1px #eee;
  width: 100%;
  display: block;
  line-height: normal;
}

header .topLinks li ul.topSubMenu li a {
  padding: 8px 12px;
  display: block;
  color: #333;
}

header .topLinks li ul.topSubMenu li a:hover {
  color: #ef3b24;
}

header .topLinks li ul.topSubMenu li:last-child {
  border: 0;
}

header .topLinks li:first-child a {
  border: 0;
}

header .topLinks li a {
  /* border-left: 1px solid rgba(0, 0, 0, .106); */
  font-size: 14px;
  text-decoration: none;
  color: #464646;
}

header .topLinks li a svg {
  width: 18px;
  height: 18px;
}

header .topLinks li a:hover,
header .topLinks li a:focus {
  color: #ef3b24;
}

header .topLinks li a.login {
  height: 30px;
  font-weight: 400;
  padding: 5px 10px;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  border-radius: 4px;
}

header .topLinks li a.login:hover,
header .topLinks li a.login:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

header .topLinks li a.listBtn {
  height: 30px;
  font-weight: 400;
  padding: 5px 10px;
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
  border-radius: 4px;
}

header .topLinks li a.listBtn:hover,
header .topLinks li a.listBtn:focus {
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

.topLeft {
  display: flex;
  align-items: center;
}

.topLeft form {
  width: 100%;
}

.topLeft .logo {
  max-width: max-content;
  width: 100%;
  margin-right: 10px;
}

.topLeft .searchBox {
  box-shadow: 0px 1px 2px 0px rgba(60, 64, 67, 0.25);
}

.topLeft .searchBox input {
  min-height: 38px;
}

.topLeft .searchBox .mic,
.topLeft .homeSearchBtn {
  height: 38px;
}

/* Header GM Directory */
.gmHome .explore {
  position: static;
}

.explore {
  position: static;
  height: 40px;
  line-height: 40px;
}

.explore .gm {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 0 10px 0 0;
  cursor: pointer;
  position: relative;
  line-height: normal;
}

.explore .gm:after {
  position: absolute;
  color: #fff;
  right: -10px;
  top: 2px;
  transition: all 0.5s ease;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'></path></svg>");
}

.explore:hover .gm:after {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z'/></svg>");
}

.explore .gm.active:after {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z'/></svg>");
}

.explore .gm:hover,
.explore .gm.active,
.explore:hover .gm {
  color: #ef3b24;
}

.exploreMenu {
  width: 100%;
  background: #fff;
  position: absolute;
  overflow: hidden;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 15px 36px -12px rgba(0, 0, 0, 0.5);
  top: 45px;
  left: 25px;
  right: auto;
  max-width: 1310px;
  margin: 0 auto;
  transition: all 0.3s ease;
  display: none;
  border-radius: 16px;
}

.gmHome .exploreMenu {
  top: 35px;
}

.explore:hover .exploreMenu {
  display: block;
}

/**/
.exploreMenuLeft {
  float: left;
  width: 22%;
  padding: 20px 0 20px 20px;
  height: 500px;
}

.exploreMenuLeft ul {
  margin: 0;
  padding: 0;
}

.exploreMenuLeft ul li {
  list-style: none;
  line-height: normal;
  display: block;
}

.exploreMenuLeft ul li a {
  border: 0;
  padding: 8px 12px;
  color: #333;
  font-weight: 600;
  font-size: 12px;
  padding: 10px 12px;
  width: 100%;
  text-transform: uppercase;
  position: relative;
  /* transition: all .3s ease; */
  display: flex;
  align-items: center;
}

.exploreMenuLeft ul li a span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

header .topLinks li:hover .exploreMenuLeft ul li a {
  color: #333;
  border: 0;
}

header .topLinks li:hover .exploreMenuLeft ul li a:hover {
  color: #ef3b24;
}

.exploreMenuLeft ul li a.active {
  color: #ef3b24;
  background-color: #f7f7f7;
  border-start-start-radius: 30px;
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  border-end-start-radius: 30px;
  position: relative;
}

.exploreMenuLeft ul li a.active::after {
  content: "";
  position: absolute;
  top: 43px;
  z-index: 0;
  inset-inline-end: 0;
  bottom: 0;
  height: 20px;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom: transparent;
  border-start-start-radius: 0;
  border-start-end-radius: 48px;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
  border-inline-end: 20px solid #fff;
}

.exploreMenuLeft ul li a.active::before {
  content: "";
  position: absolute;
  top: -20px;
  z-index: 9;
  inset-inline-end: 0;
  bottom: 0;
  height: 20px;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom: transparent;
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  border-end-end-radius: 48px;
  border-end-start-radius: 0;
  border-inline-end: 20px solid #fff;
}

.exploreMenuLeft ul li a.active .shape1 {
  position: absolute;
  top: -20px;
  width: 20px;
  height: 20px;
  inset-inline-end: 0;
  background: #f7f7f7;
}

.exploreMenuLeft ul li a.active .shape2 {
  position: absolute;
  top: 42px;
  width: 20px;
  height: 20px;
  inset-inline-end: 0;
  background: #f7f7f7;
}

.exploreMenuLeft ul li a i {
  vertical-align: sub;
  font-size: 18px;
  margin-right: 4px;
}

.exploreMenuLeft ul li a img {
  width: 22px;
  margin-right: 15px;
  display: inline-block;
}

.exploreMenuRight {
  float: left;
  width: 78%;
  /* border-left: 1px solid #d6d6d6; */
  padding: 20px;
  height: 500px;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  background: #f7f7f7;
}

.exploreMenuRight p {
  color: #333;
}

.exploreMenu .clopme {
  right: 0;
  position: absolute;
  top: 0;
  font-size: 30px;
  cursor: pointer;
  color: #333;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catPanel {
  display: none;
}

.exploreMenuRight .category-title {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
  color: #121a26;
  line-height: 1.3;
}

.exploreMenuRight .category-title2 {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
  color: #121a26;
  line-height: 1.3;
}

.exploreMenuRight .category-title2 a {
  color: #121a26;
}

.exploreMenuRight .category-title2 a:hover {
  color: #ef3b24;
}

.exploreMenuRight ul {
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  display: grid;
}

.exploreMenuRight ul li {
  float: left;
  width: 100%;
  padding: 0 10px 6px 0;
  position: relative;
  list-style: none;
  line-height: normal;
}

.exploreMenuRight ul li a {
  color: #ef3b24;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  white-space: pre;
  width: 100%;
  border: 0;
}

header .topLinks li:hover .exploreMenuRight ul li a {
  border: 0;
}

.exploreMenuRight ul li a:before {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
  transition: all 0.5s ease;
  margin-right: 3px;
}

.exploreMenuRight ul li ul {
  width: 100%;
  display: flex;
  margin-top: 5px;
  flex-direction: column;
}

.exploreMenuRight ul li ul li {
  width: 100%;
  line-height: normal;
}

.exploreMenuRight ul li ul li a {
  font-weight: 400;
  color: #333;
}

header .topLinks li:hover .exploreMenuRight ul li ul li a {
  font-weight: 400;
  color: #333;
}

.exploreMenuRight ul li ul li a:before {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
  transition: all 0.5s ease;
  margin-right: 3px;
}

.exploreMenuRight ul li a:hover {
  color: #ef3b24;
  text-decoration: underline;
  transition: all 0.2s ease;
}

header .topLinks li:hover .exploreMenuRight ul li ul li a:hover {
  color: #ef3b24;
}

/**/
.exploreMenuBottom {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #d6d6d6;
  padding: 10px 20px;
  font-weight: 600;
}

.exploreMenuBottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.exploreMenuBottom ul li {
  list-style: none;
  line-height: normal;
}

.exploreMenuBottom ul li {
  border-right: 0 solid #dedede;
  background: 0 0;
  float: left;
  color: #333;
}

.exploreMenuBottom ul li:first-child {
  width: 58%;
  font-weight: 500;
  margin-right: auto;
}

.exploreMenuBottom ul li:first-child a {
  display: inline-block;
  width: 100%;
  display: block;
  font-size: 18px;
  color: #ef3b24;
  padding-top: 0;
  font-weight: 600;
}

.exploreMenuBottom ul li:first-child a:hover {
  color: #0f507a;
}

.exploreMenuBottom ul li:nth-child(2) {
  margin-right: 8px;
}

.exploreMenuBottom ul li:nth-child(2) a {
  font-size: 14px;
  margin-right: 10px;
  height: inherit;
  padding: 10px 10px 10px 20px;
  display: inline-block;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  background: #ef3b24;
  color: #fff;
  border-color: #db321d;
  line-height: normal;
}

.exploreMenuBottom ul li:nth-child(2) a:hover,
.exploreMenuBottom ul li:nth-child(2) a:focus {
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

.exploreMenuBottom ul li:last-child a {
  font-size: 14px;
  margin-right: 10px;
  height: inherit;
  padding: 10px 10px 10px 20px;
  display: inline-block;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  line-height: normal;
}

.exploreMenuBottom ul li:last-child a:hover,
.exploreMenuBottom ul li:last-child a:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

header .topLinks li:hover .exploreMenuBottom ul li a {
  color: #fff;
}

.exploreMenuBottom ul li a i {
  vertical-align: sub;
  color: #fff;
  font-size: 20px;
  padding-right: 5px;
}

/**/

header .topRight .topLinks {
  justify-content: end;
  gap: 6px;
}

header .topRight .topLinks li a {
  padding: 7px 10px;
}

/* Home Search */
.homeWrapper {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  height: 100%;
}

.homeSearch {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
}

.homeSearch .logo {
  display: block;
  /* margin-top: 15px; */
}

.homeSearch .logo img {
  max-width: 350px;
  height: auto;
}

.homeSearch .homeTitleH1 {
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0 0;
  padding: 0;
  color: #333;
}

.searchWrapper {
  width: 100%;
  position: relative;
  max-width: 630px;
  margin: 15px auto 0;
}

.searchBox {
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dfe1e5;
  box-shadow: 0px 2px 8px 0px rgba(60, 64, 67, 0.25);
  border-radius: 30px;
  position: relative;
}

.searchBox .searchIcon {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 15px;
  z-index: 1;
}

.searchBox input {
  font-size: 14px;
  width: 100%;
  position: relative;
  min-height: 44px;
  margin: 0 auto;
  max-width: 584px;
  padding: 0 15px 0 40px;
  outline: 0;
  border: 0;
  border-radius: 30px;
}

.searchBox .mic {
  width: 44px;
  height: 44px;
  min-width: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchBox .mic svg {
  width: 20px;
  height: 20px;
}

.searchBox .mic:hover {
  color: #ef3b24;
}

.homeSearchBtn {
  width: 100px;
  min-width: 100px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px;
  height: 44px;
  background: #ef3b24;
  color: #fff;
  border: 1px solid #ef3b24;
  border-radius: 0 30px 30px 0;
}

.homeSearchBtn:hover,
.homeSearchBtn:focus,
.homeSearchBtn:focus-within,
.homeSearchBtn:focus-visible {
  background: #c62c19;
  border-color: #c62c19;
}

.requirementTitle {
  margin-top: 18px;
  display: block;
}

.requirementTitle a {
  color: #0f517b;
}

.requirementTitle a:hover {
  color: #ef3b24;
}

.topLeft form {
  width: 100%;
  max-width: 460px;
  margin-left: 25px;
}

.topLeft .searchWrapper {
  margin: 0;
  width: 100%;
  max-width: 450px;
  margin-left: 15px;
}

.topLeft .searchBox {
  border-radius: 4px;
}

.topLeft .homeSearchBtn {
  border-radius: 0 4px 4px 0;
}

/* Suggetion Option*/

.trending-box {
  position: absolute;
  background: #fff;
  top: auto;
  left: 0;
  z-index: 99;
  width: 100%;
  border-radius: 16px;
  padding: 0px;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  display: none;
  /* Hidden by default */
}

.trending-title {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0;
  color: #202124;
  text-align: left;
}

.trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trend-list li {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  line-height: normal;
  transition: background 0.2s;
  font-size: 14px;
  position: relative;
}

.trend-list li a {
  display: block;
  width: 100%;
  text-align: left;
}

.trend-list li:last-child {
  border-bottom: none;
}

.trend-list li:hover {
  background-color: #f1f3f4;
}

.trend-rank {
  width: 24px;
  text-align: center;
  font-weight: bold;
  color: #666;
  margin-right: 12px;
}

.trend-text {
  font-size: 14px;
  color: #202124;
}



.delete-btn {
  cursor: pointer;
  font-size: 14px;
  color: #ccc;
  margin-left: auto;
  transition: color 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.fileDeleteBtn {
  cursor: pointer;
  font-size: 14px;
  color: #ccc;
  margin-left: auto;
  transition: color 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.clear-all-btn {
  background-color: #f1f3f4;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 12px;
  display: block;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s;
}

.clear-all-btn:hover {
  color: #ef3b24;
}

/* Home Category*/

.mainCategory {
  background: #fff;
  border-radius: 16px;
  padding: 0px 0 15px;
  height: 100%;
  position: relative;
  z-index: 1;
  margin: 0;
}

.mainCategoryTitle {
  font-weight: 700;
  color: #333;
  font-size: 18px;
  margin: 0 0 10px;
  padding: 0;
}

.mainCategory .categoryWrapper {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
  gap: 10px;
  justify-content: center;
}

.mainCategory .categoryWrapper .categoryItem {
  list-style: none;
  text-align: center;
  width: calc(100% / 8 - 10px);
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bed1db;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: 14px;
  height: auto;
}

.mainCategory .categoryWrapper .categoryItem a {
  padding: 10px 5px;
  width: 100%;
  height: 100%;
}

.mainCategory .categoryWrapper .categoryItem:hover {
  -webkit-box-shadow: 0 0 10px #c4c4c4;
  -moz-box-shadow: 0 0 10px#c4c4c4;
  box-shadow: 0 0 10px #c4c4c4;
}

.mainCategory .categoryWrapper .categoryItem img {
  width: 40px;
  margin-bottom: 5px;
}

.mainCategory .categoryWrapper .categoryItem span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #333;
  height: 38px;
  line-height: normal;
}

.mainCategory .categoryWrapper .categoryItem:hover span {
  color: #ef3b24;
}

.mainCategory .categoryWrapper .categoryItem .categoryList {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  width: max-content;
  max-width: 880px;
  min-width: 700px;
  height: auto;
  background: #fff;
  z-index: 999;
  -webkit-filter: drop-shadow(0px 0.625rem 1.875rem rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 0.625rem 1.875rem rgba(0, 0, 0, 0.2));
  will-change: transform;
  padding: 15px;
  border-radius: 16px;
  display: none;
  margin: auto 0;
  height: auto;
  border: 0;
  transform: translateY(98%);
  border: 1px solid #bed1db;
  transition: all 0.3s ease-in-out;
}

.mainCategory .categoryWrapper .categoryItem:hover .categoryList {
  border: 1px solid #bed1db;
}

.mainCategory .categoryWrapper .categoryItem .categoryList:before {
  position: absolute;
  left: 45px;
  top: -8px;
  bottom: auto;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  z-index: 1;
}

.mainCategory .categoryWrapper .categoryItem .categoryList:after {
  position: absolute;
  left: 43px;
  top: -10px;
  bottom: auto;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 10px solid #bed1db;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:hover .categoryList {
  display: flex;
  align-items: start;
}

.categoryList .fullInfo {
  font-size: 14px;
  line-height: normal;
  color: #333;
  text-align: left;
  display: block;
  width: 100%;
  border: 0;
  height: auto;
}

.categoryList .fullInfo ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.categoryList .fullInfo ul li {
  display: block;
  width: calc(100% / 6 - 9px);
  box-shadow: none;
}

.categoryList .fullInfo ul li a {
  color: #ef3b24;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  height: auto !important;
  padding: 0 !important;
}

.categoryList .fullInfo ul li ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  gap: 0;
}

.categoryList .fullInfo ul li ul li {
  margin-bottom: 5px;
  position: relative;
  list-style: none;
  width: 100%;
}

.categoryList .fullInfo ul li ul li a {
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  padding: 0 !important;
}

/* .categoryList .fullInfo ul li ul li:after {
    position: absolute;
    left: 0;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
} */

.categoryList .fullInfo ul li ul li a:hover {
  color: #ef3b24;
  text-decoration: underline;
}

/*Leftside popup*/

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 4) .categoryList {
  left: auto;
  right: auto;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 4) .categoryList:after {
  position: absolute;
  right: 0;
  left: 0;
  top: -10px;
  bottom: auto;
  margin: 0 auto;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 10px solid #bed1db;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 4) .categoryList:before {
  position: absolute;
  right: 0;
  left: 0;
  top: -8px;
  bottom: auto;
  margin: 0 auto;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 6) .categoryList {
  left: auto;
  right: 0%;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 6) .categoryList:after {
  position: absolute;
  right: 43px;
  left: auto;
  top: -10px;
  bottom: auto;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 10px solid #bed1db;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 6) .categoryList:before {
  position: absolute;
  right: 45px;
  left: auto;
  top: -8px;
  bottom: auto;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

/*Right popup*/

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 9) .categoryList {
  right: auto;
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  background: #fff;
  z-index: 999;
  -webkit-filter: drop-shadow(0px 0.625rem 1.875rem rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 0.625rem 1.875rem rgba(0, 0, 0, 0.2));
  will-change: transform;
  padding: 15px;
  border-radius: 16px;
  display: none;
  margin: auto 0;
  height: auto;
  border: 0;
  bottom: auto;
  transform: translateY(-99%);
  border: 1px solid #bed1db;
  transition: all 0.3s ease-in-out;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 9) .categoryList:before {
  position: absolute;
  right: auto;
  left: 45px;
  top: auto;
  bottom: -8px;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  z-index: 1;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 9) .categoryList:after {
  position: absolute;
  right: auto;
  left: 43px;
  bottom: -10px;
  top: auto;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 0;
  border-top: 10px solid #bed1db;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 9):hover .categoryList {
  display: flex;
  align-items: start;
}

/*Leftside popup*/

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 12) .categoryList {
  left: auto;
  right: auto;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 12) .categoryList:before {
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: -8px;
  margin: 0 auto;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 12) .categoryList:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  top: auto;
  margin: 0 auto;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 0;
  border-top: 10px solid #bed1db;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 14) .categoryList {
  left: auto;
  right: 0%;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 14) .categoryList:before {
  position: absolute;
  top: auto;
  right: 45px;
  left: auto;
  bottom: -8px;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.mainCategory .categoryWrapper .categoryItem:nth-child(n + 9) .categoryList:after {
  position: absolute;
  left: auto;
  right: 43px;
  bottom: -10px;
  top: auto;
  margin: auto 0;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 0;
  border-top: 10px solid #bed1db;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

/**/
.gmHome {
  display: flex;
  flex-direction: column;
  height: 100%;
  height: calc(100% - 45px);
}

/* Home Locations */
.homeRegionSection {
  float: left;
  width: 100%;
  padding: 0;
  background: #fff;
}

.homeRegionSection .homeRegionSectionTitle {
  margin: 0 0 10px;
  padding: 0;
  font-size: 22px;
  color: #333;
  font-weight: 600;
  line-height: normal;
}

.homeRegionSection .list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.homeRegionSection .list li {
  display: inline-block;
}

.homeRegionSection .list li:first-child {
  font-weight: 600;
  color: #22bdef;
}

.homeRegionSection .list li h2 {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #0f507a;
  margin: 0;
  padding: 0;
}

.homeRegionSection .list li h3 {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #22bdef;
  margin: 0;
  padding: 0;
}

.homeRegionSection .list li a {
  display: flex;
  flex-direction: column;
  /* width: 90px;
    height: 90px; */
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
}

.homeRegionSection .list li a:hover {
  color: #ef3b24;
  border-color: #ef3b24;
}

.homeRegionSection .list li a img {
  height: 53px;
  width: 53px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
}

.homeRegionSection .list li a span {
  display: block;
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid #bed1db;
  border-radius: 20px;
}

.homeRegionSection .list li a span svg {
  width: 12px;
  height: 12px;
}

/**/
.homeBottom {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 40px;
  background: #f7f7f7;
}

.homeBottom p {
  margin: 0;
  padding: 0;
  line-height: 40px;
}

.homeBottom p a {
  color: #545454;
}

.homeBottom p a:hover {
  color: #ef3b24;
}

.bottomLinks {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: end;
}

.bottomLinks li {
  list-style: none;
  color: #333;
  font-size: 14px;
  line-height: normal;
  padding: 0 15px;
  line-height: 40px;
}

.bottomLinks li:last-child {
  padding-right: 0;
}

.bottomLinks li a {
  color: #333;
}

.bottomLinks li a:hover {
  color: #ef3b24;
}

.footerLogo {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 2px 0;
}

.footerLogo img {
  max-width: 70px;
  width: 100%;
}

/* Inner pages Footer */
.wed-hom-footer {
  float: left;
  width: 100%;
  padding: 30px 0 10px;
  background: #eee;
}

.footerTitle {
  float: left;
  width: 100%;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.footerLinks {
  margin: 0 0 15px;
  padding: 0;
  display: block;
  width: 100%;
  float: left;
}

.footerLinks li {
  width: 33%;
  margin-bottom: 8px;
  list-style: none;
  float: left;
}

/* .footerLinks li:nth-child(even) {
  float: right;
} */

.footerLinks li a {
  color: #444;
  font-size: 13px;
  overflow: hidden;
  width: 95%;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}

.footerLinks li a:hover,
.footerLinks li a:focus {
  color: #ef3b24;
}

.footerLinks li a.viewAllBtn {
  color: #ef3b24;
}

.footerLinks li a.viewAllBtn:hover,
.footerLinks li a.viewAllBtn:focus {
  color: #0f507a;
  text-decoration: underline;

}

/* Social Media */
.socialMedia {
  margin: 0 0 15px;
  list-style: none;
  padding: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  float: left;
}

.socialMedia li {
  margin: 0px;
  display: inline-block;
  padding: 0;
  border: 0;
  width: auto !important;
}

.socialMedia li a {
  transition: background 400ms ease-in-out;
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.socialMedia li a svg {
  width: 15px;
  height: 15px;
  margin: 0;
  padding: 0;
}

.socialMedia li.facebook a {
  background: var(--facebook);
  color: #fff;
}

.socialMedia li.twitter a {
  background: var(--blackColor);
  color: #fff;
}

.socialMedia li.linkedin a {
  background: var(--linkedin);
  color: #fff;
}

.socialMedia li.youtube a {
  background: var(--youtube);
  color: #fff;
}

.socialMedia li.instagram a {
  background: var(--instagram);
  color: #fff;
}

/* Go To Top */
.goToTop {
  position: fixed;
  z-index: 8030;
  bottom: 65px;
  right: 30px;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: none;
  background: #ef3b24;
}

.goToTop:hover {
  background: #0f507a;
  color: #fff;
}

.goToTop svg {
  width: 18px;
  height: 18px;
}

/* Video Modal */
#videoModal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  outline: 0;
  background-color: #eee;
  padding: 8px;
  border-radius: 0;
}

#videoModal.modal.show {
  display: flex !important;
  align-items: center;
}

#videoModal.modal.show .modal-dialog {
  margin: auto;
  width: 100%;
}

#videoModal .modal-content {
  border-radius: 0;
}

#videoModal .modal-body {
  padding: 0;
}

#videoModal iframe {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.videoModalInfo {
  padding: 10px 15px;
  display: block;
  width: 100%;
}

.videoModalInfoTitle {
  font-weight: 600;
  font-size: 16px;
  color: #ef3b24;
  margin-bottom: 5px;
}

.soldByModal {
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  line-height: normal;
  margin-bottom: 15px;
}

.soldByModalName {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  padding: 0;
  font-size: 16px;
  color: #1b1d1d;
}

.byText {
  font-size: 15px;
  color: #1b1d1d;
  font-weight: 600;
}

.byCompany {
  color: #4d4d4d;
  font-size: 14px;
}

.modalVerified {
  font-size: 13px;
  flex-wrap: wrap;
  color: #0f0f10;
  display: flex;
  margin-top: 10px;
}

.modalLeading,
.modalSeal {
  margin-right: 10px;
  align-items: center;
  display: flex;
}

.modalLeading img,
.modalSeal img {
  width: 20px;
  height: 22px;
  margin: 0 3px 0 0;
}

/* Breadcrumbs */
.breadcrumbs {
  float: left;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  background: #f7f7f7;
  /* margin-top: 66px; */
}

.breadcrumbs ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.breadcrumbs ul li {
  list-style: none;
  color: #ef3b24;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs ul li+li:before {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" fill="%23333" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>');
  padding: 0 3px;
  display: inline-flex;
  position: relative;
  margin-top: 2px;
}

.breadcrumbs ul li a {
  color: #333;
}

.breadcrumbs ul li a:hover {
  color: #ef3b24;
}

/**/
.listDirectory {
  float: left;
  width: 100%;
  padding: 30px 0 30px;
}

.listItem {
  display: block;
  padding: 0;
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}

.listHeader {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #333;
}

.listHeader a {
  display: flex;
  align-items: center;
  color: #333;
}

.itemLogo {
  width: 30px;
  border-radius: 4px;
  border: 1px solid #bed1db;
  padding: 3px;
  margin-right: 10px;
}

.ItemInfo {
  line-height: normal;
}

.listItemMoreInfoTitle {
  font-weight: 600;
  font-size: 16px;
  color: #0f507a;
  margin-top: 0;
  margin-bottom: 5px;
}

.listItemMoreInfoTitle a {
  color: #0f507a;
}

.ItemInfo .link {
  font-size: 12px;
}

.listItem p {
  font-size: 13px;
  line-height: 22px;
}

.listItem .listItemLeft a:hover .listItemMoreInfoTitle,
.listItem .listItemLeft:hover .listItemMoreInfoTitle a {
  text-decoration: underline;
}

.listItem:hover .ItemInfo .ItemInfoTitle {
  color: #0f507a;
}

/*category Items 5 images */
.catListWidthImg {
  display: flex;
  flex-flow: row wrap;
  margin: 0 0 10px;
  padding: 0;
  gap: 15px;
}

.catItem {
  width: calc(100% / 5 - 14px);
  border: 1px solid #bed1db;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: auto;
}

.catItem .image {
  aspect-ratio: 1/1;
  border-bottom: 1px solid #bed1db;
}

.catItem img {
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.catItem .catItemName {
  display: flex;
  align-items: center;
  padding: 8px;
  line-height: normal;
  font-size: 11px;
}

.catItem .catItemName a {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.catItem:hover .catItemName a,
.catItem .catItemName a:focus {
  color: #ef3b24;
}

/**/
.listItemLeft {
  width: 100%;
  padding: 15px;
  position: relative;
}

.listItemLeft .verified {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 75px;
}

.listItemRight {
  width: 25%;
  height: 100%;
  padding: 15px;
}

.itemCompany {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
}

.itemCompany .cboxr {
  /* width: calc(100% - 120px);
    padding-right: 7px; */
}

.itemCompany .title {
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  color: #ef3b24;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.textLimit {
  margin-bottom: 35px;
  font-size: 14px;
  text-align: justify;
  color: #333;
}

.textImg {
  float: right;
  max-width: 115px;
  margin: 0 0 15px 15px;
  border: 1px solid #bed1db;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}

.textImg img {
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.companyName {
  line-height: normal;
}

.itemLocation {
  font-size: 13px !important;
  color: #7f7f7f;
  display: block;
  white-space: normal;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  overflow: initial !important;
  margin: 0;
}

.itemLocation svg {
  fill: #7f7f7f;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

/**/

.memberBox {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #333;
}

a.memberBox:hover,
a.memberBox:focus {
  color: #ef3b24;
}

.memberBox .memberIcon svg,
.memberBox .memberIcon img {
  width: 25px;
  height: 25px;
  min-width: 25px;
}

.memberBox .memberIcon {
  width: 25px;
  margin-right: 5px;
}

.memberBox .memberText {
  line-height: normal;
  margin: 0;
}

.memberBox .memberText {
  font-size: 14px;
  font-weight: 600;
}

.memberBox strong {
  font-weight: 600;
  color: #000;
  font-size: 10.5px;
}

/**/
.memberText {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 10px;
}

.memberStar {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: #757575;
  line-height: normal;
}

.memberStar img {
  width: 15px;
  min-width: 15px;
  margin-right: 5px;
}

.ratingNumber {
  font-size: 14px;
  color: #323232;
  font-weight: 500;
  display: inline-block !important;
}

.starDiv {
  position: relative;
  display: inline-block;
  unicode-bidi: bidi-override;
  color: #d0d0d0;
  margin: 0;
  padding: 0;
  font-size: 18px;
  text-align: left;
}

.starWidth {
  position: absolute;
  left: 0;
  color: #fbbc04;
  padding: 0;
  z-index: 1;
  top: 0;
  overflow: hidden;
  bottom: 0;
}

.starWidth span {
  word-break: normal;
}

/***/
.viewMobile {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  display: inline-block;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;
  font-size: 14px;
}

.viewMobile:hover,
.viewMobile:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

.contactManufacturer {
  border: 1px solid transparent;
  background: #ef3b24;
  color: #fff;
  border-color: #db321d;
  display: inline-block;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 15px;
}

.contactManufacturer:hover,
.contactManufacturer:focus {
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

.youtube {
  color: #e12428;
}

.listDirectoryTop {
  border-bottom: 1px solid #eee;
  display: block;
  margin-bottom: 12px;
}

.catList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0;
  justify-content: flex-start;
  align-items: center;
}

.catList li {
  display: inline-block;
  position: relative;
}

.catList li a {
  color: #333;
  padding: 3px 15px 5px;
  display: block;
  border-bottom: 3px solid transparent;
  width: fit-content;
  font-size: 14px;
}

.catList li a:hover {
  color: #ef3b24;
}

.catList li.active a {
  border-color: #ef3b24;
  padding-left: 0;
  padding-right: 0;
  color: #ef3b24;
}

.listingTitleH1 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #333;
}

.listContent {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  background: #f7f7f7;
  margin-bottom: 30px;
}

.listContent p {
  font-size: 14px;
}

.listTagsWrapper {
  position: relative;
}

.listTagsWrapper .swiper-button-next.swiper-button-disabled,
.listTagsWrapper .swiper-button-prev.swiper-button-disabled {
  display: none;
}

.listTagsWrapper .swiper-button-prev,
.listTagsWrapper .swiper-rtl .swiper-button-next {
  background: linear-gradient(90deg, #fff 50%, transparent 100%);
  opacity: 0.9;
  width: 30px;
  transition: opacity 0.5s, visibility 0.5s;
  left: 0;
}

.listTagsWrapper .swiper-button-next,
.listTagsWrapper .swiper-rtl .swiper-button-prev {
  right: -25px;
  background: linear-gradient(90deg, #fff 50%, transparent 100%);
  opacity: 0.9;
  width: 30px;
  transition: opacity 0.5s, visibility 0.5s;
}

.listTagsWrapper .swiper-button-next:after,
.listTagsWrapper .swiper-button-prev:after {
  font-size: 16px;
  color: var(--blackColor);
}

.listTags {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}

.listTags .swiper-slide {
  width: fit-content !important;
}

.listTags a {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  font-size: 13px;
  line-height: normal;
  padding: 8px 15px;
  border: 1px solid #bed1db;
  border-radius: 20px;
  white-space: nowrap;
}

.listTags a:hover {
  color: #ef3b24;
  border-color: #ef3b24;
}

.listTags li a img {
  height: 53px;
  width: 53px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
}

.listTags li a span {
  display: block;
  font-size: 13px;
  line-height: normal;
  padding: 5px 12px;
  border: 1px solid #bed1db;
  border-radius: 20px;
}

.listTags li a:hover span {
  border-color: #ef3b24;
}

.listTags li a span svg {
  width: 12px;
  height: 12px;
}

/* Listing Filter */
.listingFilter {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.listingFilter label {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 20px;
  line-height: normal;
  cursor: pointer;
}

.listingFilter label span {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 15px;
  color: #333;
  line-height: normal;
  border: 1px solid #ced4da;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.listingFilter label span svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.listingFilter label input {
  position: absolute;
  top: 9px;
  display: none;
  left: 12px;
}

.listingFilter input:checked+span {
  background: #f9e8e5;
  color: #ef3b24;
  border: 1px solid #f9a196;
}

/**/

/**/

.itemRating {
  position: relative;
  width: max-content;
}

.ratingBtn {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 15px;
  color: #333;
  line-height: normal;
  border: 1px solid #ced4da;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.ratingBtn:after {
  float: right;
  font-size: 12px;
  margin-top: 3px;
  margin-left: 5px;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'></path></svg>");
}

.ratingBtn.selected {
  background: #f9e8e5;
  color: #ef3b24;
  border: 1px solid #f9a196;
}

.ratingBtn.selected::after {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'></path></svg>");
}

.itemRatingsList {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 12px;
  z-index: 1000;
  width: max-content;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.itemRatingsList li {
  padding: 7px 15px;
  cursor: pointer;
  list-style: none;
  line-height: normal;
}

.itemRatingsList li:hover {
  background-color: #f0f0f0;
}

.itemRatingsList li.clear-option {
  color: red;
}

.itemRatingsList li.clear-option button {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  padding: 6px 12px;
  color: #ef3b24;
  border: 1px solid #f9a196;
  border-radius: 4px;
  background: transparent;
}

.itemRatingsList li.clear-option button:hover,
.itemRatingsList li.clear-option button:focus {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #ef3b24;
}

/* Listing Right Sidebar */

.rightSidebar {
  float: left;
  width: 100%;
  margin: 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin-bottom: 20px;
  /* position: sticky;
    top: 51px; */
}

.rightSidebarTitle {
  font-weight: 700;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.videoList {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.videoList a {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.videoList .vidImg {
  display: flex;
  justify-content: center;
  width: calc(100% - 60%);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  margin-right: 15px;
  position: relative;
}

.videoList .vidImg img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.videoIcon {
  position: absolute;
  color: red;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(1, 148, 68, 0.7);
  border-radius: 12px;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.videoIcon:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 20px;
  height: 10px;
  background: #fff;
}

.videoIcon svg {
  width: 30px;
  height: 30px;
  position: relative;
}

.videoIcon:focus,
.videoIcon:hover {
  color: red;
}

.videoList .vidInfo {
  width: calc(100% - 40%);
}

.videoList .vidInfo .vidInfoTitle {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #333;
  margin-bottom: 5px;
}

.videoList a:hover .vidInfo .vidInfoTitle {
  color: #0f507a;
}

.videoCompanyName {
  font-size: 12px;
  font-weight: normal;
  color: #666;
}

/* Right Side Related Category */
.relatedCategory {
  margin: 0;
  padding: 0;
  width: 100%;
}

.relatedCategory li {
  list-style: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.relatedCategory li:last-child {
  border-bottom: 0;
  margin: 0;
  padding-bottom: 0;
}

.relatedCategory li a {
  font-size: 14px;
  color: #333;
  display: flex;
}

.relatedCategory li .image {
  aspect-ratio: 4/3;
  border: 1px solid #bed1db;
  width: calc(100% - 70%);
  margin: 0;
  margin-right: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.relatedCategory li .image img {
  aspect-ratio: 4/3;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.relatedCategory li .catTitle {
  display: flex;
  align-items: center;
  padding: 0;
  line-height: normal;
  font-size: 14px;
  font-weight: 500;
  width: calc(100% - 30%);
}

.relatedCategory li:hover .catTitle {
  color: #0f507a;
}

/**/
.form-group {
  position: relative;
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.form-control {
  border-radius: 4px;
  height: 40px;
  font-size: 13px;
}

.form-control:focus {
  border-color: #c9c6c6;
  box-shadow: 1px 0 4px #b9bbc1;
}

textarea.form-control {
  height: 80px;
}

/* input[type="url"].form-control,
input[type="email"].form-control {
  text-transform: lowercase !important;
} */
.iti {
  width: 100%;
  height: 40px;
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
  font-size: 13px;
  color: #333;
}

/**/
.buttonsSection {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submitButton {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  padding: 10px 35px;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px;
}

.submitButton:hover,
.submitButton:focus {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
}

.submitButton2 {
  padding: 10px 35px;
  background: #333;
  color: #fff;
  border: 1px solid #222;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px;
  border: 0;
}

.submitButton2:hover,
.submitButton2:focus {
  background: #222;
  border-color: #111;
  color: #fff;
}

.submitButton3 {
  background-color: #fd5005;
  border-color: #fd4f04;
  color: #fff;
  padding: 10px 35px;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px;
  border: 0;
}

.submitButton3:hover,
.submitButton3:focus {
  background: #cc4409;
  border-color: #b33d09;
  color: #fff;
}

/**/
.SumoSelect .CaptionCont {
  position: relative;
  background-color: #fff;
  margin: 0;
  border-radius: 4px;
  height: 40px;
  font-size: 14px;
  padding: 0 15px;
  line-height: normal;
  display: flex;
  align-items: center;
  border: 1px solid #ced4da;
}

.SumoSelect:hover .CaptionCont {
  border-color: #ced4da;
  box-shadow: none;
}

.SumoSelect.open .CaptionCont,
.SumoSelect:focus .CaptionCont {
  box-shadow: none;
  border-color: #ef3b24;
}

.SumoSelect .optWrapper .options li.opt {
  padding: 6px 15px;
  font-size: 13px;
  color: #333;
}

.SumoSelect .optWrapper .options li.opt:hover {
  background-color: #ef3b24;
  color: #fff;
}

.SumoSelect {
  width: 100%;
}

.SumoSelect.open .optWrapper {
  top: 40px;
}

/**/
.inputGroup {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  position: relative;
}

.inputGroup .SumoSelect {
  position: absolute;
  right: 1px;
  top: 1px;
  max-width: max-content;
}

.inputGroup .SumoSelect .CaptionCont {
  border-radius: 0 4px 4px 0;
  height: 38px;
  line-height: 38px;
  border: 0;
  border-left: 1px solid #ced4da;
}

.inputGroup .SumoSelect.open .search-txt {
  padding: 0 8px;
}

.inputGroup .SumoSelect.open .optWrapper {
  top: 38px;
}

.SumoSelect.open .search-txt {
  height: 38px;
  padding: 0 15px;
}

.unitToggle {
  padding: 0 15px;
  padding-right: 30px;
  border-left: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 0px 4px 4px 0px !important;
  min-width: 90px;
  width: max-content;
  height: 38px;
  line-height: 38px;
  text-align: left;
  position: absolute;
  right: 1px;
  z-index: 999;
  top: 1px;
}

.unitToggle::after {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.unitDropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  width: max-content;
  min-width: 90px;
  display: none;
  z-index: 10;
  margin: 0;
  padding: 0;
  border-radius: 4px 4px;
  overflow: hidden;
}

.unitDropdown li {
  list-style: none;
  padding: 8px 10px;
  cursor: pointer;
  line-height: normal;
}

.unitDropdown li:hover {
  background-color: #f0f0f0;
}

/**/
.getList {
  float: left;
  width: 100%;
  margin: 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  position: sticky;
  top: 55px;
}

.getListTitle {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.getListSubTitle {
  font-size: 15px;
  line-height: 1.6;
  color: #0f507a;
  font-weight: 600;
}

.getList p {
  font-size: 12px;
}

.getList .form-group {
  max-width: 100%;
  position: relative;
}

.getList .form-group input {
  padding-left: 35px;
}

.inputIcon {
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getList .submitButton {
  width: 100%;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  align-items: center;
  padding: 10px 10px;
  font-size: 13px;
  justify-content: center;
}

.getList .submitButton svg {
  margin-left: 5px;
}

.getList .submitButton:hover {
  background: #ef3b24;
  color: #fff;
  border-color: #db321d;
}

.trend-list li.selected {
  background-color: #f0f0f0;
}

/**/
.dotsMenu {
  margin-left: auto;
  position: relative;
}

.dotsMenu .dots {
  width: 45px;
  height: 45px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}

.dotsMenu .dots svg {
  width: 25px;
  height: 25px;
}

.dotsMenu:hover .dots,
.dotsMenu:focus .dots {
  background: #eee;
}

.dotsMenu ul {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(12, 20, 40, .12);
  transform-origin: top right;
  display: none;
  z-index: 30;
  margin: 0;
  padding: 15px;
  border: 1px solid #eee;
}

.dotsMenu ul.show {
  display: block;
}

.dotsMenu ul.show:after {
  content: "";
  position: absolute;
  border: solid rgba(33, 43, 54, 0.1);
  border-width: 0 2px 2px 0;
  padding: 5px;
  left: 20px;
  transform: rotate(-135deg);
  top: -7px;
  background: #fff;
}

.dotsMenu ul li {
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  cursor: pointer;
}

.dotsMenu ul li svg {
  width: 18px;
  height: 18px;
}

.dotsMenu ul li span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: normal;
  color: #555;
}

.dotsMenu ul li:last-child {
  margin-bottom: 0;
  border: 0;
  padding: 0;
}

.dotsMenu ul li:hover {
  color: #0f507a;
}

/**/
.ribbon {
  position: relative;
  top: 0;
  right: -25px;
  padding: 5px 15px 18px calc(15px + 15px);
  background: #ef3b24;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      calc(100% - 10px) calc(100% - 10px),
      0 calc(100% - 10px),
      15px calc(50% - 10px / 2));
  box-shadow: 0 calc(-1 * 10px) 0 inset rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;

}

.ribbon svg {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

/**/
.postRequirement {
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 15px;
  position: relative;
  margin-bottom: 40px;
}

.postRequirementTitle {
  font-size: 18px;
  font-weight: 600;
  color: #ef3b24;
}

/**/

.ribbonSave {
  width: 180px;
  height: 50px;
  background: #666;
  box-shadow: 0px 0px 37px 0px rgba(0, 0, 0, 0.3);
  top: -6px;
  right: 25px;
  position: absolute;
  margin-bottom: 80px;
}

.ribbonSave span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: normal;
  width: 100%;
  position: relative;
  display: block;
  padding: 15px 0 0;
}

.ribbonSave span svg {
  width: 18px;
  height: 18px;
}

.ribbonSave:before,
.ribbonSave:after {
  content: "";
  position: absolute;
}

.ribbonSave:before {
  height: 0;
  width: 0;
  border-bottom: 6px solid #555;
  border-right: 6px solid transparent;
  right: -6px;
}

.ribbonSave:after {
  height: 0;
  width: 0;
  border-left: 90px solid #666;
  border-right: 90px solid #666;
  border-bottom: 15px solid transparent;
  bottom: -15px;
  right: 0;
}

/* Certificate Modal */
#gmCertificate .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  outline: 0;
  background-color: #eee;
  padding: 8px;
  border-radius: 0;
}

#gmCertificate.modal.show {
  display: flex !important;
  align-items: center;
}

#gmCertificate.modal.show .modal-dialog {
  margin: auto;
  width: 100%;
  max-width: 600px;
}

#gmCertificate .modal-content {
  border-radius: 0;
}

#gmCertificate .modal-body {
  padding: 0 15px;
}

#gmCertificate iframe {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 640px;
  overflow: hidden;
}

/* Inner pages banner */

.image {
  float: right;
  max-width: 500px;
  width: 100%;
  margin: 0 0 0 15px;
}

.listItem p {
  font-size: 14px;
  line-height: 22px;
}

/**/
.fullTextSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0 40px;
  background: #fff;
}

.fullTextSection h2 {
  font-size: 18px;
  margin: 0;
  padding: 0 0 5px;
  font-weight: 600;
}

.fullTextSection p {
  font-size: 13px;
  line-height: 20px;
  text-align: justify;
}

.fullTextSection ul {
  float: left;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
}

.fullTextSection ul li {
  display: inline-block;
  margin-bottom: 5px;
}

.fullTextSection ul li a {
  color: #333;
  font-size: 16px;
  position: relative;
}

.fullTextSection ul li a:after {
  content: "";
  width: 1px;
  height: 24px;
  background: #eee;
  display: inline-block;
  padding: 0px;
  margin: 0 10px;
  float: right;
}

.fullTextSection ul li:last-child a:after {
  width: 0;
}

.fullTextSection ul li a:hover {
  color: #f78e20;
}

.morelink {
  color: #0f507a;
}

.morelink:hover,
.morelink:focus {
  text-decoration: underline;
  color: #0f507a;
}

.actionButton {
  display: flex;
  gap: 15px;
}

.actionButton a {
  width: max-content;
  margin: 0;
}

/**/
.listContent .textWrapper {
  margin-bottom: 15px;
  font-size: 14px;
  text-align: justify;
}

.listBusinessBtn {
  background: #fff;
  color: #ef3b24;
  border: 1px solid #ccc;
  display: inline-flex;
  font-weight: 600;
  padding: 10px 25px;
  padding-left: 65px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  position: relative;
}

.listBusinessBtn span {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}

.listBusinessBtn span {
  --f: 7px;
  --r: 10px;
  position: absolute;
  left: 10px;
  top: calc(-1 * var(--f));
  padding: 6px 10px 8px;
  background: #ef3b24;
  border-left: var(--f) solid #0005;
  border-bottom: var(--r) solid #0000;
  clip-path: polygon(var(--f) 0,
      100% 0,
      100% 100%,
      calc(50% + var(--f) / 2) calc(100% - var(--r)),
      var(--f) 100%,
      var(--f) var(--f),
      0 var(--f));
}

.listBusinessBtn span svg {
  width: 18px;
  height: 18px;
}

.listBusinessBtn:hover,
.listBusinessBtn:focus {
  color: #c6402f;
}

.listBusinessBtn:hover span,
.listBusinessBtn:focus span {
  background: #c6402f;
}

.requirementBtn {
  background: #fff;
  color: #0f507a;
  border: 1px solid #ccc;
  display: inline-flex;
  font-weight: 600;
  padding: 10px 25px;
  padding-left: 65px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  position: relative;
}

.requirementBtn span {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}

.requirementBtn span {
  --f: 7px;
  --r: 10px;
  position: absolute;
  left: 10px;
  top: calc(-1 * var(--f));
  padding: 6px 10px 8px;
  background: #0f507a;
  border-left: var(--f) solid #0005;
  border-bottom: var(--r) solid #0000;
  clip-path: polygon(var(--f) 0,
      100% 0,
      100% 100%,
      calc(50% + var(--f) / 2) calc(100% - var(--r)),
      var(--f) 100%,
      var(--f) var(--f),
      0 var(--f));
}

.requirementBtn span svg {
  width: 18px;
  height: 18px;
}

.requirementBtn:hover,
.requirementBtn:focus {
  color: #0f507a;
}

.requirementBtn:hover span,
.requirementBtn:focus span {
  background: #0f507a;
}

.visitWebsite {
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-align: center;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  display: inline-flex;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  align-items: center;
  line-height: normal;
}

.visitWebsite svg {
  margin-right: 5px;
}

.visitWebsite:hover,
.visitWebsite:focus {
  background: #fff;
  color: #0f507a;
  border: 1px solid #0f507a;
}

/* Directory Page */

.innerBanner {
  float: left;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
  background-image: url(../images/software-industry.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
  position: relative;
  /* margin-top: 66px; */
}

.innerBanner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}

.innerBanner .listingInner {
  max-width: 850px;
  margin: 0 auto;
  height: calc(100% + 50px);
  position: relative;
}

.listingInner h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #fff;
}

.listingInner .listingInnerTitle {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #fff;
}

.innerBanner .listingInner p {
  font-size: 16px;
}

.listingTitleSection {
  display: block;
  margin-top: 30px;
}

.listingTitleSection h2 {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.listingTitleSection p {
  text-align: justify;
}

.directoryPage {
  float: left;
  width: 100%;
  padding: 40px 0;
  background: #eee;
}

.businessTitle2 {
  position: relative;
  padding-bottom: 10px;
  line-height: normal;
  font-size: 24px;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
}

.businessTitle2 a {
  font-size: 24px;
  color: #333;
  font-weight: 700;
}

.businessTitle2 a:hover,
.businessTitle2 a:focus {
  color: #0f507a;
  ;
}

.businessTitle2 span {
  color: #ef3b24;
}

.businessTitle2:before,
.businessTitle2:after {
  content: "";
  background: #333;
  width: 20px;
  left: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  bottom: 0;
  right: 0;
  margin: 0;
}

.businessTitle2:after {
  background: #ef3b24;
  left: 10px;
}

.directoryPage p {
  font-size: 14px;
  text-align: justify;
  color: #333;
}

.directoryItem {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.directoryFull {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05);
}

.directoryWrapper {
  display: flex;
  border-bottom: 1px solid #eee;
}

.directoryLeft {
  width: 28%;
  position: relative;
  overflow: hidden;
  background: #d9e2f1;
  aspect-ratio: 49 / 54;
}

.directoryLeft img {
  aspect-ratio: 49 / 54;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.directoryLeft .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(180deg, transparent 0 20%, #000 100% 100%);
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: flex-end;
}

.directoryLeft .overlay ul {
  display: block;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.directoryLeft .overlay ul li {
  margin-bottom: 5px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.directoryLeft .overlay ul li:after {
  position: absolute;
  left: 0;
  top: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
}

.directoryLeft .overlay ul li a {
  font-size: 14px;
  color: #fff;
  display: inline-block;
}

/* .directoryLeft .overlay:hover {
    background-image: linear-gradient(180deg, transparent 0 30%, #000 100% 100%);
} */

.directoryLeft .overlay ul li:hover a {
  color: #ef3b24;
}

.directoryLeft .overlay ul li:hover:after {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
}

.directoryLeft .overlay .view-all {
  font-size: 15px;
  border: none;
  color: #fff;
  border-radius: 40px;
  padding: 8px 25px;
  background: #ef3b24;
  display: inline-block;
  cursor: pointer;
  line-height: normal;
  outline: 0;
}

.directoryLeft .overlay .view-all:hover {
  background: #0f507a;
  color: #fff;
}

.directoryRight {
  flex: 1;
  padding: 20px;
}


.directoryGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: start;
}

.directoryGridItem {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 6px;
  display: block;
  width: calc(100% / 2 - 10px);
  height: 100%;
}

.directoryGrid_sub {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: start;
  width: 100%;

}

.directoryGridItem_3 {
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: block;
  width: calc(100% / 3 - 10px);
  transition: transform .3s ease, box-shadow .3s ease;
  /* height: 100%; */
}

.directoryGridItem_3:hover {
  transform: scale(1.01);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.directoryHeader {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.directoryHeader .dirInnerTitle {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: left;
  line-height: normal;
}

.directoryHeader .dirInnerTitle span {
  font-size: 12px;
  color: #444;
}

.directoryHeader .dirInnerTitle:hover {
  color: #0f507a;
}

.directoryHeader svg {
  height: 22px;
  width: 22px;
  min-width: 22px;
  padding: 3px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  margin-left: auto;
  display: none;
}

.directoryGridItem .image,
.directoryGridItem_3 .image {
  float: right;
  margin: 0 0 0 15px;
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid #ccc;
}

.directoryGridItem .image img,
.directoryGridItem_3 .image img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.link2 {
  margin: 0;
  padding: 0;
  display: flow-root;
}

.link2 li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
  list-style: none;
  font-size: 13px;
}

.link2 li:last-child {
  margin: 0;
}

.link2 li a {
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 155px;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  font-size: 14px;
}

.link2 li:after {
  position: absolute;
  left: 0;
  top: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
}

.link2 li:hover a {
  color: #ef3b24;
  text-decoration: underline;
}

.link2 li:hover:after {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
}

.directoryGridItem:hover .directoryHeader span,
.directoryGridItem_3:hover .directoryHeader span {
  color: #ef3b24;
}

.directoryGridItem:hover .directoryHeader svg,
.directoryGridItem_3:hover .directoryHeader svg {
  background: #ef3b24;
  border: 1px solid #ef3b24;
  color: #fff;
}

/* Market page */
.marketPage {
  float: left;
  width: 100%;
  padding: 30px 0 30px;
}

.marketPageTitle {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #333;
}

.marketPage h3 {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin: 0;
  margin-bottom: 0px;
  padding: 0;
  margin-bottom: 5px;
}

.marketPage h4 {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin: 0;
  margin-bottom: 0px;
  padding: 0;
  margin-bottom: 5px;
}

.marketPage img {
  border: 1px solid #79aed8;
  border-radius: 12px;
}

.marketSection {
  float: left;
  width: 100%;
  padding: 0px 0 40px;
  margin: 0;
  background: #fff;
}

.marketListTitle {
  font-size: 18px;
  margin: 0 0 10px;
  padding: 0px;
  font-weight: 600;
  color: #333;
}

.marketList {
  width: 100%;
  margin: 0;
  padding: 10px 0;
}

.cityList {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cityList li {
  display: inline-block;
}

.cityList li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
}

.cityList li a:hover {
  color: #ef3b24;
  border-color: #ef3b24;
}

.cityList li a span {
  display: block;
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid #bed1db;
  border-radius: 20px;
}

.cityList li a:hover span {
  border-color: #ef3b24;
}

.cityList li a span svg {
  width: 12px;
  height: 12px;
}

/*ads*/
.listItem.adsBg {
  background: #f0fbff;
  border-color: #d4eaf2;
}

.ads {
  display: flex;
}

.ads .image {
  max-width: 150px;
  margin-right: 20px;
}

.adsTitle {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.adsBtn {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  display: inline-block;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}

.adsBtn:hover,
.adsBtn:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

/**/
.postPropertySection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0 50px;
  position: relative;
  background: #fff;
  background: linear-gradient(120deg, #000 0, #ef3b24 100%) 0 0 no-repeat padding-box;
  background-repeat: no-repeat;
  /* overflow: hidden; */
  /* margin-top: 66px; */
}

.postImg {
  max-width: 400px;
  width: 100%;
}

.postPropertySection .container {
  position: relative;
  z-index: 2;
}

.postPropertyTitle {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.postPropertyTitle span {
  color: #ef3b24;
  font-weight: 700;
}



.postPropertyTitle2 {
  font-size: 28px;
  font-weight: 600;
  color: #ef3b24;
  margin: 0;
  margin-bottom: 15px;
}

.postPropertyTitle span {
  color: #ef3b24;
  font-weight: 700;
}

.postPropertySectionLeft p {
  color: #fff;
  font-size: 16px;
}

.postPropertySectionLeft ul {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}

.postPropertySectionLeft ul li {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.postPropertySectionLeft ul li:before {
  position: absolute;
  left: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/></svg>");
}

/**/
.postPropertySectionLeft ol {
  margin: 0;
  padding: 0;
}

.postPropertySectionLeft ol li {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  list-style: none;
  position: relative;
  padding-left: 0;
}



/**/
.listYourBusiness {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0 0px;
  position: relative;
}

.innerBusiness {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */
  margin-top: -95px;
  display: flex;
}

.innerBusinessTitle {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #ef3b24;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  line-height: normal;
}

.leftBusiness {
  box-sizing: border-box;
  position: sticky;
  top: 51px;
  width: 100%;
  padding: 30px 30px;
}

.leftBusiness ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.leftBusiness ul li {
  list-style: none;
  display: flex;
  padding: 20px;
  width: 33.33%;
  border: 1px solid #eee;
}

.leftBusiness ul li .imageIcon {
  margin-right: 20px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  overflow: hidden;
  display: flex;
  line-height: 0;
  align-items: center;
  justify-content: center;
}

.leftBusiness ul li .imageIcon svg,
.leftBusiness ul li .imageIcon img {
  width: 60px;
  height: 60px;
  color: #ef3b24;
}

.leftBusiness ul li .businessInfo {
  font-size: 16px;
  color: #333;
  font-weight: normal;
  line-height: 1.4;
}

.leftBusiness ul li .businessInfo p {
  margin: 0;
  font-size: 14px;
}

.leftBusiness ul li .businessInfo p strong {
  margin-bottom: 5px;
  display: block;
}

.rightBusiness {
  width: calc(100% - 420px);
  border-left: solid 1px #eee;
  padding: 30px 40px;
}

.rightBusiness label {
  color: #333;
  margin-bottom: 5px;
}

.SumoSelect .optWrapper .options li.opt:hover label {
  color: #fff;
}

/*Radio*/
.radioGroup {
  display: flex;
  align-items: center;
  gap: 15px;
}

.radio {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 25px;
  position: relative;
  vertical-align: middle;
  font-size: 13px;
}

.radio input[type="radio"] {
  appearance: none;
  border-radius: 100px;
  margin-top: 2px;
  padding: 7px;
  border: 2px solid #ef3b24;
  outline: none;
}

.radio input[type="radio"] {
  left: 0;
  position: absolute;
}

.radio span {
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.radio input[type="radio"]:checked:before {
  background: #ef3b24;
  border-radius: 50px;
  content: "";
  height: 10px;
  left: 2px;
  opacity: 1;
  position: absolute;
  top: 2px;
  width: 10px;
}

.radio input[type="radio"]:checked~span {
  color: #ef3b24;
}

/*Login Page*/
.loginPage {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background: #fff;
  /* margin-top: 66px; */
}

.loginform {
  display: block;
  width: 780px;
  background-color: #fff;
  box-shadow: 0px 10px 30px #938d8d66;
  margin: auto;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.loginBox {
  /* width: 480px; */
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
  transition: all 0.1s ease-in-out;
  border-right: 1px solid #f1f1f1;
  position: relative;
}

.loginBox .logo {
  margin-bottom: 15px;
}

.loginBox .logo img {
  max-width: 200px;
}

.getLogin {
  display: block;
  margin: 0 0 5px;
  padding: 0;
}

.getLogin strong {
  font-size: 18px;
  color: #000;
  color: #ef3b24;
}

.getLogin p {
  font-size: 14px;
}

.nextBtn {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  border: none;
  margin: auto;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 2px #fff;
  background-color: #ef3b24;
  color: #fff;
}

.nextBtn:hover,
.nextBtn:focus {
  background: #0f507a;
  color: #fff;
}

.loginBox form p {
  font-size: 13px;
  margin: 0;
  color: #333;
}

.loginBox form p a {
  color: #ef3b24;
}

.loginBox form p a:hover,
.loginBox form p a:focus {
  text-decoration: underline;
  color: #0f507a;
}

.loginImage {
  width: 100%;
  padding: 15px;
}

.loginBox form p.accountText {
  font-size: 12px;
}

/**/
#mobileOpt {
  display: none;
}

/**/
.showHide {
  display: none;
}

.backWithOtp {
  display: flex;
  align-items: center;
}

.backBtn2 {
  width: 25px;
  height: 25px;
  display: inline-flex;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-right: 5px;
  justify-content: center;
  align-items: center;
}

.backBtn2 svg {
  width: 20px;
  height: 20px;
}

.verifyOTP {
  margin: 0;
  color: #ef3b24;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.oneTimeText {
  color: #333;
  font-size: 14px;
  line-height: 20px;
  /* text-wrap: balance; */
  font-weight: 400;
  text-align: left;
}

.oneTimeText .otpViewNumber {
  color: #ef3b24;
  font-size: 14px;
  font-weight: 600;
}

.otp-input-container-styles {
  display: flex;
  align-items: center;
}

input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.otpInput {
  border: 1px solid #dae0e5;
  background: 0 0;
  border-radius: 4px;
  width: 40px !important;
  height: 40px !important;
  text-align: center;
  font-size: 16px;
  color: #ef3b24;
  font-weight: 400;
  line-height: 1.88;
  margin-right: 18px;
  outline: 0;
}

.form-group .iti+.placeholder {
  cursor: auto;
}

.placeholder {
  background: transparent !important;
}

.SumoSelect>.CaptionCont>span.placeholder {
  color: #555 !important;
  font-style: normal;
  opacity: 1;
}

.continueBtn:disabled {
  cursor: not-allowed;
  background: #dfe1e6;
  color: #b3bac5;
}

#phoneNumberError {
  color: red;
  font-size: 12px;
}

#otpInputs {
  display: flex;
  align-items: center;
}

#otpInputs input {
  border: 1px solid rgba(246, 146, 133, 0.2);
  background: 0 0;
  border-radius: 4px;
  width: 40px !important;
  height: 40px !important;
  text-align: center;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1.88;
  margin-right: 18px;
  outline: 0;
}

#otpInputs input:hover,
#otpInputs input:focus {
  border: 1px solid rgba(246, 146, 133, 0.4);
}

.didnotReceive .resend {
  color: #666;
  cursor: text;
}

.didnotReceive .resend.otpResend {
  color: #ef3b24;
  cursor: pointer;
}

.readMoreBtn:disabled {
  cursor: not-allowed;
  background: #dfe1e6;
  color: #b3bac5;
}

/**/
.didnotReceive {
  display: block;
  margin-bottom: 5px;
}

/**/
.singleCheck {
  width: 100%;
  font-size: 13px;
  line-height: 28px;
  font-weight: normal;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
}

.singleCheck label:hover {
  color: #ef3b24;
}

.singleCheck span {
  display: block;
  position: relative;
  padding-left: 25px;
  font-size: 13px;
  font-weight: 500;
}

.singleCheck span a {
  display: inline-block;
  color: #ef3b24;
}

.singleCheck span:before {
  content: "";
  width: 16px;
  height: 16px;
  line-height: 16px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.singleCheck input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
}

.singleCheck input[type="checkbox"]:checked+span {
  color: #ef3b24;
}

.singleCheck input[type="checkbox"]:checked+span:before {
  background: #ef3b24;
  border: 1px solid #ef3b24;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23fff' viewBox='0 0 16 16'><path d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/></svg>");
}

/**/
.imageTitle {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: normal;
  margin: 10px 0 0;
}

/**/
/* header.db_header.stricky-fixed {
  position: relative;
  position: sticky;
  top: 0;
} */
.db_header .topRight {
  display: flex;
  align-items: center;
  gap: 15px;
}

/*Dashboard Header*/
.dbHeader {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgb(0 0 0 / 11%);
}

.dbHeader .logo {
  padding: 12px 0;
  max-width: 220px;
}

.dashboardMenu {
  display: flex;
  align-items: center;
}

.dashboardMenuRight {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.dashboardMenuRight ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.dashboardMenuRight ul li {
  list-style: none;
}

.dashboardMenuRight ul li a {
  color: #333;
  font-size: 14px;
  padding: 10px 18px;
}

.dashboardMenuRight ul li a:hover,
.dashboardMenuRight ul li a:focus {
  color: #ef3b24;
}

.dashboardMenuRight ul li a svg {
  margin-right: 3px;
  width: 16px;
  height: 16px;
}

.dashboardMenuRight ul li a.addProperty {
  font-weight: 400;
  padding: 5px 12px;
  background: #ef3b24;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
}

.dashboardUser {
  margin-left: 10px;
  position: relative;
}

.dashboardUser .userClick {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dashboardUser .userClick .icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: linear-gradient(118deg, #ef3b24 32.59%, #b91c09 99.7%);
  border-radius: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 5px;
}

.dashboardUser .userClick .userInfo {
  display: block;
  line-height: 16px;
  margin-right: 10px;
}

.dashboardUser .userClick .userInfo .name {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  white-space: nowrap;
}

.dashboardUser .userClick .userInfo .number {
  font-size: 13px;
}

.userDropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px, rgba(0, 0, 0, 0.12) 0px 8px 16px;
  border-radius: 8px;
  z-index: 99;
  min-width: 180px;
  padding: 8px;
  top: 100%;
  right: 0;
  padding: 12px;
}

.userDropdown ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}

.userDropdown ul li {
  display: flex;
  align-items: center;
  width: 100%;
}

.userDropdown ul li:first-child {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.userDropdown ul li .icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: linear-gradient(118deg, #ef3b24 32.59%, #b91c09 99.7%);
  border-radius: 6px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
}

.userDropdown ul li .dashboardUser {
  margin-left: 0;
  position: relative;
  line-height: 15px;
}

.userDropdown ul li .dashboardUser .name {
  margin: 0;
  color: #ef3b24;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-wrap: balance;
}

.userDropdown ul li .dashboardUser .number {
  color: rgb(94 108 132);
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  text-wrap: balance;
}

.userDropdown ul li a {
  color: #333;
  padding: 5px 0;
  font-size: 14px;
  display: block;
  width: 100%;
  line-height: normal;
}

.userDropdown ul li a svg {
  width: 14px;
  height: 14px;
  margin-right: 3px;
}

.userDropdown ul li:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}

.userDropdown ul li:nth-last-child(2) {
  border: 0;
  padding: 0;
  margin: 0;
}

.userDropdown ul li a:hover,
.userDropdown ul li a:focus {
  color: #ef3b24;
}

/**/

/**/
body.dashboards {
  background: #f7f7f7;
}

.fullDashboard {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  /* background: #f7f7f7; */
  /* height: calc(-56px + 100vh); */
  display: flex;
  position: relative;
  padding: 15px;
  align-items: flex-start;
  /* margin-top: 66px; */

}

.dashboardLeft {
  width: calc(100% - 82%);
  background: #fff;
  position: relative;
  transition: all 0.5s ease;
  padding: 0;
  border: 1px solid #dfe1e6;
  height: 100%;
  position: sticky;
  top: 65px;
  /* height: calc(-80px + 100vh); */
  height: max-content;
  border-radius: 6px;
  z-index: 999;



}

.dashboardRight {
  width: calc(100% - 18%);
  padding: 0 0 50px 20px;
  display: flex;
  flex: 1;
  overflow: hidden;
}

/**/


/**/
.leftUser {
  display: flex;
  gap: 0.75rem;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.leftUser .icon {
  background: linear-gradient(118deg, #ef3b24 32.59%, #b91c09 99.7%);
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.leftUser .name {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: capitalize;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-wrap: balance;
  max-width: 172px;
}

.leftUser .name small {
  font-size: 12px;
  font-weight: normal;
}

.leftUser .name small .verified {
  color: #15bc4d;
}

.leftUser .name small .verified svg {
  margin-right: 3px;
}

.dashboardLeft ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  padding-bottom: 0;
  width: 100%;
  /* border-bottom: 1px solid #d1dce1; */
}

.dashboardLeft ul li {
  list-style: none;
  /* display: flex; */
  position: relative;
  border-bottom: 1px solid #dfe4e6;
}

/* Dropdown arrow */
.dashboardLeft ul li.submenu a .menuArrow {
  position: absolute;
  right: 16px;
  transition: transform 0.3s;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboardLeft ul li.submenu a .menuArrow svg {
  width: 14px;
  height: 14px;
  margin: 0;
}

/* Active submenu */
.dashboardLeft ul li.active ul,
.dashboardLeft ul li ul li.active ul {
  display: block;
}

.dashboardLeft ul li.active .menuArrow svg {
  transform: rotate(180deg);
}

.dashboardLeft ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-right: 3px solid transparent;
  width: 100%;
}

.dashboardLeft ul li:last-child {
  border-bottom: 0;
}

.dashboardLeft ul li a svg {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.dashboardLeft ul li a img {
  margin-right: 10px;
  width: 18px;
  height: auto;
}

.dashboardLeft ul li a:hover,
.dashboardLeft ul li.active a {
  background: #e8f5ff;
  color: #ef3b24;
}

.dashboardLeft ul li.active a {
  border-right-color: #ef3b24;
}

.dashboardLeft ul li.active ul li a,
.dashboardLeft ul li ul li a {
  font-size: 13px;
  color: #555;
  border-right: 3px solid transparent;
  background-color: transparent;
  font-weight: normal;
}

.dashboardLeft ul li.active ul li.active a {
  background: #e6e6e6;
  color: #0f507a;
  border-right-color: #0f507a;
}

.dashboardLeft ul li ul li a svg {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

/* Third-level submenu */
.dashboardLeft ul li ul,
.dashboardLeft ul li ul li ul {
  display: none;
  background: #eee;
}

.dashboardLeft ul li ul li ul li a {
  padding-left: 60px;
  font-size: 13px;
  font-weight: normal;
}

/**/

/*Right Side*/
.dashboardRightFull {
  width: 100%;
  display: block;
}

.dashboardTitleSection {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 15px;
  background: #fff;
  margin-bottom: 15px;
  border: 1px solid #dfe1e6;
  border-radius: 6px;
  position: relative;
}

.dashboardTitle {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.newPropertyBtn {
  margin-left: auto;
  font-weight: 400;
  padding: 5px 12px;
  background: #ef3b24;
  color: #fff !important;
  border: 1px solid transparent;
  border-radius: 6px;
}

.newPropertyBtn:hover,
.newPropertyBtn:focus {
  background: transparent linear-gradient(120deg, #000 0, #333 100%) 0 0 no-repeat padding-box;
  color: #fff;
}

.mainContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.counter-box {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 15px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0392156863);
  border-radius: 6px;
  border: 1px solid #e9ecf5;
}

.box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  /* border: 1px solid #e4e4e4; */
  border-radius: 50%;
  color: #ef3b24;
  background-color: rgba(239, 59, 36, 15%);
}

.box-icon svg {
  width: 36px;
  height: 36px;
}

.counter-box .title-count {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #333;
}

.box-count {
  display: flex;
  align-items: center;
}

.box-count .number {
  font-size: 30px;
  line-height: 44px;
  font-weight: 600;
  color: #161e2d;
}

.box-count .text {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  margin-left: 11px;
}

/**/

/**/

.companyTabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.companyTab {
  padding: 10px 25px;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  border: 1px solid #e6eaed;
  color: #333;
}

.companyTab:hover,
.companyTab.active {
  background: #ef3b24;
  color: #fff;
  border-color: #ef3b24;
}

.companyTabInfo {
  display: block;
  padding: 15px;
  border: 1px solid #e6eaed;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 15px;
  float: left;
  width: 100%;
}

.companyTabPanel {
  display: none;
  padding: 0;
  background: #fff;
  margin-bottom: 15px;
}

.companyTabPanel.active {
  display: block;
}

.companyTabInfo label {
  color: #888;
  font-weight: normal;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 3px;
}

.SumoSelect>.optWrapper>.options li label {
  font-weight: normal;
  color: #333;
}

.companyNameTitle {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.companyTabInfoTitle {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0 0 10px;
  display: block;
  border-bottom: 1px solid #d4e2ea;
  padding: 0 0 8px;
}

/**/

.edit_group {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.edit_group .primaryIcon {
  margin-right: 5px;
}

.edit_group .form-control {
  border: 0;
  height: auto;
  padding: 0;
  padding-right: 0px;
  width: auto;
}

.edit_group textarea.form-control {
  width: 100%;
  resize: none;
  height: 100%;
  min-height: 70px;
  box-sizing: border-box;
  field-sizing: content;
}

.texteditable {
  padding-right: 20px;
}

.edit_group .form-control:disabled,
.edit_group .form-control[readonly] {
  background-color: transparent;
  opacity: 1;
}

.input_focus {
  border: 0 dashed #aaa;
  background-color: #fffbe6;
  outline: 0;
}

.append_btns {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
}

.append_btns button {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 0;
}

.btnEdit {
  position: relative;
  top: 0;
  right: 10px;
  background: transparent;
  border: 0;
  /* display: none; */
}

/* .edit_group:hover .btnEdit {
    display: flex;
} */

.editCompany {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding: 0;
}

[contenteditable="true"]:empty:before {
  content: attr(placeholder);
  pointer-events: none;
  display: block;
  /* For Firefox */
  width: 200px;
}

/* New */
.postBuyRequirement {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  position: relative;
}


.formGroup {
  padding: 0;
  width: auto;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  position: relative;
  height: 22px;
}

.formGroup .primaryIcon {
  margin-right: 5px;
}

.inputGroup {
  gap: 10px;
  align-items: center;
}

.inputGroup input {
  padding: .375rem .75rem;
  width: 100%;
  font-size: 14px;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.inputGroup input:focus,
.inputGroup input:focus-visible {
  outline: 0;
  box-shadow: none;
  border-color: #c9c6c6;
  box-shadow: 1px 0 4px #b9bbc1;
}

.inputEditBtn {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  color: #333;
}

.inputEditBtn svg {
  width: 14px;
  height: 14px;
}

.inputCancelBtn {
  background-color: #ccc;
  color: #000;
}

.inputSaveBtn {
  background: #333;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  border: 0;
  outline: 0;
  padding: 3px 10px;
}

.inputCancelBtn {
  background: #ef3b24;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  border: 0;
  outline: 0;
  padding: 3px 10px;
}

.addedTextShow {
  font-weight: normal;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  display: none;
}

.inputGroupButtons {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.addText {
  color: #ef3b24;
}

/**/
.registerForm2 {
  float: left;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 15px 25px 25px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 12px rgba(31, 92, 163, 0.2);
  margin-bottom: 25px;
  border-top: 5px solid #fd7361;
}

.registerForm2 label strong {
  font-size: 13px;
  color: #0f507a;
}

#otpWhatsapp,
#otpEmail {
  display: none;
}

/* Back button */

.backBtn {
  width: 25px;
  height: 25px;
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ef3b24;
  margin-right: 8px;
}

.backBtn svg {
  width: 20px;
  height: 20px;
}

.backWithOtp {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* OTP inputs */
#otpInputs,
#wOtpInputs,
#eOtpInputs {
  display: flex;
  /* justify-content: center; */
  gap: 10px;
  margin: 15px 0;
}

.otp-input {
  border: 1px solid rgba(246, 146, 133, 0.4);
  background: 0px 0px;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: rgb(51, 51, 51);
  font-weight: 400;
  line-height: 1.88;
  margin-right: 8px;
  outline: 0px;
  font-weight: bold;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.otp-input:focus {
  border-color: #0f507a;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
  outline: none;
}


/* Error messages */
#phoneNumberError,
#emailError,
#wOtpError,
#eOtpError,
#password,
.personName,
.countryName,
.factoryPincode,
.industryCategory,
#companyNameError,
#primaryNatureError,
#industryCategoryError,
#pincode-error,
#stateTextFieldError,
#districtTextFieldError,
#memberNameError,
#passwordError,
#loader,
#manufacturingError {
  font-size: 13px;
  /* margin-top: 5px; */
  color: red;
}

/* Resend timer + link */
.didnotReceive {
  font-size: 14px;
  margin-top: 10px;
}

.didnotReceive p {
  color: #333;
}

.didnotReceive .resend {
  color: #0f507a;
  cursor: pointer;
}

.didnotReceive .otpResend .resend {
  color: #999;
  pointer-events: none;
}

#timer,
#w_timer,
#e_timer {
  font-weight: bold;
  color: #333;
}

.feature {
  z-index: 1;
  padding: 20px 15px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f2f1f1;
  border: 1px solid #f0e7e7;
  box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
  text-align: center;
  height: 100%;
}

.hover-line:before {
  content: "";
  display: block;
  height: 5px;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #4c86e7;
  transition: all 0.2s ease-in-out;
}

.feature__icon {
  width: 72px;
  height: 72px;
  display: inline-block;
  margin-bottom: 24px;
}

.feature__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ef3b24;
}

.feature__text {
  font-size: 15px;
  color: #6a798c;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 10px;
  margin-bottom: 0;
}

.feature p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/**/

.checkbox {
  display: block;
  text-align: left;
  position: relative;
}

.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #333;
}

.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #424242;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.checkbox input:checked+label:before {
  border-color: #0f507a;
}

.checkbox input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #0f507a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/*.checkbox input:checked + label,
.checkbox:hover label {
  color: #0f507a;
}*/

.newsletter label {
  font-size: 14px;
  color: #333;
}

/**/
.primaryCheck {
  width: 100%;
  position: relative;
  padding: 8px 10px 10px;
  background: #f7f7f7;
  border-radius: 6px;
  border: 1px solid #dfe1e6;
  margin-bottom: 15px;
  line-height: normal;
}

.primaryCheck label {
  font-size: 13px;
  margin-bottom: 3px;
}

.primaryCheck .checkbox input:checked+label:after {
  top: 3px;
}

/**/
.howItwork {
  float: left;
  width: 100%;
  padding: 0px 0 40px;
  background: #fff;
}

.mainTitle {
  width: 100%;
  max-width: 800px;
  font-size: 30px;
  font-weight: 600;
  display: block;
  padding-bottom: 15px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  color: #333;
}

.mainTitle span {
  background: #ef3b24;
}

.mainTitle:after {
  content: "";
  background: #ef3b24;
  width: 40px;
  left: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
}

.maxWidth {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.maxWidth p {
  display: inline-block;
  max-width: 850px;
  width: 100%;
  margin: 0 auto 10px;
  font-size: 16px;
  text-align: center;
}

/**/

.newAddedSection {
  float: left;
  width: 100%;
  background-color: #eee;
  position: relative;
  padding: 40px 0;
}

.newAddedSection:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/lines-black.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.newAddedSection .container {
  position: relative;
}

.featureItem2 {
  background-color: #fff;
  margin: 0 0 20px 0;
  padding: 20px 20px 20px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #dedede;
  border-radius: 15px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: left;
  height: 100%;
}

.featureItem2:hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, #fff 5%, #f0f0f06b 100%);
}

.featureItem2 .icon2 {
  min-width: 80px;
  height: 80px;
  background: #bfe4fd;
  display: inline-flex;
  flex: 0 0 auto;
  margin-top: 10px;
  margin-right: 15px;
  margin-left: 0;
  margin-bottom: unset;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ef3b24;
}

.featureItem2 .icon2 svg {
  width: 65px;
  height: 65px;
}

.featureContent2 {
  flex-grow: 1;
}

.featureContent2 .featureTitle2 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3em;
  margin: 0;
  margin-bottom: 8px;
  color: #333;
}

.featureContent2 p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* Faqs */

.faqPosting {
  float: left;
  width: 100%;
  background: #fff;
  margin: 0;
  padding: 40px 0;
}

.faqPosting .accordion {
  border: 0;
}

.faqPosting .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 12px !important;
  overflow: hidden;
}

.faqPosting .accordion-body p {
  font-size: 16px;
  text-align: left;
}

.accordion-header {
  padding: 0;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 16px !important;
  overflow: hidden;
}

.accordion-item:not(:first-of-type) {
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-button {
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  text-transform: initial;
}

.accordion-button:not(.collapsed) {
  background: #ef3b24;
  color: #fff;
}

.accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
  transform: rotate(0deg);
}

.accordion-button:hover,
.accordion-button:focus {
  background: #ef3b24;
  color: #fff;
  box-shadow: none;
}

.accordion-button:hover:after {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
}

.accordion-body p {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

.loginHere {
  margin-top: 12px;
  display: block;
  font-size: 14px;
  color: #333;
}

.loginHere a {
  font-size: 14px;
  color: #333;
}

.loginHere a span {
  color: #ef3b24;
}

/**/
.upload-box {
  position: relative;
}

.fileUpload {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  background: #fff;
}

.fileInput {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
}

.upload-label {
  display: flex;
  background-color: transparent;
  color: #333;
  padding: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin: 0 !important;
  font-weight: normal !important;
  width: 100%;
}

.fileName {
  display: inline-flex;
  font-size: 14px;
  color: #333;
  margin-left: auto;
  max-width: 190px;
  width: max-content;
  text-align: right;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fileName a {
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
  color: #0a3622;
  background-color: #d1e7dd;
  border: 1px solid #a3cfbb;
  line-height: normal;
  display: inline-flex;
}

.fileName a:hover,
.fileName a:focus {
  color: #fff;
  background: #0a3622;
  border-color: #0a3622;
}

.fileName a .viewUpImages {
  width: 100px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  text-align: right;
}

.remove-btn {
  display: none;
  color: #333;
  padding: 0;
  border: none;
  background: transparent;
  margin-left: 10px;
  cursor: pointer;
}

.remove-btn:hover {
  color: #e74c3c;
}

.imgSupport {
  float: right;
  font-size: 13px;
  color: #333;
}

.upload-box .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  position: relative;
  height: 8px;
  background: #eee;
  border-radius: 6px;
  margin-top: 3px;
  display: none;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #ef3b24;
  transition: width 0.3s ease;
}

.upload-message {
  margin-top: 5px;
  color: green;
  font-weight: normal;
  display: none;
  font-size: 13px;
}

.manageCompanyNav {
  width: 100%;
  display: block;
}

.manageSteps {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecf5;
}

.step {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.gm-step {
  margin-left: auto;
  border: 1px dashed #ccc;
  border-radius: 4px;
  padding: 10px 5px 4px;
}

.gm-step::after {
  background: transparent;
}

.step li {
  list-style: none;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.step li:first-child {
  justify-content: start;
}

.step li .stepItem {
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  padding: 0 3px;
  z-index: 1;
  justify-content: end;
}

.step li .stepNumber {
  width: 25px;
  height: 25px;
  min-width: 25px;
  color: #fff;
  border-radius: 4px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: 16px;
  margin-right: 5px;
  font-weight: 600;
}

.step li.active .stepNumber {
  background: #ef3b24;
  color: #fff;
}

.step li.completed .stepNumber {
  background: green;
  color: #fff;
}

.step li .stepTitle {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.step li.completed .stepTitle {
  color: green;
}

.step li.active .stepTitle {
  color: #ef3b24;
}

.step:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #d1dce1;
  top: 17px;
  right: 0;
  z-index: 0;
  transition: all ease-in-out 0.3s;
}

.step li:first-child:after {
  content: none;
}

.step li.active {
  color: #333;
}


.step li.gmVerified {
  background: #fbf0eb;
  border: 1px solid #ece2de;
  border-radius: 4px;
}

.step li.gmVerified .stepItem {
  background: #fbf0eb;
  padding: 3px 5px;
}

.step li.gmVerified .stepItem .stepTitle {
  font-size: 14px;
  font-weight: 600;
  color: #ef3b24;
}

.step li.gmVerified .stepItem .stepNumber {
  color: #ef3b24;
  background: #eacbc7;
}

.step li.gmVerified .gmVerifiedHover {
  position: absolute;
  top: 100%;
  left: -40px;
  width: 170px;
  height: auto;
  background: #fff;
  z-index: 999;
  -webkit-filter: drop-shadow(0px 0.625rem 1.875rem rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px .625rem 1.875rem rgba(0, 0, 0, .2));
  will-change: 'transform';
  padding: 10px;
  border-radius: 16px;
  display: none;
  margin: auto 0;
  height: auto;
  border: 0;
  bottom: auto;
  transform: translateY(0%);
}

.step li.gmVerified .gmVerifiedHover:before {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -12px;
  bottom: 0;
  content: '';
  border-bottom: 12px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  width: 6px;
  height: 13px
}

.step li.gmVerified:hover .gmVerifiedHover {
  display: block
}

.gmVerifiedHover .fullInfo {
  font-size: 14px;
  color: #333;
  line-height: 18px;
  display: block;
}

.gm-step li:first-child {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fbf0eb;
  display: inline-block;
  padding: 4px 9px;
  max-width: max-content;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
}

.gm-step li:first-child img {
  max-width: 20px;
}

.gm-step::after {
  height: 0;
  width: 0;
}

.marginLeftAuto {
  margin-left: auto;
}

.dashboardUser:hover .userDropdown {
  display: block;
}

/**/
.marketLabel {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.market {
  max-width: 100%;
  background: #fff;
}

.stateCity {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.state-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.arrow {
  display: inline-flex;
  margin-left: 15px;
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  cursor: pointer;
}

.arrow.down {
  transform: rotate(90deg);
}

.state-label.open .arrow {
  transform: rotate(90deg);
  /* rotate arrow when open */
}

.state-text {
  margin-left: 6px;
  margin-right: 12px;
  font-weight: bold;
}

.citiesList {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e9ecf5;
}

.citiesList.show {
  display: flex;
  /* or flex */
}

.allSelect {
  margin-left: auto;
  cursor: pointer;
}

input[type="checkbox"] {
  transform: scale(1.1);
  margin-right: 6px;
}

.submit-btn {
  margin-top: 20px;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #0056b3;
}

/**/

.stateCity label {
  display: block;
  text-align: left;
  position: relative;
  font-weight: 600;
  color: #333;
}

.stateCity label input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.stateCity label span {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.stateCity label span:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #424242;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.stateCity label input:checked+span:before {
  border-color: #0f507a;
}

.stateCity label input:checked+span:after {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #0f507a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* .stateCity label input:checked + span, */
.stateCity label:hover span {
  color: #0f507a;
}

.citiesList {
  width: 100%;
  flex-flow: row wrap;
  gap: 15px;
}

.citiesList label {
  width: calc(100% / 6 - 13px);
  padding: 0;
  font-weight: normal;
}

.citiesList label span {
  font-size: 13px;
  color: #555;
}

.noLeft {
  margin-left: 0;
  margin-right: auto;
}

/*Input Tags*/
.tag-input-wrapper {
  border: 1px solid #ced4da;
  border-radius: 4px;
  min-height: 40px;
  font-size: 13px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  cursor: text;
  position: relative;
}

.tag {
  background: #e0f3ff;
  border: 1px solid #90caf9;
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  height: 28px;
}

.tag .tagRemoveBtn {
  cursor: pointer;
  margin-left: 5px;
  font-weight: bold;
}

.tag-input-wrapper input {
  border: none;
  flex: 1;
  min-width: 100px;
  outline: none;
  padding: 0 5px;
}

.suggestions-box {
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  background: #fff;
  margin-top: 32px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.suggestions-box div {
  padding: 8px;
  cursor: pointer;
}

.suggestions-box .active {
  background: #d0eaff;
}

.suggestions-box div:hover {
  background: #f0f0f0;
}

.addressTitle {
  display: flex;
  align-items: center;
}

.addressTitle .checkbox {
  margin-left: 15px;
}

.addNewAddress {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  display: inline-flex;
  font-weight: normal;
  padding: 8px 15px;
  border-radius: 4px;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  line-height: normal;
}

.addNewAddress svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.addNewAddress:hover,
.addNewAddress:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

.addressBox {
  display: none;
  padding: 8px 10px 10px;
  background: #f7f7f7;
  border-radius: 6px;
  border: 1px solid #dfe1e6;
  margin-bottom: 20px;
}

.cancelBtn {
  margin-top: 10px;
  padding: 8px 12px;
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.cancelBtn:hover {
  background: #b02a37;
}

.savedAddress {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cancelBtn,
.saveBtn {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cancelBtn {
  background: #dc3545;
  color: #fff;
}

.cancelBtn:hover {
  background: #b02a37;
}

.saveBtn {
  background: #28a745;
  color: #fff;
}

.saveBtn:hover {
  background: #218838;
}

#savedAddresses {
  margin-top: 20px;
}

.savedItem {
  background: #f8f9fa;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 8px;
  border-radius: 5px;
}

.actionBtns {
  margin-top: 5px;
}

.editBtn,
.deleteBtn {
  padding: 5px 10px;
  margin-right: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.editBtn {
  background: #ffc107;
  color: #000;
}

.editBtn:hover {
  background: #e0a800;
}

.deleteBtn {
  background: #dc3545;
  color: #fff;
}

.deleteBtn:hover {
  background: #b02a37;
}

.errorMsg {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

/**/
.card {
  margin-bottom: 1.5rem;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  position: relative;
  border-radius: 8px;
  border: 1px solid #e6eaed;
  box-shadow: none;
  color: #646b72;
}

.card .card-header {
  border-color: #e6eaed;
  position: relative;
  background: transparent;
  padding: 1rem 1.25rem 1rem;
}

.statusSelect {
  margin-right: 15px;
}

.tableSearchReset {
  display: flex;
}

.tableSearch {
  margin-left: auto;
  max-width: 220px;
  width: 100%;
  position: relative;
}

.tableSearch input {
  width: 100%;
  border-radius: 4px;
  height: 40px;
  font-size: 14px;
  border: 1px solid #ededf5;
  padding: 0 15px;
  outline: 0;
}

.tableSearch input:focus {
  border-color: #fd4f02;
  box-shadow: none;
}

.tableSearch .searchBtn {
  position: absolute;
  top: 2px;
  right: 3px;
  background-color: #fff;
  height: 34px;
  color: #88959b;
  transition: none;
  font-size: 14px;
  padding: 4px 10px;
  border: 0px;
  border-radius: 0px 5px 5px 0px;
  z-index: 9;
}

.tableSearch .searchBtn:hover,
.tableSearch .searchBtn:focus {
  color: #fb4e02;
}

.tableSearchReset .resetBtn {
  background: #0f507a;
  color: #fff;
  border: 1px solid #064066;
  font-size: 14px;
  line-height: normal;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 0 15px;
  height: 40px;
  border-radius: 4px;
  font-weight: normal;
}

.tableSearchReset .resetBtn:hover,
.tableSearchReset .resetBtn:focus {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
}

.addCompanyBtn {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
  display: inline-flex;
  font-weight: normal;
  padding: 0 15px;
  border-radius: 0.25rem;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  margin-left: 15px;
  line-height: 40px;
}

.addCompanyBtn:hover,
.addCompanyBtn:focus {
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

.dashboardTable {
  margin: 0;
  width: 100%;
}

.table> :not(:first-child) {
  border-top: 1px solid #0f507a;
}

.dashboardTable th {
  padding: 10px 12px;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #ecf1f4;
  color: #0f507a;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #e0e0e6;
}

.dashboardTable td {
  padding: 10px 12px;
  vertical-align: middle;
  white-space: nowrap;
  color: #313030;
  font-size: 14px;
  border: 1px solid #f0f0f8;
  line-height: normal;
}

.checkboxs {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}

.checkboxs input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkboxs .checkmarks {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.checkboxs input~.checkmarks {
  border: 1px solid #ccc;
  background-color: #f7f5f5;
  border-radius: 4px;
}

.checkboxs input:checked~.checkmarks {
  background-color: #24365e;
  border-color: #2d467b;
}

.checkboxs .checkmarks::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 9px;
  border: solid #f9f5f5;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.checkboxs input:checked~.checkmarks:after {
  display: block;
}

.companyName .catTitle {
  font-weight: 600;
  color: #2d2c2c;
  font-size: 14px;
  margin-bottom: 0px;
}

.companyName .date {
  font-size: 12px;
  line-height: normal;
  margin: 5px 0 0;
}

.companyName .link {
  font-weight: normal;
  font-size: 12px;
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 4px;
  line-height: normal;
  background-color: #f1f3f4;
  color: #0f507a;
  border: 1px solid #ddd;
  margin-top: 5px;
}

.companyName .link span {
  margin-left: 5px;
}

.thumb_1 {
  max-width: 60px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.thumb_2 {
  max-width: 60px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #ccc;
}

/** For Switch **/
.setUnsetToggle {
  width: 70px;
  height: 30px;
  position: relative;
  display: inline-block;
}

.inputToggleSlider {
  width: 70px;
  height: 30px;
  display: flex;
  align-items: center;
  border-radius: 34px;
  background-color: #f44336;
  /* Unset (red) */
  transition: background-color 0.4s;
  cursor: pointer;
}

.inputToggleSlider:before {
  content: "";
  display: block;
  background-color: #fff;
  box-shadow: 0 0 0 1px #949494;
  bottom: auto;
  height: 18px;
  left: 5px;
  position: absolute;
  transition: 0.4s;
  width: 18px;
  z-index: 5;
  border-radius: 100%;
}

.inputToggleSlider:after {
  display: block;
  line-height: 24px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: bold;
  content: "unset";
  color: #fff;
  padding-left: 26px;
  transition: all 0.4s;
}

.inputToggle {
  position: absolute;
  opacity: 0;
}

.inputToggle:checked+.inputToggleSlider {
  background-color: #198754;
  /* Set (green) */
}

.inputToggle:checked+.inputToggleSlider:before {
  transform: translateX(42px);
}

.inputToggle:checked+.inputToggleSlider:after {
  content: "set";
  color: #fff;
  padding-left: 12px;
}

.order_input {
  max-width: 50px;
  height: 40px;
  text-align: center;
}

.status {
  display: inline-block;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 13px;
  line-height: normal;
  background: #198754;
  color: #fbf7f7;
}

.edit-delete-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.edit-delete-action a {
  border: 1px solid #e6eaed;
  background-color: #fbf7f7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  color: #0f507a;
}

.edit-delete-action a.edit svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

/**/
.tooltipBox {
  position: absolute;
  background-color: #ef3b24;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: normal;
  white-space: nowrap;
  z-index: 1000;
  display: none;
  pointer-events: none;
}

.tooltipBox::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ef3b24;
}

.actionButtons {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.actionButtons a {
  border-radius: 4px;
  padding: 8px 15px;
  line-height: normal;
  align-items: center;
  justify-content: center;
  display: flex;
  background: #0f507a;
  color: #fff;
  font-size: 13px;
}

.actionButtons a.deactivate {
  background-color: #fd7e14;
}

.actionButtons a.delete {
  background: #e65c5c;
}

.actionButtons a.activate:hover,
.actionButtons a.activate:focus {
  background-color: #1bb99f;
}

.actionButtons a.deactivate:hover,
.actionButtons a.deactivate:focus {
  background-color: #dd6c0e;
}

.actionButtons a.delete:hover,
.actionButtons a.delete:focus {
  background: #bb4242;
}

.actionButtons a:hover,
.actionButtons a:focus {
  background: #ff5307;
}

.pagination {
  justify-content: flex-end;
  gap: 5px;
}

.pagination .page-link {
  background-color: #f9f9fb;
  border: 1px solid #ddd;
  color: #373737;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-link svg {
  width: 16px;
  min-width: 16px;
  height: 16px;
}

.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link.active {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  outline: 0;
  box-shadow: none;
}

.error-message {
  color: red;
  font-size: 13px;
}

.backgroundBox_2 {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f1f5f7;
  border-radius: 6px;
  border: 1px solid #dce2e6;
  margin-bottom: 15px;
  line-height: normal;
}

.backgroundBox_2 .addressTitle {
  color: #333;
}

.backButton {
  width: auto;
  height: 34px;
  padding: 0 10px 0 5px;
  background: #fff9f9;
  border: 1px solid #eee;
  margin: 0;
  border-radius: 4px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25375e;
  font-size: 14px;
  font-weight: normal;
}

.backButton:hover {
  background-color: #fd4f02;
  color: #fdf9f9;
  border-color: #f74e05;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 15px;
  margin-left: 0px;
  list-style: none;
  margin-left: auto;
}

.breadcrumb .breadcrumb-item a {
  color: #24365e;
  font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.5rem;
  position: relative;
  font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%238a969c" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>');
}

.metaBox {
  padding: 15px 15px 20px;
  border: 1px solid #e6eaed;
  border-radius: 12px;
  background: #f6f8f9;
  display: flow-root;
  margin-bottom: 15px;
}

/* Image Uploader */
.image-upload-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image_upload_box {
  position: relative;
  width: 100%;
  height: 120px;
  border: 1px dashed #aaa;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  cursor: pointer;
}

.image_upload_box:hover,
.image_upload_box:focus {
  border-color: #ef3b24;
}

.js--image-preview {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
}

.imgText {
  color: #666;
  font-size: 14px;
  text-align: center;
  padding: 0 15px;
  font-weight: 500;
  pointer-events: none;
}

.image_upload_box:hover .imgText {
  color: #ef3b24;
}

.js--no-default .imgText {
  display: none;
}

.image-upload {
  display: none;
}

.drop {
  position: absolute;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
  z-index: 1;
}

.drop.animate {
  transform: scale(2.5);
  opacity: 0;
}

@keyframes ripple-animation {
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  z-index: 2;
  width: 65px;
}

.controls button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.controls button:hover {
  background: #ef3b24;
}

.hidden {
  display: none;
}

.save_btn {
  background-color: #333;
  border-color: #222;
  color: #fff;
  padding: 10px 35px;
}

.save_btn:hover,
.save_btn:focus {
  background-color: #222;
  border-color: #111;
  color: #fff;
}

/**/
.saveNew {
  background-color: #ff5105;
  border-color: #fb5005;
  color: #fff;
  padding: 10px 35px;
}

.saveNew:hover,
.saveNew:focus {
  background: #cc4409;
  border-color: #b33d09;
  color: #fff;
}

.saveClosed {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  padding: 10px 35px;
}

.saveClosed:hover,
.saveClosed:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

/**/
.cancel_btn {
  background: #e65c5c;
  border-color: #ce4f4f;
  padding: 10px 35px;
  color: #fff;
}

.cancel_btn:hover,
.cancel_btn:focus {
  background: #bd4a4a;
  border-color: #993535;
  color: #fff;
}

.buttons {
  display: flex;
}

.buttons .backButton {
  background: #333;
  color: #fff;
  border-color: #222;
  padding: 18px 20px;
  display: inline-flex;
  font-size: 15px;
}

.buttons .backButton:hover {
  background-color: #fd4f02;
  color: #fdf9f9;
  border-color: #f74e05;
}

/* Thank You Page*/

.thankyou-container {
  background: #fff;
  padding: 50px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #7e8488;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  border: 4px solid #4caf50;
  position: relative;
  margin-bottom: 15px;
  animation: scaleIn 0.5s ease forwards;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 20px;
  width: 15px;
  height: 30px;
  border-right: 4px solid #4caf50;
  border-bottom: 4px solid #4caf50;
  transform: rotate(45deg);
  transform-origin: left top;
  animation: drawCheck 0.5s 0.5s ease forwards;
}

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

  100% {
    transform: scale(1);
  }
}

@keyframes drawCheck {
  0% {
    height: 0;
    width: 0;
  }

  50% {
    height: 30px;
    width: 0;
  }

  100% {
    height: 30px;
    width: 15px;
  }
}

.thankyou-container h1 {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.thankyou-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/**/
.leadContactInfo ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

.leadContactInfo ul li {
  list-style: none;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  color: #333;
}

.leadMessage {
  max-width: 350px;
  width: 100%;
  display: block;
  white-space: normal;
}

.leadMessage p {
  line-height: 1.4;
  font-size: 14px;
  color: #333;
}

.leadPostedDate {
  max-width: 200px;
  width: 100%;
  display: block;
  white-space: normal;
}

.leadPostedDate p {
  line-height: 1.4;
  font-size: 14px;
  color: #333;
}

.backgroundBox_1 {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #bed1db;
  margin-bottom: 15px;
  line-height: normal;
}

.backgroundBox_3 {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #fbf0eb;
  border-radius: 6px;
  border: 1px solid #ece2de;
  margin-bottom: 15px;
  line-height: normal;
}

.backgroundBox_3 .companyTabInfoTitle {
  border-bottom: 1px solid #ece2de;
}

.factoryAddress {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #fbf0eb;
  border-radius: 6px;
  border: 1px solid #ece2de;
  margin-bottom: 15px;
  line-height: normal;
}

.factoryAddress .companyTabInfoTitle {
  border: 0;
  margin: 0;
  padding: 0;
}

.factorySection {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ece2de;
}

.addedNewAddressBox {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #fbf0eb;
  border-radius: 6px;
  border: 1px solid #ece2de;
  margin-bottom: 15px;
  line-height: normal;
}

.addedNewAddressBox .companyTabInfoTitle {
  border-bottom: 1px solid #ece2de;
  color: #333;
}

.addressTitle .editRemove {
  margin-left: auto;
}

.addedNewAddressBox .form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

/**/
.modal-content {
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-header {
  padding: 10px 15px 10px 15px;
  background: #f5f5f5;
}

.modal-title {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #0f507a;
}

.modal-body {
  padding: 15px;
  zoom: 1;
}

.saveBtnModal {
  padding: 10px 30px;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0f507a;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px;
  border: 0;
  /* margin-bottom: 15px; */
}

.saveBtnModal:hover,
.saveBtnModal:focus {
  background: #ef3b24;
  color: #fff;
}

.backgroundBox_1 label {
  margin-bottom: 5px;
}

.backgroundBox_2 label {
  margin-bottom: 5px;
}

.backgroundBox_3 label {
  margin-bottom: 5px;
}

.addedNewAddressBox label {
  margin-bottom: 5px;
}

/**/
.setting_1 {
  float: left;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  min-height: 280px;
  box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px 0 #0000000f;
  margin-bottom: 20px;
}

.setting_image {
  background: #fff9ee;
  border-bottom: 1px solid #ddd;
  padding: 15px;
  height: 150px;
  position: relative;
}

.setting_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  width: auto;
  padding: 15px;
}

.setting_info {
  float: left;
  width: 100%;
  padding: 15px;
  margin: 0;
}

.setting_info h2 {
  font-size: 18px;
  margin: 0 0 5px;
  padding: 0;
  font-weight: 600;
  color: #0f507a;
}

.setting_info ul {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
}

.setting_info ul li {
  list-style: none;
  line-height: 24px;
  font-size: 14px;
}

.setting_info ul li a {
  color: #333;
}

.setting_info ul li a:hover {
  color: #0f507a;
}

.hidden {
  display: none;
}

/* Dropdown styling */
#category-dropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  max-height: 250px;
  overflow-y: auto;
  border-radius: 6px;
  display: none;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#category-list li {
  border-bottom: 1px solid #eee;
}

#category-list li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  position: relative;
}

#category-list li a:hover,
#category-list li a.highlight {
  background: #e0f0ff;
}

#category-list li ul {
  display: none;
  padding-left: 20px;
}

.arrow {
  float: right;
  font-size: 12px;
  color: #666;
}

/* .selected::after { content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Â"; position: absolute; right: 12px; color: green; font-weight: bold; } */
#dropdown-breadcrumb {
  padding: 0;
  font-size: 13px;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
}

#dropdown-breadcrumb span {
  margin-right: 5px;
  color: #555;
}

#dropdown-breadcrumb span::after {
  content: ">";
  margin-left: 5px;
  color: #aaa;
}

#dropdown-breadcrumb span:last-child::after {
  content: "";
}

#selected-section {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.selected-box {
  background: #d0e6f7;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.selected-box .remove {
  margin-left: 5px;
  cursor: pointer;
  font-weight: bold;
}

.searchedPanel {
  float: left;
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #bed1db;
  line-height: normal;
  margin-bottom: 15px;
}

.searchedPanel h4 {
  font-size: 18px;
  margin: 0 0 10px;
  padding: 0;
}

.selectedResults {
  width: 100%;
  float: left;
  max-height: 280px;
  overflow: hidden;
  overflow-y: auto;
}

.searchGroup {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.searchedPanel ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.searchedPanel ul li {
  list-style: none;
  background: #e0f3ff;
  border: 1px solid #90caf9;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  height: auto;
}

.removeBtn2 {
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #f78678;
}

.searchedPanel ul li:hover {
  background: #bce5ff;
  border: 1px solid #7cb6e6;
}

/**/
.businessCategoryPanel {
  width: 100%;
  display: flex;
  margin-bottom: 25px;

  gap: 15px;
}

.mainCat,
.subCat,
.subSubCat {
  width: calc(100% / 3 - 10px);
  border: 1px solid #ced4da;
  padding: 15px;
  border-radius: 12px;
}

.subCat,
.subSubCat {
  display: none;
}

.mainCat ul,
.subCat ul,
.subSubCat ul {
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

.category-group {
  margin-bottom: 15px;
}

.searchedPanel ul {
  margin-top: 10px;
}

.mainCat ul li,
.subCat ul li,
.subSubCat ul li {
  line-height: normal;
  font-size: 14px;
  color: #333;
  list-style: none;
  padding: 7px 12px;
}

.mainCat ul li:hover,
.subCat ul li:hover,
.subSubCat ul li:hover {
  background-color: #f0f8ff;
}

.mainCat ul li.active,
.subCat ul li.active,
.subSubCat ul li.active {
  background-color: #d0e7ff;
  color: #0a66c2;
}

/**/
.businessCatLeft {
  max-width: 200px;
  border-right: 1px solid #ddd;
  padding: 10px;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  overflow-y: auto;
}

.businessCatLeft ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.businessCatLeft ul li {
  margin-bottom: 0;
}

.businessCatLeft a,
.businessCatLeft label {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  transition: background 0.3s;
  border: 0 solid transparent;
}

.businessCatLeft a:hover,
.businessCatLeft label:hover,
.businessCatLeft label.active,
.businessCatLeft a.active {
  /* border: 1px solid #d4e2ea; */
  color: #ef3b24;
}

.businessCatLeft a svg {
  margin-left: auto;
  width: 14px;
  height: 14px;
}

.businessCatRight {
  flex: 1;
  padding-left: 20px;
  padding-right: 15px;
  display: none;
  /* hidden until a category is activated */
  width: calc(100% - 200px);
  max-height: 350px;
  overflow: hidden;
  overflow-y: auto;
}

.category-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.catPanel {
  display: none;
}

.catPanel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 4;
}

.catPanel ul li {
  display: inline-block;
  width: 100%;
}

.catPanel ul li label {
  font-weight: 600;
  color: #ef3b24;
  font-size: 14px;
  transition: all 0.2s ease;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  white-space: pre;
  width: 100%;
  border: 0;
  padding-left: 2px;
  line-height: 18px;
}

.catPanel ul li ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.catPanel ul li ul li label {
  font-size: 13px;
  color: #333;
  font-weight: normal;
  display: flex;
  align-items: center;
}

.removeParent svg {
  width: 14px;
  height: 14px;
  color: var(--youtube);
  margin-left: 7px;
}

.removeChild svg {
  width: 12px;
  height: 12px;
  color: var(--youtube);
  margin-left: 7px;
}

.cat-group {
  margin-bottom: 15px;
}

.cat-group strong {
  margin-bottom: 8px;
  display: block;
  color: #0f507a;
}

.group-items {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-item {
  list-style: none;
  background: #e0f3ff;
  border: 1px solid #90caf9;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  height: auto;
}

.remove-cat {
  color: var(--youtube);
  margin-left: 7px;
  background: transparent;
  border: 0;
  outline: 0;
  line-height: 14px;
}

.category-list {
  margin: 0;
  padding: 0;
}

.category-list li {
  line-height: normal;
  font-size: 14px;
  color: #333;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7px 0;
}

.category-list li a {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  width: 100%;
}

.category-list li a svg {
  width: 14px;
  height: 14px;
  margin-left: auto;
}

.category-list li a:hover {
  color: #0f507a;
}

.category-list li a.active {
  background-color: #d0e7ff;
  color: #0a66c2;
}

#category-levels {
  width: 100%;
  display: flex;
  margin: 0;
  margin-bottom: 25px;
  gap: 15px;
}

#category-levels .col-4 {
  width: calc(100% / 3 - 10px);
}

.category-container {
  border: 1px solid #ced4da;
  border-top: 0;
  padding: 15px;
  border-radius: 0 0 12px 12px;
  margin-bottom: 15px;
  max-height: 540px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

#category-levels .col-4 .form-control {
  border-radius: 4px 4px 0 0;
}

.manageCompanyInfo {
  float: left;
  width: 100%;
  margin: 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #dfe1e6;
  border-radius: 6px;
  min-height: 750px;
}

.registereddetails {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f1f5f7;
  border-radius: 6px;
  border: 1px solid #dce2e6;
  margin-bottom: 15px;
  line-height: normal;
}

.registereddetails ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}

.registereddetails ul li {
  list-style: none;
  width: calc(100% / 3 - 10px);
  line-height: normal;
  color: #333;
  margin: 0;
  padding: 0;
}

.businessStep {
  display: flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 15px;
  line-height: normal;
  margin-bottom: 10px;
}

.businessStepTitle {
  color: #333;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.businessStepButton {
  margin-left: auto;
}

.editButton {
  background-color: #22bef0;
  border: 1px solid #13aadb;
  color: #fff;
  padding: 8px 20px;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px;
  border: 0;
}

.editButton:hover,
.editButton:focus {
  background: #0f9bc8;
  border-color: #0f507a;
  color: #fff;
}

.totalSelected {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f1f5f7;
  border-radius: 6px;
  border: 1px solid #dce2e6;
  margin-bottom: 15px;
  line-height: normal;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

#totalSelectedCategory {
  margin-left: 5px;
}

.totalSelected a {
  margin-left: 15px;
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 4px;
  color: #0a3622;
  background-color: #d1e7dd;
  border: 1px solid #a3cfbb;
}

.totalSelected a:hover,
.totalSelected a:focus {
  background: #0a3622;
  border-color: #0a3622;
  color: #fff;
}

.verificationTitle {
  font-size: 16px;
  margin: 0 0 15px;
  font-weight: 500;
  color: #0f507a;
  background: #eee;
  border-left: 2px solid #0f507a;
  padding: 8px 12px;
  border-radius: 4px;
}

.verificationTitle .imgSupport {
  font-size: 13px;
  color: #333;
  float: right;
  font-weight: normal;
}

.verification label {
  font-size: 14px;
  color: #818181;
  line-height: 1.4;
  margin-bottom: 5px;
  font-weight: 500;
  white-space: normal;


}

.selectedCategory {
  color: #333;
  margin-bottom: 10px;
}

.selectedCategory strong {
  color: #0f507a;
}

.locked .editButton {
  border: 1px solid #222;
  opacity: 0.7;
  background: #333;
  border-radius: 4px;
}

.featureTitle {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.inputToggleSlider.textChange {
  width: 60px;
}

.inputToggleSlider.textChange:after {
  content: "Off";
  color: #fff;
  padding-left: 26px;
}

.inputToggle:checked+.inputToggleSlider.textChange:before {
  transform: translateX(30px);
}

.inputToggle:checked+.textChange:after {
  content: "On";
  color: #fff;
  padding-left: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 6px 4px 6px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 3px;
  font-size: 75%;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-success {
  color: #fff;
  background-color: #15bc4d;
}

.manageCompanyInfo .editButton {
  font-size: 14px;
  width: 110px;
  padding: 6px 15px;
  justify-content: center;
}

.editButton.pending {
  background: #ef3b24;
  color: #fff;
  border-color: #ef3b24;
}

.editButton.completed {
  color: #fff;
  background-color: #319165;
  border: 1px solid #337d5c;
}

.manageCompanyInfo span {
  padding: 6px 10px;
  font-weight: normal;
  border-radius: 4px;
  line-height: normal;
  margin-left: 10px;
  font-size: 14px;
  width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.manageCompanyInfo span.pending {
  color: #664d03;
  background-color: #fff3cd;
  border: 1px solid #e6d298;
}

.manageCompanyInfo span.completed {
  color: #0a3622;
  background-color: #d1e7dd;
  border: 1px solid #a3cfbb;
}

.morePhotoBtn {
  background: #666;
  color: #fff;
  border: 1px solid #555;
  padding: 7px 12px;
  display: inline-flex;
  text-align: center;
  border-radius: 4px;
  line-height: normal;
  font-size: 13px;
}

.morePhotoBtn:hover,
.morePhotoBtn:focus {
  background: #ef3b24;
  color: #fff;
  border-color: #ef3b24;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.gmStep {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  background: #f0f0f0;
  border: 1px solid #bed1db;
  border-left: 5px solid #ddd;
  border-radius: 0 6px 6px 0px;
  transition: 0.3s;
  align-items: center;
  counter-increment: step-counter;
  position: relative;
  margin-left: 40px;
}

.gmStep::before {
  content: counter(step-counter);
  margin-right: 5px;
  font-size: 18px;
  background-color: #f59e0b;
  color: white;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px 0 0 3px;
  position: absolute;
  left: -40px;
  width: 40px;
  height: 102%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmStep.completed:before {
  background: #2cae66;
}

.gmStep img {
  width: 45px;
  text-align: center;
}

.gmStep .details {
  display: flex;
  flex-direction: column;
}

.gmStep .details strong {
  color: #333;
}

.gmStep.completed {
  border-left-color: #2cae66;
  background: #e6f9ed;

}

.gmStep.completed .label {
  color: #fff;
}

.gmStep.pending {
  border-left-color: #f39c12;
  background: #fff4e6;
}

.gmStep .details p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.checkIcon {
  margin-left: auto;
  font-size: 25px;
}

.status {
  margin-left: auto;
}

.profileBtn {
  background-color: #22bef0;
  border: 1px solid #13aadb;
  color: #fff;
  padding: 7px 12px;
  display: inline-flex;
  text-align: center;
  border-radius: 4px;
  line-height: normal;
  font-size: 14px;
  margin-left: auto;
}

.profileBtn:hover,
.profileBtn:focus {
  background: #ef3b24;
  color: #fff;
  border-color: #ef3b24;
}

/**/
.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
}

.dot {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
}

.status[data-state="pending"] {
  color: #333;
  background: #f59e0b;
}

.status[data-state="pending"] .label {
  color: #000;
}

.status[data-state="completed"] {
  color: #fff;
}

.status[data-state="pending"] .dot {
  position: relative;
  background: transparent;
}

.status[data-state="pending"] .dot:after {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23222" viewBox="0 0 16 16"><path d="M2.5 15a.5.5 0 1 1 0-1h1v-1a4.5 4.5 0 0 1 2.557-4.06c.29-.139.443-.377.443-.59v-.7c0-.213-.154-.451-.443-.59A4.5 4.5 0 0 1 3.5 3V2h-1a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-1v1a4.5 4.5 0 0 1-2.557 4.06c-.29.139-.443.377-.443.59v.7c0 .213.154.451.443.59A4.5 4.5 0 0 1 12.5 13v1h1a.5.5 0 0 1 0 1zm2-13v1c0 .537.12 1.045.337 1.5h6.326c.216-.455.337-.963.337-1.5V2zm3 6.35c0 .701-.478 1.236-1.011 1.492A3.5 3.5 0 0 0 4.5 13s.866-1.299 3-1.48zm1 0v3.17c2.134.181 3 1.48 3 1.48a3.5 3.5 0 0 0-1.989-3.158C8.978 9.586 8.5 9.052 8.5 8.351z"/></svg>');
}

.status[data-state="completed"] .dot {
  position: relative;
}

.status[data-state="completed"] .dot:after {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z"/></svg>');
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}

.bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00b389, #3ddc97, #6ee7b7);
}

.selectedMarketList {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

.selectedMarketList ul {
  margin: 0;
  padding: 0;
}

.selectedMarketList ul li {
  list-style: none;
  color: #333;
  line-height: normal;
  font-size: 14px;
}

.selectedMarketList ul li strong {
  color: #ef3b24;
  font-weight: 600;
  font-size: 15px;
}

.selectedMarketList ul li ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.selectedMarketList ul li ul li strong {
  margin-bottom: 7px;
}

.selectedMarketList ul li ul li {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
  line-height: normal;
  font-size: 14px;
  color: #333;
}

.selectResults {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #bed1db;
  line-height: normal;
  margin-bottom: 15px;
}

.selectResults ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px 15px;
  margin: 0;
  padding: 0;
}

.selectResults ul li {
  width: calc(100% / 2 - 10px);
  list-style: none;
  color: #333;
  font-size: 14px;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 4px;
  line-height: normal;
}

.selectResults ul li.full {
  width: 100%;
}

.selectResults ul li a {
  color: #0f507a;
}

.selectResults ul li a:hover,
.selectResults ul li a:focus {
  color: #ef3b24;
}

.videoLinkBtn {
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
  color: #0a3622;
  background-color: #d1e7dd;
  border: 1px solid #a3cfbb;
  line-height: normal;
}

.videoLinkBtn:hover,
.videoLinkBtn:focus {
  color: #fff !important;
  background: #0a3622;
  border-color: #0a3622;
}

.profile-progress .progress {
  font-size: 12px;
}

.downloadBtn {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0f85ac;
  display: inline-block;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  width: auto;
  text-align: center;
  cursor: pointer;
  margin-left: auto;
  font-size: 14px;
}

.downloadBtn:hover,
.downloadBtn:focus {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
  box-shadow: none;
}

/**/
.gmVerifiedSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0 50px;
  position: relative;
  background: #fff;
  background: linear-gradient(120deg, #000 0, #ef3b24 100%) 0 0 no-repeat padding-box;
  background-repeat: no-repeat;
  overflow: hidden;
  /* margin-top: 66px; */
}

.gmVerifiedSection .container {
  position: relative;
  z-index: 2;
}

.gmVerifiedTitle {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.gmVerifiedTitle span {
  color: #13bcf2;
  font-weight: 700;
}

.gmVerifiedImg {
  max-width: 170px;
  float: right;
  margin-bottom: 15px;
}

/**/
.feature_2 {
  z-index: 1;
  padding: 20px 15px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #f0e7e7;
  box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
  text-align: center;
  height: 100%;
}

.hover-line:before {
  content: "";
  display: block;
  height: 5px;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #4c86e7;
  transition: all 0.2s ease-in-out;
}

.feature__icon {
  width: 72px;
  height: 72px;
  display: inline-block;
  margin-bottom: 24px;
}

.feature__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ef3b24;
}

.feature__text {
  font-size: 15px;
  color: #6a798c;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 10px;
  margin-bottom: 0;
}

.feature_2 p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/**/
/**/
.swiper_wrap {
  float: left;
  width: 100%;
  padding: 40px 0;
  background: #fff;
}

.bg-sec {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.95) 100%) !important;
  padding: 50px 0;
  overflow: hidden;
  background-color: #405787 !important;
}

/**/
.tm-testi-slide-1 {
  background: #fff;
  padding: 24px 21px 15px;
  margin: 5px 2px;
  border-radius: 18px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #d5dfe4;
}

.tm-testi-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tm-trustpilot-logo {
  flex: 1;
}

.tm-trustpilot-logo img {
  max-width: 91px;
}

.tm-star-ratings {
  flex: 1;
  text-align: right;
  font-weight: 600;
}

.tm-star-ratings img {
  max-width: 84px;
  margin-left: auto;
}

.tm-slide-h4 {
  color: #373737;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  padding-top: 10px;
}

.tm-testi-slide-1 p {
  font-weight: 400;
  font-size: 15px;
  padding: 15px 0;
  line-height: 1.5;
  border-bottom: 1px solid #d5dfe4;
  color: #444;
  text-align: left;
  margin: 0;
  min-height: 150px;
}

.tm-slide-h5 {
  color: #333;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

.tm-slide-h5 span {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: inline-block;
  overflow: hidden;
  margin-right: 7px;
}

.morecontent span {
  display: none;
}

.morelink {
  display: inline-block;
  font-size: 14px;
  color: #0f507a;
  margin-top: 5px;
}

.morelink:hover,
.morelink:focus {
  color: #0f507a;
}

.swiper_wrap {
  /* height: 100%;  */
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
}

/* .swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
} */

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  height: auto;
}

.swiper-prev {
  left: -18px;
  right: auto;
}

.swiper-next {
  right: -18px;
  left: auto;
}

.swiper-prev svg,
.swiper-next svg {
  width: 16px;
  height: 16px;
}

.gmVerification {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #eee;
}

.gmCard {
  float: left;
  width: 100%;
  background: #fff;
  border: 1px solid #e5ebf4;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 61, 222, 0.12);
  padding: 25px;
}

.gmCardTitle {
  font-size: 18px;
  font-weight: 600;
  color: #0f507a;
  margin-bottom: 5px;
}

.gmCard ul {
  margin: 0 0 0 15px;
  padding: 0;
  width: 100%;
}

.gmCard ul li {
  line-height: 1.6;
  color: #333;
  font-size: 15px;
}

.gmCard .table {
  margin: 0;
}

.gmCard .table tr th,
.gmCard .table tr td {
  background: #fff;
  line-height: normal;
  border: 1px solid #eee;
  vertical-align: middle;
  padding: 7px 12px;
  color: #333;
}

.viewCompanyDetails {
  border: 1px solid #bdd5dd;
  padding: 5px 15px;
}

.viewCompanyDetails:hover,
.viewCompanyDetails:focus {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0f85ac;
  box-shadow: none;
  outline: 0;
}

.dashboardTitle .alert {
  padding: 8px 12px;
}

/**/


.outer {
  width: 100%;
  max-width: 100%;
  height: 84vh;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  border: 1px solid #dfe1e6;
}

/* charRightSidebar */
.charRightSidebar {
  width: 320px;
  border-right: 1px solid #e6e6e6;
  background: #fafafa;
  display: flex;
  flex-direction: column
}

.chatSearch {
  padding: 12px;
  border-bottom: 1px solid #eee
}

.chatSearch input {
  flex: 1;
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  background: #fff;
  width: 100%;
}

.chatSearch input:focus,
.chatSearch input:focus-visible,
.chatSearch input:focus-within {
  border-color: #ef3b24;
  box-shadow: none;
  outline: 0;
}


.chatFilters {
  display: flex;
  gap: 8px;
  padding: 8px 12px;

}

.chatFilters button {
  /* flex: 1; */
  background: #f0f0f0;
  border: none;
  padding: 4px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.04);


}

.chatFilters button.active {
  background: #0f507a;
  border-color: #0a3957;
  color: #fff;
  font-weight: 600;
}

.contacts {
  flex: 1;
  overflow: auto
}

.contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer
}

.contact:hover {
  background: #f7f7f7
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #fff;
  font-weight: 700;
  overflow: hidden;
  padding: 2px;
  border: 1px solid #eee;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  padding: 3px;
}

.meta {
  flex: 1;
  display: flex;
  flex-direction: column
}

.meta .name {
  font-weight: 600
}

.meta .last {
  color: #777;
  font-size: 13px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 195px;
}

.badge {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 12px;
  padding: 0 6px
}

/* Main */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f0f0f0;
}

.chatHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  align-items: center;
  gap: 5px;
  display: none;
  position: relative;
}

.chatHeader-left {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.avatar-lg {
  width: 50px;
  height: 50px;
  min-width: 50px;
  padding: 5px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ccc;
  color: #fff;
  font-weight: 800;
  font-size: 18px
}

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

.chatHeader-info {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column */
}

.chatHeader-info .title {
  font-weight: 700;
  font-size: 16px;
  margin-right: 5px;
}

.chatStatus {
  color: #333;
  font-size: 14px;
  margin-left: auto;
  text-transform: capitalize;
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 120px;
}

.chatStatus.online:before {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%23008000" class="bi bi-circle-fill" viewBox="0 0 16 16"><circle cx="8" cy="8" r="8"/></svg>');
  margin-right: 3px;
  margin-top: 3px;
  display: inline-block;
}

.chatLocation {
  position: relative;
  display: none;
}

.chatLocation::before {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%23333" viewBox="0 0 16 16"><path d="M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A32 32 0 0 1 8 14.58a32 32 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10"/><path d="M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4m0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6"/></svg>');
}

.chatGst {
  position: relative;
  display: flex;
  align-items: center;
}

.chatGst::before {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-right: 3px;
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%230f507a" viewBox="0 0 16 16"><path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z"/><path d="M10.97 4.97a.75.75 0 0 1 1.071 1.05l-3.992 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/></svg>');
}

.chatTrust {
  position: relative;
  display: flex;
  align-items: center;
}

.chatTrust:before {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-right: 3px;
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%230f507a" viewBox="0 0 16 16"><path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z"/><path d="M10.97 4.97a.75.75 0 0 1 1.071 1.05l-3.992 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/></svg>');
}

.chatEmail {
  position: relative;
  display: flex;
  align-items: center;

}

.seller-meta .chatEmail {
  font-size: 0;
}


.chatEmail:before {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-right: 3px;
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%230f507a" viewBox="0 0 16 16"><path d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z"/></svg>');
}

.chatEmail:after {
  content: "Email";
  font-size: 14px;
  display: inline-block;
}

.chatExperience {
  position: relative;
  display: flex;
  align-items: center;
}

.chatExperience:before {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-right: 3px;
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%230f507a" viewBox="0 0 16 16"><path d="M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0"/><path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z"/></svg>');
}


.chatMobile {
  position: relative;
  display: flex;
  align-items: center;
}

.chatMobile:before {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-right: 3px;
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%230f507a" viewBox="0 0 16 16"><path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z"/><path d="M10.97 4.97a.75.75 0 0 1 1.071 1.05l-3.992 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/></svg>');
}



.response {
  position: relative;
  display: flex;
  align-items: center;
}

.response:before {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-right: 3px;
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%230f507a" viewBox="0 0 16 16"><path d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z"/></svg>');
}



.status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ccc;
  /* default offline */
}

/* Green dot for online */
.online .status-dot {
  background: #4CAF50;
}

/* Subtle glowing animation */
.online .status-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.4);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}



.seller-meta {
  font-size: 12px;
  color: #444;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center
}

.seller-meta .chatGst {
  font-size: 0;
}

.seller-meta .chatGst::after {
  content: "GST";
  font-size: 14px;
  display: inline-block;
}

.seller-meta .divider {
  color: #ddd;
  margin: 0 2px
}

.chatHeader-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.rating-area {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.rating-area .star {
  gap: 2;
}

.rating-area .star svg {
  width: 14px;
  height: 14px;
}

.chatInfoBtn {
  background: transparent;
  color: #444;
  cursor: pointer;
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  right: 15px;
  top: 15px;
  padding: 3px 8px;
  line-height: normal;
}

.chatInfoBtn svg {
  width: 14px;
  height: 14px;
}

.chatInfoBtn:hover {
  background: #f4f6f8
}

/* .btn {
  background: #0b93f6;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer
} */

.response {
  font-size: 13px;
  color: #333
}

.body {
  flex: 1;
  overflow: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative
}

.welcome {
  margin: auto;
  text-align: center;
  color: #333
}

.welcome img {
  max-width: 260px;
  margin-top: 12px;
  opacity: .95
}

.chatMessages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100% - 20px);
  overflow: auto;
  padding-bottom: 24px
}

.msg {
  max-width: 72%;
  padding: 10px;
  border-radius: 10px;
  word-wrap: break-word
}

.msg.received {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 3px
}

.msg.sent {
  align-self: flex-end;
  background: #dcf8c6;
  border-top-right-radius: 3px
}

.msg .reply-block {
  background: #f7f7f7;
  padding: 6px;
  border-left: 3px solid #34b7f1;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #222
}

.msg img {
  max-width: 110px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
  display: block
}

.time {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 3px;
  text-align: right
}

.tick {
  margin-left: 6px;
  color: gray
}

.tick.read {
  color: var(--green)
}

/* attach area */
.attach-area {
  display: none;
  padding: 12px;
  background: #fff;
  border-top: 1px solid #eee;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.attach-thumb {
  position: relative;
  display: inline-block;
  margin-right: 8px
}

.attach-thumb img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px
}

.attach-thumb button {
  position: absolute;
  right: -8px;
  top: -8px;
  background: #d9534f;
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  border: none;
  cursor: pointer
}

/* composer */
.composer {
  display: none;
  padding: 12px;
  gap: 8px;
  border-top: 1px solid #e6e6e6;
  background: #fafafa;
  align-items: center;
  flex-direction: column
}

.reply-tag {
  display: none;
  background: #fffbe7;
  padding: 8px;
  border-left: 4px solid #f3c623;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 6px;
  justify-content: space-between;
  align-items: center;
  display: flex
}

.reply-tag .txt {
  color: #333;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.reply-tag button {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer
}

.composer-line {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center
}

.composer-line #attachBtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
}


.composer-line #attachBtn svg {
  width: 22px;
  height: 22px;
}


.input {
  flex: 1;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid #ddd;
  background: #fff;
  outline: none
}

.send {
  background: #0f507a;
  border: 0;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  min-width: 50px;
  height: 50px;
  transition: background 0.2s;
}

.send:hover {
  background: #1ebe57;
}

/* new message indicator */
.new-message-indicator {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b93f6;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 120;
  display: none;
}

/* right overlay popupPanel (slide-in cleanly) */
.popupPanel {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .36);
  flex-direction: column;
  display: none;
  margin: auto;
}

.popupPanel.open {
  transform: translateX(0);
  display: flex;
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.popupPanelInner {
  position: relative;
  background: #fff;
  width: 600px;
  border-radius: 6px;
  overflow: hidden;
}

.popupPanel .popupPanel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #115581;
  color: #fff
}

.popupPanel .popupPanel-head h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.popupPanel .popupPanel-body {
  padding: 14px;
  overflow: auto;
  flex: 1
}

.popupPanel .profile {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px
}

.popupPanel .profile .logo {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #333;
  overflow: hidden
}

.popupPanel .profile .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.popupPanel .profile .name {
  font-weight: 700
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 2;
  align-items: center;
  margin-right: 2px;
}

.star {
  font-size: 18px;
  color: #ffb400
}

.small-muted {
  color: #777;
  font-size: 13px
}

.popupPanel-tabs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  border-bottom: 1px solid #eee
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border-radius: 0;
  border: none;
  background: #eee;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center
}

.tab-btn .icon {
  font-size: 18px
}

.tab-btn.active {
  background: #115581;
  color: #fff;
}


.field strong {
  display: block;
  color: #222;
  margin-bottom: 3px
}

.badge-verified {
  display: inline-block;
  padding: 6px 8px;
  background: #e6f7ef;
  color: #1a8f4a;
  border-radius: 6px;
  font-weight: 700
}

/* reviews inside panel */
.popupPanel .review {
  background: #f7f7f7;
  padding: 10px;
  border-radius: 8px;
  margin-top: 8px
}

/* modal */
.chatModal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .36);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999
}

.chatModal {
  width: 760px;
  background: #fff;
  border-radius: 8px;
  max-height: 85vh;
  position: relative;
  overflow: hidden;
}

.chatModal .modal-body {
  overflow: hidden;

}

.chatModalInner {
  height: 100%;
  width: 100%;
  padding: 0;
  overflow-y: auto;
  max-height: 70vh;
  padding-right: 10px;
}

.close-modal {
  border: none;
  background: #ddd;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.closeDiv {
  position: absolute;
  top: 0;
  right: 0;
}

.closepopupPanel {
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closepopupPanel svg {
  width: 18px;
  height: 18px;
}

.modalAverage {
  margin: 8px 0;
  font-weight: 700
}

.reviewsList {
  margin-top: 10px
}

.tabContent {
  margin-top: 12px
}

.userCount {
  margin-left: 6px
}

.chatMessages,
.attach,
.reply-tag,
.fileInputUpload {
  display: none
}

@media(max-width:920px) {
  .charRightSidebar {
    display: none
  }

  .popupPanel {
    width: 100%
  }

  .chatInfoBtn {
    font-size: 18px
  }
}

/**/
.profileSection {
  width: 100%;
  padding: 15px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0392156863);
  border-radius: 6px;
  border: 1px solid #e9ecf5;
  margin-bottom: 15px;
}

.profileWrapper {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 45% 27% 18% 10%;
  align-items: center;
  background: #fff;
  border-radius: 5px;
}

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

.contents:last-child {
  justify-content: end;
}

.profileImg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.profileInfo2 {
  flex-direction: column;
  justify-content: center;
  margin-left: 15px;
  display: flex;
  height: auto;
  width: auto;
}

.profileInfo2 .name {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  align-items: center;
  text-transform: capitalize;
  color: #686868;
}

.profileLocation {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.profileLocation svg {
  margin-right: 7px;
}

.contents .icon {
  margin-right: 15px;
  background: rgba(42, 166, 153, 0.15);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.contents .icon svg {
  width: 20px;
  height: 20px;
  color: #2aa699;
}

.contents .icon.bg_purple {
  background: rgba(91, 107, 251, 0.15);
}

.editBtn2 {
  background: #f0f0f0;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: #0f507a;
}

.editBtn2 svg {
  margin-right: 5px;
}

.editBtn2:hover,
.editBtn2:focus {
  background: #0f507a;
  border-color: #0f507a;
  color: #fff;
  font-weight: 600;
}

/**/
.profileContactInfo {
  width: 100%;
  background: #e8eaeb;
  border-radius: 5px;
  margin: 0;
  display: grid;
  row-gap: 1px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0392156863);
  border-radius: 6px;
  border: 1px solid #e9ecf5;
  margin-bottom: 15px;
}

.profileContactInfo .header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: grid;
  grid-template-columns: 90% 10%;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 15px;
}

.profileContactInfo .heading {
  font-size: 18px;
  font-weight: 600;
}

.profileContactInfo .header .editBtn2 {
  margin-left: auto;
}

.editProflePanel {
  width: 100%;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 15px;
}

.editProflePanel label {
  margin-bottom: 3px;
}

.profileDetails {
  display: grid;
  grid-template-columns: 45% 55%;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 253px;
  padding: 15px;
}

.detailsItem .icon {
  width: 35px;
  height: 35px;
  border-radius: 4px;
  justify-content: center;
  gap: 10px;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 15px;
}

.detailsItem .icon svg {
  width: 45px;
  height: 45px;
}

.detailsItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
}

.label,
.val {
  width: auto;
  height: 20px;
  font-family: Arial;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #686868;
}

.val {
  font-weight: 700;
  flex-direction: row;
  text-transform: none;
  margin-top: 4px;
}

.detailsItem.large {
  grid-column: 1 / 3;
}

/**/

.visitWebsite a {
  font-size: 13px;
  font-weight: normal;
  color: #333;
}

.companyTabInfo .visitWebsite {
  margin-left: auto;
  float: right;
  padding: 5px 10px;
  margin-top: 3px;

}

.companyTabInfo .visitWebsite:hover {
  background: #fff;
  color: #0f507a;
  border: 1px solid #0a3957;
}

.companyTabInfo .visitWebsite:hover a {
  background: #fff;
  color: #0f507a;
}

/**/
.privacyPolicy {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background-color: #fff;
}

.privacyPolicy article {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
}

.privacyPolicy article h2,
.privacyPolicy article h3,
.privacyPolicy article h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #333;
}

.privacyPolicy article p {
  font-size: 14px;
  margin: 0;
}

.privacyPolicy article ul {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 0 15px
}

.privacyPolicy article ul li {
  width: auto;
  height: auto;
  padding: 0 0 0 25px;
  line-height: 25px;
  list-style: none;
  position: relative;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400
}

.privacyPolicy article ul li:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: url(../images/check-square-fill.svg) no-repeat;
  background-size: 100%;
  top: 5px;
  left: 0;
  display: inline-block;
  color: #0f507a
}

.privacyPolicy article p a {
  color: #0f507a;
}

.privacyPolicy article p a:hover,
.privacyPolicy article p a:focus {
  text-decoration: underline;
}

/**/
.contactBanner {
  float: left;
  width: 100%;
  padding: 60px 0 90px;
  text-align: center;
  position: relative;
  background: linear-gradient(10deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  background-color: #41598b;
  background-image: url(../images/contact-us.jpg);
  background-size: 100%;
  /* margin-top: 66px; */
}

.contactBanner:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
}

.contactBanner .container {
  position: relative;
  z-index: 1;
}

.contactBanner .sub-tt {
  color: #ef3b24;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
  background-color: #15151d;
  border-radius: 4px;
  padding: 5px 8px;
  display: inline-block;
}

.contactBanner .tt {
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  text-transform: capitalize;
}

.contactPageSection {
  float: left;
  width: 100%;
  padding: 0 0 50px;
  margin: 0;
  position: relative;
  margin-top: -3rem !important;
}

.bgInfo {
  background: #115581;
}

.contactTitle {
  color: #115581;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-address-icon svg {
  color: #fff;
  width: 30px;
  height: 30px;
}

.bgInfo h6 {
  margin-bottom: 15px;
}

.addressTitle {
  font-weight: 600;
  line-height: 1.3;
  font-size: 1rem;
  color: #fff;
}

.contactPageSection .socialMedia {
  margin-bottom: 0;
}

.additionalSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0px 0 40px;
  background: #fff;
}

.additionalTitle {
  color: #115581;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 3rem;
  font-size: 1.5rem;
}

.additionalBox img {
  max-width: 50px;
  margin-bottom: 15px;
}

.googleMap {
  float: left;
  width: 100%;
}

.googleMap iframe {
  width: 100%;
  height: 450px;
  bottom: 0;
}

/**/
.faqsSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff;

}

.box_style_cat {
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  position: sticky;
  left: 0;
  top: 65px;
}

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

ul#cat_nav li {
  border-bottom: 1px solid #ededed;
}

ul#cat_nav li a {
  position: relative;
  color: #333;
  display: block;
  padding: 12px 15px;
}

ul#cat_nav li i {
  font-size: 16px;
  font-size: 1rem;
  margin: 2px 10px 0 0;
  float: left;
}

ul#cat_nav li a:after {
  position: absolute;
  right: 15px;
  top: 15px;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23333' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");

}

ul#cat_nav li a span {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #999;
}

ul#cat_nav li a:hover,
ul#cat_nav li a#active,
ul#cat_nav li a.active {
  color: #ef3b24;
}

ul#cat_nav li a:hover:after,
ul#cat_nav li a.active:after {
  position: absolute;
  right: 15px;
  top: 15px;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ef3b24' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");

}

.nomargin_top {
  margin-top: 0;
  color: #115581;
  font-weight: 600;
  line-height: 1.3;
  font-size: 18px;
}

.add_bottom_45 {
  margin-bottom: 45px;
}

.accordion_2 .card {
  border: 1px solid #ededed;
  margin-bottom: 5px;
  box-shadow: 3px 0px 15px 5px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.accordion_2 .card .card-header {
  background-color: #fff;
  border-bottom: 1px solid #ededed;
  padding: 15px 20px;
}

.accordion_2 .card-body {
  padding-bottom: 0;
}

.accordion_2 .card-header h5 {
  font-size: 16px;
}

.accordion_2 .accordion-button,
.accordion_2 .accordion-button:not(.collapsed) {
  background: transparent;
  color: #333;
  padding: 0;
  box-shadow: none;
}

.accordion_2 .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out
}

.accordion_2 .accordion-button:hover,
.accordion_2 .accordion-button:focus {
  background: transparent;
  color: #333;
  padding: 0;
  box-shadow: none;
}

.accordion_2 .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
  transform: rotate(0deg);
}



.accordion_2 .card-header h5 a {
  border: 0;
  display: block;
  color: #333;
}

.accordion_2 .card-header h5 a i.indicator {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  float: right;
  color: #004dda;
}

.card {
  border-radius: 0;
  border: 0;
  margin-bottom: 5px;
}

.accordion_2 .card-body ul {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}

.accordion_2 .card-body ul li {
  font-size: 14px;
  color: #333;
  list-style: none;
  padding-left: 20px;
  position: relative;
}


.accordion_2 .card-body ul li:before {
  position: absolute;
  left: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23222' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");
}


.faqsSection p {
  color: #333;
  margin-bottom: 0;
}

.faqsSection .accordion_2 .card-body p+p {
  margin-bottom: 0;
}

.faqsSection .accordion_2 .card-body p:last-child {
  margin-bottom: 15px;
}

.faqsSection .accordion_2 .card-body table {
  width: 100%;
  margin: 0 0 15px;
}

.faqsSection .accordion_2 .card-body table thead tr th {
  vertical-align: middle;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #eaeaea;
  background: #eee;
  color: #000;
}

.faqsSection .accordion_2 .card-body table tbody tr td {
  vertical-align: middle;
  padding: 6px 10px;
  font-size: 14px;
  line-height: normal;
  text-align: left;
}

.faqsSection .accordion_2 .card-body table tbody tr td {
  border: 1px solid #eaeaea;
}




.membershipBanner {
  float: left;
  width: 100%;
  padding: 60px 0 90px;
  text-align: center;
  position: relative;
  background: linear-gradient(10deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  background-color: #41598b;
  background-image: url(../images/membership.webp);
  background-size: 100%;
  /* margin-top: 66px; */
}

.membershipBanner:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
}

.membershipBanner+.breadcrumbs {
  margin-top: 0;
}

.membershipBanner .container {
  position: relative;
  z-index: 1;
}

.membershipBanner .sub-tt {
  color: #ef3b24;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 5px 8px;
  display: inline-block;
}

.membershipBanner .tt {
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  text-transform: capitalize;
}

.membershipPlan {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff;
}

.membershipPlan .membershipPlanTitle {
  width: 100%;
  max-width: 800px;
  font-size: 26px;
  font-weight: 600;
  display: block;
  padding-bottom: 15px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  line-height: normal;
  color: #333;
}

.membershipPlan .membershipPlanTitle span {
  color: #ef3b24;
}


.membershipPlan .membershipPlanTitle:before,
.membershipPlan .membershipPlanTitle:after {
  content: "";
  background: #333;
  width: 25px;
  left: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
}


.membershipPlan .membershipPlanTitle::after {
  background: #ef3b24;
  left: 30px;
}

.maxWidth {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 10px
}

.maxWidth p {
  display: inline-block;
  max-width: 850px;
  width: 100%;
  margin: 0 auto 10px;
  font-size: 16px;
  text-align: center
}

/**/
.v4-pril-inn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);
  border-radius: 12px;
  box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.5);
}

.v4-pril-inn-top {
  background: #222222;
  color: #eee;
  padding: 40px 25px 30px;
  color: #ECF0F1;
  text-align: center;
}

.v4-pril-inn-top h2 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 5px;
  margin-top: 10px;
  font-weight: 600;
}

.v4-pril-inn-top span {
  color: #111a29;
  font-size: 14px;
  line-height: normal;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v4-pril-inn-top p {
  margin: 0px;
}

.v4-pril-price {
  margin: 0px;
}

.v4-pril-price b {
  font-size: 70px;
  line-height: 70px;
  color: #fff;
}

.v4-pril-curr {
  font-size: 28px;
  line-height: 40px;
  vertical-align: top;
  display: inline-block;
  color: #FBA507;
}

.v4-pril-mon {
  color: #ccc;
}

.v4-pril-inn-bot {
  background: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;

}

.v4-pril-inn-bot ul {

  list-style: none;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  text-align: left;
  margin-bottom: 35px;
  border-top: 20px;
}

.v4-pril-inn-bot ul li {
  color: #333;
  font-size: 14px;
  padding: 0px 10px;
  display: flex;
  line-height: normal;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.v4-pril-inn-bot ul li::before {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/></svg>");

}


.v4-pril-inn-bot ul li i {
  margin-right: 15px;
}

.v4-pril-inn-bot ul li .fa-check {
  color: #ef9d07;
}

.v4-pril-inn-bot ul li .fa-times {
  color: #7b7b7b;
}

.v4-price-list .col-md-1 {
  width: 12.5%;
}

.basic01 {
  background: linear-gradient(to bottom, #009a90, #00b8af);
}

.commonBtn {
  padding: 10px 20px;
  color: #fff;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 4px;
}

.commonBtn:hover,
.commonBtn:focus {
  color: #fff;
}

.basicbtn {
  background: linear-gradient(to bottom, #009a90, #00b8af);
}

.premium01 {
  background: linear-gradient(to bottom, #fd7300, #feab00);
}

.premiumbtn {
  background: linear-gradient(to bottom, #fd7300, #feab00);
}

.exclusive01 {
  background: linear-gradient(to bottom, #0096c9, #00c2e3);
}

.exclusivebtn {
  background: linear-gradient(to bottom, #0096c9, #00c2e3);
}

.upbox {
  position: relative;
  box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.5);
  /*transform: scale(1.09);*/
  z-index: 15;
  margin-bottom: 20px;
}

.v4-pri-best {
  width: 200px;
  position: absolute;
  top: 20px;
  left: -55px;
  text-align: center;
  line-height: 35px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: bold;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  background-color: #01a0d8;
  font-size: 12px;
}

.v4-pri-best {
  background: #cf0f1a;
}

.middlebox {
  padding: 20px 0 10px;
  padding-bottom: 40px;
}

.acp {
  height: 36px;
  line-height: 36px;
  font-size: 24px;
  color: #333;
  text-align: left;
  overflow: hidden;
  background: #fff;
  padding: 0px 25px;
}

.acp i {
  display: inline-block;
  height: 14px;
  line-height: 14px;
  vertical-align: top;
  font-size: 14px;
  font-style: normal;
}

.pri {
  background: #fff;
  line-height: 20px;
  font-size: 14px;
  color: #666;
  text-align: left;
  padding: 0 25px 30px;
  overflow: hidden;
}

.pri .small {
  font-size: 12px;
}

.tip {
  line-height: 20px;
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 40px;
  display: block;
  float: left;
  width: 100%;
}

.image05 {
  position: relative;
}

.image05 img {
  max-width: 75px;
}


/**/


/**/

.featureSection {
  float: left;
  width: 100%;
  background: #eee;
  padding: 50px 0;
  width: 100%;
}



.featureSection .featureTitle {
  width: 100%;
  max-width: 800px;
  font-size: 26px;
  font-weight: 600;
  display: block;
  padding-bottom: 15px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  line-height: normal;
  color: #333;
}

.featureSection .featureTitle span {
  color: #ef3b24;
}


.featureSection .featureTitle:before,
.featureSection .featureTitle:after {
  content: "";
  background: #333;
  width: 25px;
  left: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
}


.featureSection .featureTitle::after {
  background: #ef3b24;
  left: 30px;
}

.col05 {
  width: 20% !important;
  text-align: center;
}

.business05 {
  padding: 15px 0;
  background: #fff;
  min-height: 170px;
  border: 1px dashed #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business05 svg {
  color: #333;
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-bottom: 10px;
}

.business05 h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #ef3b24;
  font-weight: 600;
}

.business05 p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}


/**/
.advertiseWithUs {
  float: left;
  width: 100%;
  padding: 40px 0 40px;
  background: #fff;
}


/* File Uploader */

.fileUploader {
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 5px;
  border: 1px dashed #ccc;
  padding: 5px 8px;
  max-width: max-content;
  min-width: 225px;
  height: 60px;
  align-content: center;
}

.fileUploader input[type=file] {
  display: none;
}

.fileUploader .fileUploadLabel {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #333;
  transition: 0.3s;
}

.fileUploader .fileUploadLabel svg {
  width: 35px;
  height: 35px;
}

.fileUploader .fileLoading {
  display: none;
  text-align: center;
  align-items: center;
  gap: 10px 15px;
  padding: 2px 0;
}

.fileUploader .fileSpinner {
  width: 24px;
  height: 24px;
  border: 3px solid #eee;
  border-top-color: #0b93f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fileUploader .filePreview {
  display: none;
  align-items: center;
  animation: 'fadeIn' 0.4s ease;
}

.fileUploader .filePreview img,
.fileUploader .filePreview .file-box {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 14px;
  color: #555;
  margin-right: 10px;
  flex-shrink: 0;
}

.fileUploader .imageInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(100% - 64px);
}

.fileUploader .file-name {
  font-size: 12px;
  color: #333;
  word-break: break-all;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 165px;
  display: inline-block;
}

.fileUploader .actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.fileUploader .actions button {
  background: transparent;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0b93f6;
  transition: opacity 0.3s ease;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 3px;
}

.fileUploader .actions button.fileDelete {
  color: #d33;
  border-color: #f2c7c7;
}

.fileUploader button:hover {
  opacity: 0.7;
}

/**/
.onsale {
  border-radius: .45rem;
  background-color: #fff;
  border: 1px solid #eff0f6;
  box-shadow: 0 4px 25px 0 rgb(168 180 208 / 17%);
  margin-block-end: 1.5rem;
  color: #3c4858;
  background-color: rgb(74 119 240 / 20%);
  border-color: rgb(74 119 240 / 20%) !important;

}

.onsale:before {
  background: url(../images/13.jpg);
  background-size: cover;
  opacity: .05;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  inset-inline-end: 0;
  display: block;
  z-index: 0;
  inset-block-start: 0;
  border-radius: 6px;
}

.onsale .card-body {
  position: relative;
}

.banner-img {
  height: 120px;
}

.upgradeBtn {
  font-weight: 400;
  padding: 10px 12px;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  border-radius: 4px;
  font-size: 14px;
}

.upgradeBtn:hover,
.upgradeBtn:focus {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
}

.welcomeTitle {
  font-weight: 600;
  font-size: 20px;
  color: #0f507a;
  margin-bottom: 5px;
}

.congratulationBox {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #fbf0eb;
  border-radius: 6px;
  border: 1px solid #ece2de;
  margin-bottom: 15px;
  line-height: normal;
}

.congratulationText {
  display: flex;
  align-items: center;
}

.openCompanyUrlModal {

  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-align: center;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  display: inline-flex;
  font-weight: 400;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  align-items: center;
  line-height: normal;
  margin-left: auto;
  margin-right: 10px;
  text-decoration: none;
}

.openCompanyUrlModal:hover,
.openCompanyUrlModal:focus {
  background: #22bdef;
  color: #fff;
  border: 1px solid #12a8d9;
}


.congratulationText p {
  margin-bottom: 0;
  font-size: 15px;
  color: #333;
}

.congratulationText p strong {
  color: #0f507a;
}

.congratulationText .visitWebsite {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
  border-radius: 4px;
  font-weight: normal;
}

.congratulationText .visitWebsite:hover,
.congratulationText .visitWebsite:focus {
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

.urlBtnModal {
  font-weight: 400;
  padding: 6px 10px;
  background: #22bdef;
  color: #fff;
  border: 1px solid #12a8d9;
  border-radius: 4px;
  font-size: 14px;
  outline: 0;
}

.urlBtnModal:hover,
.urlBtnModal:focus {
  box-shadow: none;
  outline: 0;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0f85ac;
}

.cancelBtnModal {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
  border-radius: 4px;
  font-weight: normal;
  font-size: 14px;
  outline: 0;
}

.cancelBtnModal:hover,
.cancelBtnModal:focus {
  box-shadow: none;
  outline: 0;
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

/**/
.landlineInput {
  display: flex;
  align-items: center;
}

.landlineInput .iti {
  width: auto;
}

.landlineInput .iti__selected-country {
  border-right: 1px solid #ccc;
}

.landlineInput .iti__dropdown-content {
  width: 230px !important;
}

.landlineInput .stdNumber {
  width: 125px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;

}

.landlineInput .landcodeNumber {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;

}

/**/
.editAddressBtn {
  font-weight: 400;
  padding: 6px 15px;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  border-radius: 4px;
  font-size: 14px;
  outline: 0;
}

.editAddressBtn:hover,
.editAddressBtn:focus {
  box-shadow: none;
  outline: 0;
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

.addressRemoveBtn {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
  border-radius: 4px;
  font-weight: normal;
  font-size: 14px;
  outline: 0;
}

.addressRemoveBtn:hover,
.addressRemoveBtn:focus {
  box-shadow: none;
  outline: 0;
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

/**/


.ctaSection {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 40px 0px;
  background: linear-gradient(120deg, #000 0, #0f85ac 100%) 0 0 no-repeat;
  color: #fff;
  overflow: hidden;
}

.ctaSection .ctaSectionTitle {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
  color: #fff;
}

.ctaSection p {
  font-size: 16px;
  color: #eaf6ff;
  max-width: 600px;
  margin: 10px auto 30px;
  line-height: 1.5;
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ctaButtons a {
  text-decoration: none;
  padding: 10px 18px;
  line-height: normal;
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.ctaButtons .primary {
  background: #22bdef;
  color: #fff;
  border: 1px solid #12a8d9;
  border-radius: 4px;
}

.ctaButtons .primary:hover {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
}

.ctaButtons .secondary {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
  border-radius: 4px;
}

.ctaButtons .secondary:hover {
  background: #c6402f;
  color: #fff;
  border-color: #b03020;
}

.g-recaptcha {
  transform: scale(.70);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0
}

#modalotpMobile,
#modalotpEmail {
  padding: 10px;
  background: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #bed1db;
}

#modalotpMobile {
  margin-bottom: 15px;
}

.enquiryModalOTP .otp-input {
  border: 1px solid #ccc;
}

.dontReceive {
  font-size: 14px;
  margin-top: 10px;
}

.dontReceive p {
  color: #333;
}

.dontReceive .resend {
  color: #0f85ac;
  cursor: pointer;
}

.dontReceive .resend.disabled {
  color: #777;
  pointer-events: none;
}

.oneTimeText_2 {
  color: #333;
  font-size: 14px;
  line-height: 20px;
  /* text-wrap: balance; */
  font-weight: 400;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.oneTimeText_2 .otpViewNumber,
.oneTimeText_2 .modalotpViewEmail {
  color: #0f85ac;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
}

.membershipPlan {
  margin-bottom: 25px;
}

.membershipPlan thead th {
  padding: 30px 15px 20px;
  color: #ECF0F1;
  text-align: center;
  border-top: 1px solid #ccc;
}

.membershipPlan thead th:nth-child(1) {
  background: transparent;
  border-color: transparent;
}

.membershipPlan thead th:nth-child(2) {
  background: linear-gradient(to bottom, #009a90, #00b8af);
  border-color: #009a90;
}

.membershipPlan thead th:nth-child(3) {
  background: linear-gradient(to bottom, #0096c9, #00c2e3);
  border-color: #0096c9;
}

.membershipPlan thead th:nth-child(4) {
  background: linear-gradient(to bottom, #fd7300, #feab00);
  border-color: #fd7300;
}

.membershipPlan thead th:nth-child(5) {
  background: linear-gradient(to bottom, #2185a0, #58c9e7);
  border-color: #2185a0;
}

.membershipPlan thead th:nth-child(6) {
  background: linear-gradient(to bottom, #009a90, #00b8af);
  border-color: #009a90;
}

.membershipPlan tr td {
  text-align: center;
  font-size: 14px;
}

.membershipPlan tr td:first-child {
  text-align: left;
  font-weight: 600;
}

.membershipPlan tbody tr:last-child td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.membershipPlan tr td:nth-child(2) {
  background: #daf6ff;
}

.membershipPlan tr td:nth-child(3) {
  background: #d6f1fb;
}

.membershipPlan tr td:nth-child(4) {
  background: #fbefd8;
}

.membershipPlan tr td:nth-child(5) {
  background: #d6f1fb;
}

.membershipPlan tr td:nth-child(6) {
  background: #daf6ff;
}

.tableHeader .image {
  margin-bottom: 10px;
}

.tableHeader .image img {
  max-width: 75px;
}

.tableHeader .memberTag {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.tableHeader span {
  color: #111a29;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.priceTitle {
  font-weight: 600;
  font-size: 14px;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: block;
  text-align: center;
}

.membershipPlan tr th:nth-child(4),
.membershipPlan tr td:nth-child(4) {}

.membershipPlan tr th:nth-child(4) {
  background: linear-gradient(to bottom, #fd7300, #feab00);
  border-color: #fd7300;
  position: relative;
  overflow: hidden;
}

.popularTag {
  width: 200px;
  position: absolute;
  top: 10px;
  left: -65px;
  text-align: center;
  line-height: 35px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: bold;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  font-size: 12px;
  background: #cf0f1a;
}

/**/
.toggle-wrap {
  display: inline-flex;
  align-items: center;
  background: #eee;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
}

.toggle-option {
  padding: 10px 20px;
  font-weight: 500;
  color: #555;
  transition: all 0.3s;
}

.toggle-option.active {
  background: #0f507a;
  color: #fff;
}

/**/
.innerBanner+.breadcrumbs {
  margin-top: 0;

}

.directoryPage2 {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0 30px;
}

.directoryPage2 .businessTitle3,
.directoryPage3 .businessTitle3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f507a;
}

.directoryPage2 h2 {
  font-size: 18px;
  margin-top: 0
}

.fullTextSectionSub {
  background: #eee;
}

.invalid-feedback {
  font-size: 13px;
}



.aboutBanner {
  float: left;
  width: 100%;
  padding: 80px 0 80px;
  text-align: center;
  position: relative;
  background: linear-gradient(10deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  background-color: #41598b;
  background-image: url(../images/about-banner.webp);
  background-size: 100%;
  /* margin-top: 66px; */
}

.aboutBanner:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
}

.aboutBanner+.breadcrumbs {
  margin-top: 0;
}

.aboutBanner .container {
  position: relative;
  z-index: 1;
}

.aboutBanner .sub-tt {
  color: #ef3b24;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 5px 10px;
  display: inline-block;
}

.aboutBanner .tt {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: normal;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  text-transform: capitalize;
}

.aboutPage {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff;
}

.aboutText h2 {
  font-size: 22px;
  font-weight: 600;
  color: #ef3b24;
  margin-bottom: 12px;
}

.aboutText ul {
  margin: 0;
  padding: 0;
}

.aboutText ul li {
  list-style: none;
  font-size: 15px;
  line-height: 1.6;
  color: #545454;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.aboutText ul li:before {
  content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23545454" viewBox="0 0 16 16"><path d="M7.987 16a1.53 1.53 0 0 1-1.07-.448L.45 9.082a1.53 1.53 0 0 1 0-2.165L6.917.45a1.53 1.53 0 0 1 2.166 0l6.469 6.468A1.53 1.53 0 0 1 16 8.013a1.53 1.53 0 0 1-.448 1.07l-6.47 6.469A1.53 1.53 0 0 1 7.988 16zM7.639 1.17 4.766 4.044 8 7.278l3.234-3.234L8.361 1.17a.51.51 0 0 0-.722 0M8.722 8l3.234 3.234 2.873-2.873c.2-.2.2-.523 0-.722l-2.873-2.873zM8 8.722l-3.234 3.234 2.873 2.873c.2.2.523.2.722 0l2.873-2.873zM7.278 8 4.044 4.766 1.17 7.639a.51.51 0 0 0 0 .722l2.874 2.873z"/></svg>');
  text-align: center;
  position: absolute;
  left: 0;
}



.aboutGroup {
  float: right;
  max-width: 566px;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 20px;
}

.aboutItem {
  width: 50%;
}

.aboutItem:first-child {
  margin-top: 40px;
}

.aboutItem .aboutInfo {
  padding: 30px;
  color: #fff;
  display: block;
  float: left;
  width: 100%;
}

.aboutItem:first-child .aboutInfo {
  background-color: #0f507a;
}

.aboutItem:nth-child(2) .aboutInfo {
  background-color: #c6402f;
}

.aboutItem .aboutInfo svg {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.aboutItem:first-child .aboutInfo h3 {
  font-size: 20px;
  font-weight: 600;
  color: #488ab5;
}

.aboutItem .aboutInfo p {
  margin-bottom: 0;
  font-size: 14px;
}

.aboutItem .image img {
  width: 100%;
}

.aboutItem:nth-child(2) .aboutInfo h3 {
  font-size: 20px;
  font-weight: 600;
  color: #f6cac4;
}

/**/
.we__offer {
  float: left;
  width: 100%;
  background: url(../images/we__offer.jpg) no-repeat top left;
  height: 100%;
  height: 520px;
  display: block;
  align-items: center;
}

.we__offer-content {
  padding: 150px 0 40px;
  margin: 0 -15px;
}

.we__offer h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 500;
  position: relative;
  margin-top: -15px;
  line-height: normal;
}

.we__offer h2::before {
  content: '';
  background: url(../images/icon-dots.svg) no-repeat center;
  position: absolute;
  left: -188px;
  top: 3px;
  width: 113px;
  height: 106px;
  animation: navspinv2 2.4s infinite linear;
}

@keyframes navspinv2 {
  0% {
    transform: translate3d(0, -1%, 0);
  }

  50% {
    transform: translate3d(0, 1%, 0);
  }

  100% {
    transform: translate3d(0, -1%, 0);
  }
}

.col-a-right {
  justify-content: right;
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: end;
}

.we__offer .link__template {
  max-width: 300px;
  width: 100%;
  height: 60px;
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  font-family: inherit;
  font-weight: 500;
  background-color: #de2929;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin: 0;
}

.we__offer .link__template .text {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we__offer .link__template span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  background-color: #ab1212;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.we__offer .link__template span svg {
  width: 30px;
  height: 30px;
}

.we__offer p {
  font-size: 15px;
  color: #fff;
  line-height: 3.429;
  text-align: right;
  opacity: 0.9;
  padding-right: 60px;
  font-style: normal;
}

.we__offer-card {
  min-width: 380px;
  height: 300px;
  padding: 52px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 38.25px 6.75px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 5px 38.25px 6.75px rgba(0, 0, 0, 0.09);
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 9;
  position: relative;
}

.we__offer-card:hover {
  -webkit-box-shadow: 0px 5px 38.25px 6.75px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 5px 38.25px 6.75px rgba(0, 0, 0, 0.19);
}

.we__offer-card_icon {
  position: relative;
  margin-bottom: 16px;
}

.we__offer-card_icon img {
  width: 60px;
  display: inline-block;
}

.we__offer-item .title {
  font-size: 22px;
  color: #222222;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 10px;
}

.we__offer-item p {
  font-size: 16px;
  color: #444444;
  line-height: 26px;
  margin: 0;
  padding: 0;
  text-align: left;
  opacity: 0.8;
}

.advertiseOption {
  padding-top: 120px;
}

.breadcrumbs+.postPropertySection {
  margin-top: 0;
}

/**/
.videoSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #f2f1f1;
}

.vd_bx {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 16px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  /* margin-bottom: 35px; */
}

.vd_bx img {
  width: 100%;
  height: auto;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 55px;
  height: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: all 0.5s;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  background-color: #d7141b;
  box-shadow: 0 0 0 0 rgba(110, 39, 37, 0.5);
  -webkit-animation: wave 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: wave 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: wave 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: wave 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@-webkit-keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0);
  }
}

@-moz-keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0);
  }
}

@-ms-keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0);
  }
}

@keyframes wave {
  to {
    box-shadow: 0 0 0 45px rgba(213, 142, 144, 0);
  }
}

.video-play-icon svg {
  width: 30px;
  height: 30px;
}

/**/
.sitemapPage {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background-color: #fff;
}

.siteMapList {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.siteMapList li {
  margin-bottom: 30px;
}

.siteMapList .siteMapMenuTitle {
  font-weight: 500;
  color: #0f507a;
  padding-left: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  border-left: 3px solid #0f507a;
  line-height: 16px;
  display: block;
}

.siteMapSubList {
  display: flex;
  margin: 0 -10px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.siteMapSubList li {
  width: 25%;
  box-sizing: border-box;
  padding-left: 37px;
  padding-right: 10px;
  margin-bottom: 5px;
  position: relative;
  line-height: 18px;
  transition: all 0.3s ease;
}

.siteMapSubList li:before {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
  color: #999;
  position: absolute;
  left: 22px;
  top: 0;
}

.siteMapSubList li a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.siteMapSubList li:hover {
  padding-left: 40px;
}

.siteMapSubList li a:hover,
.siteMapSubList li a:focus {
  color: #0f507a;
}

/**/
.manufacturingList {
  margin: 0 -8px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.manufacturingList li {
  width: 25%;
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.manufacturingList li div {
  display: block;
  padding: 12px 15px;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 400;
  color: #444;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4px;
}

.manufacturingList li div a {
  color: #444;
}

.manufacturingList li div span {
  display: inline-block;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.manufacturingList li div span.counter {
  color: #999;
}

.manufacturingList li:hover div {
  border-color: #12a8d9;
}

.manufacturingList li:hover div a {
  color: #12a8d9;
}

/**/
.imc-index {
  width: 100%;
  margin: 30px 0 50px 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.imc-index li a {
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  transition: all 0.3s ease;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 36px;
}

.imc-index li.current a,
.imc-index li:hover a {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0f85ac;
}

/**/
.testimonialSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff;
}

.testimonialGrid {
  float: left;
  width: 100%;
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.testimonialGrid .testimonialItem {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  width: calc(50% - 15px);
  box-sizing: border-box;
}

.reviewRight {
  display: flex;
  align-items: center;
}

.reviewRight .rattingCount {
  font-size: 14px;
  color: #333;
}

.reviewRight .rattingCount span {
  font-size: 15px;
  color: #666;
  font-weight: 700;
}

.reviewRight .ratting {
  font-size: 16px;
  color: #ffae00;
  margin-left: 5px;
}

.reviewRight .ratting svg {
  display: inline-block;
}

/**/
.educateSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: linear-gradient(120deg, #000 0, #0f85ac 100%) 0 0 no-repeat;
}

.educateSection .mainTitle {
  color: #fff;
}

.educateSection .maxWidth p {
  color: #fff;
}

/**/
.productivityToolSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #fff;
}

.fyca-list {
  display: flex;
  list-style: none;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.fyca-list li {
  width: 25%;
  box-sizing: border-box;
  padding: 10px;
}

.fyca-list li .fyca {
  background: #fff;
  padding: 40px 10px;
  border: solid 1px #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 5px #ddd;
  height: 100%;
}

.fyca-img {
  text-align: center;
  line-height: 0;
  margin-bottom: 20px;
}

.fyca-img img {
  width: 50px;
  height: auto;
}

.fyca-msg h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0px;
  line-height: 20px;
}

.fyca-msg h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 10px 0px 0;
  color: #666;
}

/**/
.popupRating {
  gap: 5px;
}

.popupRating .stars {
  margin: 0;
}

.popupRating .userCount {
  margin-left: 0;
  font-size: 12px;
}

.popupRating .userCount #popupPanelReviews {
  margin-right: 3px;
}

.popupPanel .popupPanel-body .tabContent {
  padding: 15px 0;
}

.tabContent .field {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.tabContent .field .icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f507a;
}

.tabContent .field .icon svg {
  width: 20px;
  height: 20px;
}

.tabContent .field .icon img {
  width: 25px;
}

.tabContent .field .popupInfo2 {
  line-height: normal;
}

.tabContent .field .popupInfo2 {
  font-size: 14px;
}

.popupGrid2 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.popupGrid2 .field {
  width: calc(100%/2 - 10px);
}

.chatModal .reviewsList {
  margin-top: 20px;
  margin-bottom: 15px;
}

.viewmore {
  cursor: pointer;
  color: #0f507a;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.viewmore:hover,
.viewmore:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
}

.selectResultsHeader {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #bed1db;
  margin-bottom: 15px;
}

.selectResultsHeaderTitle {
  color: #0f507a;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.resultEdit {
  margin-left: auto;
}

.resultEditBtn {
  font-weight: 400;
  padding: 5px 10px;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  border-radius: 4px;
  font-size: 14px;
  line-height: normal;
  display: inline-flex;
  gap: 5px;
  margin-bottom: 5px;
}

.resultEditBtn:hover,
.resultEditBtn:focus {
  background: #093e60;
  color: #fff;
  border: 1px solid #05263c;
  box-shadow: none;
}

.selectResultsShow {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #bed1db;
  line-height: normal;
  margin-bottom: 15px;
}

.selectResults .addedNewAddressBox {
  background: #fdfaf8;
}

.selectResultsShow2 .fileName {
  max-width: max-content;
  margin-bottom: 5px;
}

.selectResultsShow2 .fileName a .viewUpImages {
  width: max-content;
  margin-right: 5px;
}

.dText {
  line-height: normal;
}

.dText p {
  margin-bottom: 3px;
}

.websiteURL {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 600;
}

.websiteURL a {
  color: #ef3b24;
  margin-left: 5px;
  font-weight: normal;
}

.websiteURL a:hover,
.websiteURL a:focus {
  text-decoration: underline;
}

.entitySection {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #bed1db;
  margin-bottom: 15px;
  line-height: normal;
}

.background_color_2 {
  background: #f1f5f7;
  border: 1px solid #dce2e6;
}

.entitySection .verificationTitle {
  font-size: 16px;
  margin: 0 0 15px;
  font-weight: 500;
  color: #fff;
  background: #0f507a;
  border-left: 2px solid #ef3b24;
  padding: 8px 12px;
  border-radius: 4px;
}

.entitySection .verificationTitle .imgSupport {
  color: #fff;
}

.proofSection {
  width: 100%;
  position: relative;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #bed1db;
  line-height: normal;
}

.proofSection .verificationTitle {
  font-size: 16px;
  margin: 0 0 15px;
  font-weight: 500;
  color: #fff;
  background: #0f507a;
  border-left: 2px solid #ef3b24;
  padding: 8px 12px;
  border-radius: 4px;
  position: relative;
}

.proofSection .verificationTitle .imgSupport {
  color: #fff;
}

.background_2 {
  background: #f1f5f7;
  border: 1px solid #dce2e6;
}


/**/
.verificationTitle .hoverTipTool {
  visibility: hidden;
  width: 240px;
  background-color: #d7e7f2;
  color: #426277;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /* Position above */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  border: 1px solid #99c9ea;
}

.verificationTitle:hover .hoverTipTool {
  visibility: visible;
  opacity: 1;
}

.verificationTitle .hoverTipTool::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #d7e7f2 transparent transparent transparent;
}

.verificationTitle .titleTipTool {
  color: #8dccf6;
  font-size: 13px;
}

.proofSection .verificationTitle .titleTipTool {
  position: relative;
}

.multiAddress {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #eee;
}

.multiAddress .nav.nav-pills {
  width: calc(100% - 20px);
}

.multiAddress .nav-link {
  width: 100%;
  color: #fff;
  font-size: 15px;
  padding: 10px 15px;
  display: block;
  line-height: 24px;
  position: relative;
  font-weight: 500;
  transition: .5s;
  -webkit-transition: .5s;
  margin: 0;
  list-style: none;
  background-color: #0f507a;
  border-bottom: 1px solid #ffffff1f;
  border-radius: 0;
  text-align: left;
}

.multiAddress .nav-link {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  list-style: none;
  text-align: left;
}

.multiAddress .nav-link.active {
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  background-color: rgba(0, 0, 0, 0);
  background-color: #0a3957;
}

.multiAddress .nav-link.active::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-left: 22px solid #0a3957;
  border-bottom: 22px solid transparent;
  position: absolute;
  right: -22px;
  bottom: 0;
}

.contact_form_grid1 {
  float: left;
  width: 100%;
  background: #fff;
  border-radius: 0;
  border: 1px solid #f7f2f2;
  padding: 20px;
  box-shadow: 0 2px 8px 0 #0000001a;
}

.contact_form_grid1 .contactTitle {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #144057;
}

.contact_details p {
  color: #333;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.contact_details .address_list {
  clear: both;
  margin: 0 0 20px;
  padding: 0;
}

.contact_details .address_list li {
  clear: both;
  font-weight: 500;
  list-style: none;
  color: #333;
  margin-bottom: 10px;
  font-size: 15px;
}

.contact_details .address_list li:first-child {
  display: flex;
  align-items: center;
}

.contact_details .address_list li svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 7px;
}

.contact_details .address_list li a {
  color: #333;
  display: flex;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  display: inline-block;
}

.contact_map {
  float: left;
  width: 100%;
  height: 350px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
}

.getMGVerified {
  width: 100%;
  margin: 0;
  padding: 15px;
  background: #f0f0f0;
  border: 1px solid #bed1db;
  border-radius: 12px;
  height: 100%;
}

.getMGVerifiedTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0f507a;
}

.getMGVerified p {
  color: #333;
}

.whyGmVerifiedSection {
  width: 100%;
  margin: 0 0 30px;
}

.verificationReviewProcess {
  width: 100%;
  margin: 0;
  padding: 15px;
  background: #fdf5e6;
  border: 1px solid #f6d7a1;
  border-radius: 12px;
  height: 100%;

}


.verificationReviewProcessTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #f59e0b;
}

.verificationReviewProcess ul {
  margin: 0;
  padding: 0;
  width: 100%;
}

.verificationReviewProcess ul li {
  list-style: none;
  line-height: 24px;
  color: #222;
  font-size: 15px;
  font-weight: normal;
  position: relative;
  padding-left: 20px;
}

.verificationReviewProcess ul li:before {
  position: absolute;
  left: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23222' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");
}

.dbBenefitSection {
  display: block;
  margin-bottom: 30px;
}

.dbBenefitSection .dbBenefitSectionTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0f507a;
}

.dbBenefitSection ol {
  margin: 0px;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding-left: 15px;
}

.dbBenefitSection ol li {
  list-style-type: none;
  width: calc(100%/3 - 10px);
  /* border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 6px; */
  color: #333;
  font-size: 14px;
  font-weight: 600;
}


.dashboardRight .ctaSection {
  border-radius: 12px;
}

.videoLinkInput label {
  display: flex;
  align-items: center;
}

.videoLinkInput .remove-video-box {
  margin-left: auto;
  background: transparent;
  color: #dc3545;
  font-size: 20px;
  line-height: 1;
  padding: 2px 6px;
}

/* .dashboardLeft ul li.asASeller{
  background: #f1f5f7; 
} */
.dashboardLeft ul li.asAbuying {
  padding: 5px;
  border-bottom: 1px solid #dfe4e6;
}

.dashboardLeft ul li.asAbuying span {
  border-radius: 4px;
  /* background: #f2dcd1;
  border: 1px solid #f2cdbf; */
  padding: 8px 15px;
  background: #f0f0f0;
  color: #0f507a;
  border: 1px solid #bed1db;
  display: block;
}

.dashboardLeft ul li.asAbuying span svg {
  width: 20px;
  height: 20px;
}

/**/
header .topLinks li .myAccountDropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px, rgba(0, 0, 0, 0.12) 0px 8px 16px;
  border-radius: 8px;
  z-index: 99;
  min-width: 200px;
  padding: 8px;
  top: 100%;
  right: 0;
  padding: 12px;
}

header .topLinks li:hover .myAccountDropdown {
  display: block;
}

header .topLinks li:hover .myAccountDropdown::before {
  border: solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  pointer-events: none;
  width: 0;
  bottom: 100%;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  right: 15%;
  margin-left: -10px;
  border-width: 10px;

}

header .topLinks li .myAccountDropdown li {
  display: flex;
  align-items: center;
  width: 100%;
}

header .topLinks li .myAccountDropdown li:first-child {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

header .topLinks li .myAccountDropdown li .icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: linear-gradient(118deg, #ef3b24 32.59%, #b91c09 99.7%);
  border-radius: 6px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
}

header .topLinks li .myAccountDropdown li .dashboardUser {
  margin-left: 0;
  position: relative;
  line-height: 15px;
}

header .topLinks li .myAccountDropdown li .dashboardUser .name {
  margin: 0;
  color: #ef3b24;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-wrap: balance;
}

header .topLinks li .myAccountDropdown li .dashboardUser .number {
  color: rgb(94 108 132);
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  text-wrap: balance;
  display: block;
}

header .topLinks li .myAccountDropdown li a {
  color: #333;
  padding: 5px 0;
  font-size: 14px;
  display: block;
  width: 100%;
  line-height: normal;
}

header .topLinks li .myAccountDropdown li a svg {
  width: 14px;
  height: 14px;
  margin-right: 3px;
}

header .topLinks li .myAccountDropdown li:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}

header .topLinks li .myAccountDropdown li:nth-last-child(2) {
  border: 0;
  padding: 0;
  margin: 0;
}

header .topLinks li .myAccountDropdown li a:hover,
header .topLinks li .myAccountDropdown li a:focus {
  color: #ef3b24;
}

.exploreMenuRight #cat-allmaincategory ul li a {
  color: #333;
}

.exploreMenuRight #cat-allmaincategory ul li a:before {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%230f507a' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
  transition: all 0.5s ease;
  margin-right: 3px;
}

.exploreMenuRight #cat-allmaincategory ul li a:hover {
  color: #ef3b24;
}

.exploreMenuRight #cat-allmaincategory ul li a:hover:before {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");

}

.viewAllCategory {
  font-size: 13px;
  color: #fff;
  margin-top: 10px;
  padding: 4px 10px;
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  border-radius: 4px;
  line-height: normal;
  display: inline-flex;
}

.viewAllCategory:hover,
.viewAllCategory:focus {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
}

/**/
.main-footer {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  border-top: 1px solid #ededf5;
  margin-top: auto;
  padding: 0.9rem 1rem 0.9rem 250px !important;
}

.main-footer p {
  display: block;
  text-align: center;
  margin: 5px 0;
  padding: 0;
  font-size: 14px;
  color: #333;
  line-height: 35px;
}

.main-footer strong {
  color: #0f507a;
}

.dashboardLeft ul li.gmBadge {
  padding: 5px;
}

.dashboardLeft ul li.gmBadge a.gmTag {
  border-radius: 4px;
  background: #fdf5e6;
  border: 1px solid #f6d7a1;
  padding: 7px 15px;
}

.dashboardLeft ul li.gmBadge a.gmTag:hover {
  color: #daa630;
}

.dashboardLeft ul li.gmBadge.active a {
  background: #fdf0d5;
  color: #daa630;
  border-bottom-color: #ecdfc4;
}

.dashboardLeft ul li.gmBadge.active ul li a {
  background: #f9f2e5;
  color: #333;
  border-bottom-color: #ecdfc4;
  padding: 8px 15px;
}

.dashboardLeft ul li.gmBadge.active ul li {
  border-bottom-color: #ecdfc4;
}

.dashboardLeft ul li.gmBadge ul li a:hover,
.dashboardLeft ul li.gmBadge ul li a:focus,
.dashboardLeft ul li.gmBadge ul li.active a {
  color: #daa630;
}

.dashboardLeft ul li.gmBadge ul li.active a {
  background: #fdf0d5;
  border-right-color: #d7a53a;
  color: #daa630;
}

/**/
.directoryGridItem_3:hover {
  position: relative;
  z-index: 9;
}

.directoryGridItem_3 .withAllCat {
  position: relative;
}

.directoryGridItem_3 .showAllCat {
  position: absolute;
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-top: 1px solid #eee;
  display: none;
  width: 100%;
  top: 95%;
  left: 0;
  z-index: 999;
  border-radius: 0 0 8px 8px;
}

.directoryGridItem_3:hover .showAllCat {
  display: block;

}

.directoryGridItem_3:hover .showAllCat ul {
  margin: 0;
  padding: 15px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}

.directoryGridItem_3:hover .showAllCat ul li {
  width: calc(100% / 2 - 10px);
  list-style: none;
}

.directoryGridItem_3:hover .showAllCat ul li a {
  width: 100%;
  position: relative;
  padding-left: 18px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  font-size: 14px;
}

.directoryGridItem_3:hover .showAllCat ul li a:hover {
  color: #ef3b24;
  text-decoration: underline;
}

.directoryGridItem_3:hover .showAllCat ul li a:after {
  position: absolute;
  left: 0;
  top: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23333' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
}

.directoryGridItem_3:hover .showAllCat ul li a:hover:after {
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23ef3b24' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
}

.mainHeading {
  margin-bottom: 10px;
}

.mainHeading a {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.mainHeading a:hover {
  color: #ef3b24;
  text-decoration: underline;
}

.wantBuySection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.postRequirementForm {
  float: left;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 15px 25px 25px;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 12px rgba(31, 92, 163, 0.2); */
  margin-bottom: 25px;
  border-top: 5px solid #fd7361;
  /* position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  min-height: 430px; */
}

/**/
.leftBusiness_2 {
  box-sizing: border-box;
  position: relative;
}

.leftBusiness_2 ul {
  margin: 0;
  padding: 0;
  display: block;
}

.leftBusiness_2 ul li {
  list-style: none;
  display: flex;
  width: 100%;
}

.leftBusiness_2 ul li .imageIcon {
  margin-right: 20px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  overflow: hidden;
  display: flex;
  line-height: 0;
  align-items: center;
  justify-content: center;
}

.leftBusiness_2 ul li .imageIcon svg,
.leftBusiness_2 ul li .imageIcon img {
  width: 60px;
  height: 60px;
  color: #ef3b24;
}

.leftBusiness_2 ul li .businessInfo {
  font-size: 16px;
  color: #333;
  font-weight: normal;
  line-height: 1.4;
}

.leftBusiness_2 ul li .businessInfo p {
  margin: 0;
  font-size: 14px;
}

.leftBusiness_2 ul li .businessInfo p strong {
  margin-bottom: 5px;
  display: block;
}

.padding-40 {
  padding: 40px 0;
}

#whatsappOtpPanel,
#thirdPanel {
  display: none;
}

.small .resend {
  color: #ef3b24;
  cursor: pointer;
}

.small .resend.disabled {
  color: #6c757d;
  pointer-events: none;
}

.postPropertySectionLeft .innerBusinessTitle {
  border-color: #681a10;
}

.specificPanel {
  display: none;
}

.singleLi ul {
  display: block;
}

.singleLi ul li {
  width: 100%;
}

/**/
.postBuyRequirements {
  float: left;
  width: 100%;
  margin: 0;
  padding: 30px 0 70px;
  position: relative;
  background: #fff;
  background: linear-gradient(120deg, #000 0, #ef3b24 100%) 0 0 no-repeat;
  background-repeat: no-repeat;
}

.postBuyRequirementsText {
  text-align: center;
}

.postBuyRequirementsText .postBuyRequirementsTitle {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.postBuyRequirementsText p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.postBuyRequirementSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 50px 0 40px;
  position: relative;
}

.postBuyRequirementsInner {
  width: 100%;
  max-width: 880px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  margin-top: -95px;
  display: flex;
  padding: 40px;
}

.postBuyRequirementsInner .form-group {
  margin-bottom: 20px;
}

.postBuyRequirementsInner .form-group label {
  color: #333;
}

/**/
.verifiedManufacturersSection {
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #eee;
}

.featureAdded {
  min-height: 130px;
  padding: 15px;
}

.business05Title {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.featureDiv svg {
  color: #ef3b24;
}

.buyersFrom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

.buyersFrom li {
  list-style: none;
  background: #f2f2f2;
  padding: 7px 15px;
  border-radius: 20px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
  border: 1px solid #bed1db;
}

.buyersFrom li:first-child {
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 16px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 20px;
  background: #fff;
  color: #0f507a;
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
}

.topFeatures {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-top: 15px;
}

.topFeatures li {
  list-style: none;
  background: #f2f2f2;
  padding: 7px 15px;
  border-radius: 20px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
  /* border: 1px solid #bed1db; */
}

.newAdded {
  gap: 15px;
  padding: 15px 25px;
  border-radius: 4px;
}

.newAdded .icon2 {
  margin: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.newAdded .icon2 svg {
  width: 40px;
  height: 40px;
}


.leftSticky {
  position: sticky;
  left: 0;
  top: 65px;
}


.quickDiv {
  display: block;
  padding: 15px;
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  border-radius: 4px;
}

.quickTitle {
  color: #115581;
  font-weight: 600;
  line-height: normal;
  font-size: 18px;
  margin-bottom: 10px;
}

.quickDiv ul {
  margin: 0 0 20px;
  padding: 0;
}

.quickDiv ul li {
  list-style: none;
}

.quickDiv ul li a {
  color: #333;
}

.quickDiv p {
  font-size: 14px;
  color: #333;
}

.supportHighlights {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.supportHighlights span {
  background: #fff;
  padding: 8px 12px;
  line-height: normal;
  border-radius: 30px;
  border: 1px solid #bed1db;
  font-weight: 600;
  font-size: 13px;
}

/**/
.contactCard {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #bed1db;
}

.contactHeading {
  color: #115581;
  font-weight: 600;
  line-height: 1.3;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 10px;
  background: linear-gradient(180deg, #fbfdff, #fff);
  border: 1px solid rgba(11, 99, 214, 0.04);
  margin-top: 15px;
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  background: #e8f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  color: #0862d7;
}

.contact-card h4 {
  margin: 0;

  font-size: 15px;
}

.contact-card p {
  margin: 6px 0 0;
  color: #6a7180;
  font-size: 14px;
}

.note-small {
  color: #686f7d;
  font-size: 13px;
}

.contact-card p {
  margin: 6px 0 0;
  color: #6a7180;
  font-size: 14px;
}

.contact-card a {
  color: #115581;
}

.contact-card a:hover,
.contact-card a:focus {
  text-decoration: underline;
  color: #ef3b24;
}

/**/
.submitEnquiryDiv {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #bed1db;
  margin-top: 15px;
}

.submitEnquiryDivTitle {
  color: #115581;
  font-weight: 600;
  line-height: 1.3;
  font-size: 18px;
}

.submitEnquiryDiv p {
  margin-bottom: 15px;
}

.submitEnquiryDiv label {
  margin-bottom: 3px;
  color: #333;
}

/**/
.featuresGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.featuresGrid .feature2 {
  display: block;
  padding: 15px;
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  border-radius: 12px;
}

.featuresGrid .feature2 strong {
  color: #115581;
  font-weight: 600;
  line-height: 1.3;
  font-size: 18px;
}

.featuresGrid .feature2 ul {
  margin: 0;
  padding: 0;
}

.featuresGrid .feature2 ul li {
  font-size: 14px;
  color: #333;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.featuresGrid .feature2 ul li:before {
  position: absolute;
  left: 0;
  content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23222' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");
}

.featuresGrid .feature2 p {
  font-size: 14px;
}

/**/

/* Modals */
.csOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999
}

.csOverlay.show {
  display: flex
}

.csModal {
  background: #fff;
  border-radius: 12px;
  max-width: 720px;
  min-width: 350px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(10, 20, 40, .12);
  position: relative;
}

.csModalClose {
  position: absolute;
  right: 5px;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  top: 5px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.csModal .csModalTitle {
  margin: 0 0 8px;
  font-size: 18px;
  color: #0f507a;
  font-weight: 600;
}

.csModal p {
  margin: 0 0 14px;
  color: #333;
  font-size: 14px;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 6px 0 12px;
}

.csModalButtons {
  margin-top: 10px;
  display: flex;
  gap: 0 10px;
  align-items: center;
}

.csSubmitBtn {
  background: #0f507a;
  color: #fff;
  border: 1px solid #0a3957;
  padding: 10px 25px;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px;
}

.csSubmitBtn:hover,
.csSubmitBtn:focus {
  background: #ef3b24;
  color: #fff;
  border: 1px solid #db321d;
}

.csCancelBtn {
  padding: 10px 25px;
  background: #333;
  color: #fff;
  border: 1px solid #222;
  display: inline-flex;
  text-align: center;
  border-radius: 3px;
  line-height: normal;
  z-index: 1;
  font-size: 15px;
  border: 0;
}

.csCancelBtn:hover,
.csCancelBtn:focus {
  background: #222;
  border-color: #111;
  color: #fff;
}

.reportForm .form-group label {
  font-size: 13px;
  margin-bottom: 3px;
}

.csOtp-input {
  border: 1px solid rgba(246, 146, 133, 0.4);
  background: 0px 0px;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: rgb(51, 51, 51);
  font-weight: 400;
  line-height: 1.88;
  margin-right: 8px;
  outline: 0px;
  font-weight: bold;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.csOtp-input:focus {
  border-color: #0f507a;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
  outline: none;
}

.csOtp-input-container-styles {
  display: flex;
  align-items: center;
}

#csModal_2 {
  display: none;
}

.csModalNumberView {
  font-weight: 600;
}

.anotherWay {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.anotherWay:hover,
.anotherWay:focus {
  color: #ef3b24;
}

.claimContactFormTryAnother {
  display: none;
}

.claimContactFormTryAnotherTitle {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/**/
/* Dropdown style */
.sliderDropdown {
  position: relative;
}

.sliderDropdownMenu {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 150px;
  width: 100%;
  max-width: 1040px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 12px;
}

/* .sliderDropdownMenu:after {
  content: "";
  position: absolute;
  border: solid rgba(33, 43, 54, 0.1);
  border-width: 0 2px 2px 0;
  padding: 5px;
  right: 20px;
  transform: rotate(-135deg);
  top: -7px;
  background: #fff;
} */


.sliderDropdownMenu ul {
  margin: 0;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}

.sliderDropdownMenu ul li {
  list-style: none;
  width: calc(100% / 5 - 12px);
}

.sliderDropdownMenu ul li a {
  font-size: 14px;
  color: #333;
}

.sliderDropdownMenu ul li a:hover {
  color: #ef3b24;
}