.container.free-consult {
    max-width: 1000px;
    padding: 0;
    padding-top: 10px;
}

.free-consult input[type=text] {
    background-color: var(--input-background-color);
    padding: 12px 16px;
    color: var(--text-color-pri);
    border-radius: 4px;
    border: 1px solid var(--input-border-line-color);
    width: 100%;
    height: 48px;
}

input[type=text]:focus {
    border: 2px solid var(--primary-color);

}

/* Hide the default radio button */
.custom-radio input {
    display: none;
    height: 48px;
}

/* Create a custom radio button */
.custom-radio .checkmark {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* background_grey */
    background: #F8F8F8;
    /* stroke */
    border: 1px solid #E1E1E1;
    box-sizing: border-box;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input~.checkmark {
    background-color: #ccc;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked~.checkmark:after {
    display: block;
}

/* Create the indicator (the dot/circle - when the radio button is checked) */
.custom-radio .checkmark:after {
    /* point */
    position: absolute;
    width: 14px;
    height: 14px;
    /* brand */
    border-radius: 50%;
    top: 4px;
    left: 4px;
    background: var(--primary-color);
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]+label {
    background-color: var(--input-background-color);
    margin: 0;
    color: var(--primary-color);
    width: 24px;
    height: 24PX;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    position: relative;
    display: block;
    cursor: pointer;
}

input[type=checkbox]+label:hover,
input[type=checkbox]:checked+label {
    border: 1px solid #E1E1E1;
}

input[type=checkbox]:disabled+label {
    background-color: #b8b8b8;
}

input[type=checkbox]:checked+label:after {
    content: url('/images/check.png');
    position: absolute;
    width: 24px;
    height: 24px;
    left: -1px;
    top: -1px;
}

span.checkbox-content {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary-color);
}

span.assets {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color-pri);
}

.property-checkbox {
    min-height: 48px;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
    height: 48px;
    position: absolute;
}

select::-ms-expand {
    display: none;
}

.custom-select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--input-border-line-color);
    border-radius: 4px;
    padding: 0.6em 0.75em;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    line-height: 150%;
    background-color: var(--input-background-color);
    background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;
}

.custom-select::after {
    content: url(/images/down.png);
    width: 24px;
    height: 24px;
    position: absolute;
    justify-self: end;
}

select,
.custom-select::after {
    grid-area: select;
}

/* setting selector focused */
select:focus+.focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--input-border-line-color);
    border-radius: inherit;
}

/* custom dropdown */


.free-consult-btn {
    height: 48px;
    border-radius: 4px;
    border: 1px solid var(--input-border-line-color);
    background-color: var(--primary-color);
    color: var(--text-white-color);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}

.free-consult-btn:hover {
    background-color: var(--button-color-hover);
}

h2.free_consult {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: var(--primary-color);
}

p.announcement {
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    color: var(--text-secondary-color);
    margin: 0;
}

a.announcement {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 13px;
    line-height: 150%
}

span.slogan {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color-pri);
}

.free-consult-slogan {
    margin: 16px 0 32px 0;
}

span.hotline {
    color: var(--badge-color);
}

.phone-and-city {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
}

.custom-toast {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    position: absolute;
    width: auto;
    height: 48px;
    transform: translate(-50%, -50%);

    /* overlay80 */

    background: rgba(0, 0, 0, 0.8);
    border-radius: 999px;

    /* text_white */
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
}

.valdation-toast {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;

    position: absolute;
    width: auto;
    height: 48px;
    transform: translate(-50%, -50%);

    /* overlay80 */

    background: rgba(0, 0, 0, 0.8);
    border-radius: 999px;

    /* text_white */
    font-family: 'Noto Sans TC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    z-index: 999;
}

.toast {
    animation: toastFade 2s forwards;
}

@keyframes toastFade {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}