/* 
Theme Name: Property
Description: Property Theme
Author: M.L Web Solutions
Template: hello-elementor
Version: 2.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* Add your custom styles here */
.details {
    height: 25px;
    margin-top: 10px;
    width: 80%;
     font-weight: 900!important;
     color: var(--e-global-color-secondary);
}
input:focus {
  border: 2px solid var(--e-global-color-secondary)!important;
}

.elementor-select-wrapper .select-caret-down-wrapper svg {
    height: 2em;
    color: var(--e-global-color-secondary);
}
.elementor-button-align-center .e-form__buttons, .elementor-button-align-center .elementor-field-type-submit {
    justify-content: center;
    margin-top: 25px;
}
.elementor-field-group {
    display: inline-block;
}
.elementor-field-group-options_sale .elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option, .elementor-field-group-options_buy .elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option {
    margin-bottom: 6px;
    padding: 5px 0 6px 0;
    border-bottom: dashed 1px #b3b3b3;
}
.elementor-field-group-options_sale label span, .elementor-field-group-options_buy  label {
    font-weight: 500!important;
}
.elementor-field-group-options_sale label span, .elementor-field-group-options_buy label span {
    font-weight: 400;
    color: var(--e-global-color-secondary);
}

/* Hide the actual radio input */
#form-field-first_sale_buy-0, #form-field-first_sale_buy-1, .elementor-field-group-first_sale_buy .elementor-field-label {
     position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Basic style for the labels */

.elementor-field-group-first_sale_buy {
    
    margin-bottom: 35px!important;
}

.elementor-field-group-first_sale_buy .elementor-field-option {
    margin-top: 15px;
}

.elementor-field-group-first_sale_buy .elementor-field-option label {
    display: inline-block;
    padding: 12px 42px;
    cursor: pointer;
    border: 1.5px solid #9797b0;
    border-radius: 8px;
    transition: background-color 0.3s ease;
        font-weight: 900!important;
        letter-spacing: 1px;
}

/* Sale button specific style (red) */
#form-field-first_sale_buy-0 + label {
    background-color: #fff;
}

/* Buy button specific style (green) */
#form-field-first_sale_buy-1 + label {
    background-color: #fff;
}

/* Styling for hover effect */
.elementor-field-group-first_sale_buy .elementor-field-option label:hover {
    opacity: 0.9;
}

/* Styling labels when the radio button is checked */
.elementor-field-group-first_sale_buy .elementor-field-option input[type="radio"]:checked + label {
    border-color: var( --e-global-color-primary );
    color: #fff;
    background-color: var(--e-global-color-secondary)!important;
}

.elementor-field-group-options_buy.elementor-col-100 > label, .elementor-column.elementor-field-group-options_sale.elementor-col-100 > label {
    margin-top: 10px;
    font-size: 1.2rem!important;
    font-weight: 800!important;
    color: var(--e-global-color-secondary)!important;;
}


/* Packages */

/* Hide the actual radio input
.elementor-field-group-package input {
     position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
} */

/* Basic style for the labels */

.elementor-field-group-package .elementor-field-option {
    display: flex;
    flex-basis: calc(33.333% - 6px)!important;
    margin: 3px;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
.elementor-field-group-package .elementor-field-option {
    display: flex;
    flex-basis: 100%!important;
    margin: 3px;
    box-sizing: border-box;
}

}

.elementor-field-group-package .elementor-field-option input[type="radio"] {
    display: none;
}

.elementor-field-group-package .elementor-field-option label {
    display: block;
    background-color: #fff;
    padding: 15px 10px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: background-color 0.3s, border-color 0.3s;
	box-shadow: 1px 1px 3px 0 #0c305838
}

#property .elementor-field-group-package .elementor-field-option label {
	font-size: 1.2rem;
	font-weight: bold;
}
.elementor-field-group-package .elementor-field-option label:hover,
.elementor-field-group-package .elementor-field-option input[type="radio"]:checked + label {
    border-color: #d0d0d0;
	border: solid 4px;
	box-shadow: 1px 1px 3px 0 #0c305838
}

span.package-price {
    display: block;
    margin-top: 15px;
    font-size: 2rem;
}
span.package-desc {
  /*  display: block;*/
    font-size: 0.8rem;
	font-weight: 400;
}


.elementor-field-group-package .elementor-field-subgroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}




.error-border {
    border: solid 2px red!important;
}

#property > div.elementor-message.elementor-message-danger {
    box-shadow: 0 0 5px 2px #efefef;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    animation: wiggle 0.5s ease;
    background: #fff9f9;
}

@keyframes wiggle {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-8px);
    }
    50% {
        transform: translateX(8px); 
    }
    75% {
        transform: translateX(-8px); 
    }
    100% {
        transform: translateX(0);
    }
}

/* Define the keyframes for slide-in and blur */
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply the animation to the element */
.slide-in {
  animation: slideIn 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.record-number h5 {
    margin-bottom: 0;
}
.record-number {
    letter-spacing: 1px;
}

.elementor-field-group-no_street label {
    display: none;
}
.elementor-field-group-no_street {
align-self: center;
}

#info-box {
    box-shadow: 0px 0px 5px 1px #e2e2e2;
    padding: 25px;
    border-radius: 10px;
    margin: 10px 0;
}
.info-box {
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease;
}

.info-box.active {
    opacity: 1;
    display: block;
}
.sub-div {
    opacity: 0;
    transform: translateY(10px); /* Optional: You can add a vertical slide-in effect */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sub-div.active {
    opacity: 1;
    transform: translateY(0); /* Optional: Reset the transform for the slide-in effect */
}
#info-box h4 {
	font-weight: bolder;
    color: var(--e-global-color-primary);
}

