:root {
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Josefin Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: "Montserrat", SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 26px;
  --text-4xl: 28px;
  --text-5xl: 30px;
  --text-6xl: 40px;
  --text-base: 14px;

  --color-darkgray: #e7e5e5;
  --color-lightgray: #ebebeb;
  --color-sgray: #f9f9f9;
  --color-footermenu: #807e7e;
  --color-header: #575757;
  --color-gray: #a0aec0;
  --color-light: #e2e8f0;
  --color-lighter: #edf2f7;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-lrmenu: #adadad;

  --color-theme: #14a800;

  --color-theme1: #4b4b4b;
  --color-theme2: #007bff;
  --color-textgray: #686868;
  --color-base: #2b273c;
  --color-lightgray: #f3f3f3;
  --color-footerbg: #f1f0f0;
  --color-testbg: #f2f2f2;
  --color-lrfhdr: #000000cc;
  --color-outline: #b8b8b8;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;

  --star-color: #979494;
  --star-background: #ffa838;
  --rating: 0;
}

body {
  line-height: 1.5;
  color: var(--color-base);
  font-family: var(--font-family-monospace);
  font-size: 14px;
  letter-spacing: 0.5px;
}
a {
  color: var(--color-base);
}
.img-responsive {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
header {
  background-color: #fff;
  padding: 0px;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  height: 70px;
  z-index: 99999;
  box-shadow: 0 6px 6px -6px #717171;
}
header .container,
.category-details .container {
  width: 100%;
  max-width: 1920px;
  padding: 0px 30px;
}
.headerrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.logolftarea {
  max-width: 300px;
}
.logolftarea img {
  max-height: 70px;
}
.menurightarea {
  width: calc(100% - 250px);
  height: 70px;
}
.cpmtmenubar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.cmpltlft ul {
  padding: 0px;
  margin: 0px;
}
.cmpltlft ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 50px;
}
.cmpltlft ul li a {
  color: var(--color-base);
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
  padding: 24.5px 0;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.cmpltlft ul li a:after {
  height: 4px;
  background-color: transparent;
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
}
.cmpltlft ul li:hover a:after {
  background-color: var(--color-theme);
}
.cmpltlft ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  width: max-content;
  background-color: var(--color-white);
  min-width: 250px;
  padding: 10px 15px;
}
.cmpltlft ul li.has-children:hover ul {
  display: block;
}
.cmpltlft ul li.has-children ul li {
  display: block;
  margin: 5px 0;
}
.cmpltlft ul li.has-children ul li a {
  color: var(--color-base);
  padding: 8px 10px;
  display: block;
  border-radius: 5px;
}
.cmpltlft ul li.has-children ul li a:hover {
  background-color: #f2f2f2;
}
.cmpltlft ul li.has-children ul li a:after {
  display: none;
}
.cmpltlft ul li.has-children:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.cmpltrgt ul {
  padding: 0px;
  margin: 0px;
}
.cmpltrgt ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-left: 10px;
}
.cmpltrgt ul li a {
  color: var(--color-base);
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
  padding: 20px 0;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.cmpltrgt ul li:nth-child(1) a,
.botton-group button.button-default {
  background-color: var(--color-theme);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
}
.cmpltrgt ul li a.button-outline,
.botton-group button.button-outline,
.location-and-hour button.button-outline,
.review-container button.button-outline,
.category-details a.button-outline {
  padding: 8px 20px;
  border-radius: 5px;
  border: 1px solid var(--color-outline);
  background-color: transparent;
}
.botton-group button.button-default {
  border: none;
}
.cmpltrgt ul li a.button-outline:hover,
.botton-group button.button-outline:hover,
.category-details a.button-outline:hover {
  background-color: #e2e2e2;
}
.botton-group button {
  margin-right: 10px;
}
.botton-group button img {
  margin-top: -4px;
}
.primary {
  background-color: var(--color-base);
  padding: 8px 30px;
  min-width: 120px;
  border-radius: 5px;
  margin-top: 25px;
  color: var(--color-white);
  font-weight: 500;
  font-size: var(--text-sm);
  border: none;
  letter-spacing: 1px;
}
.primary:hover {
  background-color: var(--color-theme1);
}
.bannersect {
  background-image: url(../images/hero-banner-2.jpg);
  padding: 200px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.bantoptxt {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0px 0px 15px #959595;
}
.bantoptxt span {
  font-weight: 600;
  margin-left: 10px;
}
.bantoptxt sup {
  font-size: 50%;
}

.myareacharea {
  width: 100%;
  background-color: #fff;
  padding: 15px 15px 15px 60px;
  font-size: 14px;
  color: #717171;
  border: 1px solid #fff;
  height: 51px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  font-weight: 500;
  outline: none !important;
}
.midsearchame:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #ccc;
}
.myareacharea1 {
  width: 100%;
  background-color: #fff;
  padding: 15px 15px 15px 60px;
  font-size: 14px;
  color: #717171;
  border: 1px solid #fff;
  height: 51px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  font-weight: 500;
  outline: none !important;
}
.mysearcuttn {
  width: 100%;
  background-color: var(--color-theme);
  text-align: center;
  color: #fff;
  font-size: 20px;
  height: 51px;
  border: 1px solid var(--color-theme);
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: none !important;
}
.bbuttosonan {
  text-align: center;
  clear: both;
  margin-top: 55px;
}
.midsearchame {
  width: calc(50% - 50px);
  float: left;
  position: relative;
}
.midsearchame1 {
  width: calc(50% - 50px);
  float: left;
  position: relative;
}
.searchoxarr {
  margin: 15px 0;
}
.serachox {
  width: 100px;
  float: left;
}
.onbanerconts {
  width: 80%;
  margin: 0px auto;
}
.myareacharea:focus,
.myareacharea1:focus {
  outline: 1px solid #a2a2a2;
}
.servlistonban {
  margin-top: 25px;
  text-align: center;
}
.servlistonban ul {
  margin: 0 -15px;
  padding: 0px;
  display: flex;
  justify-content: center;
}
.servlistonban ul li {
  list-style: none;
  display: inline-block;
  margin: 0px 15px;
}
.servlistonban ul li a {
  color: var(--color-white);
  font-weight: 500;
  font-size: var(--text-sm);
  text-decoration: none;
  display: flex;
}
.servlistonban ul li svg {
  fill: #fff;
  margin-right: 7px;
  height: 18px;
}
.servlistonban ul li a:hover {
  color: var(--color-white);
}
.servlistonban ul li a i {
  padding-right: 5px;
}

h2.sectheader {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: var(--text-6xl);
}
.sectdesc {
  font-weight: normal;

  margin: 0px auto;
  font-size: var(--text-md);
  color: var(--color-base);
  line-height: 1.8;
}
.whyuse {
  background-color: #fff;
  padding: 80px 0 60px;
  overflow: hidden;
  margin-bottom: 20px;
}
.whyubox {
  text-align: center;
  margin-bottom: 40px;
}
.whyubox h4 {
  color: var(--color-base);
  margin-bottom: 15px;
}
.whyubox .imgforit {
  margin-bottom: 15px;
}
.whyubox .imgforit svg {
  width: 70px;
  height: 70px;
}
.whyubox .imgforit svg g {
  fill: var(--color-theme1);
}
.whyubox p {
  color: var(--color-textgray);
  line-height: 1.8;
}
.height50 {
  height: 50px;
}
.height40 {
  height: 40px;
}
.height30 {
  height: 30px;
}
.height20 {
  height: 20px;
}

.browsbycat {
  background-color: var(--color-lightgray);
  padding: 80px 0 60px;
  overflow: hidden;
  margin-bottom: 20px;
}
.eachbrows {
  background-color: var(--color-white);
  border: 1px solid #e6e6e6;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
}
.eachbrows:hover {
  border: 1px solid #737373;
}
.eachbrows .imgagebrows {
  margin-bottom: 15px;
}
.eachbrows .imgagebrows svg {
  width: 60px;
  height: 60px;
}
.eachbrows a h5 {
  color: var(--color-base);
  text-decoration: none !important;
}
.eachbrows a {
  text-decoration: none !important;
  padding: 20px;
  display: block;
}
.recentcoll {
  padding: 80px 0 60px;
  margin-bottom: 20px;
  overflow: hidden;
}
.collectbox {
  padding: 5px 0px;
  overflow: hidden;
}
.onecolbx {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px solid #e2e2e2;
}
.leftimgbx {
  width: 90px;
  margin-right: 20px;
}
.rgtinfo {
  width: calc(100% - 110px);
}
.rgtinfo h6 {
  font-size: var(--text-md);
  margin-bottom: 2px;
}
.rgtinfo h6 a {
  color: var(--color-theme2);
}
.rgtinfo p {
  margin-bottom: 2px;
}
.rgtinfo p.descrpoin {
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rgtinfo p.lastinfo {
  color: var(--color-textgray);
}
.rgtinfo p.lastinfo a {
  color: var(--color-theme2);
  padding-left: 3px;
}
.rgtinfo p.lastinfo span {
  padding-right: 10px;
}
.recentcoll .col-md-6:last-child .onecolbx {
  border-bottom: none;
}
.recentcoll .col-md-6:nth-last-child(2) .onecolbx {
  border-bottom: none;
}

.clainbusiness {
  padding: 50px 0;
  overflow: hidden;
  background-color: #000000cc;
}
.claininfo {
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.claimrgt a {
  border: 2px solid #fff;
  text-align: center;
  display: block;
  color: var(--color-white);
  border-radius: 5px;
  font-size: 17px;
  padding: 5px 15px;
  text-decoration: none;
}
.claimrgt a:hover {
  background-color: var(--color-white);
  color: var(--color-base);
}
.claimlft h6 {
  font-size: var(--text-3xl);
}
.claimlft p {
  margin-bottom: 0px;
  font-size: var(--text-lg);
}

footer {
  padding: 60px 0 0;
  overflow: hidden;
  background-color: var(--color-footerbg);
}
.middlefooter ul {
  margin: 0px auto;
  padding: 0px;
  padding-left: 0px;
}
.middlefooter ul li {
  list-style: none;
  display: block;
  margin-bottom: 15px;
}
.middlefooter ul li a {
  color: var(--color-base);
}
.middlefooter ul li a:hover {
  color: var(--color-base);
}
.middlefooter h4 {
  margin-bottom: 15px;
  font-size: var(--text-md);
  font-weight: 600;
}
.middlefooter h3 {
  font-size: var(--text-2xl);
  margin-bottom: 10px;
  font-weight: bold;
}
.questionscag {
  font-weight: 600;
  font-size: var(--text-lg);
}
.questionscag i {
  font-size: var(--text-xl);
  margin-right: 5px;
}
.questionscag a {
  color: var(--color-base);
}
.middlefooter {
  padding-bottom: 30px;
}
.middlefooter ul.soclialmenu li {
  margin-left: 0px !important;
  padding-right: 15px;
  display: inline-block;
  font-size: 18px;
}
.middlefooter ul.soclialmenu li a {
  color: var(--color-base);
}
.middlefooter ul.soclialmenu li a:hover {
  color: var(--color-theme);
}
.bottombooter {
  margin-top: 25px;
  padding: 25px 0;
  font-size: var(--text-xs);

  border-top: 1px solid #dee2e6;
  color: var(--color-base);
  letter-spacing: 0.5px;
}
.bottombooter ul {
  margin: 0px;
  padding: 0px;
  text-align: right;
}
.bottombooter ul li {
  list-style: none;
  display: inline-block;
  margin-left: 15px;
}
.bottombooter a {
  color: var(--color-base);
  font-weight: 500;
}
.midsearchame1 {
  position: relative;
}
.midsearchame:after,
.midsearchame1:after {
  content: attr(data-name);
  display: inline-block;
  position: absolute;
  z-index: 999;
  left: 15px;
  font-weight: 600;
  color: #666;
  font-size: var(--text-md);
  top: 14px;
}
.testimonial {
  background-color: var(--color-white);
  padding: 80px 0 60px;
  overflow: hidden;
  margin-bottom: 20px;
}
.testimonial h3 {
  font-size: var(--text-4xl);
  letter-spacing: 1px;
  color: var(--color-base);
  line-height: 1.25;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}
.btntestimonial {
  margin-top: 10px;
  font-size: var(--text-md);
  color: #007bff;
  display: inline-block;
}
.testimonial .sectdesc {
  margin-bottom: 40px;
}
.testimonial p {
  font-size: var(--text-md);
  margin-bottom: 0px;
  line-height: 1.8;
}
.testimonuilist {
  width: 100%;
  height: 100%;
  background-color: var(--color-testbg);
  padding: 20px;
  border-radius: 10px;
}
.quoteimg {
  font-size: 50px;
  color: var(--color-base);
  padding-left: 20px;
}
.whatsaid {
  color: var(--color-base);
  font-size: var(--text-sm);
  margin: 10px 0px 20px;
  line-height: 1.9;
}
.whosaidinfo {
  clear: both;
  display: flex;
  align-items: center;
}
.whosaidinfo span {
  width: 80px;
  margin-right: 10px;
}
.whosaidinfo span img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.whosaidinfo .userinfo {
  width: calc(100% - 90px);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-base);
}
.whosaidinfo .userinfo small {
  display: block;
  font-size: 15px;
  font-weight: normal;
}
.midsearchame {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #fff;
  padding: 6px 0px 9px 0px;
}

.vodiapicker {
  display: none;
}

#a {
  padding-left: 0px;
}

#a img,
.btn-select img {
  width: 12px;
}

#a li {
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

#a li:hover {
  background-color: #f4f3f3;
}

#a li img {
  margin: 5px;
}

#a li span,
.btn-select li span {
  margin-left: 15px;
  font-weight: 500;
  color: #717171;
}

/* item list */

.b {
  display: none;
  width: calc(100% + 60px);
  max-width: 410px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 0px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  margin-top: 6px;
  position: absolute;
  background-color: #fff;
  left: -60px;
}

.open {
  display: show !important;
}

.btn-select {
  margin-top: 2px;
  width: 100%;
  max-width: 350px;
  height: 34px;
  border-radius: 5px;
  background-color: #fff;
  border: 0px solid #ccc !important;
  position: relative;
  background: transparent !important;
}
.btn-select li {
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.btn-select:hover li {
  margin-left: 0px;
}

.btn-select:hover {
}

.btn-select:focus {
  outline: none;
}

.lang-select {
  margin-left: 60px;
  position: relative;
}

.reated-icon i {
  font-size: 12px;
}

.reated-icon i.active {
  color: #ffe400;
}
.reated-icon i.no-active {
  color: #838383;
}

header.lrf-header {
  background-color: var(--color-lrfhdr);
  padding: 0px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
header.lrf-header .headerblock {
  width: 100%;
  max-width: 1920px;
  padding: 0px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerblock .rightmenu ul {
  margin: 0px auto;
  padding: 0px;
}
.headerblock .rightmenu ul li {
  list-style: none;
  display: inline-block;
  margin-left: 15px;
}
.headerblock .rightmenu ul li a {
  color: var(--color-lrmenu);
  font-weight: 500;
  font-size: var(--text-md);
  text-transform: capitalize;
}

.lrf-box {
  padding: 150px 0px 50px;
}

.lrf-contentarea {
  width: 100%;
  margin: 0px auto;
  max-width: 420px;
}

.lrf-contentarea h1 {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: var(--text-6xl);
}

.lrf-full-button {
  border: 2px solid var(--color-lrfhdr);
  text-align: center;
  display: block;
  color: var(--color-white);
  border-radius: 5px;
  font-size: var(--text-md);
  padding: 6px 15px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  width: 100%;
  letter-spacing: 0.5px;
  background-color: var(--color-base);
}

.lrf-full-button:hover {
  background-color: var(--color-theme);
  border: 2px solid var(--color-theme);
}

.lrf-contentarea .form-control {
  font-size: var(--text-sm);
  height: auto;
  padding: 9px 10px;
}

.lrf-contentarea .form-group {
  margin-bottom: 1.5rem;
}

.askforgot {
  float: right;
  color: var(--color-base);
}

.donthave {
  color: var(--color-base);
  margin-top: 25px;
  font-size: var(--text-sm);
}
.donthave a {
  color: #007bff;
  padding-left: 5px;
}

.oris {
  border-bottom: 1px solid #e2e2e2;
  margin: 30px 0 20px;
  text-align: center;
  position: relative;
}

.oris span {
  background-color: #fff;
  padding: 5px 20px;
  position: absolute;
  left: calc(50% - 31px);
  top: -15px;
}

.socialtow {
  margin: 0px -10px 20px;
  clear: both;
  overflow: hidden;
}

.socialtow .singlesocial {
  width: calc(50% - 20px);
  margin: 10px;
  float: left;
}

.socialtow .singlesocial a {
  border-radius: 4px;
  border: 1px solid #bcb0b0;
  padding: 8px 10px;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  width: 100%;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
.socialtow .singlesocial a:hover {
  background-color: var(--color-lightgray);
}
.socialtow .singlesocial a img {
  margin-right: 10px;
  height: 21px;
}
.bar1,
.bar2,
.bar3 {
  width: 22px;
  height: 2px;
  background-color: #000;
  margin: 5px 0;
  transition: 0.4s;
  cursor: pointer;
}
.menubar {
  display: none;
}
.formobilemenu {
  display: none;
}
.owl-theme .owl-controls {
  margin-top: 45px !important;
}

@media only screen and (max-width: 1100px) {
  .container {
    width: 100%;
    max-width: 100%;
  }
  .menubar {
    display: block;
    cursor: pointer;
    float: right;
    position: relative;
    z-index: 99991;
  }
  .cpmtmenubar {
    position: fixed;
    width: 80%;
    height: calc(100% - 70px);
    background-color: #fff;
    right: -150%;
    top: 70px;
    transition: 0.2s;
    z-index: 9999;
    border-top: 1px solid var(--color-darkgray);
    overflow-y: auto;
    padding-bottom: 15px;
  }
  .cpmtmenubar.show_menu {
    width: 80%;
    right: 0;
  }
  .menulists ul li {
    display: block;
    padding-bottom: 25px;
    text-align: right;
    padding-right: 60px;
  }
  .menubar.opened .bar1 {
    transform: rotate(45deg) translate(3px, 4px);
  }
  .menubar.opened .bar3 {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  .menubar.opened .bar2 {
    opacity: 0;
  }
  header .container {
    padding: 0px 15px;
  }
  .menurightarea {
    height: 100%;
  }
  .cpmtmenubar {
    align-items: flex-start;
    display: block;
  }
  .eachbrows {
    height: 100%;
    margin-bottom: 0;
  }
  .browsbycat .col-md-3 {
    margin-bottom: 20px;
  }
  .onbanerconts {
    width: 100%;
  }
  .servlistonban ul {
    flex-wrap: wrap;
  }
  .formobilemenu {
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
    font-size: 20px;
    line-height: 0;
    transition: 0.2s;
    float: right;
    margin-top: 19px;
  }
  .cmpltlft ul li,
  .cmpltrgt ul li {
    display: block;
    text-align: left;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--color-darkgray);
    margin-right: 0;
    padding: 10px 10px 10px 20px;
  }
  .cmpltlft ul li.has-children ul li a {
    color: var(--color-base);
    padding: 8px 0px;
    display: block;
    border-radius: 5px;
    font-weight: normal;
  }
  .cmpltrgt ul li {
    margin-left: 0px;
  }
  .cmpltlft ul li a {
    padding: 10px 0;
  }
  .cmpltlft ul li.has-children:after {
    display: none;
  }
  .middlefooter .col-md-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .middlefooter .col-md-8 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    border: none;
    padding-left: 15px !important;
  }
  .bottombooter .col-md-5 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .bottombooter .col-md-7 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .bottombooter ul {
    text-align: center;
    margin-top: 10px;
  }
  .claimrgt {
    min-width: fit-content;
  }
  .cmpltlft ul li ul.opened {
    display: block !important;
    position: relative;
    text-align: right;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
  }
  .formobilemenu.activated {
    transform: rotate(-45deg);
  }
  .cmpltlft ul li ul.opened li {
    border: 0;
    padding: 5px 0;
  }
  .cmpltlft ul li ul {
    padding-left: 0px;
    border-top: 1px solid var(--color-darkgray);
    background-color: transparent !important;
  }
  .cmpltlft ul li.has-children ul li a:hover {
    background-color: transparent !important;
  }
  .cmpltlft ul li.isopeneds,
  .cmpltrgt ul li.isopeneds {
    background-color: var(--color-sgray);
  }
  .notscrolled {
    overflow: hidden;
  }
  .notscrolled:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    z-index: 9999;
  }
  .cmpltlft ul li.has-children:hover ul {
    display: none;
  }
}

@media only screen and (max-width: 960px) {
  .middlefooter .col-md-8 .col-md-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .claininfo {
    flex-wrap: wrap;
  }
  .claimrgt {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  header.lrf-header .headerblock {
    padding: 0px 15px;
  }
  .logoleft {
    max-width: 200px;
  }
  .lrf-box {
    padding: 100px 0px 50px;
  }
  .lrf-contentarea h1 {
    font-size: var(--text-5xl);
  }

  .browsbycat .col-md-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .testimonuilist {
    margin-top: 35px;
  }
  .midsearchame,
  .midsearchame1 {
    width: 100%;
    margin-top: 15px;
    border-radius: 5px;
  }
  .midsearchame1 {
    overflow: hidden;
  }
  .serachox {
    width: 100%;
    margin-top: 15px;
  }
  .midsearchame:before {
    display: none;
  }
  .mysearcuttn {
    border-radius: 5px;
  }
  .b {
    z-index: 9999;
  }
}

@media only screen and (max-width: 600px) {
  .middlefooter .col-md-8 .col-md-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .middlefooter .col-md-4 {
    text-align: center;
  }
  h2.sectheader {
    font-size: var(--text-4xl);
  }
  .browsbycat,
  .whyuse,
  .recentcoll,
  .testimonial {
    padding: 60px 0 40px;
  }
  footer {
    padding-top: 25px;
  }
  .bottombooter {
    margin-top: 0px;
  }
  .bantoptxt {
    font-size: 32px;
  }
  .bannersect {
    padding: 150px 0 100px;
  }
  .servlistonban ul li {
    margin: 5px 15px;
  }
  .clainbusiness {
    text-align: center;
  }
  .claimrgt {
    min-width: 100%;
    text-align: center;
    width: 100%;
  }
  .claimrgt a {
    display: inline-block;
  }
  .eachbrows a h5 {
    color: var(--color-base);
    text-decoration: none !important;
    word-break: break-word;
    font-size: var(--text-md);
  }
  .browsbycat .col-md-3 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .browsbycat .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .servlistonban ul {
    margin: 0px;
    justify-content: end;
  }
  .servlistonban ul li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin: 10px 0;
  }
  .servlistonban ul li:nth-child(even) a {
    justify-content: flex-end;
  }
  .socialtow .singlesocial {
    width: calc(100% - 20px);
  }
  .testimonuilist {
    height: auto;
  }
  .claimlft h6 {
    margin-bottom: 1.3rem;
  }
  .claimrgt {
    margin-top: 30px;
  }
  .questionscag {
    margin: 15px 0;
  }
  .bottombooter ul li:last-child {
    margin-top: 15px;
  }
  .middlefooter .col-md-8 .col-md-3:nth-child(even) {
    text-align: right;
  }
  .middlefooter ul.soclialmenu li {
    padding-right: 10px;
  }
  .owl-theme .owl-controls {
    margin-top: 35px !important;
  }
  .business-submit-step1 .left-side .left-container,
  .business-submit-step1 .right-side .right-container {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  .mysearcuttn {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .mysearcharaer {
    display: none;
  }
  .cmpltlft ul {
    display: block;
  }
}
.business-submit-step1,
.plans {
  background-color: var(--color-white);
  overflow: hidden;
}
.business-submit-step1 .right-side {
  background-color: var(--color-footerbg);
}
.business-submit-step1 .left-side .left-container {
  padding-left: 20%;
  padding-top: 80px;
  padding-right: 20px;
}
.business-submit-step1 .right-side .right-container {
  padding-right: 20%;
  padding-top: 80px;
  padding-left: 35px;
  min-height: 100vh;
  position: relative;
}
.business-submit-step1 button.small {
  width: 130px;
}
.business-submit-step1 .right-side .right-container .right-box {
  position: absolute;
  top: 200px;
  left: 25%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  width: 320px;
  border-radius: 4px;
}
.business-submit-step1 .right-side .right-container .right-box img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
}
.business-submit-step1 .right-side .right-container img.img-two {
  position: absolute;
  left: 45%;
  top: 260px;
  width: 200px;
  height: 200px;
  z-index: 99;
}
.plans {
  padding-top: 80px;
}
.plans .plans-box {
  background-color: var(--color-white);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-top: 12px;
  margin-bottom: 80px;
}
.plans .plans-box .plan-box-header {
  text-align: left;
  padding: 20px;
  padding-bottom: 0;
}
.plans .plans-box .plan-body {
  padding: 20px;
}
.plans .plans-box .plan-body strong {
  display: block;
  margin-top: 8px;
}
.plans .plans-box.best-plan {
  border: 3px solid var(--color-theme);
  position: relative;
  overflow: hidden;
}
.plans .plans-box.best-plan .best-value {
  position: absolute;
  right: -40px;
  top: 20px;
  background-color: var(--color-theme);
  color: #fff;
  font-weight: bold;
  padding: 6px;
  width: 150px;
  transform: rotate(45deg);
}
.plans .sectheader,
.plans .sectdesc {
  padding: 0 15px;
}
.benefits {
  background-color: var(--color-lightgray);
  padding-top: 80px;
  padding-bottom: 80px;
}
.benefits h6,
.faq h6 {
  font-weight: 600;
}
.faq h6 {
  line-height: 25px;
}
.benefits .benefit-row {
  margin-bottom: 80px;
}
.benefits img.benefits-bg {
  width: 100%;
  height: 100%;
}
.faq {
  padding-top: 80px;
  padding-bottom: 80px;
}
.terms {
  padding-top: 80px;
}
header .searchoxarr {
  margin: 0;
}
header .midsearchame,
header .myareacharea1 {
  background-color: #f9f9f9;
}
header .myareacharea1 {
  border: 0px solid #fff;
}
header .cmpltlft {
  width: 54%;
}
header .btn-select {
  width: 50%;
}
header #a li {
  width: 100%;
}
header .b {
  top: 39px;
  width: 95%;
}
header .midsearchame:before {
  right: 25%;
}
header .myareacharea1 {
  padding: 15px 15px 15px 2px;
}
header .midsearchame1:after {
  left: -20%;
}
.registration-details {
  margin-top: 70px;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.category-details {
  margin-top: 70px;
  padding-bottom: 80px;
}
.bread-crumb {
  margin-bottom: 18px;
}
.bread-crumb small {
  font-weight: 800;
}
.bread-crumb small a {
  font-weight: 600;
}
.bread-crumb small a:hover {
  text-decoration: none;
}
.middle-content .sectdesc {
  margin: 0 14px;
}
.category-details .middle-content ul {
  cursor: pointer;
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-details .middle-content ul li {
  position: relative;
}
.category-details .middle-content ul li ul {
  list-style: none;
  position: absolute;
  left: 38%;
  width: 60%;
  background-color: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f1f1;
  padding: 10px;
  text-align: left;
  display: none;
  z-index: 999;
}
.category-details .middle-content ul li a,
.pagi a {
  display: block;
  padding: 8px;
  border-radius: 4px;
}
.category-details .middle-content ul li a.active {
  background-color: #e8f9e5;
  color: var(--color-theme);
}
.category-details .middle-content ul li a:hover,
.pagi a:hover {
  background-color: #f1f1f1;
  text-decoration: none;
  color: var(--color-theme);
}
.category-details .middle-content ul li:hover ul {
  display: block;
}
.result-type {
  position: relative;
  margin-top: 18px;
}
.result-type span.tooltips {
  position: absolute;
  top: -90px;
  left: 120px;
  width: 290px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  color: #fff;
  border-radius: 4px;
  display: none;
}
.result-type span.tooltips.all-result {
  left: 68px;
}
.result-type span.tooltips::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 18px;
  border-top: 9px solid rgba(0, 0, 0, 0.7);
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
  display: none;
}
.result-type i:hover + span.tooltips,
.result-type i:hover + span.tooltips::before {
  display: block;
}
.left-sidebar {
  /* box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2); */
  /* padding-top: 10px; */
  /* border: 1px solid #f1f1f1; */
  margin-bottom: 12px;
  border-radius: 4px;
  position: sticky;
  top: 80px;
}
.left-sidebar label {
  display: block;
  margin: 5px;
  margin-left: 40px;
  margin-bottom: 16px;
  position: relative;
}
.left-sidebar label input {
  display: none;
}
.left-sidebar label span::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 1px;
  width: 18px;
  border: 2px solid var(--color-gray);
  border-radius: 50%;
  height: 18px;
}
.left-sidebar label input:checked + span::after {
  content: "";
  position: absolute;
  left: -24px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--color-gray);
  border-radius: 50%;
}
.sub-category-container {
  padding: 16px 20px;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  margin-bottom: 25px;
  transition: box-shadow 0.3s ease-in-out;
}
.sub-category-container a img,
.people-alow-viewed img {
  width: 100%;
  height: 100%;
}
.sub-category-container:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.sub-category-container img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.sub-category-container .ratting i.active,
.business-details .ratting i.active,
.all-reviews i.active,
.review-container i.active,
.people-alow-viewed i.active,
.login-page .ratting i.active {
  color: #ffe400;
}
.sub-category-container a {
  color: inherit;
  text-decoration: none;
}
.sub-category-container a.more-link {
  color: var(--color-theme);
}
.sub-category-container p.desc {
  margin-top: 12px;
}
.sub-category-container .main-cat {
  margin-top: 10px;
}
.pagi ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagi ul li {
  display: inline-block;
}
.right-sidebar {
  /* border: 1px solid #F1F1F1; */
  border-radius: 4px;
  /* box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2); */
}
.right-sidebar .ad-one,
.right-sidebar .ad-two {
  padding: 12px;
  margin-top: 18px;
}
.right-sidebar .ad-two img {
  width: 100%;
  height: 100%;
}
span.underline {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 1px;
  background-color: #f1f1f1;
}
img.arrow {
  display: inline-block;
  margin-top: -4px;
}
.cmpltlft ul.display-none {
  display: none;
}
.mobile {
  display: none;
}
.login-page .business-details-right-sidebar {
  border: 1px solid transparent;
  padding: 20px 0;
}
.business-submit-step1 .login-page button.small {
  width: 220px;
  padding: 5px 10px;
}
@media only screen and (max-width: 920px) {
  .cmpltlft ul.display-none {
    display: block;
  }
}
.search-container {
  position: relative;
  width: 90%;
  height: 42px;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.search-container input {
  border: none;
  background-color: transparent;
  outline: none !important;
}
.search-container .lang,
.search-container .near {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
}
.search-container .near {
  width: 60%;
  left: 145px;
}
.search-container .lang span,
.search-container .near span {
  position: absolute;
  left: 12px;
  top: 10px;
  font-weight: 600;
}
.search-container .near span {
  left: 20%;
}
.search-container .lang input,
.search-container .near input {
  position: absolute;
  left: 55px;
  top: 9px;
  width: 50%;
}
.search-container .lang input {
  border-right: 1px solid #cbcbcb;
  padding-right: 12px;
}
.search-container .near input {
  width: 80%;
  left: 35%;
  padding-right: 50px;
}
.search-container button {
  border: none;
  background-color: var(--color-theme);
  position: absolute;
  right: 0;
  padding: 8px 20px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
button.outline {
  background-color: transparent;
  border: 2px solid var(--color-lrfhdr);
  color: var(--color-lrfhdr);
}
h5.strike {
  text-decoration: line-through;
  color: var(--color-gray);
}
.business-details h2.sectheader {
  margin-top: -10px;
}
.business-details img.business-details-image {
  width: 100%;
  height: 100%;
}
.claimed {
  color: var(--color-theme);
}
.claimed img,
.verified img {
  margin-top: -4px;
}
.claimed span.period {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-black);
  margin-top: -8px;
}
.about-business img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.photo-and-images a {
  text-decoration: none;
  font-weight: 600;
}
.photo-and-images a img {
  margin-top: -4px;
}
.photo-and-images #owl-partners img {
  padding: 12px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
a:hover {
  text-decoration: none;
}
table.hours td {
  padding: 8px;
}
.review-container {
  padding: 4%;
  border: 1px solid #f1f1f1;
}
.review-container i.fa {
  font-size: 18px;
}
.review-container img {
  width: 40px;
  height: 40px;
}
.all-reviews img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.business-details-right-sidebar {
  padding: 20px 12px;
  border-left: 1px solid #f1f1f1;
  border-radius: 4px;
  position: sticky;
  top: 80px;
}
.business-details-right-sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.business-details-right-sidebar ul li {
  display: block;
  padding: 12px;
}
.owl-buttons {
  margin-bottom: 40px;
}
.review-container textarea.form-control {
  height: 130px;
}
.business-submit-step1 .left-side.registration-page .left-container,
.business-submit-step1 .left-side.login-page .left-container,
.business-submit-step1 .left-side.submit-url .left-container {
  padding-left: 15%;
  padding-right: 15%;
}
.claimed-img {
  width: 100%;
  height: 100%;
}
.business-email .left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}
.business-email .right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-right: 0;
}
.plan-summary .plans-box {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 4px;
  margin-top: 12px;
}
.order-summary {
  border: 1px solid #f1f1f1;
  padding: 15px;
  border-radius: 4px;
  margin-top: 80px;
}
.order-summary table .total {
  padding: 4px;
  padding-top: 9px;
  background-color: #ededed;
}
.buiness-summary {
  padding-top: 80px;
}
.faq .faq-question {
  cursor: pointer;
}
.faq .faq-answer {
  display: none;
}
.faq .faq-answer.open {
  display: block;
}
.terms-and-conditions p {
  text-align: justify;
}
.cmpltrgt ul li.user-account a span {
  display: inline-block;
  border-radius: 50%;
  font-size: 1.5rem;
  background-color: var(--color-theme);
  color: var(--color-white);
  width: 32px;
  height: 32px;
  line-height: 28px;
  text-align: center;
}
.cmpltrgt ul li.user-account ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: -200%;
  right: -30px;
  width: 230px;
  background-color: var(--color-white);
  z-index: -11111;
  transition: top 0.5s ease-in-out;
}
.cmpltrgt ul li.user-account ul li {
  display: block;
}
.cmpltrgt ul li.user-account ul li a {
  background-color: transparent;
  color: var(--color-base);
  padding: 14px 12px;
}
.cmpltrgt ul li.user-account ul li a {
  display: block;
  width: 110%;
  padding: 14px 14px;
}
.cmpltrgt ul li.user-account ul li a:hover {
  background-color: var(--color-lightgray);
}
.cmpltrgt ul li.user-account:hover ul {
  top: 93%;
}
.cmpltrgt {
  position: relative;
}
.hide-overflow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 97%;
  background-color: #fff;
  z-index: -1;
}
.change-paln img,
.change-paln a {
  fill: #ff6f6f;
  color: #ff6f6f;
}
.order-summary h6 strike {
  color: var(--color-gray);
}
.category-details .left-sidebar a {
  display: block;
  margin-top: 18px;
}
@media only screen and (max-width: 600px) {
  .cmpltrgt ul li.user-account ul {
    position: static;
  }
  .cmpltrgt ul li.user-account ul li {
    padding-left: 0;
  }
  .cmpltrgt ul li.user-account {
    padding-left: 0;
  }
  .cmpltrgt ul li.user-account > a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .cmpltrgt ul li.user-account ul li:last-child {
    border-bottom: none;
  }
  .plans,
  .category-details,
  .business-details,
  .business-submit-step1 .right-side .right-container,
  .business-submit-step1 .left-side .left-container,
  .buiness-summary,
  .faq,
  .terms {
    padding-top: 50px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  img.mobile {
    display: inline-block;
    margin-right: 18px;
  }
  .order-summary {
    margin-top: 50px;
  }
  .category-details .container {
    padding: 0 15px;
  }
  .middle-content .bread-crumb .col-md-6 {
    width: 50%;
  }
  .sub-category-container h4 {
    margin-top: 15px;
  }
  .pagi {
    text-align: center;
    padding: 16px 0;
  }
  .category-details .middle-content ul li ul {
    left: -5%;
    width: 100%;
  }
  .result-type span.tooltips,
  .result-type i:hover + span.tooltips {
    left: 28px;
  }
  .result-type i:hover + span.tooltips::before {
    left: 111px;
  }
  .result-type i:hover + span.tooltips.all-result::before {
    left: 56px;
  }
  .plans .plans-box {
    margin-bottom: 40px;
  }
  .plans-box h5 {
    text-align: center;
  }
  .botton-group button {
    margin-top: 12px;
  }
  .botton-group button.big-in-mobile {
    width: 46%;
    padding: 8px;
  }
  .botton-group button.small-in-mobile {
    width: 29%;
    padding: 8px 10px;
  }
  .container.business-details {
    padding-left: 0;
    padding-right: 0;
  }
  .verified h5 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
  }
  .review-container .fa-star {
    margin-top: 15px;
  }
  .photo-and-images h4 {
    font-size: 1rem;
  }
  .photo-and-images .col-md-6 {
    width: 50%;
  }
  .business-details h2.sectheader {
    margin-top: 12px;
  }
  .business-details {
    overflow-x: hidden;
  }
  .single-also-view {
    margin-top: 20px;
  }
  .location-and-hour img.map {
    width: 100%;
  }
  .location-and-hour button {
    width: 100%;
    margin-bottom: 25px;
  }
  .business-submit-step1 .left-side.registration-page .left-container,
  .business-submit-step1 .left-side.login-page .left-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .business-submit-step1 .right-side {
    display: none;
  }
  .business-submit-step1 {
    padding-bottom: 8%;
  }
  .business-submit-step1 .login-page button.small {
    width: 340px;
  }
  h4.sectheader {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1410px) {
  .search-container .near span {
    left: 25%;
  }
}
@media only screen and (min-width: 1700px) {
  .search-container .near span {
    left: 28%;
  }
}

.wwd_backgrund {
  background-color: #f2f2f5;
}

.wwd_section {
  background-color: #ffffff;
  padding: 24px;
}

.wwd_top {
  margin-top: 10px;
  padding-top: 80px;
}

.wwd_section_padding {
  padding-top: 16px;
  padding-bottom: 16px;
}

button.button-outline-green {
  padding: 8px 20px;
  border-radius: 5px;
  border: 1px solid var(--color-theme);
  color: var(--color-theme);
  background-color: transparent;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
}

.user-review a span {
  display: inline-block;
  border-radius: 50%;
  font-size: 1.5rem;
  background-color: var(--color-theme);
  color: var(--color-white);
  width: 32px;
  height: 32px;
  line-height: 28px;
  text-align: center;
  margin-right: 8px;
}

.serach-container {
  position: relative;
  border: 1px solid var(--color-gray);
  border-radius: 0.25rem;
}
.serach-container input {
  padding: 10px;
  border: none;
  background-color: transparent;
  outline: none;
  width: 80%;
}

.wrapper ul {
  margin: 0px auto;
  padding: 0px;
  padding-left: 0px;
}

.wrapper ul li {
  list-style: none;
  display: block;
  margin-bottom: 15px;
}
.wrapper ul .button-default {
  padding: 8px 20px;
  border-radius: 5px;
  border: 1px solid var(--color-outline);
}

.wwd-button-outline {
  padding: 8px 20px;
  border-radius: 5px;
  border: 1px solid var(--color-outline);
  background-color: transparent;
  display: block;
  margin-top: 18px;
}

.wwd-button-outline:hover {
  background-color: #e2e2e2;
}

.review img {
  padding: 4px;
  background-color: var(--color-gray);
}
.review img.active {
  background-color: var(--color-theme);
}
div.success-message {
  border: 1px solid #4f8a10;
  background-color: #ffffff;
  color: #4f8a10;
  background-image: url(../images/success_msg.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  padding: 15px 15px 15px 50px;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-weight: bold;
}

div.error-message {
  border: 1px solid #e2a789;
  background-color: #ffffff;
  color: #bb1910;
  background-image: url(../images/error_msg.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  padding: 15px 15px 15px 50px;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-weight: bold;
  -webkit-border-radius: 4px;
}

div.error-message p {
  margin-top: 0;
  margin-bottom: 0;
}
.steps-container {
  padding: 35px;
}
.steps-container .steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.steps-container .steps-counter {
  padding: 6px 11px;
  background-color: var(--color-sgray);
  color: var(--color-theme);
  border-radius: 50%;
  border: 4px solid transparent;
}
.steps-container .steps-counter.first-child {
  padding: 6px 12px;
}
.steps-container .steps-counter.completed-steps {
  background-color: var(--color-theme);
  color: var(--color-sgray);
}
.steps-container .steps-counter.active-step {
  border-color: var(--color-theme);
}

@media only screen and (max-width: 580px) {
  .steps-container {
    padding: 35px 15px;
  }
}
