/*---------------------------------------------------------------------------------
 Theme Name: My Listing Child
 Description: MyListing Child Theme
 Template: my-listing
 Text Domain: my-listing-child
 Version: 1.0.0
------------------------------ ADDITIONAL CSS HERE ------------------------------*/



/* Styling for Explore Page */

/* Listings Preview Card Image Height */
@media (max-width: 1024px) {
    div.finder-listings .lf-type-2 .lf-item {
        height: 320px;
    }
    div.finder-listings .lf-type-2 .lf-item .lf-background {
        height: 230px;
    }
}

/* Mobile Map View Bottom Icon */
@media only screen and (min-width : 1201px) {
    ul.main-nav li a>i {
        display: inline-block;
        padding-right: 5px;
    }
}

@media only screen and (max-width : 1200px) {
    div.explore-mobile-nav .nav-tabs li a {
        background: #202125;
        color: #fff;
    }
    div.explore-mobile-nav .nav-tabs li a i {
        color: #fff;
    }
}



/* Styling for Listing Profile */

/* Single Page Listing Profile Header */
.profile-header {
    height: 70px;
    background-color: #202125;
    box-shadow: none;
}

.profile-header .profile-menu ul {
    margin-top: 9px;
}

/* Tabs Styles */
#listing_tab_home_toggle,
#listing_tab_gallery_toggle,
#listing_tab_location_toggle,
#listing_tab_contact_toggle {
    color: #202125;
	text-transform: uppercase;
    background-color: #f4f4f4;
    margin: 0 5px; /* Combine margin declarations */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: background-color 0.3s ease;
}



/* Styling for Gravity Forms */

/* Label styling for all fields */
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
    font-size: 14px;
    font-weight: normal;
    padding-top: 20px;
}

/* Styling for required field labels */
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label .gfield_required {
    color: #ff0066;
}

/* Label styling for First Name and Last Name fields */
body .gform_wrapper .gform_body .gform_fields .gfield .name_first label,
body .gform_wrapper .gform_body .gform_fields .gfield .name_last label {
    font-size: 12px;
}

/* Label styling for complex input fields on both sides */
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex .ginput_left label,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex .ginput_right label {
    font-size: 12px;
}

/* Button Styling */
body .gform_wrapper .gform_footer input[type=submit] {
    font-size: 13px;
    padding: 12px 23px;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    letter-spacing: 2px;
    background-color: #ff0066;
}

body .gform_wrapper .gform_footer input[type=submit]:hover {
    background-color: #202125;
}


