@import url('https://fonts.googleapis.com/css?family=Cairo');
html,body{
    font-family: Cairo, serif;
    color: #333;
    font-size: 16px;
    background: var(--background-color);
}
*{
    transition: all 0.1s ease;
}
a{
    text-decoration: none;
    color: var(--url-color);
}
a:hover{
    text-decoration: none;
    color: var(--url-color-hover);
}
.row>* {
     padding-right: 0;
     padding-left: 0;
}
.mp0{
    margin: 0;
    padding: 0;
}
.headerPanel{
    font-size: 15px;
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--header-bacground-color);
}
.headerContainer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
.headerLogo{
    width: 390px;
    display: block;
    overflow: hidden;
    margin: 0 64px;
}
.headerLogo *{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.headerLogo img{
    max-height: 50px;
}
.headerMenu {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
}
.headerMenu ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}
.headerMenu ul li {
    display: inline-block;
    position: relative;
}
.headerMenu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 8px 10px;
    margin: 0;
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
}
.headerMenu ul li a:hover {
    /*background: var(--color-3);*/
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-3);
}
.headerMenu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background: var(--header-bacground-color);
    display: none;
    border-top: 1px solid #fff;
}
.headerMenu ul li:hover ul {
    display: block;
}
.headerMenu ul li ul li {
    display: block;
}
.headerMenu ul li ul li a {
    padding: 10px 30px;
    border-bottom: 1px solid #fff;
    font-size: 15px;
}
.headerMenu ul li ul li a:hover {
    padding: 10px 30px;
    border-bottom: 1px solid #fff;
    background: #ccc;
}
.mainMessage{
    margin: 50px;
    text-align: center;
    font-size: 20px;
}
.mainMessage h2{
    text-transform: uppercase;
    font-size: 40px;
    margin: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}
.mainMessage .border{
    width: 50%;
    height: 2px;
    background: #1e1e1e;
    margin: 30px auto 0;
}


.searchBox{
    padding: 30px;
    background: var(--header-bacground-color);
}
.searchBox .searchInput {
    display: flex;
    width: 100%;
    gap: 1px;
    position: relative;
}

.searchBox .searchInput input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 0;
    outline: 0;
}

.searchBox .searchInput button {
    flex-shrink: 0;
    background: var(--color-2);
    border: 0;
    color: #fff;
    padding: 0 40px;
    font-size: 16px;
    cursor: pointer;
    outline: 0;
}


.searchBox .searchDropdown {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    top: 46px;
}

.searchBox .dropdown-item {
    padding: 8px;
    cursor: pointer;
}

.searchBox .dropdown-item:hover {
    background-color: #f0f0f0;
}





.searchSample{
    color: var(--color-3); !important;
    border-bottom: 1px dashed #848484 !important;
    padding: 20px 0;
}

.exploreEntities{
    margin: 30px 0;
    padding: 10px 0 30px;
    border-top: 1px dashed #848484 !important;
    border-bottom: 1px dashed #848484 !important;
}
.exploreEntities h3{
    margin: 20px 0;
}
.entitiesContainer{
    background: #e9e9e9 !important;
    padding: 20px;
}
.entitiesList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
}
.entitiesList:last-of-type{
    margin-bottom: 0;
}
.entitiesList div.itemContainer {
    background-color: #f0f0f0;
    /*aspect-ratio: 1 / 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 100%;
}
.entitiesList div.itemContainer .itemData{
    height: 100%;
}
.entitiesList div.itemContainer .itemData .img{
    width: calc(85% - 20px);
    margin: 10px auto;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background-color: #ccc;
    min-width: 200px;
}
.entitiesList div.itemContainer .itemData .img img{
    width: 100%;
    aspect-ratio: 1 / 1;
}
.entitiesList div h3{
    margin: 0 !important;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}
.entitiesList div.itemContainer h4{
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-color);
}
.entitiesList div.itemContainer .country{
    text-align: center;
}

.entitiesList div.itemContainer:hover h4{
    color: var(--url-color-hover);
}
.entitiesList div.itemContainer:hover .itemData .img img{
    transform: scale(1.1);
}
.entitiesList div.itemContainer:hover .itemData .img {
    border: 4px solid #ccc;
}



.page_top_panel{
    padding: 12px 0;
    text-transform: capitalize;
}
.pageTitle{
    width: fit-content;
    border-bottom: 3px solid var(--color-2);
    padding: 10px 0;
}
.pageDetails{
    color: var(--text-color);
    min-height: 400px;
}
.pageDetails.entity{
    margin: 20px 0;
}

.pageDetails .sub_title {
    padding: 5px;
    background: #f0f0f0;
    margin: 2px 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--color-2);
}

.pageDetails .video_panel {
    background: #ccc;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.pageDetails .video_panel .tag {
    background: var(--header-bacground-color);
    text-align: center;
    color: #fff;
    padding: 5px 0;
}

.pageDetails .image_panel {
    background: #ccc;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.pageDetails .image_panel img {
    max-width: 100%;
}
.pageDetails .image_panel .tag {
    background: var(--header-bacground-color);
    text-align: center;
    color: #fff;
    padding: 5px 0;
}

.searchResultsList{
    margin: 15px 0;
    list-style: none;
    padding: 0;
}

.searchResultsList a{
    display: block;
    padding: 8px 5px;
    font-weight: bold;
    background: #f0f0f0;
    text-transform: capitalize;
    margin: 2px;
}






.footerPanel{
    background: var(--header-bacground-color);
    padding: 20px 0;
}
.footerContainer{
    font-size: 18px;
    position: relative;
    z-index: 1030;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.footerLogo {
    width: 390px;
    display: block;
    overflow: hidden;
    margin: 0 64px;
}
.footerLogo * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footerLogo img {
    max-height: 80px;
}
.footerMenu {
    height: 100%;
    padding: 0;
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-3);
    text-align: start;
}
.footerMenu ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}
.footerMenu ul li {
    display: inline-block;
    position: relative;
}
.footerMenu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-weight: 700;
    color: #fff;
}
.footerMenu ul li a:hover {
    background: var(--color-3);
}

.footerPanel .rights{
    margin: 10px auto;
    text-align: center;
    font-size: 16px;
    color: #fff;
}


.button{
    display: inline-block;
    background: var(--button-color);
    border-radius: 8px;
    padding-bottom: 8px !important;
}
.button:hover{
    background: var(--button-hover-color);
    border-bottom: 0 !important;
    padding-bottom: 8px !important;
}

.formData{
    padding: 20px;
    margin: 20px auto;
    width: 500px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.formData div{
    padding: 0 5px;
}
.formData h3{
    text-align: center;
    margin: 30px 0;
}
.formButton{
    width: 100%;
    margin: 10px auto;
    background: var(--button-color);
}
.info{
    font-family: Tahoma;
    font-size: 12px;
}

.dashboard_list {
    margin: 0 auto;
    padding: 0;
    white-space: nowrap;
    display: flex;
    background: #fff;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
}
.dashboard_list ul{
    padding: 0 10px;
    margin: 0;
}
.dashboard_list ul li {
    display: inline-block;
    position: relative;
}
.dashboard_list ul li a {
    text-decoration: none;
    display: block;
    padding: 15px 10px;
    margin: 0;
    text-align: center;
    font-weight: 700;
}
.dashboard_list ul li a:hover, .dashboard_list ul li a.active {
    padding-bottom: 6px;
    color: var(--button-color);
    border-bottom: 2px solid var(--button-color);
}



.dashContainer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.dashContainer .card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: calc(33.33% - 10px);
    box-sizing: border-box;
    position: relative;
}

.dashContainer .card:hover {
    text-decoration: none;
    -webkit-box-shadow: 1px 1px 8px #a2a2a2;
    box-shadow: 1px 1px 8px #a2a2a2;
}
.dashContainer .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #f9f9f9;
    border-bottom: 10px solid #f9f9f9;
    border-left: 10px solid transparent;
}

.dashContainer .icon {
    position: absolute;
    top: 10px;
    left: 10px;
    margin-right: 20px;
}

.dashContainer .icon img {
    width: 50px;
    height: 50px;
}

.dashContainer .content {
    text-align: center;
}

.dashContainer .content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #666;
    height: 40px;
}

.dashContainer .content p {
    font-size: 36px;
    color: #333;
}

.dashContainer .content span {
    font-size: 14px;
    color: #999;
}


.entity-form-container {
    margin: 20px auto;
    padding: 20px;
    white-space: nowrap;
    background: #fff;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.entity-form-container h3{
    font-size: 18px;
}

.entity-form-container-inner {
    margin: 30px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.entity-form-container-inner .button {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 150px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.entity-form-container-inner .button:hover, .entity-form-container-inner .button.active {
    transform: scale(1.05);
}

.entity-form-container-inner .button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    border-radius: 8px 8px 0 0;
}

.entity-form-container-inner .real-estate::before {
    background-color: #FFA500; /* Orange */
}

.entity-form-container-inner .mediocre::before {
    background-color: #FF0000; /* Red */
}

.entity-form-container-inner .icon img {
    width: 40px;
    height: 40px;
}

.entity-form-container-inner .label {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}





.entity-form-container-inner-steps {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}
.entity-form-container-inner-steps .breadcrumb {
    display: flex;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 20px;
}
.entity-form-container-inner-steps .breadcrumb-item {
    margin-right: 10px;
}
.entity-form-container-inner-steps .breadcrumb-item:after {
    content: ">";
    margin: 0 10px;
}
.entity-form-container-inner-steps .breadcrumb-item:last-child:after {
    content: "";
}
.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}
.entity-form-container-inner-steps .breadcrumb-item {
    margin-right: 0;
}
.entity-form-container-inner-steps .navigation-container {
    display: flex;
    gap: 20px;
}
.entity-form-container-inner-steps .navigation-column {
    min-width: 250px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    max-height: 250px;
    overflow: auto;
}
.entity-form-container-inner-steps .navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.entity-form-container-inner-steps .navigation-item {
    padding: 3px 10px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 5px;
}
.entity-form-container-inner-steps .navigation-item:hover {
    background-color: #f0f0f0;
}
.entity-form-container-inner-steps .selected {
    background-color: #4b77be;
    color: white;
}
.entity-form-container-inner-steps .hidden {
    display: none;
}
.entity-form-container-inner-steps .save-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    align-self: flex-start;
}
.entity-form-container-inner-steps .save-button:hover {
    background-color: #45a049;
}



.mb-3, .my-3 {
    padding: 0 5px;
}



.radio-card {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100%;
    position: relative;
}

.radio-card:hover {
    border-color: #6c757d;
    background-color: rgba(0, 0, 0, 0.03);
}

.radio-card.selected {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}


.radio-card .check-mark , .radio-card input[type="radio"] {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.radio-card.selected .check-mark {
    border-color: #0d6efd;
    background: #0d6efd;
}

.radio-card.selected .check-mark:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Make sure cards have equal heights */
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.strikethrough {
    text-decoration: line-through;
    color: #6c757d;
}

.ad-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #198754;
    margin: 0.5rem 0;
}

.free-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #198754;
    margin: 0.5rem 0;
}

.feature-item {
    margin-bottom: 0.25rem;
    text-align: right;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: #198754;
    margin-left: 0.5rem;
}






@media (max-width: 600px) {
    .entitiesList {
        grid-template-columns: repeat(2, 1fr); /* 2 columns (50% each) */
    }
}
