@import url("../icons/fontawesome/css/all.min.css");
@import url("../icons/flaticon/css/flaticon.css");
/* start: Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 400;
  /* font-size: 16px; */
  font-family: "Plus Jakarta Sans", sans-serif;
}

html {
  overflow-x: hidden;
}

:root {
  --grey-blue: #788aa1;
  --grey-blue-l-1: #ebedf1;
  --blue: #225fac;
  --blue-l-1: #c6e0ff;
  --blue-d-1: #1a4a86;
  --blue-d-2: #13355f;
  --white: #fff;
  --white-d-1: #f5f5f5;
  --white-d-2: #f5f8fc;
  --orange: #ff9c00;
  --orange-l-1: #ffac29;
  --orange-l-2: #fff0d9;
  --orange-d-1: #d18000;
  --grey: #ededed;
  --grey-d-1: #77838e;
  --green: #15be53;
  --green-l-1: #d7eadc;
  --green-d-1: #129341;
  --green-d-2: #06d853;
  --green-d-3: #06d85315;
  --black: #000;
  --dark: #263238;
  --dark-d-1: #11171a;
  --red: #ff4040;
  --red-d-1: #d72e2e;
  --bg: #f6f7f9;
  --deepwhite: #d3d6d7;
  --lgwhite: #f5f8fc;
  --black: #333;
  --black: #000;
  --lgblack: #abafc21f;
  --dpblack: #263238;
  --grey: #eee;
  --deepgray: rgb(185, 185, 185);
  --shadow: rgba(149, 157, 165, 0.2) 0 0.5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

hr {
  height: 1px;
  border: none;
  background-color: var(--grey);
}

iframe {
  width: 100%;
  border: none;
  object-fit: unset !important;
}

li {
  list-style: none;
}

svg.logo {
  width: 8rem !important;
  height: 3.5rem !important;
  aspect-ratio: 64 / 27;
}

svg.logo-sm {
  width: 5rem;
  height: auto;
  aspect-ratio: 64 / 27;
}

svg.md {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
}

svg.lg {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
}

svg.xl {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
}

svg.cp-icons {
  width: 2.5rem;
  height: 2.5rem;
}

svg.sm {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
}

a {
  text-decoration: none;
}

body {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	overflow-x: hidden;
	background-color: var(--white);
	color: var(--color-paragraph);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-heading);
	font-weight: 600;
	line-height: 1.2;
	font-family: var(--font-default);
	letter-spacing: 0;
	margin: 0;
	margin-bottom: 15px;
}

h1 {
	font-size: 32px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

.btn {
  font-weight: 500;
  align-items: center;
  border-radius: 5px;
  padding: 10px 16px;
  cursor: pointer;
  /* border: none; */
  outline: none;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.btn:hover
{
  background-color:transparent!important;
}

.btn-block
{
  display: block;
  width: 100%;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
}


.btn-outline {
  font-size: 0.875rem;
  display: flex;
  font-weight: 500;
  align-items: center;
  padding: calc(0.5rem - 1px) calc(1rem - 1px);
  border-radius: 2rem;
  cursor: pointer;
  outline: none;
  justify-content: center;
  white-space: nowrap;
}

.btn-outline-primary {
	color: var(--orange)!important;
	border-color:var(--orange)!important;
  border-width: 1px!important;
  box-shadow: none!important;
}

.btn-outline-primary:hover {
	color: #044976!important;
	background-color: var(--orange)!important;
	border-color: #044976!important;
}

.btn-outline-orange {
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-grey {
  background: var(--grey);
  color: var(--dark) !important;
  box-shadow: none;
}

.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
}

.btn-primary:hover {
	background-color: #2d383b!important;
	border-color: none!important;
}

.btn-inline {
  display: inline-flex;
}


.btn-green {
  background: #6fb43f;
}

.btn-loading .btn-text {
  visibility: hidden;
  opacity: 0;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: btn-loading-spinner 1s ease infinite;
}

@keyframes btn-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.section{
  padding-top: 70px;

}

header::after, section::after, footer::after {
	display: block;
	clear: both;
	content: "";
}
.pb-6{
  padding-bottom: 60px;
}
.scn-listings
{
  margin-bottom: 70px;
}

.title-section h2.title {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
}

/* start: Global */

/* start: Listing Search Popup */
.listing-search-popup {
  display: none;
}

.share-links
{
  padding-top:18px;
}
.share-links a{
  display: inline-block;
  padding: 0 10px;
  margin-right:7px;
}
.share-links .social-link i{
  color: white;
}
.share-links .social-link.twitter{
  background: #1b95e0;
  color: #fff;
}

.share-links .social-link.facebook {
	background: #3c5a99;
}
.share-links .social-link.whatsapp{
  background: #25d366;
}

.post-add-bar {
	padding: 30px 0;
	margin: 90px 0 0 0;
	font-size: 14px;
	color: #ffffff;
	background-color: #044976;
	border-top: 1px solid #e1e1e1;
}

.footer {
  background-color:#e9e7e0 !important;
  padding: 60px 0 30px 0;
  font-size: .9em!important;
  position: relative;
  color: #2d383b;
}

.footer *{
  font-size: 1em!important;
}

.footer ul{
  padding-left: 0;
  margin-right: 0;
}

.footer ul li{
  padding: 5px 0;
}

.footer a{
  color: #333;
}

.space-evenly {
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
}

.footer-title
{
  font-size: 19px;
}
.footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #044976;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.navbar form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .navbar form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.navbar form > button.logout:focus,
.navbar form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.navbar form > button.logout:focus {
    outline: none;
}

/* style breadcrumb widget as in previous bootstrap versions */
.breadcrumb {
    background-color: var(--bs-gray-200);
    border-radius: .25rem;
    padding: .75rem 1rem;
}

.breadcrumb-item > a
{
  text-decoration: none;
}

.owl-carousel .owl-item > * {
	margin-left: 20px;
	margin-right: 14px;
	margin-top: 14px;
}
.locations
{
  position: relative;
}
.biz-catz .carousel-wrap, .locations .lokoz{
	position: relative;
	border: 1px solid #BCCED2;
	border-top: transparent;
	border-radius: 1px;
}

.biz-catz .carousel-wrap::after, .locations .lokoz::after {
	content: "";
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.08) 69%, rgba(0, 0, 0, 0.76) 100%);
	top: 0;
	border-radius: 4px;
	transition: all .5s ease 0s;
}

.biz-catz .carousel-wrap .biz-catz-content, .locations .lokoz .lokoz-text {
	padding: 25px;
	margin-bottom: 0px;
	bottom: 0;
	z-index: 1;
	color: #fff;
	text-align: left;
}
.biz-catz .carousel-wrap::after, .biz-catz .carousel-wrap .biz-catz-content, .locations .lokoz::after, .locations .lokoz .lokoz-text {
	width: 100%;
	position: absolute;
	left: 0;
}

.biz-catz .carousel-wrap .biz-catz-content h3
{
	font-size: 18px;
}

.locations .lokoz img {
  transition: transform 0.3s ease-out;
}
.ck-editor__editable_inline {
  min-height: 300px;
}

.site-error h1{

  text-align: center;
  font-size: 60px;
  line-height: 100px;
  font-weight: 500;
}

.styled {
  margin-left: 0;
  padding-left:15px;
  margin-bottom: 36px;
}
.styled li{
  list-style:disc;
}

.valuation-section{
  z-index: 1;
  position: relative;
}
.valuation-inner {
	padding: 100px 85px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
}

.valuation-text {
	max-width: 570px;

}

@media (min-width: 992px) {
  .valuation-text {
  	margin-left: auto;
    padding: 50px 0;
  }
  .valuation-pic{
  	position: absolute;
  	right: 0;
  	top: -30px;
  	width: calc(50vw - 20%);
  	height: calc(100% + 60px);
  }
}

.valuation-pic {
	min-height: 360px;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
}

.card.panel{
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 20px;
  margin-top: 20px;
}

.panel .card-header{
  background-color: #fff!important;
  border: none!important;
}
.panel .card-header h2{
  font-size: 20px!important;
}
.panel .card-header a{
  color: #263238;
  font-weight: 500;
}

.panel .card-body ul
{
  margin-left:24px!important;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  column-count: 4;
  flex-direction: row;
  line-height: 32px;
}


.panel .panel-body ul li {
  padding: 0;
	border-radius: 5px;
  background: none;
  border: none;
	margin: 0;
  display: list-item;
}
.panel .panel-body ul li a{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #333;
}

.panel .panel-body ul li a span{
  margin-right: 25px;
}

@media (min-width: 992px) {
  .panel .panel-body ul li{
    width: 24%!important;
    /* flex: 0 0 auto; */
  }
}
