/* 
****  Table of content  ****
1-  Imports
2-  Variables
3-  Global styles
4-  typography
5-  Components
        Headings
        breadcrumb section
        Buttons
        Search bar
        Search result boxes
        floating labels
        modal
        Header ( nav , sidebar )
        Footer
        datatables
        dropdown_menu
        alert
        file input
        custom-radio
        form-styling
        toggle info message
6-  Pages
    hmp
    edit-bm-profile-page
        profile form
    services-offered
    landing-page
    categories-page
    keywords-offered
    areas-we-cover
    map-page
    maps-options-page
    templates-page
    member-details-page
    faq-page
    share-page
    transalations-page
    advert-cluster-page
    category_details-page 
    plaza-list-page
    plaza-list-view-page
    post-ads-page
    plaza-details-view-page
    gallery-preview-page
    post-job-page
    job-preview-page
    jobs-page
    myjobs-page
    proposals-page 
    resume-page
    Create_resume
    Resume_perview
    resume-edit-page
    compare-page

*/

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

/* fonts sizes
    18px : 1rem
    16px : .89rem
    20px:  1.11rem
    25px : 1.39rem

*/
@page {
    margin-top: 4in;
}

/* Variables */
:root {
    --color-content-primary: #083A76;
    --color-content-success: #2EAD4B;
    --color-content-success-hover: #228b3a;
    --color-content-secondary: #EB841D;
    --color-footer-bottom: #073062;
    --color-text-light: #CDD4D8;
    --text-color: #4F575F;
    --light-bg: #F8F8F8;
    --color-danger: #AA0B0B;
    --border-color: rgb(174, 174, 174);
    --body-bg-light: #f7f7f7;
    --link-color: #0e62ca;
}

/* Global styles  */
html {
    font-size: 18px;
}

body {
    font-family: "Times New Roman", Times, serif;
    overflow-x: hidden !important;
    letter-spacing: .55px;
    scrollbar-width: thin;

}


section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* typography */
a,
a:hover {
    text-decoration: none !important;
    font-size: 1rem;
    color: var(--link-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .6px;
}

h1,
h2,
h3,
h4 {
    color: var(--color-content-primary);
}

h3 {
    font-size: 1.39rem;
}

h4 {
    font-size: 1.2rem;
}

p,
ol,
li {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 0;
    margin: 10px 0;
    letter-spacing: .55px;
}

input:focus,
input:hover {
    outline: none;
}

label {
    font-size: 1rem;
}

.btn-default {
    color: #000000 !important;
}

td {
    font-size: 1rem;
    line-height: 1.25rem;
    letter-spacing: .55px;
    color: var(--text-color);
}

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

input,
select,
textarea {
    border: 1px solid var(--border-color) !important;
}

.txt-capitalize {
    text-transform: capitalize;
}

.border-cl {
    border: 1px solid rgb(174, 174, 174);
    border-radius: 5px;
}

.bg {
    background-color: #F7F7F7;
}

input[type="checkbox"]:checked {
    accent-color: var(--color-content-primary);
    /* Change to your desired background color */
}

/* __________________ 
    Components 
_____________________*/
/* ---------------- Headings  ---------------- */
.main_heading {
    color: var(--color-content-primary);
    font-size: 1.7rem;
    margin-top: 20px;
}

.main_heading a {
    color: var(--color-content-primary);
}

.main_heading a:hover {
    text-decoration: underline !important;
}

.section-heading {
    color: var(--color-content-primary);
    font-size: 1.39rem;
    position: relative;
}

.section-heading::after {
    content: '';
    width: 50px;
    height: 5px;
    background-color: var(--color-content-secondary);
    position: absolute;
    bottom: -5px;
    left: 0px;
}

.sub-heading {
    color: var(--color-content-primary);
    font-size: 1.1rem;
}


/* ---------------- breadcrumb section  ---------------- */
.breadcrumb-section {
    padding-bottom: 30px;
}

.breadcrumb-section .fa-angle-right {
    font-size: 1.3rem;
}

/* ----------------  Buttons  ---------------- */
.btn {
    font-size: 1rem;
    padding: 5px 20px;
    text-decoration: none;
    color: #fff;
    transition: .2s ease-in-out;
}

/* primary btn */
.primary-btn {
    padding: 6px 20px;
    background-color: var(--color-content-primary);
    border: 2px solid transparent;
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--color-content-primary);
    border: 2px solid var(--color-content-primary);
}

/* secondary btn */
.secondary-btn {
    background-color: var(--color-content-secondary);
    border: 1px solid transparent;
}

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

/* back btn */
.back-btn {
    background-color: #6C757D;
    border: 1px solid transparent;
}

.back-btn:hover {
    background-color: #545b61;
    color: white;
}

/* submit btn */
.submit-btn {
    background-color: var(--color-content-success);
    border: 1px solid transparent;
    color: #fff;
}

.submit-btn:hover {
    background-color: var(--color-content-success-hover);
    color: #fff;
}

/* info btn */
.info-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--color-content-secondary);
    color: white;
    border: 1px solid transparent;
    margin-left: 10px;

}

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

.info_btn {
    display: inline-block;
    margin-top: -3px;

}

a .fa-question {
    font-size: .8rem;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
    margin-left: 10px;
    background-color: var(--color-content-secondary);
    color: #fff;

}

.alert-info {
    padding-inline: 25px !important;
    line-height: 1.2rem;
}

.hollow-button {
    padding: 4px 10px;
    background-color: transparent;
    border: 1px solid var(--color-content-primary);
    color: var(--color-content-primary);
}

.hollow-icon-btn {
    background-color: transparent;
    border: none;
}

.hollow-icon-btn i {
    font-size: 1rem;
}

/* ------------ icons styling --------- */
.edit-icon {
    color: var(--color-content-primary);
}

.trash-icon {
    color: var(--color-danger);
}

/* ----------------  Search Bar  ---------------- */
.search-holder {
    max-width: 540px;
    width: 60%;
}

/* input label styling */
.controls {
    text-align: left;
    position: relative;
}

.controls input,
.controls select,
.controls textarea {
    padding: 7px 15px;
    font-size: 1rem;
    border: 1px solid rgb(174, 174, 174);
    width: 100%;
    margin-bottom: 18px;
    color: rgb(51, 51, 51) !important;
    font-weight: 300;
    border-radius: 5px;
    transition: all .3s
}

.business_hours .controls input[type="text"] {
    margin-bottom: 0px;
}

.controls input:focus,
.controls input:hover,
.controls select:focus,
.controls select:hover,
.controls textarea:focus,
.controls textarea:hover {
    outline: none;
    border-color: var(--color-content-primary);
}

.controls select {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 7px 15px;
    font-size: 1rem;
    border: 1px solid rgb(174, 174, 174);
    width: 100%;
    margin-bottom: 18px;
    color: rgb(51, 51, 51) !important;
    font-weight: 300;
    border-radius: 5px;
    transition: all .3s
}

.controls label {
    color: var(--color-content-primary);
    cursor: text;
    text-transform: capitalize;
}

.controls label {
    position: absolute;
    left: 8px;
    top: 8px;
    width: auto;
    min-width: 60px;
    color: rgb(110, 110, 110);
    font-size: 1rem;
    display: inline-block;
    padding: 0px 5px;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0);
    transition: color .3s, top .3s, background-color .8s;
    background-color: rgba(255, 255, 255, 1);
}

.controls label.active {
    top: -16px;
    color: var(--color-content-primary);
    background-color: rgba(255, 255, 255, 1);
    width: auto;
}

.controls label.time_active {
    display: none !important;
}

select.floatLabel2 {
    padding-left: 10px;
}

input[readonly] {
    background-color: #fff;
}

/* search Icon Styling */
.search-icon {
    z-index: 111111;
    margin-left: -25px;
    margin-top: 10px;
    font-size: 1rem;
    color: #6e7b8a;
}

.searchElse-btn-holder {
    display: inline;
}

/* ---------------- Search Result Boxes  ---------------- */
.result-box {
    position: relative;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px 10px 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.126);
}

.resultBox-container {
    margin-bottom: 20px;
    margin-top: 20px;
}

.result-box:hover {
    background: #E5E5E5;
}

.result-box span.result-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--color-content-secondary);
    color: #ffffff;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: .89rem;
}

.result-box img {
    margin-bottom: 10px;
    width: 25%;
}

.result-box.text-center h5 {
    font-size: 1rem;
    margin-top: 5px;
    color: var(--color-content-primary);
}

/* active result box styling */
.resultBox-container .activeResultBox {
    background-color: var(--color-content-primary);
}

.resultBox-container .activeResultBox h5 {
    color: white;
}

.activee {
    border: 1px solid #cddce7;
    margin: 10px 4px;
    padding: 20px 25px 5px;
    border-radius: 5px;
}

.row_restaurant .result-box {
    margin-bottom: 30px;
    background: #f5f5f5;
}

.row_restaurant .result-box:hover {
    background: #E5E5E5;
}

/* ---------------- modal ---------------- */
.modal {
    z-index: 111111;
    width: 100%;
}

.modal .modal-header {
    padding-bottom: 0;
    padding-top: 0;
}

.modal .modal-content {
    padding: 15px;
    width: 100%;
}

.modal .modal-title {
    color: var(--color-content-primary);
    font-size: 1.2rem;
}

.modal .close span {
    color: #929395;
}

.modal .modal-footer {
    width: 100%;
    display: flex;
    justify-content: end;
}

.modal .modal-footer button {
    float: right;
}

.modal p {
    margin: 0;
}

.modal .form_subheading {
    font-size: 1rem;
}

/* ----------------  Header  ---------------- */
header {
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
}

header .header-inner {
    width: 100%;
    height: 64px;
    padding: 0 initial;
    background-color: transparent;
}

.inner-header {
    background: #E5E5E5;
    padding-bottom: 0px;
    padding-top: 0;
    /* padding-bottom: 30px; */

}

header .only_header {
    padding-bottom: 0 !important;
}


header .header-logo {
    display: inline-block;
    overflow: hidden;
    padding: 21px 38px 21px 5px;
}

header .header-logo img {
    display: block;
    max-height: 35px;
}

header .header-categories {
    display: block;
    position: relative;
    float: left;
    border-left: 1px solid rgba(255, 255, 255, 0.157);
}

header .header-menu {
    float: right;
}

header .header-menu ul {
    height: 64px;
    margin: 10px 0;
}

header .header-menu ul li {
    display: block;
    position: relative;
    float: left;
    margin: 0;
    line-height: 64px;
    margin-left: 20px;
    margin-top: 1px;
}

header .header-menu ul li a {
    color: var(--color-content-primary);
    padding-bottom: 2px;
    font-size: 1rem;
}

header .header-menu ul li a:hover {
    border-bottom: 2px solid var(--color-content-primary);
}

/* login button */
header .header-menu ul li .login-btn {
    border: 1px solid var(--color-content-primary);
    color: #fff;
    background-color: var(--color-content-primary);
    padding: 3px 15px 5px;
    border-radius: 3px;
    transition: .3s;
}

header .header-menu ul li .login-btn:hover {
    color: var(--color-content-primary);
    background-color: transparent;
    text-decoration: none !important;
}

/* adi talk button */
.adi-talk-btn img {
    width: 21px;
    margin-top: -5px;
}

/* dropdown */
header .header-menu ul li ul.dropdown {
    width: 100%;
    width: 140px;
    height: fit-content;
    position: absolute;
    z-index: 999;
    display: none;
    right: 0px;
    top: 50px;
    padding-left: 0 !important;
    animation: fadeIn .3s;
    line-height: 0;
    box-shadow: 0 0 20px 0 rgb(182, 182, 182);
    padding-left: 0 !important;

}

header .header-menu ul li ul.dropdown::before {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background-color: #eeeff1;
    right: 10px;
    top: -5px;
    transform: rotate(45deg);
    z-index: -1;
}

header .header-menu ul li:hover ul.dropdown {
    display: block;
}

header .header-menu ul li ul.dropdown li {
    display: block;
    width: 100%;
    background-color: #eeeff1;
    line-height: 40px;
    margin-left: 0;
    float: right;
    cursor: pointer;
}

header .header-menu ul li ul.dropdown li:hover {
    background-color: #dde0e5;
}

header .header-menu ul li ul.dropdown li a {
    padding: 5px;
    padding-left: 20px;
}

header .header-menu ul li ul.dropdown li a:hover {
    border-bottom: 0;
}

.lang-arrow {
    font-size: 15px;
}

#nav-lang a:hover {
    text-decoration: none !important;
}

.fa-check {
    font-size: 16px;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* sidebar Menu for logged in users */
#sidebarMenu {
    position: fixed;
    right: -100%;
    top: 0px;
    display: block;
    z-index: 999;
    width: 350px;
    height: 100%;
    transition: .3s;
    background: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.217);
}

#sidebarMenu li a:hover {
    border-bottom: 0;
}

#sidebarMenu.active {
    right: 0;
}

#sidebarMenu .fa-times {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid black;
    text-align: center;
    font-size: 1rem;
    padding-top: 5px;
}


.sidebarMenuInner {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.sidebarMenuInner li {
    list-style: none;
    color: #4A6C84;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sidebarMenuInner li span {
    display: block;
    /* font-size: 30px; */
    color: #4A6C84;
}

.sidebarMenuInner li a i {
    font-size: 1rem;
}

.sidebarMenuInner li a {
    color: #4A6C84;
    font-weight: 500 !important;
    text-transform: capitalize;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

#sidebarMenu li {
    line-height: normal;
    padding: 15px 0;
}

#sidebarMenu .dropdown-item {
    margin-left: 20px;
}

#sidebarMenu .dropdown-item:hover {
    background-color: transparent;
    color: var(--color-content-primary);
}

li.dropdown button.dropdown-toggle {
    display: block;
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: transparent;
    width: 100%;
    text-align: left;
}

li.dropdown button.dropdown-toggle {
    color: var(--color-content-primary);
    font-weight: 500;
    font-size: 1rem;
}

li.dropdown button.dropdown-toggle i {
    font-size: 1rem;
}

.dropdown.open .dropdown-menu {
    display: contents;
}

li.dropdown .dropdown-menu a {
    line-height: normal;
    padding: 10px;
}

/* nav */
.sidebar {
    overflow-y: auto;
    position: fixed;
    top: 0px;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 11111111;
}

nav .nav-categories li {
    display: block;
    position: relative;
}

nav.open {
    left: 0px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.275);
    opacity: 1;
}

nav .nav-separator {
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background-color: rgba(0, 0, 0, 0.175);
}

.iconmenubar {
    list-style: none;
    display: flex;
    padding-left: 0;
    width: fit-content;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.iconmenubar li {
    text-align: center;
    padding: 15px 5px;
    width: 135px;
    margin: 10px;
    background: #fff;
    border: 2px solid #DFDFDF;
    border-radius: 5px;
}

.iconmenubar a:hover li {
    box-shadow: 0px 0px 20px 0px rgba(235, 235, 235, 1);
}

.iconmenubar li h4 {
    margin-bottom: 0;
    padding-top: 10px;
    font-weight: 600;
    color: var(--color-content-primary);
    font-size: 1rem;
}

/* mobile menu */
header .mobile-menu {
    display: flex;
    width: fit-content;
    float: right;
    list-style: none;
}

header .mobile-menu li {
    line-height: 38px;
    margin: 20px 0;
}

header .mobile-menu li a {
    font-size: 1rem;
}

header .mobile-menu li .login-btn {
    border: 1px solid var(--color-content-primary);
    color: var(--color-content-primary);
    padding: 3px 15px 5px;
    border-radius: 3px;
    transition: .3s;
}

header .mobile-menu li .login-btn:hover {
    color: #fff;
    background-color: transparent;
    background-color: var(--color-content-primary);
}

header .mobile-menu .nav-btn {
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    margin: 12px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header .mobile-menu .nav-btn a {
    font-size: 25px;
    color: var(--color-content-primary);
}

header .mobile-menu {
    display: none;
}

/* mobile sidebar */

.sidebar ul {
    padding-left: 0;
}

.sidebar ul li {
    position: relative;
    margin: 0;
    line-height: 40px;
}

.sidebar ul li a {
    color: var(--color-content-primary);
    font-weight: 600;
    font-size: 17px;
}

.sidebar ul li a:hover {
    opacity: 0.8;
    text-decoration: none;
}

nav .nav-categories {
    padding: 20px;
}

nav .nav-categories li {
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 10px;
    line-height: 30px;
}

nav .nav-categories li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    color: var(--color-content-primary);
    text-decoration: none;
}

nav .nav-categories li img {
    padding-right: 10px;
    width: 40px;
    max-width: fit-content;
}

.nav-categories li h4 {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--color-content-primary);
    font-size: 16px;
}

.d-none-mobile {
    display: block;
}

.d-none-desktop {
    display: none;
}

.nav-links li {
    display: block;
}

.nav-links ul li a {
    font-weight: normal;
}

.nav-links .adi-talk-btn img {
    width: 30px;
    margin-right: -10px;
}

.nav-links a {
    font-weight: normal !important;
}

.nav-links .sidebar-dropdown {
    display: block;
}

.nav-links .sidebar-submenu {
    display: none;
}

/* ----------------  Footer  ---------------- */
footer {
    background-color: var(--color-content-primary);
    position: relative;
}

footer .pt-20 {
    padding-top: 30px;
}

/* footerTop */
footer .footertop {
    background-color: white;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.123) 0px 7px 29px 0px;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;

}

footer .footertop p {
    display: inline-block;
    color: var(--text-color) !important;
    padding-right: 0 !important;
    width: 80%;
}

/* footer calltoaction */
footer .footertop .primary-btn {
    display: inline-block;
    width: fit-content;

}

footer .content {
    padding-top: 60px;
    padding-bottom: 45px;
}


footer .content p,
footer .footer-links a {
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 2px 0;
}

footer .footer-links a:hover {
    text-decoration: underline !important;
}

footer .content h3,
footer h4 {
    color: #fff;
}

footer .content h3 {
    font-size: 1.39rem;

}

footer .content p {
    font-size: 1rem;
    padding-right: 60px;
}

/* footer buttons */
footer .btn-share {
    background-color: transparent;
    color: var(--color-content-secondary);
    border: 1px solid var(--color-content-secondary);
}

footer .btn-share:hover {
    background-color: var(--color-content-secondary);
    color: #fff;
    border: 1px solid var(--color-content-secondary);
}

footer .content h4 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

/* footer links */
footer .content .d-flex a {
    margin-top: -10px;
}

footer .content .footer-links a {
    display: block;
    margin: 2px 0;
}

/* footer multilang container */
.footer-multi-lang {
    background-color: var(--color-text-light);
    border-radius: 3px;
    padding: 4px 20px;
    margin-top: 10px;
    cursor: pointer;
    display: none;
    font-size: 1rem;
}

.footer-multi-lang .lang-arrow {
    float: right;
    margin-top: 5px;
}

.langs-lists {
    background-color: #fff;
    padding: 4px 20px;
    display: none;
    width: 75%;

}

.langs-lists a {
    color: black !important;
    display: block;
    padding: 5px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgb(235, 233, 233);
}

.active-dropdown {
    display: block;
}

/* footer bottom */
footer .footer-bottom p {
    background-color: var(--color-footer-bottom);
    text-align: center;
    color: var(--color-text-light);
    font-size: .89rem;
    padding: 8px 0;
    margin-bottom: 0;
}

/* ----------------  datatables  ---------------- */
.table-responsive table {
    width: 99%;

}

.table-responsive table th,
.table-responsive table td {
    text-transform: capitalize;
}

.dataTables_filter {
    display: none;
}

.dataTables_length {
    display: none;
}

#dataList_info {
    font-size: .9rem;
    margin-top: 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: .9rem;
    padding: 5px 10px;
    margin: 5px 0;
}

.table-responsive table thead {
    width: 100%;
    background-color: var(--color-content-primary);
    color: #fff;
}

.table-responsive table thead th {
    font-size: 1rem;
}

.table-responsive table td {
    font-size: 1rem;
}

.trackOrders_tbl {
    max-width: 900px;
    margin: 0 auto;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #fff;
}

/* ----------------  dropdown_menu  ---------------- */
.dropdown__menu {
    position: relative;
}

.dropdown__menu #dropdown__menu-btn {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background-color: var(--color-content-primary);
    padding: 6px 13px;
}

.dropdown__menu i {
    font-size: 1.2rem;
}

.dropdown__menu .dropdown__menu-items {
    float: right;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.082);
    position: absolute;
    right: 0;
    z-index: 111;
    transition: all .5s ease-in;
}

.dropdown__menu-items a {
    display: block;
    border: 1px solid rgb(227, 225, 225);
    width: 200px;
    margin: 0;
    padding: 6px 10px 6px 15px;
    text-align: left;
    color: var(--text-color);
    font-size: 1rem;
}

.dropdown__menu-items a i {
    font-size: .9rem;
    padding-right: 2px;
}

.dropdown__menu-items a:hover {
    background-color: #f2f1f1;
}

.hide__dropdown {
    display: none;
}

.show__dropdown {
    display: block;
}

/* ----------------  alert  ---------------- */
.alert_message {
    position: absolute;
    right: 20px;
    top: 100px;
    z-index: 1111111;
}

.alert_message p {
    margin: 0;
}

/* ----------------- FILE INPUT ---------*/
.file-area {
    width: 100%;
    position: relative;
    padding-top: 15px;
}

.file-area input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.file-area input[type=file]:focus {
    outline: 0;
    border: 0;
    box-shadow: none;
}

.file-area .file-dummy {
    width: 100%;
    padding: 30px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: background 0.3s ease-in-out;
    background: #E5E5E5;
    border: 2px dashed #A3CDEA;
    border-radius: 5px;
}

.file-area .file-dummy i {
    font-size: 1.4rem;
    color: var(--color-content-primary);
}

.file-area .file-dummy .success {
    display: none;
}

.file-area:hover .file-dummy {
    background: rgba(255, 255, 255, 0.1);
}

.file-area input[type=file]:focus+.file-dummy {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline: -webkit-focus-ring-color auto 5px;
}

.file-area input[type=file]:valid+.file-dummy {
    border-color: rgba(0, 255, 0, 0.4);
    background-color: rgba(0, 255, 0, 0.3);
}

.file-area input[type=file]:valid+.file-dummy .success {
    display: inline-block;
}

.file-area input[type=file]:valid+.file-dummy .default {
    display: none;
}

/* ----------------- custom-radio ---------*/
.custom-radio {
    display: inline-block;
    padding: 10px;
    border: 1px solid #eaeaea;
    margin-right: 10px;
    cursor: pointer;
    background-color: var(--light-bg);
    margin: 20px 0;
}

.custom-radio.selected {
    background-color: #e9e9e9;
    color: #fff;
}

.custom-radio .radio-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px !important;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.custom-radio .radio-content {
    width: calc(100% - 22px);
}

.custom-radio .radio-heading {
    color: #000;
}

.radio-icon-active.selected {
    background-color: var(--color-content-primary);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

/* -----------------  form-styling ---------*/
.form-container {
    background-color: #fafafa;
}

.form-container h4 {
    font-size: 1.2rem;
    color: #000;
}

.form-container h5 {
    font-size: 1rem;
    color: #000;
}

.form-container .myform {
    padding: 30px 40px;
}

.form-container .form {
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.077);
    margin: 0 auto;
    position: relative;
}
.form-container input{
    border-radius: 5px;
}
.form-container .form-header {
    background-color: #F2F2F2;
    padding: 20px 40px;
}

.form-container .form-header .top-heading {
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 0px;
}


.form-container .form-header .step_no {
    font-size: .9rem;
}


.form-container input.err {
    border-bottom: 4px solid rgb(197, 9, 9) !important;
}

.form-container .form_subheading {
    font-size: 1rem;
}

.form-container .controls {
    text-align: left;
    position: relative;
    margin: 10px 0;
}

.form-container input[type="date"] {
    padding-left: -40px !important;
    min-width: 95%;
    background-color: #fff !important;

}

.form-container .controls input:focus,
.form-container .controls input:hover,
.form-container .controls select:focus,
.form-container .controls select:hover,
.form-container .controls textarea:focus,
.form-container .controls textarea:hover {
    outline: none;
    border: 1px solid #083A76;
    cursor: pointer;
}

.form-container .controls select {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-position: right;
}

.form-container .controls label {
    position: absolute;
    left: 0px;
    top: 8px;
    width: auto;
    min-width: 60px;
    color: rgb(110, 110, 110);
    font-size: 1rem;
    display: inline-block;
    padding: 0px 0px;
    font-weight: 400;
    background-color: #fff;
    transition: color .3s, top .3s, background-color .8s;
    margin-bottom: 5px;
    margin-top: -1px;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 5px;


}

.form-container .controls label.active {
    top: -13px;
    background-color: rgba(255, 255, 255, 1);
    width: auto;
    font-size: 1rem;
    color: black;
    font-weight: normal;

}

.form-container .controls label.active .controls {
    margin-top: 100px;
}

/* checkboxes */
.form-container input[type=checkbox] {
    display: block;
}

.form-container .checkbox-container {
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 8px 0;

}

.form-container .checkbox-container input[type="checkbox"] {
    width: 20px;
    margin: 5px 0 0 0;
}

.form-container .checkbox-container label {
    flex-grow: 1;
    margin-bottom: 0;
    margin-left: 5px;
    display: block;
    cursor: pointer;
    line-height: 21px;
    user-select: none;
}

.form-container .checkbox-container.checked {
    background-color: #eeeeee;
}

/*  */
.form-container .table .salary_modal .table {
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgb(174, 174, 174);
    border-collapse: collapse;

}

.form-container .table {
    border: 1px solid rgb(174, 174, 174);

}

.salary_modal .table {
    /* margin: 10px; */
    border: 1px solid rgb(174, 174, 174);
}

.form-container .table .text,
.salary_modal .table .text {
    padding: 10px;
}

.form-container textarea,
.salary_modal textarea,
.modal textarea {
    width: 100%;
    border: 1px solid rgb(174, 174, 174);
    padding: 5px 12px;
    font-size: 1rem;
    border-radius: 5px;
}

.form-container .table input,
.form-container .table select,
.salary_modal .table input,
.salary_modal .table select {
    width: 100%;
    margin-right: 10px;
    padding-bottom: 0 !important;
    margin-bottom: 15px !important;
    margin-top: 10px;
    padding-left: 3px !important;
    border: none !important;
}

.form-container .table select,
.salary_modal .table select {
    margin-top: 14px;
    width: 90px !important;
}

.form-container select {
    text-transform: capitalize;
}

.form-container .table .field span,
.salary_modal .table .field span {
    margin-top: 10px;
    color: var(--color-content-secondary);
    margin-left: 10px;
}

#starting-at {
    display: none;
}

.form-container .btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-container .prev-stp {
    border: none;
    font-weight: 400;
    background-color: transparent;
    padding: 1rem 0rem;
    border-radius: 7px;
    color: var(--text-color);
    cursor: pointer;

}


.form-container .nextbtn {
    margin-left: auto;

}

.next-stp:hover {
    background-color: #083A76;
}

#divKeywords .controls {
    margin-bottom: -10px !important;
}

#divKeywords .keyword {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
    text-transform: capitalize;
    margin-right: 10px;
    border: 1px solid rgb(199, 197, 197);
}

#divKeywords .keyword a {
    margin-left: 10px;
    color: #000;
}

#divKeywords .keyword a i {
    font-weight: normal;
}

.form-container .error,
.modal .error {
    margin-top: -5px;
    color: rgb(186, 9, 9);
    font-size: .9rem;

}

.error {
    margin-top: -5px;
    color: rgb(186, 9, 9);
    font-size: .9rem;
}

.form-container .mode_chks {
    width: 80%;
}

/* text-editor */
.text_editor {
    border: 1px solid rgb(174, 174, 174);
    border-radius: 8px;
}

.text_editor fieldset {
    border-bottom: 1px solid rgb(174, 174, 174);
    padding: 5px 0;
}

.text_editor button {
    background-color: transparent;
    border: none;
    width: 23px;
    /* background-color: #000; */
    display: inline-block;
    margin: 0;
    padding: 0;
}

.text_editor i {
    font-size: 1rem;
    margin-top: -8px;
    color: #000;
}

.list_icons {
    width: 32px;
    margin: 0;

}

.text_editor .text {
    min-height: 200px;
    padding: 5px 12px;
    font-size: 1rem;
}

/* fields-container */
.fields-container {
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.fields-container label {
    width: fit-content;
    text-align: right;
    margin-bottom: 0;
    border-right: 1px solid var(--border-color);
    background-color: #f0f0f0;
    padding: 7px 5px;
}
.fields-container label:first-child{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.fields-container input {
    width: 100%;
    padding: 0px 10px;
    border: 1px solid transparent !important;

}
.fields-container .border {
    border-left: 1px solid var(--border-color);
    height: 100%;
}

.fields-container .border-left{
    border-left: 1px solid #ccc;
}

/*  */
/*  image upload  options */
.form-container .image-upload-options {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 5px 0 15px;
}

.form-container .image-upload-options a {
    text-decoration: underline !important;
}

/* added image thumbails */
.form-container .image-thumbnail .image {
    width: 97%;
    height: 80px;
    position: relative;
    margin: 2px 0;
    border: 1px solid rgb(202, 202, 202);
}

.form-container .image-thumbnail .image img {
    width: 100%;
    height: 100%;
}

.form-container .image-thumbnail .delete-action {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-danger);
    width: 20px;
    height: 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.form-container .image-thumbnail .delete-action i {
    font-size: 12px;
}

/* ---------------- toggle info message  ---------------- */
.toggle-Info-Msg {
    flex: 1;
    margin-left: 10px;
    position: relative;
    margin-bottom: 10px;
}

.toggle-Info-Msg .info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #959595;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #083A76;
    z-index: 111111;
}

.toggle-Info-Msg .info-icon i {
    font-size: .7rem;
    display: inline-block !important;
}

.toggle-Info-Msg .message-box {
    display: none;
    position: absolute;
    width: 250px;
    padding: 10px;
    left: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.168);
    z-index: 11111;
}

.toggle-Info-Msg .message-box.active {
    display: block;
}

.toggle-Info-Msg .message-box p {
    margin: 0;
    user-select: none;
    font-size: .85rem;
    letter-spacing: 0;
}

/* __________________ 
   Pages 
_____________________*/
/* ----------------  hmp  ---------------- */
.voice-icon {
    display: none;
}

.quickSearchesSection-buttons {
    float: right;
}

.quickSearchesSection-buttons .info-btn {
    float: right;
}

/* ----------------  edit-bm-profile-page  ---------------- */
/* tabs */

.profile_wrapper {
    width: 100%;
    margin: 0px auto;
    padding: 0px 0;
    border-radius: 5px;
    background: #fff;
}

.profile_wrapper p {
    margin-top: -5px;
}

.profile_wrapper .section-heading {
    font-size: 1.3rem;
}

.profile_wrapper .formSub_heading {
    font-size: 1.1rem;
}

.profile_wrapper .formSub_subheading {
    font-size: 1rem;
}

/* nav_tabs */
.profile_wrapper .nav-tabs {

    width: 100%;
    background-color: #E5E5E5;
    box-shadow: none;

}

.profile_wrapper .nav-tabs .nav-tabs__links {
    position: relative;
    max-width: 600px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: transparent;
    margin: 0 auto;
}

.profile_wrapper .nav-tabs label {
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    color: #093A76;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.profile_wrapper nav label:hover {
    background: rgba(153, 151, 150, 0.3);
}

#general:checked~nav label.general,
#addInfo:checked~nav label.addInfo,
#contact:checked~nav label.contact,
#photos:checked~nav label.photos,
#about:checked~nav label.about {
    color: #fff;
}

.nav-tabs label i {
    padding-right: 7px;
    padding-top: 10px;
}

.nav-tabs .slider {
    position: absolute;
    height: 100%;
    width: 25%;
    left: 0;
    bottom: 0;
    z-index: 0;
    text-align: center;
    background: #093A76;
    transition: all 0.3s ease;
    line-height: 40px;
    border-radius: 5px;
}

.profile_wrapper input[type="radio"] {
    display: none;
}

.profile_wrapper input[type="checkbox"] {
    display: inline;
    width: 20px;
    height: 20px;
    margin: 5px 10px;
}

#addInfo:checked~nav .slider {
    left: 25%;
}

#contact:checked~nav .slider {
    left: 50%;
}

#photos:checked~nav .slider {
    left: 75%;
}

section .content {
    display: none;
    background: #fff;
}

#general:checked~section .general-content,
#addInfo:checked~section .additional-content,
#contact:checked~section .contact-content,
#photos:checked~section .photos-content,
#about:checked~section .content-5 {
    display: block;
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);

}

/* submit button */
.profile_wrapper .success_btn {
    background-color: var(--color-content-success);
    padding-inline: 30px;
}

.profile_wrapper .success_btn:hover {
    background-color: var(--color-content-success-hover);
    color: #fff;
}

/* mobile navigation links next and previous */
.profile_wrapper .mob_links {
    display: none;
    padding-top: 6px;
}

.profile_wrapper .mob_nav-tabs label {
    margin-left: 5px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: -2px;
    color: var(--color-content-primary);
}

.profile_wrapper .mob_nav-tabs label i {
    font-size: 16px;
    padding-right: 2px;
    color: var(--color-content-primary);
}

.profile_wrapper .col-sm-6,
.profile_wrapper .col-4,
.profile_wrapper .col-3,
.profile_wrapper .col-6 {
    padding-right: 10px;
    padding-left: 10px;
}

/* business hours */
.profile_wrapper .business_hours .line {
    width: 25px;
    height: 3px;
    background-color: var(--color-content-primary);
    margin: 0 10px;
    margin-top: 17px;
}

.business_hours td {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--color-content-primary);
}

.business_hours .day {
    width: 130px;
}

.business_hours .timing {
    width: 90%;
}

.business_hours .closed_div {
    display: flex;
    justify-content: left;
    margin-left: 10px;
}

.business_hours .closed_div input[type="checkbox"] {
    display: inline;
}

.business_hours .closed_div label {
    display: inline;
}

.additional-content .controls .floatLabel {
    padding-left: 12px;
}

.additional-content .controls .floatLabel2 {
    padding-left: 15px;
}

/* photos */

.file-area .file-dummy {
    background-color: transparent;
    border: 2px dashed #07306244;
}


/* ----------------  services-offered  ---------------- */
/* selected services */
.services .section-heading {
    font-size: 1.2rem;
}

.selected_services .service_box {
    display: inline-block;
    width: fit-content;
    border: 1px solid #AFA8A8;
    padding: 2px 15px 3px;
    border-radius: 40px;
    margin: 5px 0;
    margin-right: 5px;

}

.selected_services .service_box p {
    display: inline;
    margin-right: 10px;
    margin-bottom: 0;
}

.delete_icon {
    display: inline-block;
    color: var(--color-danger);
    font-size: .8rem;
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-danger);
    border-radius: 50%;
    text-align: center;
    padding-top: 3px;
    margin-top: 1px;
    cursor: pointer;
}

.delete_icon:hover {
    color: #fff;
    background-color: var(--color-danger);
}

/* search input */
.searchInput {
    max-width: 700px;
    margin-top: 30px;
}

/* Search Keywords  */
.search_keywords {
    margin: 20px 0;
    padding: 15px 10px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.search_keywords .info_btn {
    display: inline-block;
    margin-top: -3px;
}

.search_keywords a .fa-question {
    font-size: .9rem;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    padding-top: 5px;
    margin-left: 20px;
    background-color: var(--color-content-secondary);
    color: #fff;

}

.search_keywords .keywords p {
    display: inline-block;
    border: 1px solid #AFA8A8;
    padding: 5px 10px 8px;
    border-radius: 40px;
    margin: 4px 0;
    margin-right: 5px;
    font-size: 0.94rem;

}

.search_keywords .keywords a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: underline !important;
    font-size: 0.94rem;
}

/* keywords list */

.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    width: 20%;
    float: left;
    border: 1px solid #ADABAB;
    border-collapse: collapse;
}

@media (max-width: 992px) {
    .col-md-15 {
        width: 25%;
        float: left;
    }

    /* hello */
}

@media (max-width: 768px) {

    /* datatables */
    .table-responsive table {
        width: 700px;
    }


    .trackOrders_tbl {
        width: 600px !important;
    }

    .col-sm-15 {
        width: 33.3%;
        float: left;
    }
}

@media (max-width: 567px) {
    .col-15 {
        width: 50%;
        float: left;
    }
}

.keywords_list {
    padding-inline: 15px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 0px;
}

.keywords_list .keyword {
    padding: 5px 7px;
}

.keywords_list .fa-plus {
    display: inline-block;
    color: var(--color-content-success);
    font-size: .9rem;
    width: 25px;
    height: 25px;
    border: 1px solid var(--color-content-success);
    border-radius: 50%;
    text-align: center;
    padding-top: 3px;
    margin-top: 2px;
    cursor: pointer;
    margin-left: 15px;
}

.keywords_list .fa-plus:hover {
    color: #fff;
    background-color: var(--color-content-success);
}

/* ----------------  landing-page  ---------------- */
.banner {
    background-color: #083A76;
    width: 100%;
    position: relative;
    margin-bottom: 80px;
}

.banner .circle {
    width: 100%;
    background-color: #083A76;
    height: 100%;
    position: absolute;
    top: 100px;
    border-radius: 50%;
    z-index: 0;
}

.banner .circle .circlee {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #094081;

}

.banner .circle .circle1 {
    margin-left: 20px;
}

.banner .circle .circle2 {
    margin-top: -50px !important;
    margin-left: 5px;
}

.banner .circle .circle3 {
    display: block;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background-color: #094081;
    margin-left: 90px;
    margin-top: -40px;
}

.banner .right-circles {
    float: right;
    margin-right: 20px;
    position: absolute;
    bottom: 130px;
    right: 0px;
}

/* banner header */
.banner .inner-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1111;
}

.banner .inner-header .header-menu a {
    color: #fff;
}

.banner .header-menu ul li a:hover {
    border-bottom: 2px solid #fff;
}

.banner .inner-header .header-menu .dropdown {
    box-shadow: none;

}

.banner .inner-header .header-menu .dropdown a {
    color: var(--color-content-primary);
}

.banner .inner-header .login-btn {
    background-color: var(--color-content-secondary);
    color: #fff;

}

.banner .inner-header .login-btn:hover {
    color: var(--color-content-secondary);
    border: 1px solid var(--color-content-secondary);

}

.banner .mobile-menu .nav-btn a {
    font-size: 25px;
    color: #fff;
}

/* banner text */
.banner .text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 80px;
    margin: 0 auto;
}

.banner .text h2 {
    font-size: 3.5rem;
    color: var(--color-content-secondary);
}

.banner .text h4 {
    font-size: 1.5rem;
    color: rgb(226, 225, 225);
    font-weight: 500;
    margin-top: -5px;
}

.banner .text ol {
    display: inline-block;
    text-align: left;
    padding: 5px 0;
    margin-bottom: 0;
    max-width: 85%;
}

.banner .text p,
.banner .text ol li {
    color: rgb(228, 227, 227);
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5rem;
}

.banner .btn_group .white-btn {
    background-color: #fff;
    color: var(--color-content-primary);
    border: 1px solid white;
}

.banner .btn_group .white-btn:hover {
    background-color: transparent;
    color: #fff;
}

.banner .btn_group .readmore-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid white;
}

.banner .btn_group .readmore-btn:hover {
    background-color: #fff;
    color: var(--color-content-primary);
}

/* business profile */
.business-profile {
    display: flex;
    padding: 20px 0 0;
}

.business-profile p {
    margin-right: 60px;
}

.business-profile .business-profile__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 280px;
    background: linear-gradient(#083a76e0, #083a76d2), url('../images/welcome-img.jpg');
    background-position: center;
    margin-bottom: -20px;
}

.business-profile .business-profile__img h4 {
    position: relative;
    color: var(--color-content-secondary);
    font-weight: 500;
    font-size: 1.7rem;
}

.business-profile .business-profile__img h4 .fa-arrow-up {
    color: var(--color-content-success);
    font-size: 2rem;
}

.business-profile .business-profile__img h4 .fa-arrow-down {
    color: #CB0505;
    font-size: 2rem;
}

.business-profile .business-profile__img h4::before {
    content: '';
    width: 15%;
    height: 2px;
    background-color: var(--color-content-secondary);
    position: absolute;
    top: 20px;
    left: -50px;
}

.business-profile .business-profile__img h4::after {
    content: '';
    width: 15%;
    height: 2px;
    background-color: var(--color-content-secondary);
    position: absolute;
    top: 20px;
    right: -50px;
}

.business-profile .link {
    color: var(--color-content-primary);
}

/* categories */
.categories {
    background-color: #F8F8F8;
    margin-bottom: 120px;
}

.categories .category .category_header {
    background-color: var(--color-content-primary);
    padding: 15px 0 10px;
    border-radius: 10px 10px 0 0;
    padding-left: 50px;
    position: relative;
}

.categories .category .category_header .category_no {
    width: 35px;
    height: 35px;
    background-color: var(--color-content-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    position: absolute;
    bottom: -15px;
    left: 15px;
}

.categories .category .category_header h4 {
    color: #fff;
    font-size: 1rem;
}

.categories .category .category_body {
    background-color: #fff;
    padding-top: 20px;
    padding-left: 70px;
    padding-bottom: 30px;
}

.categories .category .category_body p {
    line-height: 1.4rem;
    position: relative;
}

.categories .category .category_body p::before {
    content: '';
    width: 17px;
    height: 4px;
    background-color: var(--color-content-primary);
    position: absolute;
    top: 12px;
    left: -25px;
}


/* ----------------  categories-page  ---------------- */
.categories_details h4 {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.categories_details .category {
    display: flex;
    border-radius: 5px;
    background-color: #F0F0F0;
    padding: 10px 10px;
    transition: .2s ease-in-out;
    margin: 10px 0;
    width: 100%;
}

.categories_details .category:hover,
.categories_details .category:focus {
    background: var(--color-content-primary);
}

.categories_details .category .cat_no p {
    width: 35px;
    height: 35px;
    background-color: var(--color-content-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0;
    margin-right: 5px;
    font-size: 1rem;

}

.categories_details .category .cat_name p {
    margin: 0;
    margin-top: 5px;
    font-size: 1rem;
    color: var(--color-content-primary);
    transition: .2s ease-in-out;
}

.categories_details .category:hover .cat_name {
    color: #fff;

}

/* ----------------  keywords-offered  ---------------- */
.offered-keywords .section-heading {
    font-size: 1.2rem;
}

.keywords_list p {
    margin: 0;
}

.offered-keywords .keywords_list p {
    font-size: 1rem;
    text-transform: capitalize;
}

.offered-keywords .pending_keyword {
    background-color: var(--color-content-secondary);
    cursor: pointer;
}

.offered-keywords .pending_keyword p {
    color: #fff;
}

.offered-keywords .pending_keyword .delete_icon {
    color: #fff;
    border: 1px solid #fff;
}

.offered-keywords .message_box {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.offered-keywords #addWord_btn {
    display: none;
}

.offered-keywords #noResults_found {
    display: none;
}

.offered-keywords #addWord_cancel {
    display: none;
}

.offered-keywords #keyword_type {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.offered-keywords .btn-secondary {
    padding: 6px 20px;
    margin-left: 2px;
    border: 1px solid #6c757d;
}

/* ----------------  areas-we-cover  ---------------- */
.map-header {
    background-color: #F8F8F8;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 10px 22px;
    padding-right: 26px;

    width: 100%;
    margin: 0 auto;
}

.map-header .change_mapBtn {
    float: right;
}

.map-header p {
    margin-top: -5px;
}

.map-body .controls {
    max-width: 300px;
    margin: 30px auto;
    margin-bottom: 10px;

}

.map-body .controls label.active {
    top: -12px;
    color: var(--color-content-primary);
    background-color: rgba(255, 255, 255, 1);
    width: auto;
}

.map-body #map {
    width: 100%;
    height: 400px;
    border: 1px solid #DDDDDD;
}

.modalSelect label.active {
    display: none;
}

.selectedAreas {
    background-color: #fefefe;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    padding: 10px 22px;
    padding-right: 26px;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
}

.selectedAreas h5 {
    font-size: 1.1rem;
    color: var(--color-content-primary);
}

.selectedAreas a {
    float: right;
}

.selected-areas p {
    display: inline-block;
    width: fit-content;
    border: 1px solid #ffffff;
    padding: 5px 15px 5px;
    border-radius: 5px;
    margin: 5px 0;
    margin-right: 5px;
    background-color: var(--color-content-secondary);
    color: #fff;

}


/* ----------------  map-page  ---------------- */
.map_btn_group {
    position: absolute;
    right: 30px;
    top: 20px;
}

.map_btn_group .btn {
    color: white;
    padding: 5px 20px;
    font-size: 1rem;
}

.map_btn_group .closebtn {
    background-color: #6C757D;
    border: 1px solid #6C757D;
}

.map_btn_group .submit {
    background-color: var(--color-content-primary);
    border: 1px solid #6C757D;
    padding: 5px 20px;
}

.map-selection #chartdiv {
    height: 80vh !important;
}

/* ------------  maps-options-page  ---------- */
.map_options {
    max-width: 800px;
    margin: 0 auto;
}

.map_options h4 {
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
}

.map_options a {
    display: inline-block;
    background-color: var(--color-content-primary);
    width: 250px;
    padding: 10px 0;
    margin: 10px 0;
    color: #fff;
    border-radius: 3px;
    font-size: 1rem;
    text-align: center;
    transition: .2s ease-in-out;
}

.map_options a:hover {
    background-color: #dedede;
    color: var(--text-color);
}

.map_options .active {
    background-color: var(--color-content-secondary);
}


/* ----------------  templates-page  ---------------- */
.templates .template_holder {
    width: 100%;
    margin-right: 0 !important;
    margin-left: 0;
}

.templates .domain_link {
    float: right;
    font-size: 1rem;
}

.templates .template_box {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.147);
    padding: 0;
}

.templates .template_box img {
    width: 100%;
    height: 200px;
}

.templates .template_box .bottom_links {
    padding: 8px 0;
    background-color: #e8e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.templates .template_box .bottom_links a {
    font-size: .9rem;
    display: inline-block;
    padding: 4px 10px;
}

.templates .template_box .bottom_links .customize_btn {
    border: 1px solid var(--color-content-secondary);
    background-color: var(--color-content-secondary);
    color: #fff;
    border-radius: 5px;
}

.templates .template_box .bottom_links .customize_btn:hover {
    background-color: transparent;
    color: var(--color-content-secondary);
}

.templates .template_box .bottom_links .select_btn {
    border: 1px solid var(--color-content-primary);
    background-color: var(--color-content-primary);
    color: #fff;
    border-radius: 5px;
}

.templates .template_box .bottom_links .select_btn:hover {
    background-color: transparent;
    color: var(--color-content-primary);
}

.templates .template_box .bottom_links .preview_btn {
    border: 1px solid var(--color-content-primary);
    background-color: transparent;
    color: var(--color-content-primary);
    border-radius: 5px;
    margin-left: 7px;
}

.templates .template_box .bottom_links .preview_btn:hover {
    background-color: var(--color-content-primary);
    color: #fff;
}


/* -------------- member-details-page  ---------*/
.memberDetails_tabs {
    padding-bottom: 70px;
}

.memberDetails_tabs .tabs {
    max-width: 600px;
    min-height: 330px;
    padding: 20px 30px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.memberDetails_tabs .tabs .tab-header {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.tabs .tab-header>div {
    width: calc(100%/2);
    text-align: left;
    color: rgb(131, 130, 130);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
}

.memberDetails_tabs .tabs .tab-header>div.active {
    color: var(--color-content-primary);
}

.memberDetails_tabs .tabs .tab-indicator {
    position: relative;
    width: calc(100%/2);
    height: 5px;
    background-color: var(--color-content-secondary);
    border-radius: 5px;
    transition: all 500ms ease-in-out;

}

.memberDetails_tabs .tabs .tab-body {
    position: relative;
    height: calc(100% -60px);
    padding: 10px 5px;
    color: black;
}

.memberDetails_tabs .tabs .tab-body h2 {
    color: violet;
}

.memberDetails_tabs .tabs .tab-body>div {
    position: absolute;
    top: -200%;
    opacity: 0;
    margin-top: 5px;
    transform: scale(0.9);
    transition: opacity 500ms ease-in-out 0ms,
        transform 500ms ease-in-out;
    width: 100%;

}

.memberDetails_tabs .tabs .tab-body>div.active {
    top: 0px;
    opacity: 1;
    transform: scale(1);
    margin-top: 0px;
}

.memberDetails_tabs .controls input {
    width: 100% !important;
    position: relative;
    margin-bottom: 0;
}

.memberDetails_tabs .controls i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1rem;
    color: #808080;
    cursor: pointer;
}

.memberDetails_tabs .controls .fa-eye {
    color: var(--color-content-primary);
}

.memberDetails_tabs .generate_btn {
    width: fit-content;
    background-color: var(--color-content-primary);
    padding: 2px 10px !important;
}

.memberDetails_tabs .generate_btn:hover {
    color: var(--color-content-primary);
    background: transparent;
    border: 1px solid var(--color-content-primary);
}

.memberDetails_tabs #newPwdeye {
    position: absolute;
    top: 10px;
    right: 165px;
}

/* -------------- faq-page  ---------*/
.accordionMenu {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 15px;
}

.accordionMenu input[type=radio] {
    display: none;
}

.accordionMenu .accordianHeader {
    display: block;
    padding: 10px 15px;
    background: #f7f7f7;
    font-size: 1rem;
    color: #083A76;
    position: relative;
    cursor: pointer !important;
    border: 1px solid rgb(222, 221, 221);
    font-weight: 500;
    margin-bottom: 12px;
    padding-right: 20px;
    font-weight: bold;
}

.accordionMenu .accordianHeader::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #083A76;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 10;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.accordionMenu .content {
    max-height: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}

.accordionMenu .content .inner {
    font-size: 1rem;
    color: #4F575F;
    background: #fff;
    padding: 15px 15px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.084);
    margin-bottom: 20px;
    border: 1px solid rgb(222, 221, 221);
    border-top: 0;
}

.accordionMenu .content .inner p {
    margin: 5px 0;
}

.accordionMenu input[type=radio]:checked+.accordianHeader {
    margin-bottom: 0 !important;
}

.activeAccordian+.accordianHeader {
    margin-bottom: 0 !important;
}

.accordionMenu input[type=radio]:checked+.accordianHeader:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);

}

.activeAccordian+.accordianHeader:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);

}

.accordionMenu input[type=radio]:checked+.accordianHeader+.content {
    max-height: 2000px;
    height: auto;
}

.activeAccordian+.accordianHeader+.content {
    max-height: 2000px;
    height: auto;
}

.accordionMenu form textarea {
    height: 100px;
}



/* -------------- share-page  ---------*/

#sharelist a {
    display: inline-block;
    text-align: left;
    border: 1px solid #d7d7d7;
    background: #ffffff;
    color: var(--color-content-primary);
    width: 100%;
    margin: -1px 0 0 -1px;
    padding: 0 0;
    text-decoration: none;
    white-space: nowrap;
    margin: 2px 0px;
}

#sharelist .appname {
    display: inline-block;
    background-color: white;
    width: calc(100% - 53px);
    padding-left: 10px;
    font-size: 1rem;
}

#sharelist a:hover {
    background-color: #ececec;
}

#sharelist a:hover>.appname {
    background-color: #ececec !important;
    color: #083A76;
}

#sharelist .icons {
    width: 35px;
    height: 35px;
    display: inline-block;
    /* margin-top: -8px; */
    background: url(../images/social-icons.png) 0 no-repeat;
}

#sharelist .icon {
    display: inline-block;
    /* margin: 0 5% 0 1%; */
}

#sharelist .icon {
    background: url(../images/social-icons.png) 0 no-repeat;
    width: 100%;
    height: 100%;
}

/* row 1 */
#sharelist .ico0 {

    background-position: -147px 0px;
    /* col 4 */

}

#sharelist .ico2 {
    background-position: -240px 0px;
    /* col 6 */
}

/* row 2  */
#sharelist .ico4 {
    background-position: -50px -48px;
}

#sharelist .ico7 {
    background-position: -98px -50px;
}

#sharelist .ico15 {
    background-position: -146px -50px;
}

#sharelist .ico8 {
    background-position: -186px -60px;
}

#sharelist .ico5 {
    background-position: -240px -48px;
}

/* row 3 */
#sharelist .ico3 {
    background-position: -50px -95px;
}

#sharelist .ico1 {
    background-position: -98px -95px;
}

/* row4 */

#sharelist .ico6 {
    background-position: -215px -152px;
}

#sharelist .ico8 {
    background-position: -2px -152px;
}

#sharelist .ico9 {
    background-position: -54px -152px;
}

#sharelist .ico10 {
    background-position: -110px -152px;
}

#sharelist .ico11 {
    background-position: -165px -152px;
}

#sharelist .ico12 {
    background-position: -265px -152px;
}

#sharelist .ico13 {
    background-position: -313px -152px;
}

#sharelist .ico14 {
    background-position: -370px -152px;
}

/* ----------------  transalations-page  ---------------- */
.translations .form_group .controls {
    width: 90%;
}

.translations .search_results table {
    width: 100%;

}

.translations .search_results table th,
.translations .search_results table td {
    border: 1px solid rgb(174, 174, 174);
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.translations .search_results table th {
    color: var(--color-content-primary);
    font-size: 1.1rem;

}

.translations .search_results table td {
    color: var(--text-color);
    font-size: 1rem;
}

.translations .modal-content {
    margin: auto;
}

#suggestion_modal {
    padding-right: 0 !important;
    margin: 20px 0px !important;
    padding: 0 0px;
    width: 100%;
}

/* ----------------  advert-cluster-page  ---------------- */
.advert-cluster-page {
    padding: 90px 0;
}

.adverts .col-lg-15 {
    border: none;
    /* padding: 0 8px; */
    display: flex;
    align-items: stretch;
    padding: 0;

}

.adverts .advert {
    margin: 5px;
    background-color: #f1f0f0;
    text-align: center;
    padding: 15px 10px 10px;
    width: 100%;
}

.adverts .advert:hover {
    background-color: #e2dfdf;
}

.adverts .advert img {
    width: 40px;
}

.adverts h4 {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.adverts .cluster_name {
    color: var(--color-content-secondary);
}

.adverts .categories_details .category {
    display: flex;
    align-items: center;
    border-radius: 5px;
    background-color: #f1f0f0;
    margin: 8px 0;
}

.adverts .categories_details .category:hover,
.adverts .categories_details .category:focus {
    background: #e2dfdf;
}

.adverts .categories_details .category .cat_no p {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    background-color: var(--color-content-primary);
}

.adverts .categories_details .category .cat_name p {
    margin-top: 0 !important;
}

.adverts .categories_details .category:hover .cat_name {
    color: var(--color-content-primary);


}

/* ----------------  category_details-page  ---------------- */
.categoryHero_section {
    background-color: #F0F0F0;
}


.categoryHero_section img {
    width: 90%;
    max-height: 280px;
    object-fit: cover;
    object-position: 80% 80%;
}

.categoryHero_section .heading {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.categoryHero_section .sub_heading {
    font-size: 1.2rem;
    color: var(--color-content-primary);
}

.profile_benefits ol {
    padding-left: 24px;
}

.profile_benefits .image {
    height: 600px;
    width: 100%;

}

.profile_benefits .image img {
    height: 100%;
    width: 100%;
}

.profile_offerings {
    background-color: #F8F8F8;
}

.profile_offerings .image {
    height: 280px;
}

.profile_offerings .image img {
    height: 100%;
}

.profile_steps {
    background: linear-gradient(#032956ca, #042f63da), url(../images/secbg1.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top;
}

.profile_steps .section-heading {
    color: #fff;
}

.profile_steps .primary-btn {
    background-color: var(--color-content-secondary);
}

.profile_steps p,
.profile_steps ol li {
    color: #e8e8e8;
}

.profile_steps ol li {
    margin-left: -10px;
}

.profile_steps ol li {
    line-height: .8rem;
}

.profile_features img {
    max-height: 540px;
    width: 100%;
}

.profile_features .text {
    height: fit-content;
}

.profile_features ol {
    padding-left: 20px;
}

.profileContent .text {
    margin-top: 24px;
}

.profileContent .feature {
    background-color: #F0F0F0;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* plaza-thumbnail-page */
/* ----------------  plaza-list-page ---------------- */
.plaza {
    background-color: #f8f8f8;
}

.gray-bg1 {
    border-radius: 15px;
}

.gray-bg1 .less-gutter input {
    border: none;
    margin-bottom: 1px;
    outline: none;
    color: #000;

}

/* list/grid button */
.layout_btn {
    border: 1px solid #bebebe;
    background-color: #fff;
    color: #000;
    padding: 0px 6px;
}

#list.active,
#grid.active,
#list2.active,
#grid2.active {
    background-color: #dddcdc;
}

/* sidebar */
.filters_sidebar {
    background: #fff;
    border: 1px solid #dde5eb;
    border-radius: 8px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 295px;
    margin-right: 24px;
    padding: 20px;
    position: sticky;
    top: 0;
    overflow: scroll;
    max-height: calc(100vh - 10px);
    transition: all .5s ease-in-out;
}

.close_sidebar {
    display: none;
}

.filters_sidebar::-webkit-scrollbar {
    width: 5px;
}

.filters_sidebar::-webkit-scrollbar-thumb {
    background-color: var(--color-content-primary);
    border-radius: 20px;
}

.filters_sidebar .filter {
    border-bottom: 1px solid rgb(207, 207, 207);
    margin-bottom: 20px;
}

.filters_sidebar h3 {
    font-size: 1rem;
    text-transform: capitalize;
}

.filters_sidebar .price_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px
}

.filters_sidebar .price,
.filters_sidebar .price_flex {
    position: relative;
}

.filters_sidebar .price_flex input {
    width: 95%;
}

.filters_sidebar .price label {
    font-style: normal;
    font-weight: 500;
    font-size: .9rem;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 6px;
}

.filters_sidebar input {
    padding-left: 20px;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    z-index: 1;
    background: transparent;
    color: #555658 !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.filters_sidebar input:focus {
    outline: 0 !important;
}

.filters_sidebar .price_flex span {
    position: absolute;
    bottom: 7px;
    left: 8px;
    z-index: 9;
    font-size: .9rem;
}

.filters_sidebar .checkbox_text {
    font-size: .9rem;
    margin-left: 5px;
    color: var(--text-color);
    text-transform: capitalize;
}

.filters_sidebar .checkboxHolder label {
    cursor: pointer;
    top: 3px;
    position: relative;
}

.filters_sidebar .checkboxHolder input[type=checkbox] {
    margin: 4px 0 0;
    line-height: normal;
    width: 17px;
    height: 17px;
    font-size: .9rem;
    cursor: pointer;
}

.filters_sidebar .filter_dropdown {
    display: block;
    cursor: pointer;
}

.filters_sidebar .clear_all {
    font-size: .9rem;
    color: var(--color-content-secondary);
    text-decoration: underline !important;
}

.filters_sidebar .list-unstyled {
    list-style: none;
}

.filters_sidebar .list-unstyled li {
    display: inline-block;
    color: var(--text-color);
    background-color: #efefef;
    padding: 4px 8px;
    margin: 4px 0;
    margin-right: 5px;
    border-radius: 4px;
}

.filters_sidebar .list-unstyled li span {
    color: var(--text-color);
    font-size: .9rem;
}

.filters_sidebar .list-unstyled li:hover {
    background-color: #dbdada;
    color: #fff;
}

.filters_sidebar .list-unstyled li .close {
    font-size: 1rem;
    color: #000;
    margin-top: 2px;
    margin-left: 10px;
}

.filters_sidebar .fa-chevron-down,
.search_results .filter_icon {
    font-size: .8rem;
    color: var(--color-content-secondary);
}

/* search results */
.search_results {
    width: calc(100% - 295px);
}

.talent-sec .search_results {
    width: 100%;
}

.talent-sec .search_results .job_searchbar {
    width: 72%;
}

#talent {
    width: 100%;
}

/* .search_results.expand .jobs{
    width: 100%;
} */
.search_results .filter_btn {
    font-size: 1rem;
    color: var(--color-content-secondary);
    border: none;
    display: none;
    background-color: #f0f0f0;
}

.search_results .filter_btn:hover {
    border: 1px solid rgb(206, 206, 206);
}

.search_results .results_no {
    font-size: .9rem;
}

.search_results .links a {
    color: #0a4b9a;
    text-decoration: underline !important;
}

/* products_list */
#products {
    gap: 10px;
}

#products .item {
    width: 32%;
}

#products .job_item {
    width: 49%;
}

#talent .job_item {
    width: 32%;
}

.view-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    padding: 0;
}

.thumbnail {
    padding: 0px !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 100%;
    border: 1px solid #fff;
}

/* list view */
.item.list-group-item,
.job_item.list-group-item {
    float: none;
    width: 100%;
    background-color: transparent;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
    border: 0;
}


.item.list-group-item .img-event {
    float: left;
    width: 250px;
    height: 150px !important;

}

.item.list-group-item .img-event img {
    width: 100%;
    height: 100%;
}


.item.list-group-item .list-group-image {
    margin-right: 10px;
}

.item.list-group-item .thumbnail {
    margin-bottom: 0px;
    display: inline-block;
}

.item.list-group-item .caption {
    float: left;
    width: calc(100% - 250px);
    margin: 0;
}

.item.list-group-item:before,
.item.list-group-item:after {
    display: table;
    content: " ";
}

.item.list-group-item:after {
    clear: both;
}

/* grid-view */
.service-head-boxx {
    height: fit-content;
    border: 1px solid #d8d8d8;
}

.service-head-boxx:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.196);
    padding-bottom: 0 !important;
}

.service-head-boxx .img-event {
    height: 150px;
    width: 100%;
    cursor: pointer;
}

.service-head-boxx .img-event img {
    width: 100%;
    height: 100%;
}

.service-head-boxx h4 {
    margin-bottom: -5px;
    margin-top: 5px;
}

.service-head-boxx h4 a {
    color: var(--color-content-primary) !important;
    font-size: 1.1rem !important;
    display: inline-block;
    margin-bottom: 3px;
}

.service-head-boxx .service_details {
    padding: 10px 12px 0;
    margin: 0 0px;
}

.service_details .text span {
    display: block;
}

.service-head-boxx .service_details .text {
    cursor: pointer;
}

.service-head-boxx p {
    font-size: 16px;
}

.service-head-boxx .location {
    font-size: 16px;
    margin-bottom: 0px;
}

.service-head-boxx .service_details_bottom {
    border-top: 1px solid rgb(202, 202, 202);
    margin-top: 10px;
    padding-top: 5px;

}

.service-head-boxx .service_details_bottom .price {
    color: var(--color-content-secondary);
    font-size: 1.3rem;
}

.service-head-boxx .service_details_bottom .price span {
    font-size: 1rem;
    padding-right: 5px;
}

.service-head-boxx .service_details .links {
    width: fit-content;
}


.service-head-boxx .service_details .links .btn {
    padding: 0;
}

.service-head-boxx .service_details .links .icon {
    position: relative;
    cursor: pointer;
    display: inline;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-right: 2px;
    border-radius: 10px;

}

.service-head-boxx .service_details .links .tooltip {
    position: absolute;
    top: 0;
    left: -10px;
    font-size: 14px;
    width: fit-content;
    background: #ececec;
    color: var(--color-content-primary);
    padding: 5px 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.service-head-boxx .service_details .links .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    /* width: fit-content; */
    background: #fff;
    bottom: 3px;
    left: -50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: translate(-50%) rotate(45deg);
    -moz-transform: translate(-50%) rotate(45deg);
    -ms-transform: translate(-50%) rotate(45deg);
    -o-transform: translate(-50%) rotate(45deg);
    -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-head-boxx .service_details .links .icon:hover .tooltip {
    top: -30px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-head-boxx .service_details .links .icon:hover span,
.service-head-boxx .service_details .links .icon:hover .tooltip {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.01);
}

.service-head-boxx .icon .plaza-btn {
    width: 35px;
    height: 30px;
    vertical-align: middle;
    /* padding-top: 5px; */
    background-color: #f5f5f5;

}

.service-head-boxx .icon .plaza-btn img {
    margin-left: -5px;
}

/* buttons */
.plaza-btn {
    color: var(--color-content-primary);
}

.plaza-btn:hover {
    color: var(--color-content-primary);

}

/* sort_dropdown   */
.sort_dropdown {
    position: relative;

}

.sort_dropdown button {
    color: var(--color-content-secondary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background-color: #f0f0f0;
    border: 1px solid #fff;
}

.sort_dropdown i {
    font-size: .8rem;
}

.sort_dropdown button:hover {
    border: 1px solid rgb(206, 206, 206);
}

.sort_dropdown .sort_dropdown__items {
    float: right;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.082);
    position: absolute;
    right: 0;
    z-index: 111;
    transition: all .5s ease-in;
}

.sort_dropdown__items a {
    display: block;
    border: 1px solid rgb(227, 225, 225);
    width: 200px;
    margin: 0;
    padding: 7px 10px 7px 15px;
    text-align: left;
    color: var(--text-color);
    font-size: .9rem;
}

.sort_dropdown__items a:hover {
    background-color: #f2f1f1;
}

.hide_dropdown {
    display: none;
}

.show_dropdown {
    display: block;
}

.fade:not(.show) {
    opacity: 1;
}

/* pagination */
.pagination_page span {
    color: #7e7e7e;
    font-size: .9rem;
}

.pagination_page .primary-btn {
    background-color: transparent;
    color: var(--color-content-primary);
    border: 1px solid var(--color-content-primary);
    padding-inline: 40px;
    margin-top: 12px;
}

.pagination_page .primary-btn:hover {
    background-color: var(--color-content-primary);
    color: #fff;
}

/* compare results */
#overlay_compare {
    position: fixed;
    z-index: 1111;
    bottom: 43px;
    left: 0%;
    width: 100%;
}

#overlay_compare .product_thumb {
    background-color: var(--light-bg);
    border: 1px solid #e7e6e6;
    position: relative;
    margin: 10px 0px;
    width: 24%;
}

#overlay_compare .products {
    box-shadow: 0 0 20px 0 rgba(20, 20, 20, 0.195);
    max-width: 700px;
    width: 60%;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
    border: 1px solid #dde5eb;
    padding-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
}

#overlay_compare .product_thumb .delete_btn {
    position: absolute;
    right: -13px;
    top: -15px;
    border: 0;
    z-index: 1111;
    background-color: transparent;
    color: rgb(185, 16, 16);

}

#overlay_compare .product_image {
    width: 100%;
    height: 100px;
}

#overlay_compare .product_image img {
    width: 100%;
    height: 100%;
}

#overlay_compare .product_meta {
    padding: 10px 5px;
}

#overlay_compare .product_meta p {
    margin: 0;
}

#overlay_compare .product_meta .title {
    font-size: .8rem;
}

#overlay_compare .product_meta .price {
    font-size: .9rem;
    color: var(--color-content-secondary);
}

#overlay_compare .products .btn {
    padding: 5px 20px;
}

#overlay_compare .products .back-btn {
    border: 2px solid #6C757D;
}


/* ----------------  post-ads-page ---------------- */
.form_holder {
    max-width: 600px;
    min-height: 330px;
    padding: 30px 30px 20px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.043);
    overflow: hidden;
    margin: 0 auto;

}

.form_holder h6,
.form_holder h5 {
    color: var(--color-content-primary);
    width: 20%;
    font-size: 1rem;
}

.form_holder h6 {
    width: fit-content;
    margin-right: 20px;
}

.form_holder h5 {
    width: 100%;
    font-size: 1.1rem;
    text-align: center;
    text-transform: none;
}

.form_holder p {
    margin-top: -5px;
}

.form_holder .inputs_holder {
    width: 60%;
}

.form_holder .location {
    display: flex;
    width: 50%;
}

.form_holder .location span {
    width: fit-content;
    margin-top: -4px;
}

.form_holder .location input[type=radio] {
    width: 20px;
    height: 20px;
}

.form_holder .other_address {
    background-color: #fbfbfb;
    padding: 20px;
    padding-bottom: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    display: none;
    margin: 10px 0 20px;
}

.form_holder .spot_location {
    color: var(--color-content-secondary);
    text-decoration: underline !important;
}

.form_holder .upload_btn {
    background-color: transparent;
    color: var(--color-content-primary);
    border: none;
    margin-left: 10px;
}

/* post_ads_images */
.form_holder .file-area {
    text-align: center;
}

.form_holder .back_btn {
    color: rgb(59, 59, 59);
    font-size: 1rem;
}

.images_previews .preview {
    width: 33.3%;
    height: 120px;
    padding: 6px 4px;
    position: relative;

}

.images_previews .preview img {
    width: 100%;
    height: 100%;
    position: relative;
}

.form_holder .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #050404;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_holder .close span {
    color: #fff;
}

#myModal_map .modal-content {
    padding-bottom: 60px;
}

#myModal_map .modal-dialog {
    width: 90%;
    max-width: 1250px;
}

#myModal_map #save_button {
    z-index: 999;
    position: absolute;
    left: 43% !important;
}

/* ----------------  plaza-details-view-page ---------------- */
.product_carousel {
    width: 50%;
}

.product_details {
    width: 50%;
    padding-top: 20px;
    padding-right: 0;
    padding-left: 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}


.swiper {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    width: 100%;
}

.mySwiper2 {
    height: 350px;
}

.mySwiper {
    height: 80px;
    box-sizing: border-box;
    padding: 20px 0;
    margin-top: 8px;

}

.mySwiper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 4px;

}

.mySwiper .swiper-slide,
.mySwiper4 .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.8;
}

.mySwiper .swiper-slide-thumb-active,
.mySwiper4 .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--color-content-secondary);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem !important;
}

.product_details .price {
    font-size: 1.3rem;
    color: var(--color-content-secondary);
    margin-top: -5px;
}

.product_details .price span {
    font-size: 1.1rem;
}

.product_details .location {
    color: var(--text-color);
}

.product_details .contact {
    background-color: #ededed;
    padding-left: 10px;
}

.product_details .contact h4 {
    font-size: 1rem;
}

.product_features .feature {
    width: 50%;
    padding-right: 40px;
}

.product_features .feature .fa-check {
    background-color: white;
    color: var(--color-content-primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.079);
    float: left;
}

/* table styling */
.product_features .feature table {
    width: 100%;
    margin-top: 20px;
}

.product_features .feature table tr,
.product_features .feature table td {
    border: 1px solid #e1e1e1;
    padding: 8px 10px;

}

.product_features .feature table tr:nth-child(odd) {
    background-color: var(--light-bg);
}

.product_features .feature table .title {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text-color);
    width: 35%;
}

.location_map {
    width: 50%;
}

.location_map iframe {
    width: 100%;
    height: 300px;
    background-color: var(--light-bg);
}

/*  */

/* --------------- gallery-preview-page ----------- */
.gallery {
    height: 100vh;
    padding-bottom: 50px;
    overflow-y: hidden;
}

/* tabs */
.gallery .nav-tabs {
    justify-content: center;
    border-top: 1px solid rgb(228, 227, 227);
    border-bottom: 0;

}

.gallery .nav-tabs li a {
    color: var(--text-color);
    font-size: 1rem;
    padding: 3px;
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;

}


.gallery .nav-tabs a.active {
    color: #000;
    border-bottom: 2px solid var(--color-content-secondary) !important;
}

.expanded_carousel {
    height: 600px;
    /* height: 100%; */
    position: relative;
    margin-bottom: 40px;
}


.gallery .swiper {
    height: 94%;
    position: relative;
    width: 100%;
}

.gallery .thumbs .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.9;
}

.gallery .thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--color-content-secondary);
}

.gallery .thumbs .swiper-wrapper {
    justify-content: center;
}

.gallery .thumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 20px 0;
    margin-top: 8px;
    position: absolute;
    bottom: 30px;

}

.gallery .fa-chevron-left {
    color: var(--color-content-secondary);
    margin-right: 30px;
}

.gallery .go-back {
    color: var(--color-content-secondary);
    font-size: 1rem;
    display: none;
    margin-top: -5px;
}

.gallery .header .details {
    border-right: 1px solid rgb(187, 185, 185);
    padding-right: 40px;
}

.gallery .header {
    padding: 25px 0;
    background-color: var(--light-bg);

}

.gallery .product_details {
    width: 100%;
}

.gallery .header h3 {
    color: var(--color-content-primary);
    font-size: 1.39rem;
    position: relative;
    margin-bottom: 0;
}

.gallery .header p {
    margin: 0;
}

.gallery .header .price {
    color: var(--color-content-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

.gallery .imperfection {
    padding: 30px 0;
    text-align: center;
    max-width: 700px;
    width: 100%;
    background-color: var(--light-bg);
    padding: 30px;

}

.gallery .disclaimer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-content-primary);
    border-radius: 50%;
    padding-bottom: 5px;
    margin: 0 auto;
}

.gallery .disclaimer i {
    font-size: 1.5rem;
    color: var(--color-content-primary);
}

/* --------------- post-job-page ----------- */



/* --------------- job-preview-page ----------- */
.job-preview_sec {
    background-color: #f7f7f7;
}

.job-preview_sec .job_content {
    max-width: 800px;
    margin: 0 auto;
}

.job_header .job_menu {
    float: right;
    margin-bottom: 10px;
}

.job_header .job_menu .status {
    background-color: rgb(221, 220, 220);
    padding: 8px 15px;
    color: black;
}

.job_header .job_menu .menu {
    padding: 0px 10px !important;
    border: 2px solid var(--color-content-primary);
    color: #fff;
    background-color: var(--color-content-primary);
}

.job_header .job_menu .active {
    background-color: var(--color-content-success-hover);
    color: #f3f3f3;
}

.job_header .job_menu .closed {
    background-color: var(--color-content-secondary);
    color: #f3f3f3;
}

.job_header .job_title {
    width: 100%;
    background-color: var(--color-content-primary);
    border-radius: 5px;
    padding: 15px 30px;
}

.job_header .job_title h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0;
}

.job_header .job_title button,
.details_card .edit,
.details_card .edit_btn {
    background-color: transparent;
    border: none;
    color: var(--color-content-secondary);
    margin-top: 0px;
    margin-left: 10px;

}

.details_card .edit:focus,
.details_card .edit_btn:focus,
.job_header .job_title button:focus {
    outline: none !important;
}

.details_card .edit_btn {
    color: var(--color-content-primary);
    margin-left: 0;

}

.details_card {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.015);
    padding: 30px 30px;
    margin: 20px 0;
}

.basic_details {
    display: flex;
    /* justify-content: space-around; */
    flex-wrap: wrap;
}

.basic_details .box {
    width: 33.3%;
    margin: 5px 0;
}

.details_card .edit {
    color: var(--color-content-secondary);
}

.details_card .box p {
    font-size: .9rem;
    margin: 0;
    color: var(--color-content-secondary);
}

.details_card h4 {
    font-size: 1.1rem;
}

.details_card h5 {
    font-size: 1rem;
}

.details_card ul li {
    margin: 5px 0;
}

.details_card .tag {
    display: inline-block;
    background-color: #f5f5f5;
    ;
    padding: 5px 20px;
    margin-right: 15px;
}

.modal #overview::placeholder {
    color: #757575;
    font-size: .9rem;
    letter-spacing: .5px;
}

/* ---------------  jobs-page  ----------- */
/* search_bar */
.job_searchbar .field {
    border: 1px solid rgb(217, 217, 217);
    background-color: #fff;
    width: 42%;
    border-radius: 5px;
}

.talent-sec .job_searchbar .field {
    width: 43%;
}

.job_searchbar .field span {
    padding: 5px 10px;
}

.job_searchbar .field input {
    border: none !important;
    width: 90%;
    color: var(--text-color);
}

.job_searchbar .field input::placeholder {
    font-size: 1rem;
}

.job_searchbar .field input:focus {
    outline: none !important;
}

.job_searchbar button {
    padding: 8px 15px;

}

.jobs .service-head-boxx .thumbnail {
    padding: 20px !important;
}

.jobs .service-head-boxx .thumbnail a:hover {
    outline: none;
}

.jobs .service-head-boxx .thumbnail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.jobs .service-head-boxx .thumbnail ul li {
    margin: 5px 0;
    margin-left: -28px;
    font-size: 16px;
    color: #717171;
}

.jobs .service-head-boxx .thumbnail .pay {
    color: var(--color-content-secondary);
    font-size: 1rem;
}

.jobs .service-head-boxx .thumbnail .time {
    color: #8E8B8B;
    font-size: .9rem;
    margin-top: -5px !important;
}

/* job_details_modal */
#job_detail_modal .modal-body {
    padding: 20px 40px 40px;
}

#job_detail_modal .job_header {
    margin-bottom: 20px;
}

#job_detail_modal .job_header button {
    padding: 4px 15px;
    margin-top: 10px;
}

#job_detail_modal .job_header .primary-btn:hover,
#job_detail_modal .job_header .primary-btn {
    border: 1px solid var(--color-content-primary);
}

#job_detail_modal .secon-btn {
    color: var(--color-content-primary);
    border: 1px solid var(--color-content-primary);
}

#job_detail_modal .job_details {
    padding: 10px 0 0;
    width: 90%;
}

#job_detail_modal .job_details .title {
    font-size: 16px;
    color: var(--color-content-secondary);
}

#job_detail_modal h5 {
    font-size: 1rem;
}

#job_detail_modal ul li {
    margin: 5px 0;
    margin-left: -20px;
    font-size: 1rem;
}

#job_detail_modal .divider {
    width: 100%;
    height: 1px;
    background-color: #e1e0e0;
}

/* tabs */
.search_results .nav-tabs {
    padding-bottom: 0 !important;
}

.search_results .nav-tabs li {
    margin-bottom: 3px;
}

.search_results .nav-tabs li a {
    color: var(--text-color);
    margin-right: 15px;
    padding-bottom: 3px;
    margin-bottom: 0;
}

.search_results .nav-tabs li a.active {
    border-bottom: 2px solid var(--color-content-primary);
    color: var(--color-content-primary);
}

/* applying_to_job */
.current_file a {
    color: var(--color-content-primary);
}

.current_file .edit {
    margin-top: -5px !important;
    margin-left: 10px;
    font-size: .9rem;
    display: block;
}

.upload_pdf .cancel_upload {
    background-color: transparent;
    border: none;
}

.upload_pdf .primary-btn {
    padding: 4px 15px;
}

/* no-profile-message */
.no-profile-message {
    border: 1px solid var(--border-color);
    padding: 30px 15px;
    text-align: center;
    border-radius: 5px;
}

.no-profile-message .content {
    max-width: 600px;
    margin: 0 auto;
}

/* talent section */
.service-head-boxx .profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgb(230, 229, 229);
}

.service-head-boxx .info h5 {
    color: var(--color-content-primary);
}

.service-head-boxx .profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* ---------------  myjobs-page  ----------- */
.myjobs,
.proposals_sec {
    background-color: #f7f7f7;
    /* position: relative; */
}

.myjobs .search_bar {
    max-width: 800px;
}

.myjobs .row_heading {
    background-color: #fff;
    padding: 10px 0 0;
}

.myjobs h5 {
    font-size: 1rem;
}

.myjobs .row {
    margin: 15px 0;
}

.myjobs .job {
    background-color: #fff;
    padding: 20px 0;
}

.myjobs .job h5 a {
    color: var(--color-content-primary);
    text-decoration: none !important;
}

.myjobs .divider {
    width: 5px;
    height: 1px;
    background-color: #000000;
    display: inline-block;
    vertical-align: middle;
}

.myjobs a {
    text-decoration: underline !important;
}

.myjobs h6 {
    display: none;
}

.myjobs .controls select {
    padding: 3px 15px;
}

.myjobs .filter {
    width: 100%;
}

.myjobs .filter .floatLabel2 {
    width: 100px;
}

/* ----------  proposals-page  ---------*/
.proposals_sec .header {
    padding: 20px;
}

.proposals_sec .header h4 a {
    color: var(--color-content-primary);
}

.proposals_sec .cards a,
.proposals_sec .chat_box .chat_body a {
    color: #0a4b9a;
}

.proposals_sec .proposals .cards {
    padding: 20px;
    border-bottom: 1px solid rgb(210, 210, 210);
}

.proposals_sec .proposals .cards h5 {
    font-size: 1rem;
    margin-bottom: 0;
}

.proposals_sec .proposals .cards .message {
    margin-top: 5px;
}

/* chatbox */
.proposals_sec .chat_box {
    background: #fff;
    height: 660px !important;
    width: 100%;
    margin-right: 24px;
    position: sticky;
    top: 0;
    padding-bottom: 70px;
    transition: all .5s ease-in-out;
}

.proposals_sec .chat_box .topbar {
    background-color: var(--color-content-primary);
    padding: 10px 10px 5px;
    position: relative;
}

.proposals_sec .chat_box .topbar h5 {
    font-size: 1rem;
    color: #fff;
}

.proposals_sec .chat_box .topbar p {
    color: #e9e9e9;
    font-size: .9rem;
    margin-top: 0;
}

.proposals_sec .chat_box .topbar .close {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #fff;
    opacity: 1;
    font-size: 1rem;
}

.proposals_sec .chat_box .sample {
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* chatbox body */
.proposals_sec .chat_box .chat_body {
    padding: 20px 10px;
    display: none;
    overflow-y: scroll;
    height: 89%;
}

.proposals_sec .chat_box .chat_body::-webkit-scrollbar {
    width: 5px;
}

.proposals_sec .chat_box .chat_body::-webkit-scrollbar-thumb {
    background-color: var(--color-content-primary);
    border-radius: 20px;
}

.proposals_sec .chat_box .chat_body .candi_msg,
.proposals_sec .chat_box .chat_body .emp_msg {
    padding: 5px 10px;
    width: 90%;
    border-radius: 10px;
    margin: 10px 0;
}

.proposals_sec .chat_box .chat_body .candi_msg p,
.proposals_sec .chat_box .chat_body .emp_msg p {
    margin: 0;
    padding: 5px 0;
}

.proposals_sec .chat_box .chat_body .candi_msg {
    background-color: var(--light-bg);
    float: left;
}

.proposals_sec .chat_box .chat_body .emp_msg {
    background-color: #0730621d;
    float: right;
}

.proposals .message_box {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding-left: 10px;
    overflow-x: hidden;
    border: 1px solid rgb(248, 248, 248);
    background-color: rgb(229, 229, 229);
    display: flex;
    align-items: center;
}

.proposals .message_box textarea {
    max-height: 100px;
    overflow-y: scroll;
    background-color: transparent;
    border: 0;
    padding: 10px 0;
    width: 100%;
}

.proposals .message_box textarea:focus {
    outline: none;
}

.proposals .message_box textarea::-webkit-scrollbar {
    width: 5px;
}

.proposals .message_box textarea::-webkit-scrollbar-thumb {
    background-color: rgb(204, 203, 203);
    border-radius: 20px;
}

.proposals .send_btn {
    background-color: var(--color-content-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
}

.proposals .send_btn img {
    width: 27px;
    display: block;
    margin-left: 2px;
}

.proposals_sec #close_mobchat {
    display: none;
}

/* ----------------------- resume-page ------------- */
.resume-options {
    padding: 50px 60px 70px;
    max-width: 750px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgb(246, 246, 246);
}

.resume-options h3 {
    color: var(--color-content-primary);
    font-size: 1.39rem;
}

.resume-options .btn-group {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.resume-options .btn-group .primary-btn {
    width: 100%;
    border-radius: 5px;
}

.resume-options .hollow-button,
.edit-resume #backToSec-btn {
    border: none;
}

/* ----------------------- Create_resume ------------- */

.resume .form-header h4 {
    font-size: 1.4rem;
}

.form-container .primary-btn {
    padding: 6px 12px;
}

.sub_head {
    color: var(--color-content-primary);
    font-size: 1rem;
}


.form-container input[type=checkbox] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal .upload_div,
#contact-Information .upload_div {
    width: 70%;

}

.modal .upload_div i,
#contact-Information .upload_div i {
    font-size: 1.4rem;
    color: var(--text-color);
}

.modal .file-area .file-dummy,
#contact-Information .file-area .file-dummy {
    height: 100%;
    border: none !important;
    margin-top: -20px;
}

.form-container .file-area input,
#contact-Information .file-area input {
    height: 100%;
}

.modal .img_preview,
.form-container .img_preview,
#contact-Information .img_preview {
    width: 30%;
}

.modal .img_preview img,
.form-container .img_preview img,
#contact-Information .img_preview img {
    width: 100%;
}

/* upload options div */
.img-opts {
    padding: 5px 0 10px;
    flex: 1;
}

.img-opts p {
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.form-container .button-group {
    flex: 1;
}

/* gallery modal */

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.image-gallery .image {
    position: relative;
    margin: 0px 0;
    cursor: pointer;
}

.image-gallery .image img {
    width: 100%;
    height: 120px;
}

.image-gallery .image .overlay_ {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.image-gallery .image.selected .overlay_ {
    display: flex;
}

.image-gallery .image.selected .overlay_ p {
    color: #fff;
    font-size: 1.1rem;
}

/*  */
.char_count {
    color: rgb(130, 130, 130);
}

.resume_form .floatLabel2 {
    margin-bottom: 0;
}

.resume_form .controls {
    cursor: default;
}

.resume_form .controls label.active {
    color: var(--color-content-primary);
}

.resume_form .card-item,
.edit-resume .card-item {
    border: 1px solid var(--border-color);
    padding: 10px 10px;
    margin: 15px 0;
    border-radius: 5px;
}

.resume_form .data-summary,
.edit-resume .data-summary {
    color: var(--color-content-primary);
}

.added-list .list-item,
.other-sections .toggle-title {
    background-color: #F2F2F2;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 15px 0;
}

.other-sections .toggle-title {
    cursor: pointer;
}

.other-sections .toggle-item {
    margin-bottom: 10px;
}

.other-sections .toggle-content {
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgb(236, 236, 236);
    padding: 20px 15px;
    border: 1px solid rgb(232, 232, 232);
    display: none;
}

.other-sections .toggle-content .controls-container {
    flex: 1;
}

.controls-container {
    flex: 1;
}

.controls-container .controls {
    width: 48%;
}

.other-sections i {
    font-size: .9rem;
}

.other-sections .toggle-content .controls-container .controls {
    width: 48%;
}

/* ----------------------- Resume_perview ------------- */
.resume-container {
    max-width: 950px;
    margin: 0 auto;

}

.resume-container .dropdown__menu-items a {
    width: 230px;
}

.resume-container .status {
    background-color: rgb(221, 220, 220);
    padding: 8px 15px;
    color: #000;

}

.resume-wrapper {
    border: 1px solid rgb(238, 238, 238);
}

.resume-wrapper .header {
    background-color: #F2F2F2;
    padding: 30px;
}

.resume-wrapper .header .profile-img {
    max-width: 20%;
}

.resume-wrapper .header .profile-img img {
    width: 100%;
    height: 100%;
}

.resume-wrapper .header .profile-info {
    padding-left: 2rem;
    flex-grow: 2;
}

.resume-wrapper .header .profile-info .title {
    font-size: 1.5rem;
    color: var(--color-content-primary);
    border-bottom: 1px solid var(--border-color);
    width: 80%;
}

.resume-wrapper .header .profile-info .specialization {
    color: var(--text-color);
    font-size: 1.3rem;
}

.resume-wrapper .header .profile-info p {
    margin: 5px 0;
}

.resume-wrapper .header .profile-info .tel {
    color: var(--text-color) !important;
}

.resume-wrapper .header .profile-info img {
    width: 20px;
}

.resume-wrapper .resume-body {
    padding: 20px 40px;
}

.resume-wrapper .resume-body .section {
    margin: 20px 0;
}

.resume-wrapper .resume-body .section .section-header {
    font-size: 1.2rem;
    color: var(--color-content-primary);
    border-bottom: 1px solid var(--color-content-primary);
    padding-bottom: 4px;
}

.resume-wrapper .resume-body .section .section-content {
    padding: 5px 0;
}

.resume-wrapper .resume-body .data-wrapper .data-item {
    margin-bottom: 20px;
}

.resume-wrapper .resume-body .data-wrapper .data-item:last-child {
    margin-bottom: 0px;
}

.resume-wrapper .resume-body .data-wrapper .data-item .data-summary {
    color: black;
}

.resume-wrapper .resume-body .data-wrapper .data-item .description {
    margin-top: 5px;
}

.resume-wrapper .resume-body .data-wrapper .data-item .description::first-letter {
    text-transform: capitalize;
}

.resume-wrapper .section-content ul {
    padding-left: 15px;
    margin-bottom: 0;
}

.resume-wrapper .section-content ul li {
    margin: 0;
    padding-bottom: 5px;
}

.resume-wrapper .section-content ul li:last-child {
    padding-bottom: 0;
}

.resume-wrapper .section-content ul li::first-letter {
    text-transform: capitalize;
}

.resume-wrapper .section-content ul li span {
    text-transform: capitalize;
}

/* ----------------------- resume-edit-page ------------- */
.edit-resume .section-card-wrapper {
    max-width: 650px;
    margin: 0px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgb(246, 246, 246);
}

.edit-resume .section-card {
    background-color: #F2F2F2;
    margin: 15px 0;
    padding: 10px 15px;
    cursor: pointer;
}

.edit-resume .section-card:hover {
    background-color: #e0e0e0;
}

.edit-resume .section-card h6 {
    margin-bottom: 0;
}

.edit-resume .empty-records {
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 5px;
}

.edit-resume .empty-records p {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.edit-resume .skip-btn {
    border: none;
}

/* ----------------------- compare-page ------------- */
.comparison_section .container {
    position: relative;
}

.comparison_section .table-responsive table {
    width: 100%;
}

/* Style for the scroll buttons */
.comparison_section .scroll-button {
    position: absolute;
    top: 45%;
    width: 25px;
    height: 25px;
    background-color: #a5a5a54a;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    height: fit-content;
    z-index: 11111;
    text-align: center;

}

.comparison_section .scroll-button i {
    color: black;
    display: inline-block;
}

/* left button */
.comparison_section .scroll-left {
    left: 0px;
    display: none;
}

/* right button */
.comparison_section .scroll-right {
    right: 0px;
    display: none;
}

/* Style the scrollbar track */
.comparison_section .table-responsive::-webkit-scrollbar {
    width: 1px;
    height: 5px;
    background-color: rgb(235, 235, 235);
}

.comparison_section .table-responsive::-webkit-scrollbar-thumb {
    background-color: #e90808;
    border-radius: 5px;
}

.comparison_section .table-responsive:hover::-webkit-scrollbar {
    width: 1px;
    height: 5px;
}

.comparison_section .table-responsive::-webkit-scrollbar-thumb {
    background-color: var(--color-content-primary);
}

/* compact class */
.comparison_section .compact table th {
    width: 15% !important;
}

.comparison_section .compact table td {
    width: 80%;
}

/* table styling */
.comparison_section table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgb(228, 227, 227);
    overflow-y: hidden;
    margin: 0 auto;
    border: 1px solid rgb(227, 227, 227);
}

.comparison_section table tr {
    height: 100%;
    width: 100%;
}

.comparison_section table th {
    width: 170px;
    align-items: stretch;
    height: 100% !important;
    background-color: #f5f5f5 !important;
    border-bottom: 1px solid rgb(226, 226, 226);

}

.comparison_section table th i {
    padding-right: 5px;
    font-size: .7rem;
}

.comparison_section table th p {
    font-weight: normal;
    text-transform: uppercase;
    font-size: .8rem;
    margin: 0;
    color: #000;
    padding: 17px 15px;
}

.comparison_section table th:first-child {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    left: -.5px;
    z-index: 1;
    height: 100%;

}

.comparison_section table th:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: rgb(232, 232, 232);
    /* Border color */
    z-index: -1;
}

.comparison_section table .title {
    margin-inline: auto;
    background-color: #e3e3e3 !important;
    color: #000;
    text-align: center;
    table-layout: fixed;
}

.comparison_section table td {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgb(216, 216, 216);
    position: relative;
}

.comparison_section table td:last-child {
    border-right: 0;
}

.comparison_section table .data {
    border-bottom: 1px solid rgb(216, 216, 216);
    padding: 17px 0;
    font-size: .9rem;
    text-transform: capitalize;
    margin-inline: 20px;
    margin-top: 1px;
}

.comparison_section table tr:last-child .data {
    border-bottom: 0;
}

.comparison_section table td .data .hollow-icon-btn {
    color: #aeaeae;
    margin-top: -10px;
}

.comparison_section table td img {
    width: 100%;
    padding: 0px 0 15px;

}

.comparison_section table td .data span {
    color: #747474;
}

.comparison_section table td .data .product-name {
    font-size: 1rem;
    color: #000;
}

.comparison_section table td .data .ratings i {
    color: #f5b82a;
    font-size: .7rem;
    display: inline-block;
    margin: 5px 1px;

}

.comparison_section table td .data .reviews {
    color: rgb(129, 128, 128);
    font-size: .8rem;
}

.comparison_section table td .data .price {
    margin-top: 10px;
    font-size: 1rem;
    color: #000;
    display: block;
}

.comparison_section table td .description {
    text-align: left;
    vertical-align: top;
    height: 100%;
}

/*  */
.comparison_section.compact1 table th {
    width: 15%;
}

.comparison_section.compact1 table td {
    width: 21.25%;
}

.comparison_section.compact3 .scroll-right {
    display: none !important;
}

.comparison_section.compact2 table {
    width: 100%;
}

.comparison_section.compact2 table th {
    width: 25%;
}

.comparison_section.compact2 table td {
    width: 35%;
}

.comparison_section.compact3 table {
    width: 600px;
}

.comparison_section.compact3 table th {
    width: 35%;
}

.comparison_section.compact3 table td {
    width: 65%;
}

/* responsive */
@media (max-width:1200px) {
    .service-head-boxx .img-event {
        height: 110px;
        cursor: pointer;
    }

    /* jobs-page */
    .job_searchbar .field {
        width: 39%;
        padding: 5px 5px;
    }

    .job_searchbar .field span {
        padding-inline: 5px;
    }

    .job_searchbar span,
    .job_searchbar input {
        font-size: 16px;
    }


}

@media (max-width:992px) {

    /* jobs-page */
    .jobs-results .job_searchbar {
        display: flex;
        flex-direction: column;
    }

    .jobs-results .job_searchbar .field {
        width: 100%;
        margin: 5px 0;
    }

    .jobs-results .job_searchbar .field span {
        padding-right: 15px;
    }

    #talent .job_item {
        width: 49%;
    }

    .jobs-results .job_searchbar button {
        margin: 5px 0;
    }

    .talent-sec .search_results .job_searchbar {
        width: 100%;
    }

    header .only_header {
        padding-bottom: 0 !important;
    }

    /* myjobs-page */
    .myjobs .job_searchbar {
        display: flex;
        flex-direction: row;
    }

    .myjobs .job_searchbar .field {
        width: 39%;
        margin: 5px 0;
    }

    /* footer */
    footer .content {
        padding-top: 100px;
    }

    footer .footertop {
        display: block;
        width: 95%;
        text-align: center;
        padding: 15px 10px 15px;
    }

    footer .footertop p {
        width: 100%;
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }

    footer .footertop .primary-btn {
        float: unset;

    }

    /* ---landing-page--- */
    .banner .circle .circlee {
        width: 50px;
        height: 50px;
    }

    .banner .circle .circle1 {
        margin-left: 15px;
    }

    .banner .circle .circle2 {
        margin-top: -50px !important;
        margin-left: 0px;
    }

    .banner .circle .circle3 {
        width: 95px;
        height: 95px;
        margin-left: 70px;
        margin-top: -40px;
    }

    /* banner text */
    .banner .text {
        padding-top: 140px;
    }

    /* business profile */
    .business-profile .business-profile__img {
        height: 200px;
    }

    .business-profile .business-profile__img h4 {
        font-size: 1.3rem;
    }

    .business-profile .business-profile__img h4 .fa-arrow-up {
        color: var(--color-content-success);
        font-size: 1.3rem;
    }

    .business-profile .business-profile__img h4 .fa-arrow-down {
        color: #CB0505;
        font-size: 1.3rem;
    }

    .business-profile .business-profile__img h4::before {
        position: absolute;
        top: 16px;
        left: -40px;
    }

    .business-profile .business-profile__img h4::after {
        content: '';
        width: 15%;
        height: 2px;
        background-color: var(--color-content-secondary);
        position: absolute;
        top: 16px;
        right: -40px;
    }

    /* --- plaza-list-page */
    .filters_sidebar {
        width: 240px;
    }

    .search_results {
        width: calc(100% - 240px);
    }

    #products .item {
        width: 48.5%;
    }

    .service-head-boxx .img-event {
        height: 130px;
        cursor: pointer;
    }

    #overlay_compare .product_image {
        width: 100%;
        height: 70px;
    }

    /* __ jobs-page __ */
    #products .job_item {
        width: 100%;
    }

    .plaza .layout {
        display: none !important;
    }

    .talent-sec .layout {
        display: unset !important;
    }

    /* __ plaza-details-view-page __ */
    .mySwiper2 {
        height: 300px;
    }

    .mySwiper {
        height: 50px;
    }

    .product_features .feature {
        width: 100%;
        padding-right: 0px;
    }

    .location_map {
        width: 100%;
    }

    /* compare-page */
    .comparison_section table td .data {
        margin-inline: 10px;
    }

    .comparison_section table td img {
        padding-top: 0;
    }


    .comparison_section.compact1 table {
        width: 600px !important;
    }

    .comparison_section.compact2 table {
        width: 600px !important;
    }

    .comparison_section table td {
        width: 20%;
    }
}

@media (min-width:767px) {
    .langs-lists {
        display: none;

    }
}

@media (max-width:767px) {

    html {
        font-size: 16px;
    }

    .footer-multi-lang {
        display: block;
        width: 75%;
    }

    .inner-header .breadcrumb-section {
        padding: 10px 0 20px;
    }

    .inner-header .breadcrumb-section p {
        padding-bottom: 25px;
    }

    .inner-header {
        background: #EBEBEB;
        padding-bottom: 0px !important;
    }

    .main_heading {
        margin-top: 0px;
    }

    /* ____ hmp ___ */
    /* show voice icon */
    .voice-icon {
        display: block;
    }

    .quickSearchesSection-buttons {
        float: left;
    }

    /*  _____edit-bm-profile-page ____ */
    /* business hours */
    .business_hours .day {
        width: 100px;
    }

    .business_hours .timing {
        width: 90%;
    }

    /* ---  member-details-page --- */
    .memberDetails_tabs #newPwdeye {
        position: absolute;
        top: 10px;
        right: 150px;
    }

    /* ------------  maps-options-page  ---------- */
    .map_options h4 {
        font-size: 1.1rem;
        max-width: 100%;
    }

    /* ----------------  areas-we-cover  ---------------- */
    .map-header {
        padding: 15px 0px;
    }

    .map-header .change_mapBtn {
        float: left;
        margin-top: 10px;
    }

    .map-body #map {
        width: 100%;
        height: 300px;
        border: 1px solid #DDDDDD;
    }

    .selected-areas p {
        margin-right: 2px;
    }

    /* --- category_details-page --- */
    .categoryHero_section img {
        width: 100%;
    }

    /* --- plaza-list-page --- */
    .overlay__ {
        background-color: #00000070;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 99;
        display: none;
    }

    .filters_sidebar {
        position: absolute;
        top: 50% !important;
        left: -100%;
        margin-right: -50%;
        transform: translate(-50%, -100%);
        width: 70%;
        height: 85vh;
        padding-inline: 50px;
        z-index: 11111;
    }

    .search_results {
        position: relative;
        width: 100%;
    }

    .search_results .filter_btn {
        display: block;
    }

    .showSidebar {
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .show_Sidebar {
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .hide_sidebar {
        top: -100%;
    }

    .close_sidebar {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--color-content-primary);
        color: #fff;
        z-index: 999;
    }

    .overlay_active {
        display: block;
        position: fixed;
    }

    .service-head-boxx .img-event {
        height: 150px;
        cursor: pointer;
    }

    /* ---- post-ads-page ---  */
    #myModal_map #save_button {
        z-index: 999;
        position: absolute;
        left: 35% !important;
    }

    .profile_benefits .image {
        height: 300px;
    }

    .profile_benefits .image img {
        object-fit: cover;
        object-position: 80% 80%;
    }

    .profile_offerings .image {
        height: 250px;
        width: 100%;
    }

    .profile_offerings .image img {
        width: 100%;
        object-fit: cover;
        object-position: 80% 80%;
    }

    .profile_features img {
        display: none;
    }

    .profileContent .text {
        margin-top: 5px;
    }

    /* __ plaza-details-view-page __ */
    .product_carousel {
        width: 100%;
    }

    .product_details {
        width: 100%;
        padding-left: 0;
    }

    /* __plaza-list-page __*/
    #overlay_compare .product_thumb {
        width: 48%;
    }

    #overlay_compare .product_image {
        width: 100%;
        height: 90px;
    }

    #overlay_compare .product_thumb .delete_btn {
        position: absolute;
        right: -12px;
        top: -13px;

    }

    #overlay_compare .product_meta .title {
        font-size: .9rem;
    }

    /* ---------- post-job-page ------ */
    .form-container .mode_chks {
        width: 100%;
    }

    /* ---------- job-preview-page ------ */
    .basic_details .box {
        width: 50%;
        margin: 5px 0;
    }

    /* ---------------  myjobs-page  ----------- */
    .myjobs .row_heading {
        display: none;
    }

    .myjobs .job_searchbar {
        display: flex;
        flex-direction: column;
    }

    .myjobs .job_searchbar .field {
        width: 100%;
        margin: 5px 0;
    }

    /* proposals-page */
    .proposals_sec .chat_box {
        /* position: fixed; */
        position: fixed;
        top: -100%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        width: 70%;
        max-height: 600px;
        height: 90%;
        padding-inline: 0px;
        z-index: 11111;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.312);

    }

    .proposals_sec .show_chatbox {
        top: 10%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -10%);
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .proposals_sec #close_chat {
        display: none;
    }

    .proposals_sec #close_mobchat {
        display: block;
    }

    /* ---------------  Resume_perview  ----------- */
    .resume-wrapper .header {
        background-color: #F2F2F2;
        padding: 15px 10px;
    }

    .resume-wrapper .header .profile-img {
        max-width: 25%;
    }

    .resume-wrapper .header .profile-info {
        padding-left: 5px;
    }

    .resume-wrapper .resume-body {
        padding: 20px;
    }

    /* ----------------------- resume-page ------------- */
    .resume-options {
        padding: 30px 30px 50px;
    }

    /* ---------------- jobs-page ---------- */
    #talent .job_item {
        width: 100%;
    }

    .talent-sec .layout {
        display: none !important;
    }

    .talent-sec .job_searchbar {
        display: flex;
        flex-direction: column;
    }

    .talent-sec .job_searchbar .field {
        width: 100%;
        margin: 5px 0;
    }

    .talent-sec .job_searchbar .field span {
        padding-right: 15px;
    }

    /* compare-page */
    .comparison_section .table-responsive table {
        width: 700px;
    }

    .comparison_section .container {
        margin-top: -25px;
    }

    .comparison_section .scroll-right {
        right: 0;
        display: unset;
    }

    .comparison_section.compact3 .scroll-right {
        display: unset !important;
    }

    .comparison_section.compact4 table {
        width: 100% !important;
    }




}

@media (max-width:667px) {}

@media (max-width:567px) {
    .container {
        padding-inline: 17px;
    }

    /* search bar */
    .searchElse-btn-holder .primary-btn {
        padding: 6px 10px;
    }

    .search-holder {
        width: calc(90vw - 140px);
    }

    .controls input[type="text"] {
        padding: 6px 10px;
    }

    .controls label {
        font-size: .9rem;
    }

    /* headings */
    .main_heading {
        margin-top: 0px;
        padding-top: 5px !important;
    }

    /* buttons */
    .btn {
        padding: 4px 10px;
    }

    .info-btn {
        width: 30px;
        height: 30px;
        margin-left: 5px;
        margin-top: 2px;

    }

    /* datatables */


    .dataTables_wrapper .dataTables_paginate .paginate_button {
        margin: 0px 0;
    }

    .dataTables_wrapper .dataTables_paginate {
        margin-top: 0.2rem;
        margin-bottom: .5rem;
    }

    /* profile form */
    .profile-form {
        padding: 15px 10px;
    }

    #general:checked~section .general-content,
    #addInfo:checked~section .additional-content,
    #contact:checked~section .contact-content,
    #photos:checked~section .photos-content,
    #about:checked~section .content-5 {
        padding: 30px 20px;
    }

    .controls label.active {
        top: -10px;
    }

    .controls input[type="text"],
    .controls select {
        padding: 7px 14px;
    }


    select.floatLabel2 {
        padding-left: 8px;
    }

    input[type='time'] {
        width: 100px;
    }

    .modal {
        margin: 20px 10px;
        width: fit-content;
        z-index: 111111;
    }

    .modal {
        width: 100%;
        margin: auto;
        padding-right: 0 !important;
    }

    .modal .modal-dialog {
        width: 90%;
        margin: 30px auto 20px;
        background-color: #000;
    }

    .categories_heading {
        font-size: 1.4rem !important;
    }

    .offered-keywords .btn-secondary,
    .offered-keywords #addWord_btn {
        padding: 6px 5px;
        font-size: 14px;
        margin-left: 0px;
    }

    .offered-keywords .controls input[type="text"] {
        padding: 6px 14px;
        padding-left: 7px;
    }



    /* ___hmp___ */
    .quickSearchesSection-buttons {
        float: left;
    }

    /*  --- edit-bm-profile-page --- */
    .profile_wrapper .nav-tabs {
        display: none;
    }

    .profile_wrapper .mob_links {
        display: block;
    }

    .profile_wrapper .success_btn {
        background-color: var(--color-content-success);
        padding-inline: 10px;
    }

    .profile_wrapper input[type="checkbox"] {
        display: inline;
        width: 20px;
        height: 20px;
        margin: 5px 2px;
    }

    /* business hours */
    .business_hours input[type="text"] {
        font-size: 14px;
        padding-inline: 10px;

    }

    .profile_wrapper .business_hours .line {
        width: 10px;
        height: 3px;
        background-color: var(--color-content-primary);
        margin: 0 3px;
        margin-top: 17px;
    }

    .business_hours input[type="text"]~label {
        font-size: 12px;
        padding-inline: 3px;
        margin-left: -5px !important;
        margin-bottom: 0;
        margin-top: 3px;
    }

    .business_hours input[type="checkbox"]~label {
        margin-top: 2px;
    }

    .business_hours .day {
        width: 80px;
    }

    .business_hours .timing {
        width: 100%;
    }

    .additional-content .contorls input[type='text'] {
        padding-left: 3px !important;
    }

    .additional-content .contorls select {
        padding-left: 6px !important;
    }

    .general-content .controls .floatLabel2 label {
        margin-top: 0 !important;
    }

    /* --- services-offered ---*/
    .selected_services .service_box {
        padding: 2px 5px 3px;

    }

    .keywords_list .fa-plus {
        width: 20px;
        height: 20px;
        margin-left: 5px;
    }

    .search_keywords a .fa-question {
        padding-top: 6px;
    }

    /* --- landing-page ---*/
    .banner {
        margin-bottom: 30px;
        height: unset;
    }

    .banner .text {
        padding: 140px 0 100px;
    }

    .banner .circle {
        position: absolute;
        height: 100%;
        top: 50px;
        left: 0px;
        border-radius: 190px;
    }

    .banner .circle .circlee {
        width: 40px;
        height: 40px;
    }

    .banner .circle .circle1 {
        margin-left: 10px;
    }

    .banner .circle .circle2 {
        margin-top: -35px !important;
        margin-left: -5px;
    }

    .banner .circle .circle3 {
        width: 75px;
        height: 75px;
        margin-left: 50px;
        margin-top: -30px;
    }

    .banner .circle .left-circles {
        margin-top: 50px;
    }

    .banner .circle .right-circles {
        margin-top: 250px;
        margin-right: 10px;
    }

    .banner .text h2 {
        font-size: 2rem;
    }

    .business-profile {
        display: flex;
        padding: 0px 0 0;
        padding-bottom: -20px;
    }

    .business-profile p {
        margin-right: 10px;
    }

    .business-profile .section-heading {
        font-size: 1.25rem;
    }

    .categories .section-heading {
        font-size: 1.25rem;
    }

    .categories .category .category_header .category_no {
        font-size: 1rem;
    }

    .business-profile__img {
        padding-bottom: -10px;
    }

    /* --- categories-page ---*/
    .categories_details .category {
        width: 95%;
        margin: 8px auto;
    }

    /* --- areas-we-cover --- */
    .selectedAreas,
    .map-header {
        padding: 10px 11px;
        padding-right: 13px;
    }

    .modalSelect label {
        position: absolute;
        left: 10px;
        top: 11px;

    }

    /* --- templates-page --- */
    .template_h3 {
        font-size: 1.4rem !important;
    }


    .templates .domain_link {
        float: none;
        text-align: center;
        margin-bottom: -10px;
    }


    /* ---  member-details-page --- */
    .memberDetails_tabs .tabs {
        max-width: 600px;
        min-height: 330px;
        padding: 20px 15px;
    }

    .memberDetails_tabs .tab-header {
        padding: 0px 10px;
    }

    .memberDetails_tabs .generate_btn {
        font-size: .8rem;
        padding: 2px;
    }

    .memberDetails_tabs #newPwdeye {
        position: absolute;
        top: 10px;
        right: 125px;
    }

    /* faq */
    .accordionMenu form label {
        font-size: 1rem;
    }

    .accordionMenu .accordianHeader:after {
        margin-bottom: 0;
    }

    .accordionMenu form .input-form {
        margin-bottom: 20px;
    }

    /* ---  transalations-page --- */
    .translations .primary-btn {
        padding: 5px 10px;
    }

    /* --- advert-cluster-page --- */
    .adverts .adverts_container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .advert-cluster-page {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* --- category_details-page --- */
    .profile_steps ol {
        margin-left: 10px;
    }

    .categoryHero_section .heading {
        font-size: 1.65rem;
        margin-bottom: 0;
    }

    /* ---  plaza-list-page --- */
    .gray-bg1 {
        padding-inline: 30px;
    }

    .filters_sidebar {
        width: 85%;
        padding-inline: 25px;
    }

    .service-head-boxx {
        width: 95%;
        margin: 0 auto;
    }

    .service-head-boxx .img-event {
        height: 180px;
        cursor: pointer;
    }

    .service-head-box .thumbnail {
        height: 110px;
        width: 45%;
    }

    .service-head-box .service_details_bottom {
        padding-bottom: 10px;
        padding-top: 5px;
    }

    .service-head-box .service_details_bottom .price span {
        font-size: 1rem;
        padding-right: 2px;

    }

    .service-head-box .service_details_bottom .service_details_bottom {
        display: flex;
        flex-direction: column !important;
    }

    .service-head-box .service_details {
        padding-inline: 5px;
        width: 55%;
    }

    .service-head-box .service_details p {
        font-size: 15px;
    }

    .service-head-box .service_details_bottom .price {
        color: var(--color-content-secondary);
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .service-head-box .service_details_bottom .links a {
        display: inline-block;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background-color: #f3f3f3;
    }

    /* --- post-ads-page */
    .form_holder {
        padding: 30px 15px 20px;
    }

    .form_holder .inputs_holder {
        width: 100%;
    }

    .images_previews .preview {
        width: 50%;
    }

    #myModal_map {
        width: 100%;
        margin: auto;
        padding-right: 0 !important;
    }

    #myModal_map .modal-dialog {
        width: 90%;
        margin: 20px auto;
        background-color: #000;
    }

    #myModal_map #save_button {
        z-index: 999;
        position: absolute;
        left: 50%;
        margin-left: -40px;

    }

    /* __ plaza-details-view-page __ */

    .mySwiper2 {
        height: 250px;
    }

    .product_features .feature table .title {
        width: 40%;
    }

    .location_map iframe {
        width: 100%;
        height: 205px;
    }

    /* __ plaza-list-page__ */
    .gray-bg1 {
        padding: 0 15px;
    }

    #overlay_compare .products {
        width: 90%;
    }

    #overlay_compare .product_thumb .delete_btn {
        position: absolute;
        right: 0px;
        top: 0px;

    }


    .service-head-boxx .img-event {
        height: 120px;
        cursor: pointer;
    }

    .item.list-group-item .img-event {
        float: left;
        width: 148px !important;
        height: 110px !important;

    }

    .item.list-group-item .caption {
        float: left;
        width: calc(100% - 148px);
        margin: 0;
    }

    .service-head-boxx .service_details {
        padding: 10px 5px 0 10px;
        margin: 0 0px;
    }

    .service-head-boxx .service_details p {
        margin-top: 0;
    }

    .service-head-boxx .service_details .price {
        margin-bottom: 0;
    }

    .service-head-boxx .service_details_bottom .price span {
        font-size: 1.1rem;
    }

    .service-head-boxx .service_details h4 {
        margin-top: 0px;
        margin-bottom: 2px;
    }

    .item.list-group-item h4 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .item.list-group-item .service_details_bottom {
        display: flex;
        flex-direction: column;
        margin-top: 5px;
        padding-top: 5px;
    }

    .service-head-boxx .icon .plaza-btn i {
        margin-left: -5px;
    }

    /* __ gallery-preview-page __*/
    .gallery {
        height: fit-content;
        padding-bottom: 0;
    }

    .expanded_carousel {
        height: fit-content;
    }

    .gallery .thumbs {
        height: 90px;
        box-sizing: border-box;
        padding: 20px 0;
        margin-top: 20px;
        position: relative;
    }

    .gallery .fa-chevron-left {
        margin-right: 10px;
    }

    .gallery .go-back {

        display: block;
    }

    .gallery .product_details {
        display: none !important;
    }

    .gallery .header {
        padding: 10px 0;
    }

    .gallery .nav-tabs {
        margin: 5px 0;

    }

    .gallery .nav-tabs li a {
        margin-left: 10px;
        margin-right: 10px;

    }

    /* post-job-page */
    /* form */
    .form-container .table .text {
        padding-right: 5px;
        padding-left: 5px;
    }

    .form-container .myform,
    .form-container .form-header {
        padding: 20px 20px;
    }

    .form-container .form_heading {
        font-size: 1.4rem;
    }

    .form-container .controls label {
        position: absolute;
        left: 0px;
        top: 10px;
        font-size: 1rem;
    }

    .form-container .controls label.active {
        font-size: 1rem;
        top: -12px;
    }

    .form-container .controls .input_label {
        margin-top: -3px;
    }

    .form-container .form {
        padding: 0 !important;

    }

    .form-container .entry_control {
        margin-top: 0px;
    }

    /* ---------- job-preview-page ------ */
    .basic_details .box {
        width: 100%;
        margin: 5px 0;
    }

    .job_header .job_title h3 {
        font-size: 1.1rem;
    }

    .details_card .edit {
        margin-left: -5px;
        font-size: 1rem;
    }

    .details_card .box p {
        font-size: 1rem;
    }

    /* ------------ jobs-page -------- */
    #job_detail_modal .job_details {
        display: flex;
        flex-direction: column;
    }

    .jobs .job_item .service-head-boxx {
        margin-inline: 0;
        width: 100%;
    }

    #job_detail_modal .modal-body {
        padding: 20px 20px 40px;
    }

    /* ---------------  myjobs-page  ----------- */
    .myjobs h6 {
        display: block;
    }

    .myjobs .job .number {
        padding-top: 3px !important;
        margin-left: 10px;
    }

    /* proposals-page */
    .proposals_sec .chat_box {
        width: 90%;
    }

    /* ------------ Resume_perview -------- */
    .resume-wrapper .resume-body .section .section-header {
        font-size: 1.1rem;
    }

    .resume .form-header h4 {
        font-size: 1.25rem;
    }

    .resume-wrapper .header .profile-info p {
        font-size: 14px;
        margin: 3px 0;
    }

    .resume-wrapper .header .profile-info .title {
        font-size: 1.3rem;
        width: 100%;
    }

    .resume-wrapper .header .profile-info .title .specialization {
        font-size: 1.1rem;
    }

    /* ----------------------- Create_resume ------------- */
    .image-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .image-gallery .image img {
        max-width: 100%;
        height: 80px;
    }

    /* ----------------------- resume-page ------------- */
    .resume-options {
        padding: 30px 15px 50px;
    }

    .resume-options .btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        column-gap: 10px;
    }

    .resume-options h3 {
        font-size: 1.2rem;
    }

    /* ----------------------- edit-resume-page ------------- */
    .edit-resume .section-card-wrapper {
        padding: 20px 15px 40px;
    }

    /* compare-page */
    .comparison_section.compact table th {
        width: 20%;
    }

    .comparison_section.compact3 table th {
        width: 40%;
    }

    .comparison_section.compact3 table td {
        width: 30%;
    }

    .comparison_section.compact2 table th {
        width: 25%;
    }

    .comparison_section .table-responsive table {
        width: 670px;
    }

    .comparison_section.compact3 table {
        width: 500px !important;
    }

    .comparison_section.compact4 table {
        width: 100% !important;
    }

    .comparison_section.compact2 .scroll-right {
        display: unset !important;
    }

    .comparison_section.compact3 .scroll-right {
        display: unset !important;
    }

    .comparison_section.compact4 .scroll-right {
        display: none !important;
    }


    /* __ footer __ */
    footer .content h4 {
        margin-top: 15px;
        margin-bottom: 0;
    }

    footer .content p {
        padding-right: 30px;
    }

    footer .content {
        padding-top: 40px;
    }

    footer .footertop {
        position: absolute;
        top: -60px;
        left: 0;
        right: 0;

    }

    footer .footertop p {
        padding: 0 10px;
    }

    footer .pt-20 {
        padding-top: 60px;
    }

    .banner .text h4 {
        font-size: 1.2rem;
    }

    header .only_header {
        padding-bottom: 0 !important;
    }


}

@media (max-width:410px) {
    #products .item {
        width: 90%;
        margin: 0 auto;
    }

    .service-head-boxx .img-event {
        height: 160px;
        cursor: pointer;
    }
}