.tm-dashboard-content label {
font-weight: 500;	
}
.tm-dashboard-content .tm-form-group {
	    margin-bottom: 15px;
}

/* Style for the fieldset container */
#tm-add-property-form .tm-section-group {
  margin-bottom: 30px;
	background: #fff;
    border-radius: 0;
    padding: 25px;
    border: 1px solid var(--ttm-bordercolor);
}
#tm-add-property-form .tm-section-group .tm-section-title {
	font-size: 20px;
    font-family: var(--special-element-fontfamily);
    font-weight: var(--special-element-fontweight);
    color: var(--body-blackfont-color);
    margin-bottom: 10px;
    padding: 3px 10px;
    background-color: #ffffff;
    display: inline-block;
    border-left: 4px solid var(--ttm-skincolor);
    border-radius: 0;
    line-height: 1.4;
}


.document-group {
  border: 1px solid #ccc;
  margin-bottom: 15px;
  border-radius: 4px;
  padding: 0;
}
.group-header {
  background: var(--ttm-greycolor);
  padding: 10px 15px;
  font-weight: bold;
  display: block;
  justify-content: space-between;
  align-items: center;
 position: relative;
}
.group-header button {
    background-color: transparent;
    color: var(--body-blackfont-color);
    padding: 0;
    margin: 0;
}
.group-header button.remove-group {
    cursor: pointer;
    color: #a00;	
	font-size: 14px;
}
.group-header button.toggle-group {
	font-size: 20px;
	position: absolute;
    right: 15px;
}
.group-header button.remove-group span:before {
    font-weight: 700;	
}
.group-body {
    padding: 15px;
    display: none;
}
.form-row {
  margin-bottom: 10px;
}

.document-group .group-title {
    font-size: 15px;
    font-family: var(--special-element-fontfamily);
    font-weight: var(--special-element-fontweight);
    color: var(--body-blackfont-color);
	padding-left:8px;
}

.tm-preview-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.tm-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
}
.tm-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.tm-remove-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
      padding: 0;
}


.tm-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columns */
    gap: 10px 20px;
}

.tm-checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
}

.tm-checkbox-item input[type="checkbox"]:checked + span {
    color: red;
}

.alert.bg-success {
    background-color: #28a745;
    color: #fff;
    padding: 8px 15px;
    border-radius: 0;
    font-size: 15px;
}
.alert.bg-danger {
  background-color: #dc3545;
  color: #fff;
    padding: 8px 15px;
    border-radius: 0;
    font-size: 15px;
}
.message-inner {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#tm-popup-message {
    position: fixed;
    z-index: 99;
    top: 40%;
    right: 0;
    font-size: 14px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}


.tm-agent-panel .site-footer {
	display:none;
}
.tm-agent-panel .sidebar-logo {
    background: #fff;
    border-right: 1px solid var(--ttm-bordercolor);
}
.wp-tm-uploaded-file-preview {
    position: relative;
    display: inline-block;	
}
.wp-tm-uploaded-file .wp-tm-remove-uploaded-file {
	position: absolute;
    top: -6px;
    right: -7px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 22px;
    line-height: 18px;
    padding: 0;
    text-align: center;
}

.tm-btn.tm-submit-property-btn {
    align-items: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--ttm-bordercolor);
    border-radius: 2em;
    padding:5px 15px;
	background-color: var(--ttm-skincolor);
    color: #ffff;
    border-color: var(--ttm-skincolor);
}

.tm-dashboard-boxes {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.tm-dashboard-box {
    flex: 1;
    min-width: 150px;
    background: #fff;
    border-radius: 0;
    padding: 20px;
    box-shadow: unset;
    text-align: left;
    border: 1px solid var(--ttm-bordercolor);
    max-width: 350px;
}
.tm-box-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tm-dashboard-boxes .tm-box-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tm-dashboard-boxes .tm-box-icon i {
    font-size: 26px;
    line-height: 26px;
    width: auto;
    height: auto;
}
.tm-dashboard-boxes .skincolor {
	background-color:var(--ttm-skincolor);
	    color: #fff;
}
.tm-box-icon.grey {
	background-color: #e5e5e5;
}
.tm-box-icon.red {
	background-color: #ffe5e5;
    color: #ef5f5f;
}
.tm-box-icon.orange {
	background-color: #fff2e0;
}
.tm-box-icon.green {
	background-color: #d2ffdd;
	color:#3ece6a;
}
.tm-box-details strong {
	display: block;
    font-size: 40px;
    line-height: 50px;
	font-family: var(--special-element-fontfamily);
	font-weight: var(--special-element-fontweight);
	color: var(--ttm-secondarycolor);
}


.tm-social-row select {
	max-width: 150px;
}
.tm-social-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.tm-social-row select,
.tm-social-row input {
    padding: 8px;
    flex: 1;
}
.remove-social-row {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 3px;
}
#tm-loader {
	display:none;
	position:fixed;
	top:0; left:0; 
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.7);
	z-index:9999;
	text-align:center;
}



.tm-agent-panel .tm-header-overlay .tm-stickable-header-w {
    position: relative;
	    background-color: #fff;
}
.tm-agent-panel .tm-header-overlay .tm-titlebar-wrapper .tm-titlebar-inner-wrapper {
    padding-top:0px;
}
.tm-agent-panel .site-content-inner .content-area.container {
	width: 100%;	
	padding:0px;
}
.tm-agent-panel div.tm-titlebar-wrapper {
    display: none;
}
.tm-agent-panel .site-main {
    padding-top: 0;
}
body.tm-agent-panel .tm-user-dashboard {
    margin-bottom: 0px !important;
}
/* profile page css */
.tm-user-dashboard {
    display: flex;
    gap:50px;
    margin:0px 0px 60px;
}
body.themetechmount-footer-cta-yes .tm-user-dashboard  {
	margin-bottom:75px;
}
.tm-dashboard-sidebar {
    width: 300px;
}
.tm-dashboard-sidebar .profile-avatar img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 120px;
    height: 120px;
	    border: 1px solid var(--ttm-bordercolor);
}
.profile-name {
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}
.tm-dashboard-sidebar .tm-sidebar-inner{
	width: 300px;
	padding-bottom: 30px;
	position: fixed;
	top: 0;
	height: 100vh;
	z-index: 5;
	background: #001533;
}
.tm-agent-panel #masthead,
.tm-agent-panel .tm-header-overlay .tm-stickable-header-w {
    position: relative;
    background-color: #fff;
    display: none;
}
.tm-dashboard-header .tm-brand-inner {
	display: flex;
    vertical-align: middle;
    gap: 35px;
}
.tm-dashboard-header .tm-brand-inner .tm-sidebar-toggle i {
    font-size: 32px;
    display: inline-block;
    line-height: 32px;
}
#tm-sidebar-toggle {
    width: 32px;
    height: 32px;
    cursor: pointer;	
	display: none;
}

/* custom header */

.tm-dashboard-header {
    background: #fff;
    box-shadow: unset;
    position: absolute;
    z-index: 1000;
    width: calc(100% + 50px);
    top: 0;
    left: -50px;
}

.tm-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.tm-brand-text {
    font-size: 16px;
    margin-bottom: 0;
}

.tm-user-profile {
    position: relative;
}

.tm-dropdown-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.tm-user-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 0 12px;
}

.tm-user-name {
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
}

.tm-user-email {
    font-size: 12px;
    color: #7f8c8d;
}

.tm-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    color: #7f8c8d;
}

.tm-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    width: 250px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.tm-dropdown-toggle[aria-expanded="true"] + .tm-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tm-user-card {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
}

.tm-dropdown-links a {
    display: flex;
    align-items: center;
    padding:5px 0px;
    text-decoration: none;
    transition: all 0.2s;
}
.tm-dropdown-links a i {
    padding-right: 10px;
    display: inline-block;
    width: 23px;
}
.tm-icon-user, 
.tm-icon-info, 
.tm-icon-logout {
    width: 20px;
    margin-right: 12px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 767px) {
    .tm-header-container {
        padding: 12px 15px;
    }
    
    .tm-user-name {
        display: none;
    }
    
    .tm-user-email {
        display: none;
    }
    
    .tm-dropdown-menu {
        width: 250px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .tm-dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
}

.tm-dcontent-inner {
	margin-top:70px;
}
.tm-user-avatar img {
	max-width:40px !important;
}


.tm-password-inner,
.tm-profile-box {
    background: #fff;
    border-radius: 0;
    padding: 25px;
    border: 1px solid var(--ttm-bordercolor);
}


/* my properties page */

.tm-dashboard-content {
  background-color: #f4f7fe;
  padding: 20px;
  border-radius: 12px;
}

.tm-dashboard-header .tm-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:2px;
}

.tm-brand-text {
  font-size: 16px;
  color: #1e1e2f;
}

.tm-user-profile {
  display: flex;
  align-items: center;
}

.tm-user-avatar img {
  border-radius: 50%;
}

.tm-user-meta {
  margin-left: 10px;
  font-weight: 600;
  color: #1e1e2f;
}

.tm-my-properties-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.tm-my-properties-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e2f;
}

.tm-submit-property-btn {
  background-color: #4676f1;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}

.tm-submit-property-btn:hover {
  background-color: #315dd6;
}

.tm-my-properties-table-wrapper {
    background: #fff;
    border-radius: 0;
    padding: 25px;
    border: 1px solid var(--ttm-bordercolor);
}

.tm-my-properties-table {
  width: 100%;
  border-collapse: collapse;
}

.tm-my-properties-table thead {
    background-color: transparent;
    border: 1px solid var(--ttm-bordercolor);
}

.tm-my-properties-table th {
	padding: 12px;
	text-align: left;
	font-size: 18px;
	font-family: var(--special-element-fontfamily);
	font-weight: var(--special-element-fontweight);
	color: var(--ttm-secondarycolor);
	border-right: none;
}

.tm-my-properties-table td {
  padding: 16px 12px;
  vertical-align: middle;
  border:none;
  border-bottom:1px solid var(--ttm-bordercolor);
}

.property-thumb img {
  border-radius: 10px;
  width: 100px;
  height: auto;
}

.property-info h5 {
	font-size: 17px;
	color: var(--ttm-secondarycolor);
	font-family: var(--special-element-fontfamily);
	font-weight: var(--special-element-fontweight);
	display: block;
	margin-bottom:5px;
}

.property-info i {
    color: var(--body-fonts-color);
	font-size: 14px;
	line-height: 14px;
	position: relative;
}

.property-price {
  color: #1a73e8;
  font-weight: 700;
  margin-top: 6px;
}
.tm-pstatus {
  color: white;
  padding:3px 15px;
  border-radius:5px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;	
}
.tm-pstatus.status-pending {
  background-color: #ffb822;
}
.tm-pstatus.status-publish {
  background-color:#008000;
}
.tm-pstatus.status-sold {
  background-color: var(--ttm-skincolor);
}
.tm-edit-btn,
.tm-delete-property {
  display: inline-block;
  background-color: #f1f4fc;
  padding:13px;
  margin-right: 5px;
  border-radius: 8px;
  color: var(--ttm-secondarycolor);
  font-size: 16px;
  line-height: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tm-fav-listing .tm-fav-delete:hover,
.tm-edit-btn:hover,
.tm-delete-property:hover {
  background-color: var(--ttm-skincolor);
  color: #fff;
}

table.tm-my-properties-table tbody tr, table.tm-my-properties-table thead tr {
    border: none;
	border-bottom: 1px solid var(--ttm-bordercolor);
}





/* favoutite properties */
#tm-favorites-box .favorite-properties {
    background: #fff;
    border-radius: 0;
    padding: 25px;
    border: 1px solid var(--ttm-bordercolor);
}
.tm-fav-listing {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--ttm-bordercolor);
    padding-bottom: 25px;
}
.tm-fav-listing .tm-featured-wrapper {
  width: 120px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.tm-fav-listing .tm-featured-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.tm-fav-listing .tm-fav-content {
  flex: 1;
}
.tm-fav-listing .themetechmount-box-title h4 {
  font-size: 17px;
  line-height:27px;
  margin-bottom: 2px;
}
.tm-fav-listing .themetechmount-property-location {
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tm-fav-listing .themetechmount-ppricebox .ttm-pbox {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tm-fav-listing .themetechmount-price {
    color: var(--ttm-skincolor);
}
.tm-fav-listing .strike-line {
  text-decoration: line-through;
  font-size: 13px;
  margin-left: 4px;
}
.tm-fav-listing .tm-price-label {
  font-size: 13px;
  font-weight: 400;
  margin-left:0px;
  padding-left: 0;
}
.tm-fav-listing .tm-fav-delete {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #f1f4fc;
  cursor: pointer;
   display: inline-block;
	padding: 13px;
	border-radius: 8px;
	color: var(--ttm-secondarycolor);
	font-size: 16px;
	line-height: 16px;
	transition: all 0.3s ease;
}
.tm-fav-listing .themetechmount-address i {
	padding-right: 0px !important;	
	top: 0px !important;
}
#tm-ajpanel-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 25px;
    right: 12px;
    z-index: 100;
    font-size: 23px;	
}
#tm-ajpanel-close {
	display: none;
}

@media (max-width: 1200px) {
    .tm-sidebar-inner .site-title {
        width: 100%;
		text-align: left;
        padding: 0 45px 0 15px;
    }
	.tm-dashboard-sidebar {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		position: fixed;
        z-index: 1;
	}
	.tm-dashboard-sidebar.tm-sidebar-collapsed {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
	#tm-ajpanel-close,
	#tm-sidebar-toggle {
		display: block;
	}
	.tm-user-dashboard .tm-dashboard-sidebar {
        margin-bottom:0px;
		-webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
	.tm-dashboard-header {
        width: calc(100%);
        left: 0;
        z-index: 0;
	}
	body .tm-dashboard-content {
		padding: 120px 20px 30px 20px;
	}
}


.tm-pstatus.status-disapproved {
background-color: #ff0000;
}

.tm-pstatus.status-on_hold {
  background-color:#f0ad4e;
  text-transform: uppercase;
}
.tm-pstatus.status-mark_sold {
  background-color: var(--ttm-skincolor);
}

#tm_delete_account {
    border: none;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}