@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap");
.loader {
  background: white;
  position: fixed !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 999999999;
}

.loader .loader-circle {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid #e00273;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Red Hat Display", sans-serif;
}

.overflow-hidden {
  overflow: hidden;
}

input:focus,
button:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

html,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px;
  margin: 0px !important;
  font-size: 15px;
  position: relative;
}

:root {
  --primary: #e00273;
  --secondary: #322153;
  --text: #65587e;
  --orange: #f87100;
  --white: #ffffff;
  --light-pink: #fae5f1;
  --light-gray: #efefef;
}

.--bg-primary {
  background-color: var(--primary);
}

.--bg-secondary {
  background-color: var(--secondary);
}

.--bg-orange {
  background-color: var(--orange) !important;
}

.--bg-light-pink {
  background-color: var(--light-pink);
}

.--bg-white {
  background-color: var(--white);
}

.--bg-light-gray {
  background-color: var(--light-gray);
}

.--c-primary {
  color: var(--primary) !important;
}

.--c-secondary {
  color: var(--secondary) !important;
}

.--c-white {
  color: var(--white) !important;
}

.--fw-r {
  font-weight: 400;
}

.--fw-m {
  font-weight: 500;
}

.--fw-b {
  font-weight: 700;
}

.--fs-12 {
  font-size: 0.75rem !important;
}

.--fs-16 {
  font-size: 1rem !important;
}

.--fs-18 {
  font-size: 1.125rem !important;
}

.--fs-20 {
  font-size: 1.25rem !important;
}

.--fs-24 {
  font-size: 1.5rem !important;
}

.--fs-30 {
  font-size: 1.875rem !important;
}

.--fs-36 {
  font-size: 2.25rem;
}

.--fs-62 {
  font-size: 3.875rem !important;
}

.--margin-left-minus-40 {
  margin-left: -40px;
}

.--w-35 {
  width: 35%;
}

.--w-65 {
  width: 65%;
}

p {
  margin-bottom: 0px !important;
}

/******************************************
            Navigation bar CSS
*******************************************/
.form-check {
  height: 52px !important;
  padding: 0px;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}

.form-check .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-check .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form-check .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid var(--primary);
  border-radius: 7px;
}

.form-check .container input:checked ~ .checkmark {
  background-color: var(--primary);
}

.form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form-check .container input:checked ~ .checkmark:after {
  display: block;
}

.form-check .container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.--custom-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  width: 210px;
}

.--custom-button:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.--custom-button-white {
  background-color: var(--white) !important;
  color: var(--secondary) !important;
}

.--custom-button-white:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.main-navigation {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  z-index: 4;
}

.main-navigation .navbar .navbar-brand img {
  width: 125px;
}

.main-navigation .navbar .navbar-nav {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.main-navigation .navbar .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 15px;
}

.main-navigation .navbar .nav-item .nav-link.active {
  color: var(--primary) !important;
}

.hero {
  position: relative;
  height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding-bottom: 75px;
}

.hero .hero-rocket {
  width: 400px;
}

.hero .hero-go-button {
  width: 100px;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.hero .wave {
  position: absolute;
  width: 150vw !important;
  height: 544px;
  bottom: 0;
  left: -200px !important;
  opacity: 0.6;
  background: url(../img/wave-1.png);
  background-size: cover;
  -webkit-animation: animate-wave-1 8s linear infinite;
          animation: animate-wave-1 8s linear infinite;
}

.hero .wave:before {
  content: "";
  position: absolute;
  width: 150vw !important;
  height: 600px;
  bottom: 0;
  left: -200;
  opacity: 0.4;
  background: url(../img/wave-2.png);
  background-size: cover;
  -webkit-animation: animate-wave-2 12s linear infinite;
          animation: animate-wave-2 12s linear infinite;
}

.hero .wave:after {
  content: "";
  position: absolute;
  width: 150vw !important;
  height: 1100px;
  bottom: 0;
  left: -200;
  opacity: 0.2;
  background: url(../img/wave-3.png);
  background-size: cover;
  -webkit-animation: animate-wave-3 15s linear infinite;
          animation: animate-wave-3 15s linear infinite;
}

@-webkit-keyframes animate-wave-1 {
  0% {
    background-position: 0px;
  }
  50% {
    background-position: 150px;
  }
  100% {
    background-position: 0px;
  }
}

@keyframes animate-wave-1 {
  0% {
    background-position: 0px;
  }
  50% {
    background-position: 150px;
  }
  100% {
    background-position: 0px;
  }
}

@-webkit-keyframes animate-wave-2 {
  0% {
    background-position: 0px;
  }
  50% {
    background-position: 150px;
  }
  100% {
    background-position: 0px;
  }
}

@keyframes animate-wave-2 {
  0% {
    background-position: 0px;
  }
  50% {
    background-position: 150px;
  }
  100% {
    background-position: 0px;
  }
}

@-webkit-keyframes animate-wave-3 {
  0% {
    background-position: 0px;
  }
  50% {
    background-position: 150px;
  }
  100% {
    background-position: 0px;
  }
}

@keyframes animate-wave-3 {
  0% {
    background-position: 0px;
  }
  50% {
    background-position: 150px;
  }
  100% {
    background-position: 0px;
  }
}

.hero .hero-content .cta-hero .input-group {
  height: 64px;
}

.hero .hero-content .cta-hero input {
  height: 64px;
  border-radius: 10px 0px 0px 10px;
  padding-left: 25px;
}

.hero .hero-content .cta-hero a {
  border-radius: 0px 10px 10px 0px !important;
  width: 100px;
}

.hero .hero-content .cta-hero a:hover {
  background-color: var(--primary);
}

.hero .hero-content .cta-hero input:focus {
  background-color: var(--light-pink) !important;
}

.hero .hero-content .hero-list {
  list-style: none;
  padding: 0px;
  margin-top: 60px;
}

.hero .hero-content .hero-list li::before {
  content: '';
  display: inline-block;
  height: 40px;
  width: 60px;
  background-image: url(../img/tick.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.advertisement {
  position: absolute;
  width: 100%;
  bottom: -90px;
  z-index: 2;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advertisement__left {
  width: 490px;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advertisement__right {
  width: 490px;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about {
  margin-top: 150px !important;
  display: block !important;
}

.whychoose {
  margin-top: 50px;
}

.whychoose ul {
  list-style-image: url(../img/tick-list.png);
  list-style-position: inside;
}

.how {
  background: url(../img/how-bg.png);
  background-size: cover;
  height: 661px;
}

.how__button {
  z-index: 1;
}

.how__graph {
  bottom: 10px;
  right: 400px;
}

.reviews {
  background: url(../img/waves-light.png);
  min-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.reviews .review {
  background-color: var(--white);
}

.faq .accordion {
  -webkit-box-shadow: 0px 0px 15px 1px #ccc;
          box-shadow: 0px 0px 15px 1px #ccc;
}

.faq .card-header {
  background-color: var(--white);
  border-bottom: none;
}

.faq .card-header button {
  text-decoration: none;
  color: var(--secondary);
}

.faq .card-body {
  color: var(--secondary);
  padding-top: 0px;
  padding-left: calc(1.25rem + 12px);
}

.faq .accordion .card-header button.collapsed:after {
  font-family: "FontAwesome";
  content: "\f078";
  position: absolute;
  right: 20px;
  top: 40px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.faq-chevron-up:after {
  font-family: "FontAwesome";
  content: "\f077";
  position: absolute;
  right: 20px;
  top: 40px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.contact {
  height: 471px;
}

.contact__form-outer {
  margin-top: 100px;
}

.contact__form {
  -webkit-box-shadow: 0px 0px 20px 1px #858585;
          box-shadow: 0px 0px 20px 1px #858585;
}

.contact__form input {
  height: 52px;
  border-radius: 50px;
  padding-left: 30px;
}

.contact__form input:focus {
  color: var(--secondary) !important;
  background-color: var(--light-gray) !important;
}

.contact__form .agree-checkbox .underlined-privacy {
  text-decoration: underline !important;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 350px;
  text-align: center;
}

.privacy ol {
  list-style-position: inside;
}

.privacy ol li p {
  display: inline-block;
}

.privacy th:nth-of-type(1) {
  width: 250px;
  padding-left: 0px;
}

@media (min-width: 1600px) {
  .hero {
    height: 800px;
    padding-bottom: 90px !important;
  }
  .hero .hero-rocket {
    width: 425px;
  }
}

@media (max-width: 1366px) {
  .navbar-brand img {
    width: 100px !important;
  }
  h1 {
    font-size: 1.75rem !important;
  }
  .hero {
    min-height: 500px;
    display: block !important;
    padding-bottom: 50px;
  }
  .hero .hero-rocket {
    width: 370px !important;
  }
  .cta-hero {
    height: 50px;
    margin-bottom: 15px;
  }
  .cta-hero input {
    height: 50px !important;
  }
  .cta-hero .btn {
    height: 50px;
  }
  .how {
    height: 500px;
  }
  .how .how__rocket {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .how .how__graph {
    right: 50px;
  }
}

@media (max-width: 1199px) {
  .navbar .container-fluid .information-top {
    display: block !important;
    margin-left: 0px !important;
  }
  .navbar-toggler {
    margin-left: auto !important;
  }
  .information-top {
    display: block !important;
  }
  .information-top p:nth-last-of-type(1) {
    display: none;
  }
  .main-navigation .navbar .navbar-nav {
    width: inherit;
    background: var(--light-gray);
    margin-top: 20px;
    padding: 1rem;
  }
  .main-navigation .navbar .navbar-nav li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 5px 0px;
  }
  .main-navigation .navbar .navbar-nav li:nth-last-of-type(1) .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .main-navigation .navbar .navbar-nav li:nth-last-of-type(1) .information p:nth-last-of-type(1) {
    display: none;
  }
  .how__graph {
    bottom: 10px;
    right: 50px;
  }
  .how__rocket {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

@media (max-width: 991px) {
  .advertisement__right {
    display: none;
  }
  .contact__form-outer {
    margin-top: 50px;
  }
  .contact__form {
    right: -50px;
    bottom: -420px;
    width: 380px !important;
  }
  footer {
    height: 255px !important;
    display: block !important;
    text-align: left;
  }
  footer p {
    width: 50%;
  }
  .how__graph img {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-list {
    list-style: none;
    padding: 0px;
    margin-top: 0px;
  }
  .hero-list li::before {
    content: '';
    display: inline-block;
    height: 19px !important;
    width: 28px !important;
    background-image: url(../img/tick.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  h1 {
    font-size: 1.25rem !important;
  }
  .main-navigation .navbar .navbar-nav li:nth-last-of-type(1) {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .how {
    height: 400px !important;
  }
  .how__rocket {
    display: none;
  }
  .how__graph {
    display: none;
  }
  .reviews {
    min-height: 750px;
  }
  .contact {
    height: 600px;
  }
  .contact__form {
    right: 0px;
    bottom: -500px;
    width: 100% !important;
  }
  .footer {
    height: 350px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .footer p {
    width: 100% !important;
  }
}

@media (max-width: 425px) {
  .navbar .container-fluid .information-top p {
    font-size: 14px !important;
  }
  .main-navigation .navbar .navbar-brand {
    width: 100px;
  }
  .main-navigation .navbar .navbar-brand img {
    width: 100%;
  }
  .hero {
    height: 700px;
  }
  .hero .hero-list li {
    font-size: 13px !important;
  }
  .hero p {
    font-size: 13px;
  }
  .advertisement__left {
    width: 375px;
    -webkit-box-shadow: 0px 0px 5px 0px var(--light-pink);
            box-shadow: 0px 0px 5px 0px var(--light-pink);
  }
  .advertisement__left h2 {
    font-size: 1.5rem;
  }
  .about {
    margin-top: 120px;
  }
  .whychoose {
    padding: 0px !important;
  }
  .how {
    margin-top: 3rem;
    padding: 0px !important;
    padding-top: 20px !important;
    height: 500px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews {
    padding: 0px !important;
    min-height: 550px;
  }
  .reviews .review {
    padding: 20px !important;
  }
  .footer .agree-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .modal-1-outer .modal-1__right {
    display: none;
  }
  .modal-1-outer .modal-1__left {
    width: 100%;
    background-image: url(../img/modal-1-bg.png);
    background-size: cover;
  }
  .modal-1-outer .modal-1__left label, .modal-1-outer .modal-1__left h4, .modal-1-outer .modal-1__left .callus {
    color: white !important;
  }
}

@media (max-width: 375px) {
  .hero .wave,
  .hero .wave:before,
  .hero .wave:after {
    width: 155vw !important;
  }
  .advertisement__left {
    width: 300px !important;
  }
  .how {
    height: 600px !important;
  }
  .footer {
    height: 420px !important;
  }
}

@media (max-width: 325px) {
  .hero .wave,
  .hero .wave:before,
  .hero .wave:after {
    width: 165vw !important;
  }
}

.modal-1-outer span {
  color: white;
}

.modal-1-outer .modal-header {
  border: none !important;
  position: absolute;
  right: 0px;
  top: -5px;
}

.modal-1-outer .modal-1__left .form-check {
  height: initial !important;
}

.modal-1-outer .modal-1__left input:focus {
  background: var(--light-gray) !important;
}

.modal-1-outer .modal-1__right img {
  height: 451px;
}

@media (min-width: 1367px) {
  .modal-1 {
    width: 100% !important;
  }
  .modal-1__left {
    display: block !important;
  }
  .modal-1__right img {
    width: 100%;
    height: 451px !important;
  }
}

.modal-2-outer span {
  color: white;
}

.modal-2-outer .modal-content {
  border: 2px solid white;
  border-radius: 5px;
}

.modal-2-outer .modal-content .modal-header {
  border: none !important;
  position: absolute;
  right: 0px;
  top: -5px;
}

.modal-2-outer .modal-content input {
  border-radius: 50px;
  padding-left: 15px;
}

.modal-2-outer #getacashoffer:hover {
  background-color: var(--secondary) !important;
}

@media (max-width: 768px) {
  .information-top {
    display: none !important;
  }
}

.SearchResultsMain {
  background: var(--white) !important;
  margin: 10px 0px;
  max-height: 188px;
  overflow: auto;
  position: absolute;
  top: 54px;
  z-index: 3;
  height: 100px !important;
  width: calc(100% - 100px);
}

.SearchResultsMain .SearchResults {
  padding-left: 1rem;
  cursor: pointer;
  color: var(--secondary) !important;
}

.SearchResultsMain .SearchResults:hover {
  background-color: var(--primary);
  color: var(--white);
}

.swiper-slide .slide-data {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -30px !important;
  padding: 30px 0px;
}

.swiper-slide .slide-data .reviewstars i {
  color: #5ea510;
}

.swiper-slide .slide-data .review-location {
  margin-top: auto;
}

@media (max-width: 768px) {
  .slide-data {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .slide-data .review-stars {
    width: auto !important;
  }
  .slide-data .review-name {
    display: none;
  }
  .slide-data .review-location {
    margin-top: 0 !important;
  }
  .review-text {
    width: 100%;
    height: 200px;
    text-overflow: ellipsis;
    overflow: overlay;
  }
}

@media (max-width: 767px) {
  .slide-data .review-location {
    margin-left: auto !important;
  }
}

.callus {
  margin-top: 10px;
  font-weight: 500;
  margin-left: 34px;
}

.callus span {
  color: var(--primary);
}

.modal-1__left {
  height: 451px;
}

.modal-1__left .agree-checkbox {
  font-weight: 500;
}

.modal-1__left .agree-checkbox a {
  color: var(--primary);
}

.modal-1__left h4 {
  font-size: 20px !important;
  margin-bottom: 0;
}

.modal-1__left h3 {
  font-size: 28px !important;
}

.modal-1__left .form-control {
  border-radius: 24px;
}

.modal-1__left .--custom-button {
  width: 100%;
}

.modal-1__right {
  height: 451px;
}

.modal-1__right img {
  height: 100%;
}

.privacy .topheader {
  background: #f2f2f2 none repeat scroll 0 0;
  position: relative;
  z-index: 10;
  padding: 20px 0;
}

.privacy .topheader a {
  display: inline-block;
}

.privacy .topheader a img {
  width: 100px;
}

.modal-2-outer .form-check .container input:checked ~ .checkmark {
  background: #fff;
}

.modal-2-outer .form-check .container .checkmark:after {
  border-color: var(--primary);
}

#SelectedAddress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--secondary) !important;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
  position: relative;
  border-radius: 10px !important;
}

#SelectedAddress p {
  color: white;
  margin: 0px !important;
}

#SelectedAddress span {
  float: right;
  padding-right: 0px !important;
  margin-top: 0px !important;
  font-size: 11px;
  display: block;
  height: 100%;
  margin-top: 0px;
  border-radius: 10px;
}

#SelectedAddress span a {
  color: #ffffff !important;
  float: right;
  cursor: pointer;
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#addressonclickselect, #address1, #addressfiveseconds, #icsaddressinput,.reason_for_salling {
  border-radius: 50px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 6px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  padding-right: 2rem;
}

#address1 {
  height: 52px;
  border-radius: 50px;
  padding-left: 30px;
  background-position-y: 15px;
}

.click-to-call {
  text-decoration: none;
  color: inherit;
}

.click-to-call:hover {
  text-decoration: none;
  color: inherit;
}
/*Terms and conditions
*******************************************/

.termsandcondition_page,
.privacy-policy_page {
    margin-top: 0 !important;
}

.breadcrumbs {
    background: #fafafa;
    padding: 7px;
    border-bottom: #e7e7e7 solid 1px;
    margin-top: 8rem
}

.inner-heading h2 {
    font-size: 40px;
    font-weight: 300;
    color: #444444;
    padding-bottom: 10px;
    border-bottom: solid 1px #ccc;
    margin-bottom: 15px;
}

.breadcrumbs p {
    margin: 0px;
    font-size: 14px !Important;
    color: #444;
}

.breadcrumbs p a {
    padding: 0 5px;
    color: #444;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumbs p a.active {
    color: #e00273;
}

.breadcrumbs p a:hover {
    color: #e00273;
}

.privacy-policy_page .property-listing,
.termsandcondition_page .property-listing {
    padding-top: 0px
}

.privacy-policy_page .padding0,
.termsandcondition_page .padding0 {
    padding: 0
}

.inner-heading h2 span {
    color: #e00273
}

ul.listB,
ul.listitems {
    padding: 0;
    padding-left: 15px;
}

ul.listB li,
ul.listitems li {
    list-style: none;
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

ul.listB li::before,
ul.listitems li::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    background: #e00273;
    left: 0;
    vertical-align: middle;
    top: 8px;
    bottom: 0;
}

.underline {
    text-decoration: underline;
}

.table-data tr th {
    color: #e00273
}

.table-data tr th,
.table-data tr td {
    padding: 10px;
    font-size: 15px
}

th.first-th {
    width: 21%;
}

.seller-story-cont ol li {
    list-style: lower-roman;
    margin-bottom: 5px;
}

.seller-story-cont p b {
    color: #e00273;
}

.page-template-default,
.page-template {
    background: #fff
}

.defaultpage h3 {
    font-size: 28px;
    font-weight: 300 !Important;
    color: #444;
}

.defaultpage {
    padding-top: 1em !important
}

.defaultpage p,
.seller-story-cont p {
    margin-bottom: 15px;
    text-align: justify;
}

.seller-story-cont p a {
    color: #e00273
}

.defaultpage br {
    display: none;
}

.defaultpage p strong,
.seller-story-cont h5 {
    color: #1e306d;
    font-size: 18px
}

.defaultpage p a {
    color: #e0359e
}

.defaultpage p img {
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin-top: 10%;
}

.lightbox:target {
    outline: none;
    display: block;
}

@media (max-width: 768px){
  .privacy-policy_page .padding0, .termsandcondition_page .padding0
  
  { padding: 0px 15px !important; }
  .table-wrapper
  
  { overflow-y: auto; }
  }

  .content-headings
{ margin-top: 16px; }

