/*---------------------------------
CSS INDEX
===================================
#. Normalize and Defaults
    #. CSS Variables
    #. Base & Common Styles
#. Component 
    #. Buttons
    #. Header
    #. Card
    #. Banner
    #. Pagination
    #. Breadcrumb
    #. Contact
    #. Blog
    #. Widget
    #. Map
    #. Authentication
    #. Comment
    #. Modal
    #. Footer
    #. Registration form
    #. 404 Page
---------------------------------------*/
/*------------------------------------*\
    #. CSS Variables
\*------------------------------------*/
:root {
  --color-primary: #17B978;
  --color-header-bg: #ffffff;
  --color-menu: #51526E;
  --color-menu-hover: #17B978;
  --color-menu-active: #17B978;
  --color-submenu: #51526E;
  --color-submenu-hover: #17B978;
  --bgcolor-submenu-hover: #ffffff;
  --color-add-listing-button-text: #ffffff;
  --color-add-listing-button-text-hover: #ffffff;
  --bgcolor-add-listing-button: #17B978;
  --bgcolor-add-listing-button-hover: #17B978;
  --color-banner_title: #ffffff;
  --color-breadcrumb-link: #f8f9fb;
  --color-breadcrumb-link-hover: #17B978;
  --color-breadcrumb_separator: #f8f9fb;
  --color-breadcrumb-active: #acabac;
  --bgcolor-footer: #1a1b29;
  --color-footer-divider: rgba(255,255,255,0.1);
  --color-footer-title: #ffffff;
  --color-footer-text: rgba(255,255,255,0.4);
  --color-footer-link: rgba(255,255,255,0.4);
  --color-footer-link-hover: #17B978;
  --color-secondary: #F2F3F5;
  --color-success: #28A800;
  --color-info: #2C99FF;
  --color-warning: #FA8B0C;
  --color-danger: #f80718;
  --color-dark: #1A1B29;
  --color-gray: #51526E;
  --color-light-gray: #8F8E9F;
  --color-light: #9299b8;
  --color-lighter: #605f74;
  --color-white: #ffffff;
  --color-body: #51526E;
  --color-border: #eff1f6;
  --color-border-light: #e1e4ec;
  --color-border-gray: #c6d0dc;
  --color-bg-normal: #f8f9fa;
  --color-bg-light: #f6f7f9;
  --color-bg-lighter: #f2f2f2;
  --color-bg-pointer: #b1b0bf;
  --color-bg-section: #f9f9f9;
  --color-bg-section2: #F6F7F9;
  --color-bg-select2: #3C3D58;
  --color-facebook: #3B5998;
  --color-twitter: #1DA1F2;
  --color-youtube: #CD201F;
  --color-instagram: #262626;
  --color-linkedin: #0077b5;
  --color-pinterest: #b7081b;
  --color-github:#262626;
  --color-danger-rgba: 248, 7, 24;
  --color-dark-rgba: 26, 27, 41;
  --color-white-rgba: 255, 255, 255;
  --color-primary-rgba: 23, 185, 120;
  --color-light-rgba: 146, 153, 184;
  --color-shadow-rgba: 143, 142, 159;
  --transition: all ease 0.4s;
  --directorist-color-primary:var(--color-primary);
  --directorist-color-primary-rgb:var(--color-primary-rgb);
  --directorist-color-star:var(--color-warning);
  --directorist-color-marker-shape:var(--color-primary);
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: var(--color-white);
  /* Fallback for when there is no custom background color defined. */
  color: var(--color-body);
  font-family: var(--font-family-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--color-dark);
}

h1 {
  font-size: calc(1.0875rem + 1.05vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: calc(1.05rem + 0.6vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: calc(1.0375rem + 0.45vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.375rem;
  }
}

h4 {
  font-size: calc(1.025rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: calc(1.0125rem + 0.15vw);
}

@media (min-width: 1200px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 16px;
}

#wpadminbar {
  z-index: 999999;
}

/* Button/Inputs */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-adjust-hue-button,
input[type="number"]::-webkit-outer-adjust-hue-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

textarea {
  width: 100%;
}

button,
input,
select,
textarea {
  color: var(--color-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

select {
  background-color: var(--color-white);
  border: 1px solid #ccc;
}

.directorist-select .directorist-select__label {
  min-height: 46px;
  border-color: var(--color-border-gray);
}

/* Select2 Style */
.directorist-select .select2-container.select2-container--default .select2-selection--single {
  border-color: var(--color-border) !important;
}

/* Range Slider */
.directorist-range-slider-wrap .atbd-slide1,
.directorist-range-slider-wrap .directorist-range-slider1 {
  width: 20px;
  height: 20px;
  border-color: var(--color-primary) !important;
}

.directorist-range-slider-wrap .atbdp-range-slider,
.directorist-range-slider-wrap .directorist-range-slider {
  background-color: rgba(var(--color-primary-rgba), 0.15) !important;
}

.directorist-range-slider-wrap .atbd-child,
.directorist-range-slider-wrap .directorist-range-slider-child {
  background-color: var(--color-primary);
}

.directorist-range-slider-wrap .atbd-current-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* --- Posts and pages --- */
.sticky {
  display: block;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-links {
  clear: both;
  padding: 20px 0;
  font-weight: 700;
}

.page-links .post-page-numbers {
  background-color: #646464;
  color: var(--color-white);
  display: inline-block;
  padding: 2px 12px;
  border-radius: 3px;
  margin-right: 2px;
}

.page-links .post-page-numbers .directorist-icon-mask:after {
  background-color: var(--color-white);
}

.page-links .post-page-numbers.current, .page-links .post-page-numbers:hover {
  background-color: #222222;
}

/* --- Comments --- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* --- Widgets --- */
.widget {
  margin: 0 0 40px;
}

.widget select {
  max-width: 100%;
}

.elementor-editor-active .elementor.elementor-edit-mode .elementor-element > .elementor-element-overlay {
  z-index: 999;
}

/* Select2 Default */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
  font-size: 12px;
  font-weight: 500;
  border: 0 none;
  padding: 0 8px;
  background-color: var(--color-primary);
  border-radius: 4px;
  color: var(--color-white);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 5px;
  color: var(--color-white);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: var(--color-white);
}

.select2-container--default .select2-selection {
  min-height: 46px;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select2-container--default .directorist-select2-addons-area .directorist-select2-dropdown-toggle i,
.select2-container--default .directorist-select2-addons-area .directorist-select2-dropdown-toggle span {
  font-size: 12px;
}

.select2-container--default .directorist-select2-addons-area .directorist-select2-dropdown-toggle .directorist-icon-mask:after {
  width: 12px;
}

.select2-container--default .directorist-select2-addons-area .directorist-select2-dropdown-close {
  width: 20px;
}

.select2-container--default .directorist-select2-addons-area .directorist-select2-dropdown-close i,
.select2-container--default .directorist-select2-addons-area .directorist-select2-dropdown-close span {
  font-size: 12px;
}

.select2-container--default .directorist-select2-addons-area .directorist-select2-dropdown-close .directorist-icon-mask:after {
  width: 12px;
}

.select2.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  height: auto;
  font-size: 14px;
}

/* Select2 Results */
.select2-container--default.select2-container--open .select2-dropdown--above,
.select2-container--default.select2-container--open .select2-dropdown--below {
  border: 0 none;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 30px rgba(143, 142, 159, 0.25);
          box-shadow: 0 5px 30px rgba(143, 142, 159, 0.25);
}

.select2-container--default.select2-container--open .select2-dropdown--above .select2-search__field,
.select2-container--default.select2-container--open .select2-dropdown--below .select2-search__field {
  border-radius: 6px;
  border-color: var(--color-border);
}

.select2-container--default .select2-dropdown {
  min-width: 200px;
  z-index: 10001;
}

.select2-container--default .select2-results .select2-results__options .select2-results__option {
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.select2-container--default .select2-results .select2-results__options .select2-results__option[aria-selected=true] {
  background-color: #ddd;
  color: var(--color-dark);
}

.select2-container--default .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
  color: var(--color-primary);
  background-color: transparent;
}

.select2-container--default .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted:hover {
  color: var(--color-primary);
  background-color: transparent;
}

.select2-container--default .select2-results .select2-results__options .select2-results__option[area-selected="true"] {
  background-color: #fff;
}

.select2-container--default .select2-search--dropdown {
  padding: 14px 16px 10px 16px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-width: 2px;
  padding: 4px 12px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: var(--color-dark);
}

/* Select2 Category Icon */
.select2-container--default .select2-results__option {
  padding: 6px 20px;
}

.select2-container--default .select2-results__option:hover span {
  color: var(--color-primary);
}

.select2-container--default .select2-results__option span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray);
}

.select2-container--default .select2-results__option .theme-category-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 12px;
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Theme Dropdown */
.dropdown.theme-dropdown .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  padding: 20px;
  border: 0 none;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 30px rgba(143, 142, 159, 0.25);
          box-shadow: 0 10px 30px rgba(143, 142, 159, 0.25);
}

.directorist-form-image-upload-field .ez-media-uploader .ezmu__upload-button-wrap .ezmu__input-label {
  color: white;
  margin: 0 5px;
}

.directorist-form-image-upload-field .ezmu__front-item__close .directorist-icon-mask:after {
  width: 11px;
  height: 11px;
}

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

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

/* BEM Element and Modifier */
/* Heading */
.elementor-heading-title {
  font-family: var(--font-family-body);
}

h1,
h1.elementor-heading-title {
  font-size: 30px;
  line-height: 1.26667;
  font-weight: 600;
  font-family: var(--font-family-h1);
}

h2,
h2.elementor-heading-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  font-family: var(--font-family-h2);
}

h3,
h3.elementor-heading-title {
  font-size: 22px;
  line-height: 1.22727;
  font-weight: 600;
  font-family: var(--font-family-h3);
}

h4,
h4.elementor-heading-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  font-family: var(--font-family-h4);
}

h5,
h5.elementor-heading-title {
  font-size: 18px;
  line-height: 1.27778;
  font-weight: 600;
  font-family: var(--font-family-h5);
}

h6,
h6.elementor-heading-title {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 600;
  font-family: var(--font-family-h6);
}

/* Paragraph */
p {
  line-height: 1.75;
}

p.pera {
  font-size: 18px;
  line-height: 1.94444;
  font-weight: 400;
  color: var(--color-gray);
}

span {
  line-height: 1.85714;
}

/* Button */
.btn {
  font-size: 14px;
  padding: 8.5px 19px;
  border-radius: 0.375rem;
}

/* Display Sizes */
.display-1 {
  font-size: 48px;
  line-height: 1.125;
  font-weight: 600;
}

.display-2 {
  font-size: 42px;
  line-height: 1.09524;
  font-weight: 600;
}

.display-3 {
  font-size: 36px;
  line-height: 1.16667;
  font-weight: 600;
}

/* Color */
.directorist-btn.directorist-btn-primary,
.theme-bg-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

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

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

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

/*------------------------------------*\
  #- Common Style
\*------------------------------------*/
/* Forms Styles */
.form-control.theme-form-control {
  font-size: 14px;
  min-height: 46px;
  border-radius: 5px;
  padding: 10px 18px;
  border-color: var(--color-border);
}

.form-control.theme-form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.form-control.theme-form-control::-moz-placeholder {
  font-size: 14px;
}

.form-control.theme-form-control::-ms-input-placeholder {
  font-size: 14px;
}

.form-control.theme-form-control::placeholder {
  font-size: 14px;
}

.form-control.theme-form-control:focus {
  outline: none;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  border-color: var(--color-border);
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  border-color: var(--color-border);
}

textarea.form-control {
  max-height: 100px;
}

.form-group.theme-form-group:not(:last-child) {
  margin-bottom: 18px;
}

.form-group.theme-form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

/* Magnific Popup Zoom Effect */
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Page Spacing */
.content-area {
  padding: 100px 0 80px;
  background-color: var(--color-white);
}

@media only screen and (max-width: 991px) {
  .content-area {
    padding: 80px 0 60px;
  }
}

.theme-single-page .content-area {
  padding: 30px 0 60px;
}

.theme-dir-all-listing.elementor-page .content-area {
  padding: 0;
}

@media only screen and (max-width: 991px) {
  .theme-dir-all-listing.elementor-page .content-area {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .theme-dir-all-listing.elementor-page .content-area {
    padding: 0;
  }
}

.theme-dir-all-listing .content-area {
  padding: 90px 0 100px;
}

@media only screen and (max-width: 991px) {
  .theme-dir-all-listing .content-area {
    padding: 75px 0 80px;
  }
}

.theme-dir-all-listing.dir-listings_with_map .content-area {
  padding: 0px;
}

.theme-dir-all-listing.dir-listings_with_map .theme-container {
  max-width: 100%;
  padding: 0;
}

.theme-dir-home.elementor-page .content-area {
  padding: 0;
}

.elementor-page .content-area,
.theme-dir-search-result .content-area,
.theme-dir-single_category .content-area,
.theme-dir-single_location .content-area,
.theme-dir-single_tag .content-area {
  padding: 100px 0;
}

@media only screen and (max-width: 991px) {
  .elementor-page .content-area,
  .theme-dir-search-result .content-area,
  .theme-dir-single_category .content-area,
  .theme-dir-single_location .content-area,
  .theme-dir-single_tag .content-area {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .elementor-page .content-area,
  .theme-dir-search-result .content-area,
  .theme-dir-single_category .content-area,
  .theme-dir-single_location .content-area,
  .theme-dir-single_tag .content-area {
    padding: 70px 0;
  }
}

.error-page-area {
  padding: 100px 0;
}

@media only screen and (max-width: 991px) {
  .error-page-area {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .error-page-area {
    padding: 50px 0;
  }
}

.search-results .content-area {
  padding: 100px 0 70px;
}

.theme-dir-all_locations .content-area,
.theme-dir-category .content-area {
  padding: 100px 0 70px;
  background-color: #fff;
  border-top: 1px solid var(--color-border-light);
}

@media only screen and (max-width: 991px) {
  .theme-dir-all_locations .content-area,
  .theme-dir-category .content-area {
    padding: 80px 0;
  }
}

.modal-backdrop.show {
  z-index: 1;
}

/* Daterange Picker */
.daterangepicker table tr td,
.daterangepicker table tr th {
  padding: 5.5px 10px;
}

/* Heading */
.elementor-heading-title {
  font-family: var(--font-family-body);
}

h1,
h1.elementor-heading-title {
  font-size: 30px;
  line-height: 1.26667;
  font-weight: 600;
  font-family: var(--font-family-h1);
}

h2,
h2.elementor-heading-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  font-family: var(--font-family-h2);
}

h3,
h3.elementor-heading-title {
  font-size: 22px;
  line-height: 1.22727;
  font-weight: 600;
  font-family: var(--font-family-h3);
}

h4,
h4.elementor-heading-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  font-family: var(--font-family-h4);
}

h5,
h5.elementor-heading-title {
  font-size: 18px;
  line-height: 1.27778;
  font-weight: 600;
  font-family: var(--font-family-h5);
}

h6,
h6.elementor-heading-title {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 600;
  font-family: var(--font-family-h6);
}

/* Paragraph */
p {
  line-height: 1.75;
  font-weight: 400;
}

p.pera {
  font-size: calc(1.0125rem + 0.15vw);
  line-height: 1.94444;
  font-weight: 400;
  color: var(--color-gray);
}

@media (min-width: 1200px) {
  p.pera {
    font-size: 1.125rem;
  }
}

span {
  line-height: 1.85714;
}

.directorist-counter .theme-counter__title {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
}

.directorist-counter .theme-counter__number span {
  font-size: 42px;
  line-height: 60px;
  font-weight: 600;
}

.directorist-team .theme-team-single .theme-team-single__img {
  position: relative;
}

.directorist-team .theme-team-single .theme-team-single__img img {
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: auto;
}

.directorist-team .theme-team-single .theme-team-single__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(var(--color-dark-rgba), 0.6);
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.directorist-team .theme-team-single figcaption {
  padding: 14px 0;
  border-radius: 0 0 5px 5px;
  border: 1px solid var(--color-border);
  -webkit-box-shadow: 0 3px 5px rgba(var(--color-light-rgba), 0.05);
          box-shadow: 0 3px 5px rgba(var(--color-light-rgba), 0.05);
}

.directorist-team .theme-team-single figcaption .theme-team-single__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.directorist-team .theme-team-single figcaption .theme-team-single__position {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-lighter);
  margin: 0;
}

.directorist-team .theme-team-single figcaption .theme-team-single__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  top: 33%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

@media only screen and (max-width: 1199px) {
  .directorist-team .theme-team-single figcaption .theme-team-single__social {
    top: 38%;
  }
}

@media only screen and (max-width: 1199px) {
  .directorist-team .theme-team-single figcaption .theme-team-single__social {
    top: 38%;
  }
}

.directorist-team .theme-team-single figcaption .theme-team-single__social li {
  list-style: none;
  margin-right: 20px;
}

.directorist-team .theme-team-single figcaption .theme-team-single__social li a {
  font-size: 20px;
  color: var(--color-white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.directorist-team .theme-team-single figcaption .theme-team-single__social li a svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.directorist-team .theme-team-single figcaption .theme-team-single__social li a:hover {
  color: var(--color-primary);
}

.directorist-team .theme-team-single figcaption .theme-team-single__social li a:hover svg {
  fill: var(--color-primary);
}

.directorist-team .theme-team-single figcaption .theme-team-single__social li:last-child {
  margin-right: 0;
}

.directorist-team .theme-team-single:hover .theme-team-single__img:before {
  opacity: 1;
}

.directorist-team .theme-team-single:hover figcaption .theme-team-single__social {
  opacity: 1;
}

.directorist-faq .elementor-accordion .elementor-accordion-item {
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border-light) !important;
}

.directorist-faq .elementor-accordion .elementor-accordion-item .elementor-tab-title {
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 600;
}

.directorist-faq .elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active {
  border-radius: 6px 6px 0 0;
  color: var(--color-white);
  background: var(--color-dark);
}

.directorist-faq .elementor-accordion .elementor-accordion-item .elementor-tab-title .elementor-accordion-icon span {
  line-height: 1;
  font-size: 16px;
}

.directorist-faq .elementor-accordion .elementor-accordion-item:last-child {
  margin-bottom: 0;
}

.content-center {
  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;
}

.transition, .theme-menu-container .mainmenu__menu .navbar-collapse, .theme-menu-container .mainmenu__menu .navbar-collapse.selected, .theme-menu-container .mainmenu__menu .navbar-nav > li > a, .mainmenu__menu .navbar-nav > li.menu-item .sub-menu, .mainmenu__menu .navbar-nav > li.menu-item.menu-item:not(.multi-column-menu) .menu-item-has-children:not(.multi-column-menu) > ul, .widget.widget_nav_menu ul li a, .comments-area .comment-lists ul .media .media-body .media_top .comment-reply-link, .theme-footer-bottom-area .theme-copyright-text a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*------------------------------
#. Button
-------------------------------*/
.btn.theme-btn {
  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;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  min-height: 46px;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
}

.btn.theme-btn:after, .btn.theme-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 60%;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.btn.theme-btn:before {
  right: 100%;
  width: 60%;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 6px;
  -webkit-transition-delay: .15s;
          transition-delay: .15s;
}

.btn.theme-btn:after {
  right: -10px;
  border-radius: 6px;
  -webkit-transition: .4s;
  transition: .4s;
}

.btn.theme-btn:focus {
  outline: 0 0;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
}

.btn.theme-btn:hover:before {
  right: -100%;
  opacity: 1;
  visibility: visible;
}

.btn.theme-btn:hover:after {
  opacity: 1;
  visibility: visible;
  width: 0;
}

/* Button Type */
.btn.theme-btn.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.theme-btn.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn.theme-btn.btn-success {
  background-color: var(--color-success);
  border-color: var(--color-success);
}

.btn.theme-btn.btn-info {
  background-color: var(--color-info);
  border-color: var(--color-info);
}

.btn.theme-btn.btn-light {
  background-color: var(--color-white);
  border-color: var(--color-white);
}

.btn.theme-btn.btn-warning {
  background-color: var(--color-warning);
  border-color: var(--color-warning);
}

.btn.theme-btn.btn-danger {
  background-color: var(--color-danger);
  border-color: var(--color-danger);
}

/* Button Outline */
.btn.theme-btn.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn.theme-btn.btn-outline-secondary {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn.theme-btn.btn-outline-success {
  color: var(--color-success);
  border-color: var(--color-success);
}

.btn.theme-btn.btn-outline-info {
  color: var(--color-info);
  border-color: var(--color-info);
}

.btn.theme-btn.btn-outline-light {
  color: var(--color-dark);
  border-color: var(--color-border-light);
}

.btn.theme-btn.btn-outline-warning {
  color: var(--color-warning);
  border-color: var(--color-warning);
}

.btn.theme-btn.btn-outline-danger {
  color: var(--color-danger);
  border-color: var(--color-danger);
}

/* Button Block */
.btn.theme-btn.btn-block {
  display: block;
  width: 100%;
}

.directorist-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*-------------------------------------
#. Header
---------------------------------------*/
.theme-header-menu-area {
  padding: 15px 0;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-header-bg);
}

.theme-header-menu-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Sticky Header */
.menu-area {
  -webkit-box-shadow: 0 3px 5px rgba(132, 142, 159, 0.05);
          box-shadow: 0 3px 5px rgba(132, 142, 159, 0.05);
}

.menu-area.sticky-top {
  top: 0;
}

.admin-bar header.sticky-top {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar header.sticky-top {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar header.sticky-top {
    top: 0;
  }
}

/* One Listing Brand */
.theme-header-logo-inner {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 375px) {
  .theme-header-logo-inner {
    margin-right: 15px;
  }
}

.theme-header-logo-inner .theme-header-logo-brand {
  padding: 0;
}

.theme-header-logo-inner .theme-header-logo-brand img {
  max-width: 130px;
  height: auto;
}

@media only screen and (max-width: 575px) {
  .theme-header-logo-inner .theme-header-logo-brand img {
    max-width: 110px;
  }
}

.theme-header-logo-inner .theme-header-logo-brand h1 {
  word-break: break-all;
  margin-right: 0;
  font-size: calc(1.0875rem + 1.05vw);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .theme-header-logo-inner .theme-header-logo-brand h1 {
    font-size: 1.875rem;
  }
}

/* One Listing Main Menu */
.theme-menu-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.theme-menu-container .mainmenu__menu {
  border: none;
  margin: 0;
  padding: 0;
  position: static;
}

.theme-menu-container .mainmenu__menu .navbar-collapse {
  padding: 0;
  float: left;
}

@media only screen and (max-width: 575px) {
  .theme-menu-container .mainmenu__menu .navbar-collapse {
    top: 69px;
  }
}

.theme-menu-container .mainmenu__menu .navbar-collapse.toggled {
  visibility: hidden;
  opacity: 0;
}

.theme-menu-container .mainmenu__menu .navbar-collapse.selected {
  visibility: hidden;
  opacity: 0;
}

.theme-menu-container .mainmenu__menu .navbar-nav > li {
  display: inline-block;
  padding: 0;
  margin-right: 26px;
}

.theme-menu-container .mainmenu__menu .navbar-nav > li > a {
  display: inline-block;
  padding: 30px 0;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--color-menu);
  font-family: var(--font-family-menu);
  font-size: 0.9375rem;
  line-height: 1.33333;
  font-weight: 500;
}

.theme-menu-container .mainmenu__menu .navbar-nav > li > a:hover {
  color: var(--color-menu-hover);
}

.theme-menu-container .mainmenu__menu .navbar-nav > li.current_page_item > a {
  color: var(--color-menu-active);
}

.mainmenu__menu .navbar-nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mainmenu__menu .navbar-nav > li {
  display: inline-block;
  padding: 0;
  margin-right: 30px;
  list-style: none;
  position: relative;
}

.mainmenu__menu .navbar-nav > li.menu-item-has-children > a {
  position: relative;
  padding-right: 15px;
}

.mainmenu__menu .navbar-nav > li.menu-item-has-children > a:hover::after {
  color: var(--color-menu-active);
}

.mainmenu__menu .navbar-nav > li.menu-item-has-children > a:after {
  content: "\45";
  font-family: "theme-icons";
  font-size: 11px;
  font-weight: 600;
  padding-left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 991px) {
  .mainmenu__menu .navbar-nav > li.menu-item-has-children > a:after {
    display: none;
  }
}

.mainmenu__menu .navbar-nav > li.menu-item-has-children.current_page_item > a:after {
  color: var(--color-menu-active);
}

.mainmenu__menu .navbar-nav > li.menu-item {
  position: relative;
}

.mainmenu__menu .navbar-nav > li.menu-item:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

.mainmenu__menu .navbar-nav > li.menu-item .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 10px;
  margin: 0;
  min-width: 230px;
  border-radius: 6px;
  visibility: hidden;
  opacity: 0;
  z-index: 22;
  border: 0 none;
  list-style: none;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 5px 30px rgba(143, 142, 159, 0.2);
          box-shadow: 0 5px 30px rgba(143, 142, 159, 0.2);
}

.mainmenu__menu .navbar-nav > li.menu-item .sub-menu a {
  display: block;
  padding: 8.5px 16px;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 500;
  color: var(--color-menu);
  font-family: var(--font-family-menu);
}

.mainmenu__menu .navbar-nav > li.menu-item .sub-menu a:hover {
  color: var(--color-menu-hover);
}

@media only screen and (max-width: 991px) {
  .mainmenu__menu .navbar-nav > li.menu-item .sub-menu a {
    padding: 0.5rem 10px;
  }
}

.mainmenu__menu .navbar-nav > li.menu-item.menu-item:not(.multi-column-menu) .menu-item-has-children:not(.multi-column-menu) {
  position: relative;
}

.mainmenu__menu .navbar-nav > li.menu-item.menu-item:not(.multi-column-menu) .menu-item-has-children:not(.multi-column-menu) > a:after {
  right: 1rem;
}

.mainmenu__menu .navbar-nav > li.menu-item.menu-item:not(.multi-column-menu) .menu-item-has-children:not(.multi-column-menu) > ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 10.66667rem;
  visibility: hidden;
  opacity: 0;
  padding: 0.46667rem 0;
}

@media only screen and (max-width: 991px) {
  .mainmenu__menu .navbar-nav > li.menu-item.menu-item:not(.multi-column-menu) .menu-item-has-children:not(.multi-column-menu) > ul {
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    padding: 0;
    width: auto;
  }
}

.mainmenu__menu .navbar-nav > li.menu-item.menu-item:not(.multi-column-menu) .menu-item-has-children:not(.multi-column-menu) > ul li a {
  display: block;
  background: none;
}

.mainmenu__menu .navbar-nav > li.menu-item.menu-item:not(.multi-column-menu) .menu-item-has-children:not(.multi-column-menu):hover > ul {
  visibility: visible;
  opacity: 1;
}

.mainmenu__menu .navbar-nav > li:not(.multi-column-menu) > .sub-menu {
  top: 60px;
}

@media only screen and (max-width: 1199px) {
  .mainmenu__menu .navbar-nav > li:not(.multi-column-menu) > .sub-menu {
    top: 56px;
  }
}

/* Main Navigation */
.theme-header-menu-area .theme-main-navigation-inner {
  position: relative;
}

.theme-header-menu-area .theme-main-navigation {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin-right: 30px;
}

@media only screen and (max-width: 1199px) {
  .theme-header-menu-area .theme-main-navigation {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .theme-header-menu-area .theme-main-navigation {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .theme-header-menu-area .theme-main-navigation {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 375px) {
  .theme-header-menu-area .theme-main-navigation {
    margin-right: 10px;
  }
}

.theme-header-menu-area .theme-main-navigation ul {
  padding: 0;
  margin: 0 -12.5px;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.theme-header-menu-area .theme-main-navigation ul li {
  display: inline-block;
  position: relative;
}

.theme-header-menu-area .theme-main-navigation ul li a {
  font-size: 14px;
  display: block;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.25;
  padding: 10px 8px 10px 16px;
  color: var(--color-menu);
  font-family: var(--font-family-menu);
}

.theme-header-menu-area .theme-main-navigation ul li a::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: '';
  width: 100%;
  height: 42px;
}

@media only screen and (max-width: 1399px) {
  .theme-header-menu-area .theme-main-navigation ul li a {
    padding: 20px 8px;
  }
}

@media only screen and (max-width: 1199px) {
  .theme-header-menu-area .theme-main-navigation ul li a {
    padding: 12px 8px;
  }
}

@media only screen and (max-width: 575px) {
  .theme-header-menu-area .theme-main-navigation ul li a {
    font-size: 14px;
    padding: 12px 8px 12px 0;
  }
}

.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.menu-item-has-children:hover:after {
  color: var(--color-primary);
}

.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.menu-item-has-children > a {
  position: relative;
  margin-right: 15px;
}

.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.menu-item-has-children > a:after {
  content: "\45";
  font-family: "theme-icons";
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  right: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  color: var(--color-dark);
}

@media only screen and (max-width: 1399px) {
  .theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.menu-item-has-children > a:after {
    right: -8px;
  }
}

@media only screen and (max-width: 1399px) {
  .theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.menu-item-has-children > a {
    margin-right: 14px;
  }
}

.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li > a:hover {
  -webkit-animation: toBottomFromTop10 0.3s forwards;
          animation: toBottomFromTop10 0.3s forwards;
}

.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li:hover > a,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current-menu-item > a,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current-menu-parent > a,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current-menu-ancestor > a,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current > a {
  color: var(--color-primary);
}

.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li:hover > a::after,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current-menu-item > a::after,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current-menu-parent > a::after,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current-menu-ancestor > a::after,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current > a::after {
  color: var(--color-primary);
}

.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current-menu-item:after,
.theme-header-menu-area .theme-main-navigation ul.theme-main-menu > li.current:after {
  color: var(--color-primary);
}

/* Submenu */
.theme-header-menu-area .theme-main-navigation ul li:not(.multi-column-menu) ul ul ul ul li a:after {
  display: none;
}

.theme-header-menu-area .theme-main-navigation ul li:not(.multi-column-menu) ul ul ul ul ul {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
  min-width: 180px;
  left: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: inherit;
  margin: 0;
  top: 0;
  padding: 0;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li:not(.multi-column-menu) ul ul ul ul li a:after {
  display: block;
}

.theme-header-menu-area .theme-main-navigation ul li ul {
  left: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  position: absolute;
  top: 54px;
  background-color: var(--color-white);
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 99998 !important;
  width: 200px;
  text-align: left;
  padding: 6px;
  -webkit-box-shadow: 0 5px 30px rgba(143, 142, 159, 0.2);
          box-shadow: 0 5px 30px rgba(143, 142, 159, 0.2);
  border-radius: 0 0 6px 6px;
}

@media only screen and (max-width: 991px) {
  .theme-header-menu-area .theme-main-navigation ul li ul {
    width: 155px;
  }
}

@media only screen and (max-width: 767px) {
  .theme-header-menu-area .theme-main-navigation ul li ul {
    width: 130px;
  }
}

.theme-header-menu-area .theme-main-navigation ul li ul.sub-menu li.menu-item-has-children > a {
  position: relative;
}

.theme-header-menu-area .theme-main-navigation ul li ul.sub-menu li.menu-item-has-children > a:hover:after {
  color: var(--color-primary);
}

.theme-header-menu-area .theme-main-navigation ul li ul.sub-menu li.menu-item-has-children > a:after {
  color: var(--color-dark);
  content: "\62";
  font-family: "theme-icons";
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1.45;
}

@media only screen and (max-width: 991px) {
  .theme-header-menu-area .theme-main-navigation ul li ul.sub-menu li.menu-item-has-children > a:after {
    right: 2px;
  }
}

.theme-header-menu-area .theme-main-navigation ul li ul li {
  display: block;
}

.theme-header-menu-area .theme-main-navigation ul li ul li a {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: var(--color-submenu);
  border-radius: 4px;
  padding: 0.6rem 10px;
  font-family: var(--font-family-submenu);
}

.theme-header-menu-area .theme-main-navigation ul li ul li a:hover {
  color: var(--color-primary);
}

@media only screen and (max-width: 991px) {
  .theme-header-menu-area .theme-main-navigation ul li ul li a {
    padding: 0.25rem 1rem;
  }
}

.theme-header-menu-area .theme-main-navigation ul li ul li:hover:after {
  color: var(--color-primary);
}

.theme-header-menu-area .theme-main-navigation ul li ul li:hover > a {
  background-color: var(--color-white);
}

.theme-header-menu-area .theme-main-navigation ul li ul li:last-child {
  border-bottom: none;
}

.theme-header-menu-area .theme-main-navigation ul li ul li.current-menu-item > a {
  color: var(--color-primary);
}

.theme-header-menu-area .theme-main-navigation ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

/* 3rd Level Menu */
.theme-header-menu-area .theme-main-navigation ul li ul li ul {
  left: 100%;
  top: 0;
  width: 200px;
}

@media only screen and (max-width: 991px) {
  .theme-header-menu-area .theme-main-navigation ul li ul li ul {
    width: 155px;
  }
}

@media only screen and (max-width: 767px) {
  .theme-header-menu-area .theme-main-navigation ul li ul li ul {
    width: 130px;
  }
}

.theme-header-menu-area .theme-main-navigation ul > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.theme-main-navigation-inner .theme-mobile-menu-close {
  display: none;
  text-decoration: none;
}

.theme-responsive-menu-trigger .admin-bar .menu-main-menu-container {
  top: 32px;
}

.theme-responsive-menu-trigger .admin-bar .theme-main-navigation-inner {
  padding-top: 80px;
}

.theme-responsive-menu-trigger .admin-bar .theme-main-navigation-inner .theme-mobile-menu-close {
  top: 50px;
}

.theme-responsive-menu-trigger .theme-header-menu-area {
  padding: 15px 0;
}

@media only screen and (max-width: 991px) {
  .theme-responsive-menu-trigger .theme-header-menu-area {
    padding: 10px 0;
  }
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation {
  text-align: left;
  position: relative;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul {
  margin: 0;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li {
  display: block;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li a {
  font-family: var(--font-family-resmenu) !important;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li:first-child > a {
  padding-left: 20px;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li.menu-item-has-children:after {
  display: none;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li.menu-item-has-children > a {
  margin-right: 0;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li.menu-item-has-children > a:after {
  content: "\45";
  font-family: "theme-icons";
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li.menu-item-has-children.theme-submenu-open > a:after {
  content: "\44";
  font-family: "theme-icons";
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li a {
  padding: 10px 20px;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li ul {
  padding-left: 20px;
  width: 100%;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation ul li > ul {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
}

.theme-responsive-menu-trigger .theme-header-menu-area .theme-main-navigation .sub-menu {
  display: none;
}

.theme-responsive-menu-trigger .theme-main-navigation-inner {
  position: fixed;
  left: -280px;
  top: 0;
  width: 280px;
  height: 100vh;
  z-index: 998;
  padding-top: 60px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: var(--color-white);
  -webkit-box-shadow: 0 5px 10px rgba(146, 153, 184, 0.1);
          box-shadow: 0 5px 10px rgba(146, 153, 184, 0.1);
  -webkit-transition: 0.25s;
  transition: 0.25s;
  overflow-y: auto;
}

.theme-responsive-menu-trigger .theme-main-navigation-inner.theme-offcanvas-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  left: 0;
}

.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close {
  position: absolute;
  right: 15px;
  top: 25px;
  width: 25px;
  height: 25px;
  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;
  border-radius: 3px;
  background-color: var(--color-danger);
  color: var(--color-white);
}

.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close i,
.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close span.la,
.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close span.las,
.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close span.lab,
.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close span.lar,
.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close span.fa,
.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close span.fab,
.theme-responsive-menu-trigger .theme-main-navigation-inner .theme-mobile-menu-close span.fas {
  color: var(--color-white);
}

.theme-responsive-menu-trigger .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  min-height: auto;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  display: none;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none;
          transform: none;
  min-width: auto;
  max-width: 100%;
}

.theme-responsive-menu-trigger .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li {
  float: none;
}

.theme-responsive-menu-trigger .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li:not(:last-child) {
  margin-bottom: 12px;
}

.theme-responsive-menu-trigger .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li > a {
  padding: 0 .75rem;
}

.theme-responsive-menu-trigger .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li ul.sub-menu {
  display: block;
  padding: 0 15px;
}

/* Theme Mobile Menu Overlay */
.theme-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}

.theme-mobile-menu-overlay.theme-mobile-menu-triggered {
  z-index: 22;
}

/*  mobile menu trigger */
.theme-responsive-menu-trigger .theme-mobile-menu-trigger {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-border);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  border-radius: 5px;
  padding: 0 4px;
  cursor: pointer;
  margin-left: auto;
}

.theme-responsive-menu-trigger .theme-mobile-menu-trigger span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: var(--color-primary);
}

.theme-responsive-menu-trigger .theme-mobile-menu-trigger span:not(:last-child) {
  margin-bottom: 4px;
}

.theme-menu-action-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.theme-menu-action-box ul {
  margin: 0;
}

.theme-menu-action-box .theme-btn.btn {
  max-height: 42px;
  min-height: 42px;
  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;
  padding: 0 30px 0 25px;
  border-radius: 6px;
  color: var(--color-white);
}

.theme-menu-action-box .theme-btn.btn .directorist-icon-mask:after {
  width: 14px;
  height: 14px;
  background-color: var(--color-white);
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box .theme-btn.btn {
    width: 30px;
    min-height: 30px;
    max-height: 30px;
    padding: 0;
  }
  .theme-menu-action-box .theme-btn.btn i {
    margin: 0;
  }
}

.theme-menu-action-box__author {
  margin-right: 10px;
}

.theme-menu-action-box__author .theme-menu-action-box__author--access-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.theme-menu-action-box__add-listing .btn-add-listing i,
.theme-menu-action-box__add-listing .btn-add-listing svg,
.theme-menu-action-box__add-listing .btn-add-listing span.la,
.theme-menu-action-box__add-listing .btn-add-listing span.las,
.theme-menu-action-box__add-listing .btn-add-listing span.lab,
.theme-menu-action-box__add-listing .btn-add-listing span.lar,
.theme-menu-action-box__add-listing .btn-add-listing span.fa,
.theme-menu-action-box__add-listing .btn-add-listing span.fas,
.theme-menu-action-box__add-listing .btn-add-listing span.fab,
.theme-menu-action-box__add-listing .btn-add-listing span.far {
  margin-right: 4px;
}

.theme-menu-action-box__add-listing .btn-add-listing img,
.theme-menu-action-box__add-listing .btn-add-listing svg {
  width: 16px;
  color: var(--color-white);
  fill: var(--color-white);
}

.theme-menu-action-box__add-listing .btn-add-listing .la-plus {
  position: relative;
  line-height: 1;
  font-family: "theme-icons";
}

.theme-menu-action-box__add-listing .btn-add-listing .la-plus:before {
  content: "\70";
}

@media only screen and (max-width: 767px) {
  .theme-menu-action-box__add-listing .btn-add-listing {
    display: none;
  }
}

.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .theme-menu-action-box__add-listing .btn-add-listing.btn-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 6px;
    min-height: 28px;
  }
}

.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile i,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.la,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.las,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.lab,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.lar,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.fa,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.fas,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.fab,
.theme-menu-action-box__add-listing .btn-add-listing.btn-mobile span.far {
  margin-right: 0;
}

.theme-menu-action-box .theme-header-action__author--info {
  position: relative;
  cursor: pointer;
  padding: 5px 0;
}

.theme-menu-action-box .theme-header-action__author--info img {
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media only screen and (max-width: 575px) {
  .theme-menu-action-box .theme-header-action__author--info img {
    max-width: 30px;
    height: 30px;
  }
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation {
  position: absolute;
  right: 0;
  top: 62px;
  min-width: 190px;
  border-radius: 5px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 5px 20px rgba(136, 140, 158, 0.2);
          box-shadow: 0 5px 20px rgba(136, 140, 158, 0.2);
  background-color: var(--color-white);
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation.theme-show {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul {
  list-style: none;
  padding: 0;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 3px 20px;
  color: var(--color-submenu);
  font-family: var(--font-family-submenu);
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a:hover {
  color: var(--color-primary);
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a:hover .directorist-icon-mask:after {
  background-color: var(--color-primary);
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a .directorist-icon-mask:after {
  background-color: var(--color-submenu);
  width: 14px;
  height: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a .directorist_menuItem-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a .directorist_menuItem-text .directorist-icon-mask {
  margin: 0;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a .directorist_menuItem-icon {
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a .directorist_menuItem-icon i {
  font-size: 16px;
}

.theme-menu-action-box .theme-header-action__author--info .theme-header-author-navigation ul li a .directorist_menuItem-icon .directorist-icon-mask:after {
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box__login .theme-btn.btn.btn-sm {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .theme-menu-action-box__login .theme-btn.btn.btn-sm {
    width: 30px;
    min-height: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.theme-menu-action-box__login .theme-btn.btn.btn-sm.btn-mobile {
  display: none;
  min-height: 30px;
  padding: 0 6px;
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box__login .theme-btn.btn.btn-sm.btn-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.theme-menu-action-box__login .theme-menu-action-box__login--modal .btn.theme-btn.btn-outline-light {
  border-color: var(--color-border-light);
  color: var(--color-gray);
  background-color: white;
}

.theme-menu-action-box__login .theme-menu-action-box__login--modal .btn.theme-btn.btn-outline-light i {
  margin-left: 6px;
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box__login .theme-menu-action-box__login--modal .btn.theme-btn.btn-outline-light i {
    margin-left: 0;
  }
}

.theme-menu-action-box__login .theme-menu-action-box__login--modal .btn.theme-btn.btn-outline-light .directorist-icon-mask:after {
  background-color: var(--color-gray);
  width: 16px;
  height: 16px;
}

.theme-menu-action-box__login .theme-menu-action-box__login--modal .btn.theme-btn.btn-outline-light:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.theme-menu-action-box__login .theme-menu-action-box__login--modal .btn.theme-btn.btn-outline-light:hover .directorist-icon-mask:after {
  background-color: var(--color-primary);
}

/* Theme Menu Action Search */
.theme-menu-action-box__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 46px;
  border-radius: 23px;
  width: 330px;
  min-width: 330px;
  border: 1px solid var(--color-border-light);
  margin-right: 50px;
}

@media only screen and (max-width: 1399px) {
  .theme-menu-action-box__search {
    width: 200px;
    min-width: 200px;
  }
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box__search {
    width: auto;
    min-width: auto;
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    border: 0 none;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 375px) {
  .theme-menu-action-box__search {
    margin-right: 10px;
  }
}

.theme-menu-action-box__search.theme-popup-open {
  min-width: 250px;
}

@media only screen and (max-width: 1399px) {
  .theme-menu-action-box__search.theme-popup-open {
    width: 230px;
    min-width: 230px;
  }
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box__search.theme-popup-open {
    width: auto;
    min-width: auto;
  }
}

.theme-menu-action-box__search .theme-menu-action-box__search--trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 46px;
  padding: 0 7px 0 25px;
  text-decoration: none;
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box__search .theme-menu-action-box__search--trigger {
    padding: 0;
  }
}

.theme-menu-action-box__search .theme-menu-action-box__search--trigger .theme-menu-action-box__text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--color-dark);
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .theme-menu-action-box__search .theme-menu-action-box__search--trigger .theme-menu-action-box__text {
    display: none;
  }
}

.theme-menu-action-box__search .theme-menu-action-box__search--trigger .theme-menu-action-box__icon {
  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: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.theme-menu-action-box__search .theme-menu-action-box__search--trigger .theme-menu-action-box__icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.theme-menu-action-box__search .theme-menu-action-box__search--trigger .theme-menu-action-box__icon i,
.theme-menu-action-box__search .theme-menu-action-box__search--trigger .theme-menu-action-box__icon span {
  color: var(--color-white);
}

/* Search popup */
.dspb-search__popup:not(.responsive-true) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(0, -50%) scaleY(0);
          transform: translate(0, -50%) scaleY(0);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  background-color: #fff;
}

.dspb-search__popup:not(.responsive-true).show {
  -webkit-transform: translate(0, 0) scaleY(1);
          transform: translate(0, 0) scaleY(1);
  opacity: 1;
  visibility: visible;
}

.dspb-search__form {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 30px;
  margin-bottom: 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

@media only screen and (max-width: 575px) {
  .dspb-search__form {
    padding: 30px 30px 0 6px;
  }
}

.dspb-search__form::-webkit-scrollbar {
  width: 11px;
}

.dspb-search__form::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}

.dspb-search__form::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

.dspb-search__form-close {
  position: fixed;
  top: 35px;
  right: 50px;
  border: none;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 99999;
  line-height: 0.8;
  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: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.dspb-search__form-close .directorist-icon-mask:after {
  background-color: var(--color-dark);
}

@media only screen and (max-width: 767px) {
  .dspb-search__form-close {
    top: 50px;
    right: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .dspb-search__form-close {
    display: none;
  }
}

.dspb-search__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}

.dspb-search__overlay.show {
  height: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 1030;
  overflow-y: hidden;
}

.dspb-search-hidden {
  overflow: hidden;
}

.dspb-search .directorist-search-form-action__modal__btn-advanced {
  --color-white: var(--directorist-color-light);
}

.dspb-search .directorist-search-contents {
  padding: 65px 0 10px;
}

@media only screen and (max-width: 575px) {
  .dspb-search .directorist-search-contents {
    padding: 0;
  }
}

@media only screen and (min-width: 783.99px) {
  .admin-bar .dspb-search__popup {
    top: 32px;
  }
}

@media only screen and (max-width: 782.99px) {
  .admin-bar .dspb-search__popup {
    top: 46px;
  }
}

.directorist-search-form-action__modal__btn-search.directorist-modal-btn,
.directorist-all-listing-btn .directorist-modal-btn--basic.directorist-modal-btn {
  color: var(--color-dark);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.directorist-search-form-action__modal__btn-search.directorist-modal-btn .directorist-icon-mask:after,
.directorist-all-listing-btn .directorist-modal-btn--basic.directorist-modal-btn .directorist-icon-mask:after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.directorist-search-form-action__modal__btn-search.directorist-modal-btn:hover,
.directorist-all-listing-btn .directorist-modal-btn--basic.directorist-modal-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.directorist-search-form-action__modal__btn-search.directorist-modal-btn:hover .directorist-icon-mask:after,
.directorist-all-listing-btn .directorist-modal-btn--basic.directorist-modal-btn:hover .directorist-icon-mask:after {
  background-color: var(--color-white);
}

.directorist-search-form-action__modal .directorist-modal-btn--advanced,
.directorist-all-listing-btn__advanced .directorist-modal-btn--advanced {
  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: 46px;
  height: 46px;
  border-radius: 4px;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.directorist-search-form-action__modal .directorist-modal-btn--advanced .directorist-icon-mask:after,
.directorist-all-listing-btn__advanced .directorist-modal-btn--advanced .directorist-icon-mask:after {
  background-color: var(--color-white);
}

.directorist-search-form-action__modal .directorist-modal-btn--advanced:hover,
.directorist-all-listing-btn__advanced .directorist-modal-btn--advanced:hover {
  opacity: 0.8;
}

.directorist-search-form-action__modal .directorist-search-form-action__modal__btn-search:hover .directorist-icon-mask:after {
  --directorist-color-primary: var(--color-white);
}

.theme-shade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}

.theme-shade.theme-show {
  height: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.theme-shade.theme-white-shade {
  background-color: transparent;
}

/* Mega Menu */
@media only screen and (max-width: 991px) {
  .admin-bar .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu:hover > ul.sub-menu {
    top: 68px;
  }
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu {
  position: static;
}

@media only screen and (max-width: 575px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu {
    position: relative;
  }
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu a {
  position: relative;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  top: 54px;
  left: 0;
}

@media only screen and (max-width: 1399px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu:hover > ul.sub-menu {
    top: 68px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 782px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu:hover > ul.sub-menu {
    top: 50px;
  }
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu {
  background-color: var(--color-white);
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  top: 54px;
  left: 0;
  padding: 12px 8px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1399px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu {
    top: 68px;
  }
}

@media only screen and (max-width: 1199px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu {
    top: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu {
    min-width: auto;
  }
}

@media only screen and (max-width: 575px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu {
    min-width: 150px;
  }
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li {
  display: block;
  float: left;
  margin: 0 0;
  border: none;
  padding: 0;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li > a {
  border-radius: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  border-bottom: 1px solid #e3e6ef;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li > a:hover {
  color: var(--color-menu-text-hover);
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li:hover > a {
  background-color: inherit;
  color: #111;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li > ul {
  padding: 0;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li ul {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
  min-width: 180px;
  left: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: inherit;
  margin: 0;
  top: 0;
}

@media only screen and (max-width: 1199px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li ul {
    min-width: 160px;
  }
}

@media only screen and (max-width: 575px) {
  .theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li ul {
    min-width: auto;
  }
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li ul li {
  padding: 0 10px;
  display: block;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li ul li > a {
  padding: 0.75rem .75rem;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu > li ul li > a:after {
  display: none;
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu > ul.sub-menu li:after {
  content: "";
}

.theme-main-navigation .menu-main-menu-container ul li.multi-column-menu.hide-header > ul.sub-menu > li > a {
  display: none;
}

.mainmenu__menu .navbar-nav > li.menu-item.multi-column-menu:last-child .sub-menu {
  left: 0;
}

.mainmenu__menu .multi-column-menu.hide-header > ul > li {
  border-top: none;
}

.mainmenu__menu .multi-column-menu.hide-header > ul > li > a {
  display: none;
}

.mainmenu__menu .multi-column-menu.hide-header > ul > li > ul {
  display: block !important;
}

/* Multi type overlay */
.atbdp-form-fade {
  padding: 0;
}

.atbdp-form-fade:after {
  background-color: transparent;
  z-index: 99999;
}

.atbdp-form-fade:before {
  border: 2px solid var(--color-primary);
  border-top-color: transparent;
}

.atbdp-form-fade .directorist-search-form-top {
  opacity: 0.3;
}

/*---------------------------------
#. Card
----------------------------------*/
/* Theme Card Style */
.card.theme-card {
  border-color: var(--color-border);
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  border-radius: 6px;
}

.card.theme-card .card-header.theme-card-header {
  border-radius: 6px 6px 0 0;
  padding: 15px 25px;
  border-color: var(--color-border);
  background-color: var(--color-white);
}

.card.theme-card .card-header.theme-card-header h1,
.card.theme-card .card-header.theme-card-header h2,
.card.theme-card .card-header.theme-card-header h3,
.card.theme-card .card-header.theme-card-header h4,
.card.theme-card .card-header.theme-card-header h5,
.card.theme-card .card-header.theme-card-header h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--color-dark);
}

.card.theme-card .card-body.theme-card-body {
  padding: 25px;
}

/*-----------------------
#. Banner Style
-----------------------*/
/* Banner Search */
.elementor-widget-wpwax-search-listing .directorist-search-contents {
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.elementor-widget-wpwax-search-listing .directorist-search-contents .directorist-search-top {
  margin-bottom: 50px;
}

.elementor-widget-wpwax-search-listing .directorist-search-contents .directorist-search-top__title {
  font-size: calc(1.225rem + 2.7vw);
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--color-dark);
}

@media (min-width: 1200px) {
  .elementor-widget-wpwax-search-listing .directorist-search-contents .directorist-search-top__title {
    font-size: 3.25rem;
  }
}

@media only screen and (max-width: 991px) {
  .elementor-widget-wpwax-search-listing .directorist-search-contents .directorist-search-top__title {
    font-size: calc(1.18125rem + 2.175vw);
  }
}

@media only screen and (max-width: 991px) and (min-width: 1200px) {
  .elementor-widget-wpwax-search-listing .directorist-search-contents .directorist-search-top__title {
    font-size: 2.8125rem;
  }
}

@media only screen and (max-width: 479px) {
  .elementor-widget-wpwax-search-listing .directorist-search-contents .directorist-search-top__title {
    font-size: calc(1.15rem + 1.8vw);
  }
}

@media only screen and (max-width: 479px) and (min-width: 1200px) {
  .elementor-widget-wpwax-search-listing .directorist-search-contents .directorist-search-top__title {
    font-size: 2.5rem;
  }
}

.elementor-widget-wpwax-search-listing .directorist-listing-type-selection {
  border-bottom: 0 none;
}

@media (min-width: 1200px) {
  .elementor-widget-wpwax-search-listing .directorist-listing-type-selection {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 6px;
  }
}

@media only screen and (max-width: 1199px) {
  .elementor-widget-wpwax-search-listing .directorist-listing-type-selection {
    overflow-y: auto;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 575px) {
  .elementor-widget-wpwax-search-listing .directorist-listing-type-selection {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item .search_listing_types {
  color: rgba(var(--color-white-rgba), 0.7);
}

.elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item .search_listing_types .directorist-icon-mask:after {
  background-color: rgba(var(--color-white-rgba), 0.7);
}

.elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item .search_listing_types:hover, .elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item .search_listing_types.directorist-listing-type-selection__link--current {
  color: var(--color-white);
}

.elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item .search_listing_types:hover .directorist-icon-mask:after, .elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item .search_listing_types.directorist-listing-type-selection__link--current .directorist-icon-mask:after {
  background-color: var(--color-white);
}

.elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item a {
  color: rgba(var(--color-white-rgba), 0.7);
}

.elementor-widget-wpwax-search-listing .directorist-listing-type-selection .directorist-listing-type-selection__item a:hover {
  color: var(--color-white);
}

.elementor-widget-wpwax-search-listing .directorist-listing-category-top {
  margin-top: 26px;
}

.elementor-widget-wpwax-search-listing .directorist-listing-category-top h1,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h2,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h3,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h4,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h5,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h6 {
  font-size: calc(1.0125rem + 0.15vw);
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .elementor-widget-wpwax-search-listing .directorist-listing-category-top h1,
  .elementor-widget-wpwax-search-listing .directorist-listing-category-top h2,
  .elementor-widget-wpwax-search-listing .directorist-listing-category-top h3,
  .elementor-widget-wpwax-search-listing .directorist-listing-category-top h4,
  .elementor-widget-wpwax-search-listing .directorist-listing-category-top h5,
  .elementor-widget-wpwax-search-listing .directorist-listing-category-top h6 {
    font-size: 1.125rem;
  }
}

.elementor-widget-wpwax-search-listing .directorist-listing-category-top h1:empty,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h2:empty,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h3:empty,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h4:empty,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h5:empty,
.elementor-widget-wpwax-search-listing .directorist-listing-category-top h6:empty {
  display: none;
}

.elementor-widget-wpwax-search-listing .directorist-listing-category-top ul {
  padding: 0;
  margin: -12.5px;
}

@media only screen and (max-width: 991px) {
  .elementor-widget-wpwax-search-listing .directorist-listing-category-top ul {
    margin: 0;
  }
}

.elementor-widget-wpwax-search-listing .directorist-listing-category-top ul li {
  margin: 5px 10px;
}

.elementor-widget-wpwax-search-listing .directorist-listing-category-top ul li a p {
  font-size: 14px;
  font-weight: 500;
}

/* Select2 Category Dropdown Style */
.select2-container.select2-container--open .select2-dropdown.select2-dropdown--below {
  top: 2px;
}

.select2-container .theme-home-search-category {
  min-width: 380px;
}

@media only screen and (max-width: 575px) {
  .select2-container .theme-home-search-category {
    min-width: auto;
  }
}

.select2-container .theme-home-search-category .select2-results > .select2-results__options {
  max-height: 250px;
  padding-bottom: 15px;
}

.admin-bar .select2-container.select2-container--open .select2-dropdown.select2-dropdown--below {
  top: 32px;
}

.directorist-content-active .directorist-listing-category-top h3 {
  font-weight: 600;
}

/* Breadcrumb Style */
.theme-banner-breadcrumb {
  position: relative;
  z-index: 2;
}

.theme-banner-breadcrumb:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #05071D;
  opacity: .60;
  z-index: -1;
}

.theme-banner-content.theme-breadcrumb-banner {
  padding: 80px 0;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .theme-banner-content.theme-breadcrumb-banner {
    padding: 70px 0;
  }
}

@media only screen and (max-width: 767px) {
  .theme-banner-content.theme-breadcrumb-banner {
    padding: 60px 0;
  }
}

.theme-banner-content.theme-breadcrumb-banner h1,
.theme-banner-content.theme-breadcrumb-banner h2,
.theme-banner-content.theme-breadcrumb-banner h3,
.theme-banner-content.theme-breadcrumb-banner h4,
.theme-banner-content.theme-breadcrumb-banner h5,
.theme-banner-content.theme-breadcrumb-banner h6 {
  font-size: 52px;
  line-height: 70px;
  font-weight: 600;
  margin: 0;
  color: var(--color-white);
}

@media only screen and (max-width: 991px) {
  .theme-banner-content.theme-breadcrumb-banner h1,
  .theme-banner-content.theme-breadcrumb-banner h2,
  .theme-banner-content.theme-breadcrumb-banner h3,
  .theme-banner-content.theme-breadcrumb-banner h4,
  .theme-banner-content.theme-breadcrumb-banner h5,
  .theme-banner-content.theme-breadcrumb-banner h6 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .theme-banner-content.theme-breadcrumb-banner h1,
  .theme-banner-content.theme-breadcrumb-banner h2,
  .theme-banner-content.theme-breadcrumb-banner h3,
  .theme-banner-content.theme-breadcrumb-banner h4,
  .theme-banner-content.theme-breadcrumb-banner h5,
  .theme-banner-content.theme-breadcrumb-banner h6 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 479px) {
  .theme-banner-content.theme-breadcrumb-banner h1,
  .theme-banner-content.theme-breadcrumb-banner h2,
  .theme-banner-content.theme-breadcrumb-banner h3,
  .theme-banner-content.theme-breadcrumb-banner h4,
  .theme-banner-content.theme-breadcrumb-banner h5,
  .theme-banner-content.theme-breadcrumb-banner h6 {
    font-size: 35px;
  }
}

/*---------------------------------
#. Contact
----------------------------------*/
/* Contact Info */
.theme-contact-info.card {
  -webkit-box-shadow: 0 3px 5px rgba(143, 142, 159, 0.05);
          box-shadow: 0 3px 5px rgba(143, 142, 159, 0.05);
}

.theme-contact-info.card .card-body.theme-card-body {
  padding: 20px 25px 32px 25px;
}

.theme-contact-info__list ul li:not(:last-child) {
  margin-bottom: 4px;
}

.theme-contact-info__list .theme-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.theme-contact-info__list .theme-contact-info i,
.theme-contact-info__list .theme-contact-info svg,
.theme-contact-info__list .theme-contact-info span.la,
.theme-contact-info__list .theme-contact-info span.las,
.theme-contact-info__list .theme-contact-info span.lab,
.theme-contact-info__list .theme-contact-info span.fa,
.theme-contact-info__list .theme-contact-info span.fas,
.theme-contact-info__list .theme-contact-info span.fab {
  font-size: calc(1.0125rem + 0.15vw);
  width: 18px;
  margin-right: 10px;
  color: var(--color-light-gray);
  fill: var(--color-light-gray);
}

@media (min-width: 1200px) {
  .theme-contact-info__list .theme-contact-info i,
  .theme-contact-info__list .theme-contact-info svg,
  .theme-contact-info__list .theme-contact-info span.la,
  .theme-contact-info__list .theme-contact-info span.las,
  .theme-contact-info__list .theme-contact-info span.lab,
  .theme-contact-info__list .theme-contact-info span.fa,
  .theme-contact-info__list .theme-contact-info span.fas,
  .theme-contact-info__list .theme-contact-info span.fab {
    font-size: 1.125rem;
  }
}

.theme-contact-info__list .theme-contact-info__content {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--color-body);
}

.theme-contact-info__socials {
  margin-top: 20px;
}

.theme-contact-info__socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -3px;
}

.theme-contact-info__socials ul li {
  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: 36px;
  height: 36px;
  border-radius: 6px;
  margin: 3px;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.theme-contact-info__socials ul li i,
.theme-contact-info__socials ul li svg,
.theme-contact-info__socials ul li span.la,
.theme-contact-info__socials ul li span.lab,
.theme-contact-info__socials ul li span.lar,
.theme-contact-info__socials ul li span.las,
.theme-contact-info__socials ul li span.fab,
.theme-contact-info__socials ul li span.fas,
.theme-contact-info__socials ul li span.far {
  font-size: 16px;
  width: 16px;
  -webkit-transition: .3s;
  transition: .3s;
  color: var(--color-white);
  fill: var(--color-white);
}

.theme-contact-info__socials ul li.theme-contact-facebook {
  background-color: rgba(59, 89, 152, 0.15);
}

.theme-contact-info__socials ul li.theme-contact-facebook i,
.theme-contact-info__socials ul li.theme-contact-facebook svg,
.theme-contact-info__socials ul li.theme-contact-facebook span.la,
.theme-contact-info__socials ul li.theme-contact-facebook span.lab,
.theme-contact-info__socials ul li.theme-contact-facebook span.lar,
.theme-contact-info__socials ul li.theme-contact-facebook span.las,
.theme-contact-info__socials ul li.theme-contact-facebook span.fab,
.theme-contact-info__socials ul li.theme-contact-facebook span.fas,
.theme-contact-info__socials ul li.theme-contact-facebook span.far {
  color: var(--color-facebook);
  fill: var(--color-facebook);
}

.theme-contact-info__socials ul li.theme-contact-facebook:hover {
  background-color: var(--color-facebook);
}

.theme-contact-info__socials ul li.theme-contact-facebook:hover i,
.theme-contact-info__socials ul li.theme-contact-facebook:hover svg,
.theme-contact-info__socials ul li.theme-contact-facebook:hover span.la,
.theme-contact-info__socials ul li.theme-contact-facebook:hover span.lab,
.theme-contact-info__socials ul li.theme-contact-facebook:hover span.lar,
.theme-contact-info__socials ul li.theme-contact-facebook:hover span.las,
.theme-contact-info__socials ul li.theme-contact-facebook:hover span.fab,
.theme-contact-info__socials ul li.theme-contact-facebook:hover span.fas,
.theme-contact-info__socials ul li.theme-contact-facebook:hover span.far {
  color: #fff;
  fill: #fff;
}

.theme-contact-info__socials ul li.theme-contact-twitter {
  background-color: rgba(29, 161, 242, 0.15);
}

.theme-contact-info__socials ul li.theme-contact-twitter i,
.theme-contact-info__socials ul li.theme-contact-twitter svg,
.theme-contact-info__socials ul li.theme-contact-twitter span.la,
.theme-contact-info__socials ul li.theme-contact-twitter span.lab,
.theme-contact-info__socials ul li.theme-contact-twitter span.lar,
.theme-contact-info__socials ul li.theme-contact-twitter span.las,
.theme-contact-info__socials ul li.theme-contact-twitter span.fab,
.theme-contact-info__socials ul li.theme-contact-twitter span.fas,
.theme-contact-info__socials ul li.theme-contact-twitter span.far {
  color: var(--color-twitter);
  fill: var(--color-twitter);
}

.theme-contact-info__socials ul li.theme-contact-twitter:hover {
  background-color: var(--color-twitter);
}

.theme-contact-info__socials ul li.theme-contact-twitter:hover i,
.theme-contact-info__socials ul li.theme-contact-twitter:hover svg,
.theme-contact-info__socials ul li.theme-contact-twitter:hover span.la,
.theme-contact-info__socials ul li.theme-contact-twitter:hover span.lab,
.theme-contact-info__socials ul li.theme-contact-twitter:hover span.lar,
.theme-contact-info__socials ul li.theme-contact-twitter:hover span.las,
.theme-contact-info__socials ul li.theme-contact-twitter:hover span.fab,
.theme-contact-info__socials ul li.theme-contact-twitter:hover span.fas,
.theme-contact-info__socials ul li.theme-contact-twitter:hover span.far {
  color: #fff;
  fill: #fff;
}

.theme-contact-info__socials ul li.theme-contact-youtube {
  background-color: rgba(205, 32, 31, 0.15);
}

.theme-contact-info__socials ul li.theme-contact-youtube i,
.theme-contact-info__socials ul li.theme-contact-youtube svg,
.theme-contact-info__socials ul li.theme-contact-youtube span.la,
.theme-contact-info__socials ul li.theme-contact-youtube span.lab,
.theme-contact-info__socials ul li.theme-contact-youtube span.lar,
.theme-contact-info__socials ul li.theme-contact-youtube span.las,
.theme-contact-info__socials ul li.theme-contact-youtube span.fab,
.theme-contact-info__socials ul li.theme-contact-youtube span.fas,
.theme-contact-info__socials ul li.theme-contact-youtube span.far {
  color: var(--color-youtube);
  fill: var(--color-youtube);
}

.theme-contact-info__socials ul li.theme-contact-youtube:hover {
  background-color: var(--color-youtube);
}

.theme-contact-info__socials ul li.theme-contact-youtube:hover i,
.theme-contact-info__socials ul li.theme-contact-youtube:hover svg,
.theme-contact-info__socials ul li.theme-contact-youtube:hover span.la,
.theme-contact-info__socials ul li.theme-contact-youtube:hover span.lab,
.theme-contact-info__socials ul li.theme-contact-youtube:hover span.lar,
.theme-contact-info__socials ul li.theme-contact-youtube:hover span.las,
.theme-contact-info__socials ul li.theme-contact-youtube:hover span.fab,
.theme-contact-info__socials ul li.theme-contact-youtube:hover span.fas,
.theme-contact-info__socials ul li.theme-contact-youtube:hover span.far {
  color: #fff;
  fill: #fff;
}

.theme-contact-info__socials ul li.theme-contact-instagram {
  background-color: rgba(38, 38, 38, 0.15);
}

.theme-contact-info__socials ul li.theme-contact-instagram i,
.theme-contact-info__socials ul li.theme-contact-instagram svg,
.theme-contact-info__socials ul li.theme-contact-instagram span.la,
.theme-contact-info__socials ul li.theme-contact-instagram span.lab,
.theme-contact-info__socials ul li.theme-contact-instagram span.lar,
.theme-contact-info__socials ul li.theme-contact-instagram span.las,
.theme-contact-info__socials ul li.theme-contact-instagram span.fab,
.theme-contact-info__socials ul li.theme-contact-instagram span.fas,
.theme-contact-info__socials ul li.theme-contact-instagram span.far {
  color: var(--color-instagram);
  fill: var(--color-instagram);
}

.theme-contact-info__socials ul li.theme-contact-instagram:hover {
  background-color: var(--color-instagram);
}

.theme-contact-info__socials ul li.theme-contact-instagram:hover i,
.theme-contact-info__socials ul li.theme-contact-instagram:hover svg,
.theme-contact-info__socials ul li.theme-contact-instagram:hover span.la,
.theme-contact-info__socials ul li.theme-contact-instagram:hover span.lab,
.theme-contact-info__socials ul li.theme-contact-instagram:hover span.lar,
.theme-contact-info__socials ul li.theme-contact-instagram:hover span.las,
.theme-contact-info__socials ul li.theme-contact-instagram:hover span.fab,
.theme-contact-info__socials ul li.theme-contact-instagram:hover span.fas,
.theme-contact-info__socials ul li.theme-contact-instagram:hover span.far {
  color: #fff;
  fill: #fff;
}

.theme-contact-info__socials ul li.theme-contact-linkedin {
  background-color: rgba(0, 119, 181, 0.15);
}

.theme-contact-info__socials ul li.theme-contact-linkedin i,
.theme-contact-info__socials ul li.theme-contact-linkedin svg,
.theme-contact-info__socials ul li.theme-contact-linkedin span.la,
.theme-contact-info__socials ul li.theme-contact-linkedin span.lab,
.theme-contact-info__socials ul li.theme-contact-linkedin span.lar,
.theme-contact-info__socials ul li.theme-contact-linkedin span.las,
.theme-contact-info__socials ul li.theme-contact-linkedin span.fab,
.theme-contact-info__socials ul li.theme-contact-linkedin span.fas,
.theme-contact-info__socials ul li.theme-contact-linkedin span.far {
  color: var(--color-linkedin);
  fill: var(--color-linkedin);
}

.theme-contact-info__socials ul li.theme-contact-linkedin:hover {
  background-color: var(--color-linkedin);
}

.theme-contact-info__socials ul li.theme-contact-linkedin:hover i,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover svg,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover span.la,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover span.lab,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover span.lar,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover span.las,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover span.fab,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover span.fas,
.theme-contact-info__socials ul li.theme-contact-linkedin:hover span.far {
  color: #fff;
  fill: #fff;
}

/* Theme Contact Form */
.theme-contact-form.card.theme-card {
  text-align: left;
  -webkit-box-shadow: 0 3px 5px rgba(143, 142, 159, 0.05);
          box-shadow: 0 3px 5px rgba(143, 142, 159, 0.05);
}

.theme-contact-form.card.theme-card .card-body.theme-card-body {
  padding: 30px;
}

@media only screen and (max-width: 375px) {
  .theme-contact-form.card.theme-card .card-body.theme-card-body {
    padding: 30px 15px;
  }
}

.theme-contact-form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.theme-contact-form p:last-child {
  margin-bottom: 0;
}

.theme-contact-form .btn-send {
  margin-top: 20px;
}

.theme-contact-form .ajax-loader {
  position: absolute;
  right: 20px;
  bottom: 40px;
  z-index: 22;
}

/* Theme Contact Modal */
.theme-contact-modal.theme-modal .modal-body {
  padding-bottom: 50px;
}

.theme-contact-modal.theme-modal .modal-body textarea {
  min-height: 99px;
  resize: none;
}

/* Warning Style */
.wpcf7-response-output {
  background-color: rgba(255, 185, 0, 0.09);
  color: var(--color-warning);
  border: 0 none !important;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}

.wpcf7-form.sent .wpcf7-response-output {
  background-color: rgba(40, 168, 0, 0.09);
  color: var(--color-success);
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0 1em;
}

/*-----------------------
#. Blog
-----------------------*/
.directorist-content-active .theme-blog-each {
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .theme-blog-grid-area .theme-pagination-area {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .theme-blog-grid-area .theme-pagination-area {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .theme-blog-grid-area .sidebar-widget-area {
    margin-top: 30px;
  }
}

/* Blog Each */
.theme-blog-each {
  -webkit-box-shadow: 0 3px 5px rgba(146, 153, 184, 0.05);
          box-shadow: 0 3px 5px rgba(146, 153, 184, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.theme-blog-each .theme-blog-card:hover .theme-blog-card__thumbnail img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.theme-blog-each .theme-blog-card__thumbnail {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.theme-blog-each .theme-blog-card__thumbnail img {
  width: 100%;
  max-height: 220px;
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.0001);
          transform: scale(1.0001);
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 6px 6px 0 0;
}

.theme-blog-each .theme-blog-card__details {
  padding: 22px 20px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
}

.theme-blog-each .theme-blog-card__content .theme-blog-card__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.theme-blog-each .theme-blog-card__content .theme-blog-card__title a {
  text-decoration: none;
  color: var(--color-dark);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.theme-blog-each .theme-blog-card__content .theme-blog-card__title a:hover {
  color: var(--color-primary);
}

.theme-blog-each .theme-blog-card__content .theme-blog-card__title.theme-related-post-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.theme-blog-each .theme-blog-card__content .theme-blog-card__summary p {
  font-size: 14px;
}

.theme-blog-each .theme-blog-card__meta-list {
  font-size: 15px;
}

.theme-blog-each .theme-blog-card__meta-list ul {
  margin-bottom: 0;
  padding: 0;
}

.theme-blog-each .theme-blog-card__meta-list ul li {
  display: inline-block;
}

.theme-blog-each .theme-blog-card__meta-list ul li:not(:last-child) {
  margin-right: 3px;
}

.theme-blog-each .theme-blog-card__meta-list ul li span {
  font-size: 13px;
  color: var(--color-light-gray);
}

.theme-blog-each .theme-blog-card__meta-list ul li a {
  text-decoration: none;
}

.theme-blog-each .theme-blog-card__meta-list ul li + li {
  position: relative;
  padding-left: 10px;
}

.theme-blog-each .theme-blog-card__meta-list ul li + li:after {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #b7b7c5;
  border-radius: 50%;
  left: 0;
  top: 50%;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.theme-blog-each .theme-blog-card__meta-list ul li.theme-blog-card_category-meta a {
  font-size: 13px;
  color: var(--color-info);
}

.theme-blog-each .theme-blog-card__meta-list.theme-related-post-meta {
  margin: 0;
}

.theme-blog-each .theme-blog-card__meta-list.theme-related-post-meta span {
  font-size: 14px;
}

.theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup {
  display: inline-block;
  position: relative;
  margin-left: 5px;
  cursor: pointer;
  color: var(--color-dark);
}

.theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup:hover .theme-blog-category-meta__popup__content {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup .theme-blog-category-meta__popup {
  display: inline-block;
  position: relative;
  margin-left: 5px;
  cursor: pointer;
  color: var(--color-dark);
}

.theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup .theme-blog-category-meta__extran-count {
  color: var(--color-dark);
  font-size: 14px;
}

.theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup .theme-blog-category-meta__popup__content {
  display: block;
  position: absolute;
  width: 140px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  bottom: 25px;
  left: -5px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  background: #fff;
  line-break: auto;
  word-break: break-word;
  padding: 7px 10px;
  border-radius: 3px;
  z-index: 2;
  -webkit-box-shadow: 0 3px 5px rgba(143, 142, 159, 0.2);
          box-shadow: 0 3px 5px rgba(143, 142, 159, 0.2);
  color: var(--color-gray);
}

@media only screen and (max-width: 575px) {
  .theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup .theme-blog-category-meta__popup__content {
    left: auto;
    right: 0;
  }
}

.theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup .theme-blog-category-meta__popup__content a {
  font-size: 14px;
  display: block;
  color: var(--color-body);
}

.theme-blog-each .theme-blog-card__meta-list ul li .theme-blog-category-meta__popup .theme-blog-category-meta__popup__content a:hover {
  color: var(--color-primary);
}

/* Single Blog */
.theme-single-blog {
  padding: 80px 0 110px;
}

@media only screen and (max-width: 991px) {
  .theme-single-blog {
    padding: 60px 0 60px;
  }
}

@media only screen and (max-width: 767px) {
  .theme-single-blog {
    padding: 40px 0 40px;
  }
}

/* Single Blog Thumbnail */
.theme-post-single .theme-post-thumbnail {
  overflow: hidden;
}

.theme-post-single .theme-post-thumbnail img {
  width: 100%;
  height: auto;
}

/* Single Blog Content Style */
.theme-post-single .theme-post-content .theme-post-title {
  font-size: calc(1.125rem + 1.5vw);
  font-weight: 600;
  margin: 47px 0 28px;
  word-wrap: break-word;
  color: var(--color-dark);
}

@media (min-width: 1200px) {
  .theme-post-single .theme-post-content .theme-post-title {
    font-size: 2.25rem;
  }
}

@media only screen and (max-width: 991px) {
  .theme-post-single .theme-post-content .theme-post-title {
    font-size: calc(1.1rem + 1.2vw);
  }
}

@media only screen and (max-width: 991px) and (min-width: 1200px) {
  .theme-post-single .theme-post-content .theme-post-title {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 991px) {
  .theme-post-single .theme-post-content .theme-post-title {
    font-size: calc(1.0875rem + 1.05vw);
  }
}

@media only screen and (max-width: 991px) and (min-width: 1200px) {
  .theme-post-single .theme-post-content .theme-post-title {
    font-size: 1.875rem;
  }
}

.theme-post-single .theme-post-content p:not(:last-child) {
  margin-bottom: 20px;
}

.theme-post-single .theme-post-content h1,
.theme-post-single .theme-post-content h2,
.theme-post-single .theme-post-content h3,
.theme-post-single .theme-post-content h4,
.theme-post-single .theme-post-content h5,
.theme-post-single .theme-post-content h6 {
  margin-bottom: 18px;
}

.theme-post-single .theme-post-content .wp-block-image {
  margin: 36px 0 32px;
}

/* Single Blog Bockquote */
.theme-post-single .theme-post-body .wp-block-quote {
  max-width: 700px;
  padding: 15px 45px;
  margin: 25px 0 45px 20px;
  border-left: 2px solid var(--color-primary);
}

@media only screen and (max-width: 375px) {
  .theme-post-single .theme-post-body .wp-block-quote {
    padding: 15px 25px;
    margin: 20px 0 25px 15px;
  }
}

.theme-post-single .theme-post-body .wp-block-quote p {
  font-size: 18px;
  line-height: 1.63;
  color: var(--color-dark);
  position: relative;
  margin-bottom: 12px;
}

@media only screen and (max-width: 375px) {
  .theme-post-single .theme-post-body .wp-block-quote p {
    font-size: 16px;
  }
}

.theme-post-single .theme-post-body .wp-block-quote p:before {
  position: absolute;
  left: -30px;
  top: -10px;
  font-family: "theme-icons";
  font-size: 25px;
  font-weight: 600;
  content: "\4a";
  color: #aeb9cd;
}

@media only screen and (max-width: 375px) {
  .theme-post-single .theme-post-body .wp-block-quote p:before {
    left: -22px;
    top: -5px;
    font-size: 20px;
  }
}

.theme-post-single .theme-post-body .wp-block-quote p:after {
  margin-left: 4px;
  font-family: "theme-icons";
  font-size: 25px;
  font-weight: 600;
  content: "\49";
  color: #aeb9cd;
  position: relative;
  top: 3px;
}

@media only screen and (max-width: 375px) {
  .theme-post-single .theme-post-body .wp-block-quote p:after {
    font-size: 20px;
  }
}

.theme-post-single .theme-post-body .wp-block-quote cite {
  font-style: normal;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  padding-left: 32px;
  color: #5c637e;
}

.theme-post-single .theme-post-body .wp-block-quote cite:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 22;
  background-color: var(--color-light);
}

.theme-post-single .theme-post-body .wp-block-quote cite strong {
  font-weight: 600;
  margin-right: 3px;
  color: var(--color-dark);
}

.theme-post-single .theme-post-body ul li {
  margin-bottom: 15px;
}

.theme-post-single .theme-post-body ul li:last-child {
  margin-bottom: 0;
}

/* Post Single Meta */
.theme-post-single .theme-post-content .theme-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 45px 0;
}

.theme-post-single .theme-post-content .theme-post-meta .author-avatar {
  margin-right: 10px;
}

.theme-post-single .theme-post-content .theme-post-meta ul {
  padding-left: 6px;
  padding: 0;
  margin: 0;
}

.theme-post-single .theme-post-content .theme-post-meta ul li {
  display: inline-block;
  position: relative;
  margin-right: 3px;
  padding-left: 10px;
  color: var(--color-body);
}

@media only screen and (max-width: 479px) {
  .theme-post-single .theme-post-content .theme-post-meta ul li {
    display: block;
  }
}

.theme-post-single .theme-post-content .theme-post-meta ul li:first-child {
  padding-left: 0;
}

.theme-post-single .theme-post-content .theme-post-meta ul li:first-child span {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.theme-post-single .theme-post-content .theme-post-meta ul li:first-child img {
  margin-right: 5px;
}

.theme-post-single .theme-post-content .theme-post-meta ul li:first-child:before {
  display: none;
}

@media only screen and (max-width: 479px) {
  .theme-post-single .theme-post-content .theme-post-meta ul li:first-child {
    margin: 0 0 10px;
  }
}

.theme-post-single .theme-post-content .theme-post-meta ul li:before {
  position: absolute;
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-light);
}

.theme-post-single .theme-post-content .theme-post-meta ul li a {
  text-decoration: none;
  color: var(--color-primary);
}

.theme-post-single .theme-post-content .theme-post-meta ul li a:hover {
  color: var(--color-info);
}

.theme-post-single .theme-post-content .theme-post-meta ul li a,
.theme-post-single .theme-post-content .theme-post-meta ul li span {
  font-size: 15px;
}

.theme-post-single .theme-post-content .theme-post-meta ul li span {
  color: #7b839b;
}

/* Post Single Body */
.theme-post-single .theme-post-header .theme-post-title {
  font-size: 36px;
  font-weight: 600;
  margin: 47px 0 28px;
}

@media only screen and (max-width: 991px) {
  .theme-post-single .theme-post-header .theme-post-title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .theme-post-single .theme-post-header .theme-post-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 375px) {
  .theme-post-single .theme-post-header .theme-post-title {
    font-size: 28px;
  }
}

.theme-post-single .theme-post-body h2 {
  font-size: 30px;
  font-weight: 600;
  margin-top: 40px;
}

.theme-post-single .theme-post-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 45px;
}

.theme-post-single .theme-post-body h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
}

.theme-post-single .theme-post-body h5 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 52px;
}

.theme-post-single .theme-post-body h6 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 50px;
}

.theme-post-single .theme-post-body p {
  font-size: 16px;
  line-height: 1.67;
}

/*  Post Single List */
.theme-post-single .theme-post-content ul {
  padding-left: 15px;
  list-style-type: none;
}

.theme-post-single .theme-post-content ul li {
  font-size: calc(1.0125rem + 0.15vw);
  position: relative;
  padding-left: 20px;
}

@media (min-width: 1200px) {
  .theme-post-single .theme-post-content ul li {
    font-size: 1.125rem;
  }
}

.theme-post-single .theme-post-content ul li:before {
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background-color: var(--color-dark);
}

.theme-post-single .theme-post-content ul li strong {
  font-weight: 600;
  color: var(--color-dark);
}

.theme-post-single .theme-post-content ul li ol li {
  padding-left: 0;
}

.theme-post-single .theme-post-content ul li ol li:before {
  display: none;
}

.theme-post-single .theme-post-content ol {
  padding: 0 15px;
  margin-left: 10px;
}

.theme-post-single .theme-post-content ol li {
  font-size: 1rem;
}

.theme-post-single .theme-post-content ol li:not(:last-child) {
  margin-bottom: 18px;
}

.theme-post-single .theme-post-content ol li:marker {
  font-weight: 600;
  color: #1A1B29;
}

/* Post Tags */
/*  Post Footer */
.theme-post-single .theme-post-bottom {
  margin-top: 50px;
}

.theme-post-single .theme-post-bottom .theme-post-tags {
  margin-bottom: 45px;
}

.theme-post-single .theme-post-bottom .theme-post-tags ul {
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -4px;
}

.theme-post-single .theme-post-bottom .theme-post-tags ul li {
  margin: 4px;
}

.theme-post-single .theme-post-bottom .theme-post-tags ul li a {
  font-size: 14px;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  text-decoration: none;
  line-height: normal;
  color: var(--color-body);
  background-color: var(--color-bg-light);
}

.theme-post-single .theme-post-bottom .theme-post-tags ul li a:hover {
  color: #fff;
  background-color: var(--color-primary);
}

.theme-post-single .theme-post-bottom .theme-post-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 479px) {
  .theme-post-single .theme-post-bottom .theme-post-social {
    display: block;
  }
}

.theme-post-single .theme-post-bottom .theme-post-social__title {
  font-size: 15px;
  font-weight: 500;
  margin-right: 22px;
  min-width: 120px;
  color: var(--color-dark);
}

@media only screen and (max-width: 479px) {
  .theme-post-single .theme-post-bottom .theme-post-social__title {
    display: block;
    margin: 0 0 15px;
  }
}

.theme-post-single .theme-post-bottom .theme-post-social__list {
  margin: -5px -4px;
}

.theme-post-single .theme-post-bottom .theme-post-social__list li {
  display: inline-block;
  margin: 5px 4px;
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a {
  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;
  font-size: 14px;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--color-body);
  border: 1px solid var(--color-border-light);
  background-color: var(--color-white);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a span {
  line-height: 0.5;
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a svg {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a span.las {
  font-size: 15px;
  margin-right: 4px;
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook span.las {
  color: var(--color-facebook);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-facebook svg {
  fill: var(--color-facebook);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter span.las {
  color: var(--color-twitter);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-twitter svg {
  fill: var(--color-twitter);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin span.las {
  color: var(--color-linkedin);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-linkedin svg {
  fill: var(--color-linkedin);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest span.las {
  color: var(--color-pinterest);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-pinterest svg {
  fill: var(--color-pinterest);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr span.las {
  color: var(--color-tumblr);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-tumblr svg {
  fill: var(--color-tumblr);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit span.las {
  color: var(--color-reddit);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-reddit svg {
  fill: var(--color-reddit);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk span.las {
  color: var(--color-vk);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-vk svg {
  fill: var(--color-vk);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy span.las {
  color: var(--color-copy);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a.theme-post-social-copy svg {
  fill: var(--color-copy);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover span.las {
  color: var(--color-white);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover svg {
  fill: var(--color-white);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-facebook {
  color: var(--color-white);
  background-color: var(--color-facebook);
  border: 1px solid var(--color-facebook);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-twitter {
  color: var(--color-white);
  background-color: var(--color-twitter);
  border: 1px solid var(--color-twitter);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-linkedin {
  color: var(--color-white);
  background-color: var(--color-linkedin);
  border: 1px solid var(--color-linkedin);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-pinterest {
  color: var(--color-white);
  background-color: var(--color-pinterest);
  border: 1px solid var(--color-pinterest);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-tumblr {
  color: var(--color-white);
  background-color: var(--color-tumblr);
  border: 1px solid var(--color-tumblr);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-reddit {
  color: var(--color-white);
  background-color: var(--color-reddit);
  border: 1px solid var(--color-reddit);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-vk {
  color: var(--color-white);
  background-color: var(--color-vk);
  border: 1px solid var(--color-vk);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy {
  color: var(--color-white);
  background-color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy i,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy span.fa,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy span.fab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy span.fas,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy span.la,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy span.lab,
.theme-post-single .theme-post-bottom .theme-post-social__list li a:hover.theme-post-social-copy span.las {
  color: var(--color-white);
}

.theme-post-single .theme-post-bottom .theme-post-social .post-social-title {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-dark);
}

/* Author Block */
.theme-post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-shadow: 0 15px 30px rgba(143, 142, 159, 0.1);
          box-shadow: 0 15px 30px rgba(143, 142, 159, 0.1);
  border-radius: 4px;
  border: 1px solid var(--color-border-lighter);
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .theme-post-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.theme-post-author__thumb {
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .theme-post-author__thumb {
    margin: 0 0 15px 0;
  }
}

.theme-post-author__thumb a img {
  min-width: 70px;
  height: 70px;
  max-width: 70px;
  border-radius: 50%;
}

.theme-post-author__name {
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.theme-post-author__name span {
  color: #1A1B29;
}

.theme-post-author__name a {
  text-decoration: none;
  color: var(--color-dark);
}

.theme-post-author__name a:hover {
  color: var(--color-primary);
}

.theme-post-author__bio {
  margin-bottom: 0;
}

.theme-post-author__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px -5px -5px -5px;
}

.theme-post-author__social li {
  margin: 5px;
}

.theme-post-author__social li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  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;
  text-decoration: none;
  border: 1px solid var(--color-border);
  -webkit-transition: .3s;
  transition: .3s;
  color: var(--color-light-gray);
}

.theme-post-author__social li a:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.theme-post-author__social li a:hover i,
.theme-post-author__social li a:hover span.la,
.theme-post-author__social li a:hover span.las,
.theme-post-author__social li a:hover span.lab,
.theme-post-author__social li a:hover span.lar,
.theme-post-author__social li a:hover span.fa,
.theme-post-author__social li a:hover span.fab,
.theme-post-author__social li a:hover span.far,
.theme-post-author__social li a:hover span.fas {
  color: #fff;
}

.theme-post-author__social li a:hover svg,
.theme-post-author__social li a:hover img {
  width: 16px;
  fill: var(--color-white);
}

.theme-post-author__social li a i,
.theme-post-author__social li a span.la,
.theme-post-author__social li a span.las,
.theme-post-author__social li a span.lab,
.theme-post-author__social li a span.lar,
.theme-post-author__social li a span.fa,
.theme-post-author__social li a span.fab,
.theme-post-author__social li a span.far,
.theme-post-author__social li a span.fas {
  font-size: 18px;
}

.theme-post-author__social li a svg,
.theme-post-author__social li a img {
  width: 16px;
  fill: var(--color-light-gray);
}

/* Post Pagination */
.theme-post-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid var(--color-border-light);
  margin-top: 48px;
  padding-bottom: 40px;
}

.theme-post-pagination__each {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.theme-post-pagination__each .theme-post-pagination__label {
  margin-bottom: 6px;
  font-size: 14px;
}

.theme-post-pagination__each .theme-post-pagination__title {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  word-break: break-all;
  color: var(--color-dark);
}

.theme-post-pagination__each .theme-post-pagination__title:hover {
  color: var(--color-primary);
}

.theme-post-pagination__each .theme-post-pagination__meta span,
.theme-post-pagination__each .theme-post-pagination__meta a {
  text-decoration: none;
  color: var(--color-body);
}

.theme-post-pagination__each .theme-post-pagination__meta .theme-post-pagination-cats a:hover {
  color: var(--color-primary);
}

.theme-post-pagination .theme-post-pagination__each.ol-post-pagination__prev {
  margin-right: 15px;
}

.theme-post-pagination__next {
  text-align: right;
}

/* Related Post */
.theme-related-post-area {
  padding: 55px 0;
  border-bottom: 1px solid var(--color-border-light);
}

@media only screen and (max-width: 767px) {
  .theme-related-post-area {
    padding: 40px 0 30px;
  }
}

.theme-related-post-area .related-post-title {
  margin-bottom: 34px;
}

.theme-related-post-area .related-post-title h1,
.theme-related-post-area .related-post-title h2,
.theme-related-post-area .related-post-title h3,
.theme-related-post-area .related-post-title h4,
.theme-related-post-area .related-post-title h5,
.theme-related-post-area .related-post-title h6 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 15px;
}

.theme-related-post-area .theme-related-blog-each {
  max-width: 430px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .theme-related-post-area .theme-related-blog-each {
    margin: 0 0 30px;
  }
}

.theme-related-post-area .theme-related-blog-each .theme-blog-card__thumbnail img {
  max-height: 170px;
  min-height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}

.theme-related-post-area .theme-related-post-sep {
  display: inline-block;
  margin: 0 -1px 0 6px;
}

.theme-related-post-area .theme-related-post-cats a {
  color: var(--color-primary);
}

/* Widget Style */
.widget.atbd_widget, .widget.atbd_widget[id^="bd"], .widget.atbd_widget[id^="dcl"] {
  border-color: #e1e4ec;
  border-radius: 4px;
}

.widget.atbd_widget .widgettitle.atbd_widget_title, .widget.atbd_widget[id^="bd"] .widgettitle.atbd_widget_title, .widget.atbd_widget[id^="dcl"] .widgettitle.atbd_widget_title {
  font-size: 16px;
  padding: 17.5px 25px;
  font-weight: 500;
  color: #1A1B29;
}

.widget .widget-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 40px;
}

/* Widget Search Style  */
.widget_search .search-form,
.theme-no-result .search-form,
.search-widget .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 25px;
}

.widget_search .search-form label,
.theme-no-result .search-form label,
.search-widget .search-form label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.widget_search .search-form .search-field,
.theme-no-result .search-form .search-field,
.search-widget .search-form .search-field {
  width: 100%;
  border: 1px solid var(--color-border-light);
  min-height: 46px;
  border-radius: 5px 0 0 5px;
  padding: 10px 18px;
}

.widget_search .search-form .search-field:focus,
.theme-no-result .search-form .search-field:focus,
.search-widget .search-form .search-field:focus {
  outline: none;
}

.widget_search .search-form .search-submit,
.theme-no-result .search-form .search-submit,
.search-widget .search-form .search-submit {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

/* Widget list */
.widget.atbd_widget > ul {
  list-style: none;
  padding: 18px 20px;
}

.widget.atbd_widget > ul > li {
  font-size: 14px;
  line-height: 1.45;
}

.widget.atbd_widget > ul > li:not(:last-child) {
  margin-bottom: 15px;
}

.widget.atbd_widget > ul > li a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.widget.atbd_widget > ul > li a:hover {
  color: #17B978;
}

/* Widget author social */
.widget.widget_dclassified_author_info_socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -3px;
}

.widget.widget_dclassified_author_info_socials ul li {
  margin: 3px !important;
}

.widget.widget_dclassified_author_info_socials ul li a {
  font-size: 16px;
  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: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: var(--color-bg-section);
}

.widget.widget_dclassified_author_info_socials ul li a svg {
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.widget.widget_dclassified_author_info_socials ul li a.facebook svg {
  fill: var(--color-facebook);
}

.widget.widget_dclassified_author_info_socials ul li a.twitter svg {
  fill: var(--color-twitter);
}

.widget.widget_dclassified_author_info_socials ul li a.linkedin svg {
  fill: var(--color-linkedin);
}

.widget.widget_dclassified_author_info_socials ul li a.pinterest svg {
  fill: var(--color-pinterest);
}

.widget.widget_dclassified_author_info_socials ul li a.instagram svg {
  fill: var(--color-instagram);
}

.widget.widget_dclassified_author_info_socials ul li a.github svg {
  fill: var(--color-github);
}

.widget.widget_dclassified_author_info_socials ul li a.wordpress svg {
  fill: var(--color-wordpress);
}

.widget.widget_dclassified_author_info_socials ul li a.youtube-play svg {
  fill: var(--color-youtube);
}

.widget.widget_dclassified_author_info_socials ul li a.rss svg {
  fill: #EA6221;
}

.widget.widget_dclassified_author_info_socials ul li a:hover {
  background-color: var(--color-dark);
}

.widget.widget_dclassified_author_info_socials ul li a:hover svg {
  fill: var(--color-white);
}

/* Widget Post */
.widget.widget_dclassified_post {
  padding: 0;
}

.widget.widget_dclassified_post .theme-posts .theme-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.widget.widget_dclassified_post .theme-posts .theme-item:not(:last-child) {
  margin-bottom: 30px;
}

.widget.widget_dclassified_post .theme-posts .theme-item .theme-thumb {
  margin-right: 15px;
}

.widget.widget_dclassified_post .theme-posts .theme-item .theme-thumb img {
  max-width: 70px;
  border-radius: 8px;
}

.widget.widget_dclassified_post .theme-posts .theme-item .theme-title {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.widget.widget_dclassified_post .theme-posts .theme-item .theme-date {
  color: var(--color-light-gray);
}

.widget.widget_dclassified_post .theme-blog-each {
  padding: 0 25px;
}

/* About Widget */
.theme-about-widget__img {
  margin-bottom: 28px;
}

.theme-about-widget__img img {
  max-width: 130px;
}

.theme-about-widget__content {
  font-size: 15px;
  color: var(--color-footer-text);
}

.theme-about-widget__social {
  margin-top: 26px;
}

.theme-about-widget__social ul {
  margin: -3.5px;
}

.theme-about-widget__social ul li a {
  -webkit-transition: .3s;
  transition: .3s;
}

.theme-about-widget__social ul li a svg {
  fill: var(--color-white);
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.theme-about-widget__social ul li a i,
.theme-about-widget__social ul li a span.la,
.theme-about-widget__social ul li a span.lab,
.theme-about-widget__social ul li a span.lar,
.theme-about-widget__social ul li a span.las,
.theme-about-widget__social ul li a span.fab,
.theme-about-widget__social ul li a span.fas,
.theme-about-widget__social ul li a span.far {
  -webkit-transition: .3s;
  transition: .3s;
}

.theme-about-widget__social ul li {
  margin: 3.5px;
}

.theme-about-widget__social ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 38px;
  width: 38px;
  text-decoration: none;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.theme-about-widget__social ul li a i,
.theme-about-widget__social ul li a span.la,
.theme-about-widget__social ul li a span.lab,
.theme-about-widget__social ul li a span.las,
.theme-about-widget__social ul li a span.lar,
.theme-about-widget__social ul li a span.fa,
.theme-about-widget__social ul li a span.fas,
.theme-about-widget__social ul li a span.fab {
  color: #fff;
}

.theme-about-widget__social ul li a:hover {
  background-color: var(--color-primary);
}

.theme-footer-top-area .theme-about-widget img {
  max-width: 130px;
}

.theme-footer-top-area a {
  font-size: 14px;
  color: var(--color-body);
  text-decoration: none;
}

.theme-footer-top-area a:hover {
  color: var(--color-primary);
}

.theme-footer-top-area select {
  min-height: 46px;
  border-radius: 6px;
  padding: 0 15px;
  border-color: var(--color-border);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.theme-footer-top-area .widget_calendar .wp-calendar-nav {
  display: none;
}

.theme-footer-top-area select::-ms-expand {
  display: none;
}

.theme-footer-top-area .widget_tag_cloud .tagcloud {
  padding: 0;
}

.theme-footer-top-area .widget.widget_nav_menu ul ul {
  padding-left: 20px;
}

.theme-footer-top-area .theme-about-widget__social ul li a {
  border-radius: 100%;
}

/* Widget Nav */
.widget.widget_nav_menu ul {
  list-style: none;
  padding: 0;
}

.widget.widget_nav_menu ul li:not(:last-child) {
  margin-bottom: 4px;
}

.widget.widget_nav_menu ul li a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-footer-link);
}

.widget.widget_nav_menu ul li a:hover {
  color: var(--color-footer-link-hover);
}

/* Text Widget */
.widget .textwidget {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-gray);
}

.widget .textwidget p {
  margin-bottom: 0;
  color: var(--color-footer-text);
}

.widget .textwidget .mc4wp-form {
  margin-top: 20px;
}

.widget .textwidget img {
  width: 100%;
  height: auto;
}

.directorist-content-active .atbd_widget.widget_text .textwidget {
  padding: 22px 25px;
}

/* Widget Subscription Box */
.widget .theme-subscription-box {
  position: relative;
  background: var(--color-border);
  border: 1px solid var(--color-white);
  border-radius: 5px;
}

.widget .theme-subscription-box__input input {
  min-height: 48px;
  padding: 0 50px 0 20px;
  border-radius: unset;
  border: none;
  background: unset;
}

.widget .theme-subscription-box__input input:focus {
  outline: none;
}

.widget .theme-subscription-box__input input::-webkit-input-placeholder {
  font-size: 14px;
}

.widget .theme-subscription-box__input input::-moz-placeholder {
  font-size: 14px;
}

.widget .theme-subscription-box__input input::-ms-input-placeholder {
  font-size: 14px;
}

.widget .theme-subscription-box__input input::placeholder {
  font-size: 14px;
}

.widget .theme-subscription-box__submit {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
}

.widget .theme-subscription-box__submit button {
  min-height: 48px;
  padding: 0 13px;
  border: 0 none;
  background-color: unset;
  border-radius: unset;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget .theme-subscription-box__submit button i,
.widget .theme-subscription-box__submit button span.la,
.widget .theme-subscription-box__submit button span.las,
.widget .theme-subscription-box__submit button span.lab,
.widget .theme-subscription-box__submit button span.lar,
.widget .theme-subscription-box__submit button span.fa,
.widget .theme-subscription-box__submit button span.fab,
.widget .theme-subscription-box__submit button span.fas {
  position: relative;
  top: 2px;
  color: var(--color-primary);
  font-size: 22px;
}

.widget .theme-subscription-box__submit button:hover i,
.widget .theme-subscription-box__submit button:hover span.la,
.widget .theme-subscription-box__submit button:hover span.las,
.widget .theme-subscription-box__submit button:hover span.lab,
.widget .theme-subscription-box__submit button:hover span.lar,
.widget .theme-subscription-box__submit button:hover span.fa,
.widget .theme-subscription-box__submit button:hover span.fab,
.widget .theme-subscription-box__submit button:hover span.fas {
  color: var(--color-dark);
}

.widget.theme_widget .menu,
.widget.theme_widget .widget-module-content,
.widget.theme_widget .wp-block-latest-posts__list,
.widget.theme_widget .wp-block-latest-comments,
.widget.theme_widget .wp-block-archives-list,
.widget.theme_widget .wp-block-categories-list,
.widget.theme_widget .aboutwidget,
.widget.theme_widget .menu-primary-menu-container ul,
.widget.theme_widget .wp-block-group__inner-container > h1,
.widget.theme_widget .wp-block-group__inner-container > h2,
.widget.theme_widget .wp-block-group__inner-container > h3,
.widget.theme_widget .wp-block-group__inner-container > h4,
.widget.theme_widget .wp-block-group__inner-container > h5,
.widget.theme_widget .wp-block-group__inner-container > h6,
.widget.theme_widget[id^="dcl"] > ul,
.widget.theme_widget[id^="dcl"] > form,
.widget.theme_widget[id^="bd"] > ul,
.widget.theme_widget[id^="bd"] > form,
.widget.theme_widget > ul,
.widget.theme_widget > form {
  padding: 20px 25px;
}

.widget.theme_widget .menu .atbd_widget_title,
.widget.theme_widget .widget-module-content .atbd_widget_title,
.widget.theme_widget .wp-block-latest-posts__list .atbd_widget_title,
.widget.theme_widget .wp-block-latest-comments .atbd_widget_title,
.widget.theme_widget .wp-block-archives-list .atbd_widget_title,
.widget.theme_widget .wp-block-categories-list .atbd_widget_title,
.widget.theme_widget .aboutwidget .atbd_widget_title,
.widget.theme_widget .menu-primary-menu-container ul .atbd_widget_title,
.widget.theme_widget .wp-block-group__inner-container > h1 .atbd_widget_title,
.widget.theme_widget .wp-block-group__inner-container > h2 .atbd_widget_title,
.widget.theme_widget .wp-block-group__inner-container > h3 .atbd_widget_title,
.widget.theme_widget .wp-block-group__inner-container > h4 .atbd_widget_title,
.widget.theme_widget .wp-block-group__inner-container > h5 .atbd_widget_title,
.widget.theme_widget .wp-block-group__inner-container > h6 .atbd_widget_title,
.widget.theme_widget[id^="dcl"] > ul .atbd_widget_title,
.widget.theme_widget[id^="dcl"] > form .atbd_widget_title,
.widget.theme_widget[id^="bd"] > ul .atbd_widget_title,
.widget.theme_widget[id^="bd"] > form .atbd_widget_title,
.widget.theme_widget > ul .atbd_widget_title,
.widget.theme_widget > form .atbd_widget_title {
  padding: 0;
}

.directorist-content-active .widget.atbd_widget .menu,
.directorist-content-active .widget.atbd_widget .widget-module-content,
.directorist-content-active .widget.atbd_widget .wp-block-latest-posts__list,
.directorist-content-active .widget.atbd_widget .wp-block-latest-comments,
.directorist-content-active .widget.atbd_widget .wp-block-archives-list,
.directorist-content-active .widget.atbd_widget .wp-block-categories-list,
.directorist-content-active .widget.atbd_widget .aboutwidget,
.directorist-content-active .widget.atbd_widget .menu-primary-menu-container ul,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h1,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h2,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h3,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h4,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h5,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h6,
.directorist-content-active .widget.atbd_widget[id^="dcl"] > ul,
.directorist-content-active .widget.atbd_widget[id^="dcl"] > form,
.directorist-content-active .widget.atbd_widget[id^="bd"] > ul,
.directorist-content-active .widget.atbd_widget[id^="bd"] > form,
.directorist-content-active .widget.atbd_widget > ul,
.directorist-content-active .widget.atbd_widget > form {
  padding: 20px 25px;
}

.directorist-content-active .widget.atbd_widget .menu .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .widget-module-content .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-latest-posts__list .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-latest-comments .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-archives-list .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-categories-list .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .aboutwidget .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .menu-primary-menu-container ul .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h1 .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h2 .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h3 .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h4 .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h5 .atbd_widget_title,
.directorist-content-active .widget.atbd_widget .wp-block-group__inner-container > h6 .atbd_widget_title,
.directorist-content-active .widget.atbd_widget[id^="dcl"] > ul .atbd_widget_title,
.directorist-content-active .widget.atbd_widget[id^="dcl"] > form .atbd_widget_title,
.directorist-content-active .widget.atbd_widget[id^="bd"] > ul .atbd_widget_title,
.directorist-content-active .widget.atbd_widget[id^="bd"] > form .atbd_widget_title,
.directorist-content-active .widget.atbd_widget > ul .atbd_widget_title,
.directorist-content-active .widget.atbd_widget > form .atbd_widget_title {
  padding: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  margin: 0;
}

.widget.atbd_widget .atbdp,
.widget.atbd_widget .directorist,
.widget.atbd_widget[id^=bd] .atbdp,
.widget.atbd_widget[id^=bd] .directorist,
.widget.atbd_widget[id^=dcl] .atbdp,
.widget.atbd_widget[id^=dcl] .directorist {
  padding: 20px 25px;
}

/* Widget Onelistig Post */
.widget.widget_dclassified_post .row.theme-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.widget.widget_dclassified_post .row.theme-row .col-lg-4 {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.widget.widget_dclassified_post .theme-blog-each {
  border: 0 none;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
}

.widget.widget_dclassified_post .theme-blog-each .theme-blog-card.blog-grid-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget.widget_dclassified_post .theme-blog-each .theme-blog-card.blog-grid-card .theme-blog-card__thumbnail {
  margin-right: 10px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 6px;
}

.widget.widget_dclassified_post .theme-blog-each .theme-blog-card.blog-grid-card .theme-blog-card__thumbnail img {
  width: 60px;
  border-radius: 6px;
}

.widget.widget_dclassified_post .theme-blog-each .theme-blog-card.blog-grid-card .theme-blog-card__details {
  padding: 0;
}

.widget.widget_dclassified_post .theme-blog-each .theme-blog-card.blog-grid-card .theme-blog-card__details .theme-blog-card__title {
  margin-bottom: 0;
  font-weight: 500;
}

.widget.widget_dclassified_post .theme-blog-each .theme-blog-card.blog-grid-card .theme-blog-card__details .theme-blog-card_date-meta-text {
  font-size: 13px;
}

.widget.atbd_widget, .widget.atbd_widget[id^="bd"], .widget.atbd_widget[id^="dcl"] {
  border: 0 none;
  -webkit-box-shadow: 0 10px 40px rgba(143, 142, 159, 0.15);
          box-shadow: 0 10px 40px rgba(143, 142, 159, 0.15);
  margin-bottom: 25px;
}

.widget.atbd_widget .atbd_widget_title,
.widget.atbd_widget .widgettitle,
.widget.atbd_widget[id^="bd"] .atbd_widget_title,
.widget.atbd_widget[id^="bd"] .widgettitle,
.widget.atbd_widget[id^="dcl"] .atbd_widget_title,
.widget.atbd_widget[id^="dcl"] .widgettitle {
  font-size: 16px;
  padding: 17.5px 25px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.widget.atbd_widget .atbd_widget_title h4,
.widget.atbd_widget .widgettitle h4,
.widget.atbd_widget[id^="bd"] .atbd_widget_title h4,
.widget.atbd_widget[id^="bd"] .widgettitle h4,
.widget.atbd_widget[id^="dcl"] .atbd_widget_title h4,
.widget.atbd_widget[id^="dcl"] .widgettitle h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
}

.widget.atbd_widget .atbd_widget_title .atbd_widget_title,
.widget.atbd_widget .widgettitle .atbd_widget_title,
.widget.atbd_widget[id^="bd"] .atbd_widget_title .atbd_widget_title,
.widget.atbd_widget[id^="bd"] .widgettitle .atbd_widget_title,
.widget.atbd_widget[id^="dcl"] .atbd_widget_title .atbd_widget_title,
.widget.atbd_widget[id^="dcl"] .widgettitle .atbd_widget_title {
  padding: 0;
}

.widget.atbd_widget.widget_rss h4,
.widget.atbd_widget[id^="bd"].widget_rss h4,
.widget.atbd_widget[id^="dcl"].widget_rss h4 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.widget.atbd_widget.widget_rss h4 .rsswidget,
.widget.atbd_widget[id^="bd"].widget_rss h4 .rsswidget,
.widget.atbd_widget[id^="dcl"].widget_rss h4 .rsswidget {
  font-weight: 700;
  color: var(--color-dark);
}

.widget.atbd_widget.widget_rss h4 .rsswidget + .rsswidget,
.widget.atbd_widget[id^="bd"].widget_rss h4 .rsswidget + .rsswidget,
.widget.atbd_widget[id^="dcl"].widget_rss h4 .rsswidget + .rsswidget {
  margin-left: 5px;
}

.sidebar-widget-area .widget.atbd_widget,
.sidebar-widget-area .widget.atbd_widget[id^="bd"],
.sidebar-widget-area .widget.atbd_widget[id^="dcl"] {
  border: 1px solid var(--color-border-light);
  padding: 10px 15px 15px;
}

/*------------------------------------*\
    #. Range Slider
\*------------------------------------*/
.ui-slider {
  position: relative;
  z-index: 0;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.price-range p {
  margin-bottom: 0;
  margin-top: 15px;
}

.price-range p .amount {
  font-size: 14px;
  font-weight: 500;
}

.price-range .amount,
.price-range .amount-four {
  font-weight: 600;
  color: var(--color-dark);
}

.price-range .ui-slider-horizontal {
  background: rgba(var(--color-primary-rgba), 0.2);
  height: 4px;
  border-radius: 1.5625rem;
}

.price-range .ui-slider-horizontal .ui-slider-range {
  background-color: var(--color-secondary);
}

.price-range .ui-slider-horizontal .ui-slider-handle {
  background-color: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  cursor: pointer;
  outline: 0;
  top: -7px;
  margin-left: 0;
}

.price-range .amount-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.25rem;
}

.price-range .amount-two span {
  min-width: 6.25rem;
  display: inline-block;
  border: 1px solid var(--color-border-light);
  text-align: center;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 2.5;
  font-weight: 500;
}

.price-range.rs-primary .amount,
.price-range.rs-primary .amount-four,
.range-slider.rs-primary .amount,
.range-slider.rs-primary .amount-four {
  font-weight: 600;
  color: var(--color-dark);
}

.price-range.rs-primary .ui-slider-horizontal .ui-slider-range,
.range-slider.rs-primary .ui-slider-horizontal .ui-slider-range {
  background-color: var(--color-primary);
}

.price-range.rs-primary .ui-slider-horizontal .ui-slider-handle,
.range-slider.rs-primary .ui-slider-horizontal .ui-slider-handle {
  border-color: var(--color-primary);
}

.directorist-search-contents .ui-slider {
  top: 7px;
}

.directorist-search-contents .price-range .ui-slider-horizontal .ui-slider-handle {
  top: -7px;
}

.slider-peragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-peragraph .slider-peragraph__min,
.slider-peragraph .slider-peragraph__max {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}

.slider-peragraph .slider-peragraph__min .theme-min-label,
.slider-peragraph .slider-peragraph__max .theme-min-label {
  display: inline-block;
  margin-right: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-light-gray);
}

.slider-peragraph .slider-peragraph__min .theme-min-amount,
.slider-peragraph .slider-peragraph__min .theme-max-amount,
.slider-peragraph .slider-peragraph__max .theme-min-amount,
.slider-peragraph .slider-peragraph__max .theme-max-amount {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.slider-peragraph .slider-peragraph__sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 8px;
  color: var(--color-light-gray);
}

/*-----------------------
#. Map
-----------------------*/
/* Leaflet Map Marker Style */
.leaflet-pane .atbd_map_shape {
  background-color: var(--color-primary) !important;
}

.leaflet-pane .atbd_map_shape:before {
  border-top-color: var(--color-primary) !important;
}

.leaflet-pane .atbd_map_shape i,
.leaflet-pane .atbd_map_shape span {
  color: var(--color-white) !important;
}

.leaflet-pane .atbd_map_shape .directorist-icon-mask:after {
  background-color: var(--color-white);
}

/*------------------------------
#. Authentication
-------------------------------*/
/* Theme Auhtentication Modal */
.theme-authentication-modal .modal-content {
  border-radius: 8px;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  border: 0 none;
}

.theme-authentication-modal .modal-dialog {
  max-width: 450px;
}

@media only screen and (max-width: 575px) {
  .theme-authentication-modal .modal-dialog {
    max-width: 100%;
  }
}

.theme-authentication-modal .modal-header {
  padding: 12px 30px;
}

.theme-authentication-modal .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
}

.theme-authentication-modal .modal-header .theme-close {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 0;
  border: 0 none;
  background-color: var(--color-bg-lighter);
}

.theme-authentication-modal .modal-header .theme-close:hover span {
  color: var(--color-danger);
}

.theme-authentication-modal .modal-header .theme-close span {
  font-size: calc(1.0125rem + 0.15vw);
  line-height: 1;
  color: var(--color-dark);
}

@media (min-width: 1200px) {
  .theme-authentication-modal .modal-header .theme-close span {
    font-size: 1.125rem;
  }
}

.theme-authentication-modal .modal-body {
  padding: 0;
}

.theme-authentication-modal .modal-body .directorist-authentication {
  margin: 0px;
  width: 100%;
  padding: 0;
}

.theme-authentication-modal .modal-body .directorist-authentication .directorist-authentication__form {
  margin: 0px;
  padding: 30px 30px;
}

.theme-authentication-modal .modal-body .theme-close {
  position: absolute;
  top: 5px;
  right: -5px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-size: 22px;
  width: 30px;
  height: 30px;
  border: 1px solid #e3e6ef;
  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;
  border-radius: 50%;
}

.theme-authentication-modal .theme-modal-wrap {
  padding: 20px 30px 30px;
}

@media only screen and (max-width: 375px) {
  .theme-authentication-modal .theme-modal-wrap {
    padding: 20px;
  }
}

.theme-authentication-modal .theme-login-info {
  padding: 15px 20px;
  border-radius: 8px;
}

.theme-authentication-modal .theme-login-info.alert-success {
  border: 0 none;
  background-color: rgba(44, 185, 0, 0.15);
}

.theme-authentication-modal .theme-login-info ul {
  margin-bottom: 0;
}

.theme-authentication-modal .theme-login-info ul li .theme-login-info__label {
  display: inline-block;
  margin-right: 20px;
  color: var(--color-dark);
}

.theme-authentication-modal .theme-login-info ul li .theme-login-info__text {
  color: var(--color-success);
}

.theme-authentication-modal .theme-register-btn .directorist-btn {
  width: 100%;
  border-radius: 8px;
}

.theme-authentication-modal .directorist-form-group label {
  margin-bottom: 3px;
  color: var(--color-dark);
}

.theme-authentication-modal .directorist-form-group .directorist-form-element {
  border: 2px solid var(--color-border);
}

.theme-authentication-modal .directorist-form-group .directorist-form-element:focus {
  border-color: var(--color-dark);
}

.theme-authentication-modal .directorist-form-group.atbd_login_btn_wrapper .directorist-btn {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  line-height: 1;
}

.theme-authentication-modal .theme-password-activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 375px) {
  .theme-authentication-modal .theme-password-activity {
    display: block;
  }
}

.theme-authentication-modal .theme-password-activity p {
  margin-bottom: 0;
}

@media only screen and (max-width: 375px) {
  .theme-authentication-modal .theme-password-activity p {
    margin: 5px 0 0;
  }
}

.theme-authentication-modal .theme-password-activity p a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

.theme-authentication-modal .theme-password-activity p a:hover {
  color: var(--color-primary);
}

.theme-authentication-modal .theme-social-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  margin: 25px -5px -5px -5px;
}

@media only screen and (max-width: 375px) {
  .theme-authentication-modal .theme-social-login {
    display: block;
  }
}

.theme-authentication-modal .theme-social-login button {
  min-height: 46px;
  padding: 10px 30px;
  border-radius: 6px;
  margin: 5px;
  border: 1px solid var(--color-border-light);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.theme-authentication-modal .theme-social-login button:focus {
  outline: none;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
}

.theme-authentication-modal .theme-social-login button:hover {
  background-color: transparent;
}

.theme-authentication-modal .theme-social-login button:hover .fa.fa-facebook {
  color: var(--color-white);
}

.theme-authentication-modal .theme-social-login button:hover .fa.fa-google {
  color: var(--color-white);
}

.theme-authentication-modal .theme-social-login button.fb-login {
  color: #3067FF;
  border-color: #3067FF;
}

.theme-authentication-modal .theme-social-login button.fb-login:hover {
  color: var(--color-white);
  background-color: #3067FF;
}

.theme-authentication-modal .theme-social-login button.fb-google {
  color: #fd4868;
  border-color: #fd4868;
}

.theme-authentication-modal .theme-social-login button.fb-google:hover {
  color: var(--color-white);
  background-color: #fd4868;
}

.theme-authentication-modal .theme-social-login button .fa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  margin-right: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.theme-authentication-modal .theme-social-login button .fa.fa-facebook {
  color: #3067FF;
}

.theme-authentication-modal .theme-social-login button .fa.fa-google {
  color: #dd4b39;
}

.theme-authentication-modal .theme-modal-bottom {
  padding: 20px 25px;
  border-radius: 0 0 8px 8px;
  text-align: center;
  background-color: var(--color-bg-lighter);
}

.theme-authentication-modal .theme-modal-bottom p {
  font-weight: 400;
  margin-bottom: 0;
}

.theme-authentication-modal .theme-modal-bottom p a {
  text-decoration: none;
  display: inline-block;
  margin-left: 5px;
  color: var(--color-dark);
  -webkit-transition: .3s;
  transition: .3s;
}

.theme-authentication-modal .theme-modal-bottom p a:hover {
  color: var(--color-primary);
}

.theme-authentication-modal .theme-modal-bottom .message {
  padding: 15px 30px;
  text-align: center;
}

.theme-authentication-modal #recover-pass-modal {
  margin: 0 !important;
  padding: 20px 30px 30px 30px;
}

.theme-authentication-modal #recover-pass-modal .directorist-btn {
  font-size: 14px;
  margin-top: 15px;
}

.theme-authentication-modal #recover-pass-modal .directorist-form-element + p {
  margin-bottom: 0;
}

.theme-authentication-modal .error_login {
  padding: 10px 30px 0;
  text-align: center;
}

.theme-authentication-modal .error_login .success {
  color: var(--color-warning);
}

.theme-authentication-modal .directorist-checkbox input[type=checkbox]:checked + .directorist-checkbox__label:after {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.theme-authentication-modal .directorist-form-required {
  line-height: normal;
}

.theme-authentication-modal .modal {
  background-color: rgba(0, 0, 0, 0.15);
}

/* Checkout page */
.directorist-payment-gateways ul li.list-group-item {
  padding: .5rem 1rem;
}

/*---------------------------------------------
#. Comments
-----------------------------------------------*/
.comments-area {
  margin-top: 55px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .comments-area {
    margin-top: 30px;
  }
}

.comments-area .comment-title {
  margin-bottom: 54px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .comments-area .comment-title {
    margin-bottom: 30px;
  }
}

.comments-area .comment-title h3 {
  position: relative;
  margin-bottom: 0;
}

.comments-area .comment-lists > ul {
  list-style: none;
  padding: 30px;
  border: 1px solid #e1e4ec;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .comments-area .comment-lists > ul {
    padding: 15px;
  }
}

.comments-area .comment-lists ul {
  list-style: none;
}

.comments-area .comment-lists ul li {
  padding: 15px 0;
}

.comments-area .comment-lists ul li:not(:first-child) {
  border-top: 1px solid #e1e4ec;
}

.comments-area .comment-lists ul li:first-child {
  padding-top: 0;
}

.comments-area .comment-lists ul li:last-child {
  padding-bottom: 0;
}

.comments-area .comment-lists ul .children {
  padding-left: 20px;
}

@media only screen and (max-width: 479px) {
  .comments-area .comment-lists ul .children {
    padding-left: 15px;
  }
}

.comments-area .comment-lists ul .children li {
  margin-top: 15px;
  padding-top: 15px;
}

.comments-area .comment-lists ul .children li:first-child {
  border-top: 1px solid #e1e4ec;
}

.comments-area .comment-lists ul .children li:last-child {
  padding-bottom: 0;
}

.comments-area .comment-lists ul .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 575px) {
  .comments-area .comment-lists ul .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.comments-area .comment-lists ul .media .cmnt_avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .comments-area .comment-lists ul .media .cmnt_avatar img {
    width: 60px;
    height: 60px;
  }
}

.comments-area .comment-lists ul .media .media-body {
  margin-left: 1.5625rem;
  overflow: hidden;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .comments-area .comment-lists ul .media .media-body {
    margin-left: 1.25rem;
  }
}

@media only screen and (max-width: 575px) {
  .comments-area .comment-lists ul .media .media-body {
    width: 100%;
    margin: 15px 0 0 0;
  }
}

.comments-area .comment-lists ul .media .media-body .media_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.75rem;
}

@media only screen and (max-width: 479px) {
  .comments-area .comment-lists ul .media .media-body .media_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media only screen and (max-width: 479px) {
  .comments-area .comment-lists ul .media .media-body .media_top .heading_left:first-child {
    margin-bottom: 10px;
  }
}

.comments-area .comment-lists ul .media .media-body .media_top .heading_left span {
  color: var(--color-light-gray);
}

.comments-area .comment-lists ul .media .media-body .media_top .heading_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comments-area .comment-lists ul .media .media-body .media_top .heading_right a.comment-edit-link {
  color: var(--color-dark);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: normal;
}

.comments-area .comment-lists ul .media .media-body .media_top .heading_right a.comment-edit-link svg {
  width: 16px;
  height: 16px;
  margin-right: 3px;
  fill: var(--color-dark);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.comments-area .comment-lists ul .media .media-body .media_top .heading_right a.comment-edit-link:hover {
  color: var(--color-primary);
}

.comments-area .comment-lists ul .media .media-body .media_top .heading_right a.comment-edit-link:hover svg {
  fill: var(--color-primary);
}

@media only screen and (max-width: 479px) {
  .comments-area .comment-lists ul .media .media-body .media_top .heading_right:first-child {
    margin-bottom: 10px;
  }
}

.comments-area .comment-lists ul .media .media-body .media_top .heading_right span {
  color: var(--color-light-gray);
}

.comments-area .comment-lists ul .media .media-body .media_top .media-heading {
  margin-bottom: 0.3125rem;
  margin-top: 0;
  color: var(--color-dark);
}

.comments-area .comment-lists ul .media .media-body .media_top .comment-reply-link {
  border: 1px solid var(--color-border-light);
  color: var(--color-gray);
  line-height: 2.125rem;
  border-radius: 1.5625rem;
  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;
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0 0.9375rem;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .comments-area .comment-lists ul .media .media-body .media_top .comment-reply-link {
    line-height: 1.875rem;
    padding: 0 0.625rem;
  }
}

.comments-area .comment-lists ul .media .media-body .media_top .comment-reply-link:hover {
  color: white;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.comments-area .comment-lists ul .media .media-body .media_top .comment-reply-link:hover svg {
  fill: var(--color-white);
}

.comments-area .comment-lists ul .media .media-body .media_top .comment-reply-link svg {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  fill: var(--color-gray);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.comments-area .comment-lists ul .media .media-body .comment-status-notice {
  color: var(--color-warning);
  margin-bottom: 10px;
  display: block;
}

.comments-area .comment-lists ul .media .media-body p {
  color: var(--color-body);
}

.comments-area .comment-lists ul .media p {
  margin: 0;
}

.comment-form {
  padding: 2.8125rem 2.5rem;
}

.comment-form .comment-title h3 {
  color: var(--color-dark);
  margin-bottom: 0.625rem;
}

.comment-form form textarea {
  height: 7.8125rem;
}

.comment-form-comment textarea {
  min-height: 7rem;
  padding: 10px 15px;
  margin-bottom: 30px;
}

/* Wordpress Comments */
.comment-respond {
  border: 1px solid var(--color-border);
  margin-top: 60px;
  padding: 40px 30px;
  background: var(--color-white);
  clear: both;
  border-radius: 4px;
}

.comment-respond h3 {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comment-respond h3 a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.comment-respond .comment-notes {
  margin-bottom: 40px;
}

.comment-respond form input.form-control {
  margin-bottom: 30px;
  border-color: var(--color-border);
}

.comment-respond .form-submit {
  margin-bottom: 0;
}

.comment-respond .form-submit input {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.comment-respond .form-submit input:hover.btn.theme-btn.btn-primary {
  background-color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.comment-respond .logged-in-as a {
  text-decoration: none;
  color: var(--color-dark);
}

.comment-respond .logged-in-as a:hover {
  color: var(--color-primary);
}

.comment-respond .logged-in-as a + a {
  font-weight: 600;
}

.comment-edit-link {
  margin-right: 10px;
  text-decoration: none;
}

.comment-edit-link i,
.comment-edit-link span.la,
.comment-edit-link span.las,
.comment-edit-link span.lar,
.comment-edit-link span.lab,
.comment-edit-link span.fab,
.comment-edit-link span.far,
.comment-edit-link span.fas {
  margin-right: 5px;
}

.comment_form_wrapper .theme-btn.btn-primary:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

/*-----------------------
#. Modal
-----------------------*/
.status span {
  display: block;
  padding: 7px 15px;
  border-radius: 3px;
}

.status span.status-failed {
  background: rgba(248, 7, 24, 0.1);
  color: var(--color-danger);
}

.status span.status-success {
  background: rgba(40, 168, 0, 0.1);
  color: var(--color-success);
}

.theme-modal .modal-content {
  border-radius: 5px;
}

.theme-modal .modal-header {
  padding: 18px 30px;
  border-color: var(--color-border-light);
}

.theme-modal .modal-header .modal-title {
  font-size: calc(1.0125rem + 0.15vw);
  font-weight: 500;
  color: var(--color-dark);
}

@media (min-width: 1200px) {
  .theme-modal .modal-header .modal-title {
    font-size: 1.125rem;
  }
}

.theme-modal .modal-header .theme-close {
  padding: 0;
  background-color: #fff;
  border: 0 none;
}

.theme-modal .modal-header .theme-close span {
  font-size: calc(1.0375rem + 0.45vw);
  color: var(--color-dark);
}

@media (min-width: 1200px) {
  .theme-modal .modal-header .theme-close span {
    font-size: 1.375rem;
  }
}

.theme-modal .modal-body {
  padding: 25px 30px;
}

.site-footer {
  background-color: var(--bgcolor-footer);
}

.site-footer .theme-footer-top-area {
  padding: 97px 0 30px;
  border-top: 1px solid var(--color-footer-divider);
}

@media only screen and (max-width: 991px) {
  .site-footer .theme-footer-top-area {
    padding: 50px 0 8px;
  }
}

@media only screen and (max-width: 767px) {
  .site-footer .theme-footer-top-area {
    padding: 40px 0 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .dir-listings_with_map .site-footer {
    padding-bottom: 62px;
  }
}

.theme-footer-top-area .widget_nav_menu .widget-title,
.theme-footer-top-area .widget_text .widget-title {
  color: var(--color-footer-title);
}

.theme-footer-top-area .theme-subscription-box__input {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .theme-footer-top-area .theme-subscription-box__input {
    min-width: auto;
  }
}

@media only screen and (max-width: 991px) {
  .theme-footer-top-area .theme-subscription-box__input input {
    min-width: auto;
  }
}

/* Copyright Text */
.theme-footer-bottom-area .theme-copyright-text {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  padding: 25px 0;
  color: var(--color-footer-text);
  border-top: 1px solid var(--color-footer-divider);
}

.theme-footer-bottom-area .theme-copyright-text a {
  font-weight: 500;
  color: var(--color-footer-link);
}

.theme-footer-bottom-area .theme-copyright-text a:hover {
  color: var(--color-footer-link-hover);
}

/* Custom Change for RTL */
body.rtl .theme-header-logo__img svg {
  direction: rtl;
}

body.rtl .theme-menu-action-box__search--trigger .search-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

body.rtl .owl-nav button,
body.rtl #theme-catagories__nav .theme-swiper-button-nav {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

body.rtl #theme-testimonial__nav.theme-swiper-button-nav-wrap .theme-swiper-button-nav {
  -webkit-transform: translateY(50%) rotate(-180deg);
          transform: translateY(50%) rotate(-180deg);
}

body.rtl .directorist-search-form .directorist-search-form-action .directorist-search-form-action__submit .directorist-btn.directorist-btn-lg span {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

body.rtl .theme-post-single .theme-post-body .wp-block-quote p:before,
body.rtl .theme-post-single .theme-post-body .wp-block-quote p:after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

body.rtl .atbd_location_grid_wrap .atbd_location_grid figure figcaption .directorist-location-content .directorist-location i,
body.rtl .atbd_location_grid_wrap .atbd_location_grid figure figcaption .directorist-location-content .directorist-location span,
body.rtl .theme-testimonial-slider .tns-controls button i,
body.rtl .directorist-pagination .page-numbers.next,
body.rtl .directorist-pagination .page-numbers.prev,
body.rtl .directorist-user-dashboard-tabcontent .directorist-dashboard-pagination .page-numbers i,
body.rtl .theme-swiper-navigation .theme-swiper-button-nav i,
body.rtl .directorist-related-carousel .directorist-slc__nav span,
body.rtl .pagination-area .page-numbers.next,
body.rtl .pagination-area .page-numbers.prev,
body.rtl .theme-more-btn a i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

body.rtl .widget .theme-subscription-box__submit button i {
  top: -1px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

body.rtl #directorist .directorist-pagination,
body.rtl #directorist .comment-pagination,
body.rtl #directorist .theme-pagination-area,
body.rtl .theme-blog-grid-area .directorist-pagination,
body.rtl .theme-blog-grid-area .comment-pagination,
body.rtl .theme-blog-grid-area .theme-pagination-area,
body.rtl .directorist-author-listing-content .directorist-pagination,
body.rtl .directorist-author-listing-content .comment-pagination,
body.rtl .directorist-author-listing-content .theme-pagination-area,
body.rtl .comments-area .directorist-pagination,
body.rtl .comments-area .comment-pagination,
body.rtl .comments-area .theme-pagination-area,
body.rtl .directorist-archive-contents .directorist-pagination,
body.rtl .directorist-archive-contents .comment-pagination,
body.rtl .directorist-archive-contents .theme-pagination-area {
  margin: 30px -4px -4px;
}

body.rtl #directorist .directorist-pagination .page-numbers svg,
body.rtl #directorist .comment-pagination .page-numbers svg,
body.rtl #directorist .theme-pagination-area .page-numbers svg,
body.rtl .theme-blog-grid-area .directorist-pagination .page-numbers svg,
body.rtl .theme-blog-grid-area .comment-pagination .page-numbers svg,
body.rtl .theme-blog-grid-area .theme-pagination-area .page-numbers svg,
body.rtl .directorist-author-listing-content .directorist-pagination .page-numbers svg,
body.rtl .directorist-author-listing-content .comment-pagination .page-numbers svg,
body.rtl .directorist-author-listing-content .theme-pagination-area .page-numbers svg,
body.rtl .comments-area .directorist-pagination .page-numbers svg,
body.rtl .comments-area .comment-pagination .page-numbers svg,
body.rtl .comments-area .theme-pagination-area .page-numbers svg,
body.rtl .directorist-archive-contents .directorist-pagination .page-numbers svg,
body.rtl .directorist-archive-contents .comment-pagination .page-numbers svg,
body.rtl .directorist-archive-contents .theme-pagination-area .page-numbers svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

body.rtl .directorist-form-group .directorist-form-element,
body.rtl .widget .theme-subscription-box__input input {
  direction: ltr;
}

body.rtl footer .widget .widget-subscribe .submit-btn {
  -webkit-transform: translateY(50%) rotate(-180deg);
          transform: translateY(50%) rotate(-180deg);
}

body.rtl input,
body.rtl textarea,
body.rtl [type="tel"],
body.rtl [type="url"],
body.rtl [type="email"],
body.rtl [type="number"] {
  direction: ltr;
}

body.rtl .theme-post-single .theme-post-content .theme-post-meta ul li:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -5px;
}

body.rtl .theme-post-single .theme-post-content .theme-post-meta ul li:last-child > a {
  margin-left: 5px;
}

body.rtl .theme-post-single .theme-post-body .wp-block-quote cite {
  display: block;
}

body.rtl .directorist-wrapper .directorist-map-wrapper #directorist.directorist-wrapper .directorist-generic-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 479px) {
  body.rtl .directorist-wrapper .directorist-map-wrapper #directorist.directorist-wrapper .directorist-generic-header {
    display: block;
  }
}

body.rtl .directorist-wrapper .directorist-map-wrapper #directorist.directorist-wrapper .directorist-generic-header .directorist-listing-actions-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 479px) {
  body.rtl .directorist-wrapper .directorist-map-wrapper #directorist.directorist-wrapper .directorist-generic-header .directorist-listing-actions-btn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body.rtl .directorist-wrapper .directorist-map-wrapper #directorist.directorist-wrapper .directorist-generic-header .directorist-listing-actions-btn .theme-view-mode {
    margin: 0;
  }
}

body.rtl .directorist-price-ranges .slider-range {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl .directorist-range-slider-wrap .atbd-child,
body.rtl .directorist-range-slider-wrap .directorist-range-slider-child {
  right: unset;
  left: 0;
}

/*------------------------------------*\
  #- 404
\*------------------------------------*/
/* Error Content Style */
.error-contents img {
  max-width: 500px;
}

.error-contents h2 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.error-contents .widget-wrapper {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .error-contents .widget-wrapper {
    margin-top: 30px;
  }
}

.error-contents figure img {
  width: 100%;
}

@font-face {
  font-family: "theme-icons";
  src: url("../../assets/fonts/theme-icons.eot");
  src: url("../../assets/fonts/theme-icons.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/theme-icons.woff") format("woff"), url("../../assets/fonts/theme-icons.ttf") format("truetype"), url("../../assets/fonts/theme-icons.svg#theme-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "theme-icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="themeicon-"]:before,
[class*=" themeicon-"]:before {
  font-family: "theme-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.themeicon-angle-left-solid:before {
  content: "\61";
}

.themeicon-angle-right-solid:before {
  content: "\62";
}

.themeicon-facebook:before {
  content: "\63";
}

.themeicon-facebook-square:before {
  content: "\64";
}

.themeicon-twitter:before {
  content: "\65";
}

.themeicon-times-circle:before {
  content: "\66";
}

.themeicon-times-circle-solid:before {
  content: "\67";
}

.themeicon-times-solid:before {
  content: "\68";
}

.themeicon-user:before {
  content: "\69";
}

.themeicon-instagram:before {
  content: "\6a";
}

.themeicon-paper-plane:before {
  content: "\6d";
}

.themeicon-paper-plane-solid:before {
  content: "\6e";
}

.themeicon-pinterest:before {
  content: "\6f";
}

.themeicon-plus-solid:before {
  content: "\70";
}

.themeicon-rss-solid:before {
  content: "\71";
}

.themeicon-search-solid:before {
  content: "\72";
}

.themeicon-vimeo:before {
  content: "\74";
}

.themeicon-user-solid:before {
  content: "\75";
}

.themeicon-user-circle:before {
  content: "\76";
}

.themeicon-facebook-f:before {
  content: "\77";
}

.themeicon-linkedin-in:before {
  content: "\6b";
}

.themeicon-link-h:before {
  content: "\78";
}

.themeicon-vk:before {
  content: "\79";
}

.themeicon-tumblr:before {
  content: "\7a";
}

.themeicon-github:before {
  content: "\41";
}

.themeicon-reddit:before {
  content: "\42";
}

.themeicon-bars-solid:before {
  content: "\43";
}

.themeicon-angle-up-solid:before {
  content: "\44";
}

.themeicon-angle-down-solid:before {
  content: "\45";
}

.themeicon-youtube:before {
  content: "\73";
}

.themeicon-plus-circle:before {
  content: "\47";
}

.themeicon-reply-solid:before {
  content: "\46";
}

.themeicon-edit:before {
  content: "\48";
}

.themeicon-angle-double-right:before {
  content: "\6c";
}

.themeicon-quote-right:before {
  content: "\49";
}

.themeicon-quote-left:before {
  content: "\4a";
}

.themeicon-star:before {
  content: "\4b";
}

.themeicon-star-half-o:before {
  content: "\4d";
}

.themeicon-star-o:before {
  content: "\4e";
}

.themeicon-check:before {
  content: "\4c";
}

.themeicon-minus-solid:before {
  content: "\4f";
}

.themeicon-tag:before {
  content: "\51";
}

/* Theme Custom Grid */
.theme-container {
  width: 100%;
  max-width: 1320px;
  padding: 0 12px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1199px) {
  .theme-container {
    max-width: 960px;
  }
}

@media only screen and (max-width: 991px) {
  .theme-container {
    max-width: 720px;
  }
}

@media only screen and (max-width: 767px) {
  .theme-container {
    max-width: 540px;
  }
}

@media only screen and (max-width: 575px) {
  .theme-container {
    max-width: 100%;
  }
}

.theme-container .row {
  margin-left: -12px;
  margin-right: -12px;
}

.theme-container .row > * {
  padding-right: 12px;
  padding-left: 12px;
}

.theme-container-fluid {
  width: 100%;
  padding-right: 50px;
  padding-left: 50px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 991px) {
  .theme-container-fluid {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.row.theme-row {
  margin-left: -12px;
  margin-right: -12px;
}

.row.theme-row > * {
  padding-right: 12px;
  padding-left: 12px;
}

/* Not Found Style */
.theme-no-result {
  padding: 100px 0;
  text-align: center;
  max-width: 670px;
  margin: 0 auto;
}

.theme-no-result .page-title {
  font-size: calc(1.0875rem + 1.05vw);
  margin-bottom: 16px;
}

@media (min-width: 1200px) {
  .theme-no-result .page-title {
    font-size: 1.875rem;
  }
}

.theme-no-result p {
  margin-bottom: 48px;
}

.theme-no-result .search-form {
  max-width: 500px;
  margin: 0 auto;
}

table {
  border: 1px solid var(--color-border-gray);
}

table tr:last-child td {
  border-bottom: 0 none;
}

table tr:first-child th {
  border-top: 0 none;
}

table tr td,
table tr th {
  padding: 10px;
  border-bottom: 1px solid var(--color-border-gray);
}

table tr td:not(:last-child),
table tr th:not(:last-child) {
  border-right: 1px solid var(--color-border-gray);
}

table a:hover {
  color: #0d6efd;
}

/* Gutenberg Support */
.wp-block-cover:not([class*="background-color"]) .wp-block-cover__inner-container,
.wp-block-cover:not([class*="background-color"]) .wp-block-cover-image-text,
.wp-block-cover:not([class*="background-color"]) .wp-block-cover-text,
.wp-block-cover-image:not([class*="background-color"]) .wp-block-cover__inner-container,
.wp-block-cover-image:not([class*="background-color"]) .wp-block-cover-image-text,
.wp-block-cover-image:not([class*="background-color"]) .wp-block-cover-text {
  color: var(--color-white);
}

.alignright {
  clear: both;
}

.wp-caption-text {
  text-align: center;
}

/* BlockQuote Default Style */
blockquote a {
  color: var(--color-primary);
}

blockquote a:hover {
  color: var(--color-primary);
}

.post-details blockquote.wp-block-quote.is-style-default {
  padding-left: 1em;
  border-left: 0.25em solid var(--color-primary);
}

.post-details blockquote:not(.has-vivid-cyan-blue-color).has-text-align-right {
  border-left: 0 none;
  padding: 0 1rem 0 0;
  border-right: 4px solid var(--color-primary);
}

blockquote.wp-block-quote.has-text-align-left {
  padding-left: 1rem;
  border-left: 0.25em solid var(--color-primary);
}

blockquote.wp-block-quote + p {
  margin-top: 20px;
}

blockquote.wp-block-quote cite {
  font-size: 13px;
}

/* Blockquote Large Style */
.wp-block-quote.is-style-large:not(.has-vivid-cyan-blue-color) {
  border-left: 0 none;
}

.wp-block-quote.is-style-large:not(.has-vivid-cyan-blue-color) p {
  font-size: calc(1.05rem + 0.6vw);
}

@media (min-width: 1200px) {
  .wp-block-quote.is-style-large:not(.has-vivid-cyan-blue-color) p {
    font-size: 1.5rem;
  }
}

.wp-block-quote.is-style-large:not(.has-vivid-cyan-blue-color) cite {
  display: block;
}

.wp-block-quote.is-style-large cite {
  text-align: left;
  display: block;
}

.wp-block-quote.is-style-large cite br {
  display: none;
}

.wp-block-quote.is-style-large p {
  font-size: calc(1.05rem + 0.6vw);
}

@media (min-width: 1200px) {
  .wp-block-quote.is-style-large p {
    font-size: 1.5rem;
  }
}

.post-details .wp-block-quote {
  border-left-color: var(--color-primary);
}

.post-details .wp-block-quote:not(.has-vivid-cyan-blue-color) {
  border-left-color: var(--color-primary);
}

/* Block Button Style */
.wp-block-button {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.wp-block-button.aligncenter {
  text-align: center;
}

.wp-block-button.alignleft {
  float: left;
  text-align: left;
  margin-right: 2em;
  /*!rtl:end:ignore*/
}

.wp-block-button.alignright {
  text-align: right;
  float: right;
  margin-left: 2em;
  /*!rtl:end:ignore*/
}

.wp-block-button {
  color: #fff;
}

.wp-block-button.is-style-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.wp-block-button__link {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

/* Button Cover */
.wp-block-cover {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.wp-block-cover.alignleft {
  float: left;
  margin-right: 2em;
}

.wp-block-cover p {
  line-height: 1.25;
}

/* Block Pullquote  */
.wp-block-pullquote {
  border-top: 4px solid var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
}

.wp-block-pullquote blockquote {
  margin-bottom: 0;
}

.wp-block-pullquote p {
  font-size: calc(1.05rem + 0.6vw);
  line-height: 1.6;
}

@media (min-width: 1200px) {
  .wp-block-pullquote p {
    font-size: 1.5rem;
  }
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 1.25em;
}

.wp-block-pullquote.has-background blockquote:not(.has-vivid-cyan-blue-color) p {
  font-size: calc(1.025rem + 0.3vw);
  margin: 0;
}

@media (min-width: 1200px) {
  .wp-block-pullquote.has-background blockquote:not(.has-vivid-cyan-blue-color) p {
    font-size: 1.25rem;
  }
}

.wp-block-pullquote.has-background blockquote p {
  font-size: calc(1.025rem + 0.3vw);
  margin: 0;
  color: #fff;
}

@media (min-width: 1200px) {
  .wp-block-pullquote.has-background blockquote p {
    font-size: 1.25rem;
  }
}

.wp-block-pullquote.has-background blockquote cite {
  color: #fff;
}

.wp-block-pullquote.alignleft {
  float: left;
  margin-right: 15px;
}

.wp-block-pullquote.alignright {
  float: right;
  margin-left: 15px;
}

.wp-block-pullquote + p {
  min-height: 200px;
}

.post-details .wp-block-pullquote blockquote:not(.has-vivid-cyan-blue-color) {
  font-size: calc(1.05rem + 0.6vw);
  line-height: 1.6;
}

@media (min-width: 1200px) {
  .post-details .wp-block-pullquote blockquote:not(.has-vivid-cyan-blue-color) {
    font-size: 1.5rem;
  }
}

.post-details .wp-block-pullquote cite {
  font-size: 16px;
}

/* Wp Block Image  */
.post-details .wp-block-image figcaption {
  text-align: center;
}

.post-details .wp-block-image img {
  width: auto;
}

.wp-block-image .aligncenter figcaption {
  font-size: 16px;
  text-align: center;
}

.wp-block-cover.alignleft {
  float: left;
  text-align: left;
  margin-right: 2rem;
}

.wp-block-cover.has-background-dim strong {
  color: #fff;
}

.directorist-content-active:not(.theme-dir-all-listing) .directorist-content-active:not(.theme-dir-search-result) .type-page ul,
.directorist-content-active:not(.theme-dir-all-listing) .directorist-content-active:not(.theme-dir-search-result) .directorist-single-contents-area ul,
.directorist-content-active:not(.theme-dir-all-listing) .directorist-content-active:not(.theme-dir-search-result) .single-blog ul {
  padding-left: 15px;
}

ul {
  padding-left: 20px;
}

ul > li ul {
  padding-left: 15px;
}

ul ul {
  list-style: unset;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
  width: auto;
}

.theme-post-single .theme-post-body img.aligncenter,
.theme-post-single .theme-post-body img.alignleft {
  width: auto;
  height: auto;
}

.theme-post-single .theme-post-body img.alignright {
  width: auto;
  max-width: 180px;
  height: auto;
}

figure.aligncenter {
  display: block;
  margin: 0 auto;
}

figure.aligncenter figcaption {
  text-align: center;
  margin-bottom: 15px;
}

/* Wp Block Table */
.wp-block-table figcaption {
  font-size: 13px;
  text-align: center;
}

/* Wp Block Latest Post List */
.wp-block-latest-posts__list {
  padding-left: 0;
}

.wp-block-latest-posts__list a {
  color: var(--color-primary);
}

.wp-block-latest-posts__list a:hover {
  color: var(--color-primary);
}

.wp-block-categories-list,
.wp-block-archives-list {
  margin-bottom: 30px;
  margin-top: 20px;
}

.wp-block-categories-list li,
.wp-block-archives-list li {
  margin-bottom: 5px;
}

.wp-block-categories-list a,
.wp-block-archives-list a {
  color: var(--color-primary);
}

.wp-block-categories-list a:hover,
.wp-block-archives-list a:hover {
  color: var(--color-primary);
}

.wp-block-columns + .wp-block-separator {
  margin: 40px auto;
}

/* Wp Block Gallery */
.directorist-content-active .wp-block-gallery {
  padding: 0;
}

.directorist-content-active .wp-block-gallery .blocks-gallery-grid {
  padding-left: 0;
  list-style: none;
}

.directorist-content-active .wp-block-gallery .blocks-gallery-grid li:before {
  display: none;
}

.blocks-gallery-grid {
  padding-left: 0;
  list-style: none;
}

.blocks-gallery-grid li:before {
  display: none;
}

.wp-block-gallery.columns-2 {
  margin-top: 15px;
}

.wp-block-gallery.columns-2 .blocks-gallery-caption {
  margin: 15px 0 10px;
}

.blocks-gallery-caption {
  text-align: center;
  margin: 15px 0 45px;
}

.wp-block-gallery.alignleft {
  float: left;
  margin-right: 2rem;
}

.theme-post-single .theme-post-body .gallery img {
  width: auto;
}

.theme-post-single .theme-post-body .gallery .gallery-item {
  display: inline-block;
}

/* Gallery Widget */
.gallery {
  padding: 25px 26px 15px;
  margin-bottom: -16px;
}

@media only screen and (max-width: 575px) {
  .gallery {
    margin-bottom: -10px;
  }
}

.gallery .gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin-bottom: 0;
}

.gallery .gallery-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/* Wp Block Separator  */
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

.wp-block-separator {
  border-bottom: 1px solid var(--color-dark);
  background-color: #212529;
  border-top: 0 none;
  margin: 0 auto;
  opacity: 1;
}

/* Wp Block Code */
.wp-block-code code {
  padding: 0.8em 1em;
  border: 1px solid #ddd;
  color: var(--color-primary);
}

/* Wp Block Column */
.post-details .post-content .wp-block-column {
  margin-top: 20px;
}

.post-details .post-content .wp-block-column ol > li:before {
  color: inherit;
}

.post-details .post-content .wp-block-column .wp-block-quote {
  border-left-color: var(--color-primary);
}

.post-details .post-content ul ul,
.post-details .post-content ul ol,
.post-details .post-content ol ul,
.post-details .post-content ol ol {
  padding-left: 30px;
}

.theme-post-single .wp-block-column .wp-block-quote {
  padding: 0;
  background-color: transparent;
  border-left: 4px solid var(--color-primary);
}

.theme-post-single .wp-block-column .wp-block-quote p {
  padding-left: 10px;
}

.theme-post-single .wp-block-column .wp-block-quote p:after, .theme-post-single .wp-block-column .wp-block-quote p:before {
  display: none;
}

.theme-post-single .wp-block-column .wp-block-quote cite {
  font-size: 13px;
  padding-left: 10px;
}

.theme-post-single .wp-block-column .wp-block-quote cite:before {
  display: none;
}

/* Wp Block Embed */
.wp-block-embed figcaption {
  text-align: center;
}

/* Wp Block Image */
.wp-block-image.size-full img {
  width: auto;
}

/* Wp Block Comments */
.wp-block-latest-comments__comment-meta a:hover {
  color: var(--color-primary);
}

/* wp Block Comment */
.theme-post-single .wp-block-latest-comments__comment img {
  width: auto;
}

.theme-post-single .wp-block-latest-comments__comment a {
  color: var(--color-primary);
}

.post-details .wp-block-pullquote blockquote {
  border-left: 0 none;
}

.post-details .wp-block-pullquote blockquote:not(.has-vivid-cyan-blue-color) {
  border-left: 0 none;
}

/* wp-block-rss */
.wp-block-rss__item-title a {
  color: var(--color-primary);
}

.wp-block-rss__item-title a:hover {
  color: var(--color-primary);
}

/* Gallery */
.gallery.gallery-size-thumbnail {
  margin: -10px;
}

.gallery .gallery-item {
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .gallery .gallery-item {
    padding: 15px 10px;
  }
}

.gallery .gallery-item .gallery-caption {
  word-break: break-all;
}

.post-details img[width="150"] {
  width: 150px;
}

.post-details img[width="160"] {
  width: 160px;
}

.post-details img[width="300"] {
  width: 300px;
}

#gallery-5 .gallery-item img {
  max-width: 135px;
}

#gallery-6 .gallery-item img {
  max-width: 110px;
}

#gallery-7 .gallery-item img {
  max-width: 95px;
}

#gallery-8 .gallery-item img {
  max-width: 85px;
}

#gallery-9 .gallery-item img {
  max-width: 70px;
}

.gallery#gallery-4, .gallery#gallery-5, .gallery#gallery-6, .gallery#gallery-7, .gallery#gallery-8, .gallery#gallery-9 {
  padding: 0;
}

.alignleft,
.alignleft {
  float: left;
  margin-right: 20px;
}

.alignright {
  float: right;
  margin-left: 20px;
}

/* Mail Chimp Error Message */
.footer-top-area .mc4wp-alert {
  padding: 6px 12px;
  border-radius: 4px;
}

.footer-top-area .mc4wp-alert p {
  margin-bottom: 0;
}

.footer-top-area .mc4wp-alert.mc4wp-error {
  background-color: var(--color-danger-transparent);
}

.footer-top-area .mc4wp-alert.mc4wp-success {
  background-color: var(--color-success-transparent);
}

.theme-single-page img {
  max-width: 100%;
}

.single-post figure {
  max-width: 100%;
}

/* Wp Block Group */
.wp-block-group.has-background {
  padding: 30px;
}

/* Wp Block Media Text */
.wp-block-media-text__content p {
  line-height: 1.25;
}

/* Page Links  */
.page-links {
  text-align: center;
}

.wp-block-latest-posts {
  margin-bottom: 15px;
}

/* Wp Block Cover */
.wp-block-cover .wp-block-cover-text:not(.has-text-color) {
  color: #fff;
}

/* wp block tag cloud */
.wp-block-tag-cloud a {
  color: var(--color-primary);
}

/* Wp Block Video */
.wp-block-video figcaption {
  font-size: 13px;
  text-align: center;
}

.blocks-gallery-caption {
  font-size: 13px;
}

/* Breadcrumb Trail */
.main-breadcrumb {
  margin-top: 13px;
  color: var(--color-breadcrumb_separator);
}

.main-breadcrumb span {
  color: var(--color-breadcrumb-active);
}

.main-breadcrumb a {
  text-decoration: none;
}

.main-breadcrumb a span {
  color: var(--color-breadcrumb-link);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.main-breadcrumb a span:hover {
  color: var(--color-breadcrumb-link-hover);
}

.main-breadcrumb ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main-breadcrumb ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  line-height: 1;
}

.main-breadcrumb ul li:after {
  content: "\62";
  font-family: "theme-icons";
  padding: 0 10px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--color-breadcrumb_separator);
  font-size: 0.75rem;
}

.main-breadcrumb ul li:last-of-type::after {
  display: none;
}

/* #. Preloader */
#theme-preloader {
  background-color: var(--color-white);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 100%;
  left: 0;
  overflow: visible;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

dt {
  color: #212529;
}

dd {
  margin-left: 40px;
}

strong {
  color: var(--color-dark);
}
