label.radio-box {
    display: block;
    color: #527b5c;
    border: 1px solid #b0bb94;
    border-radius: 5px;
    text-align: center;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: normal;
    cursor: pointer;
    transition: border-color 0.3s, font-weight 0.3s;
    box-sizing: border-box;
}

label.radio-box input {
    display: none;
}

label.radio-box .icon {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 20px;
    color: #b0bb94;
    transition: color 0.3s;
}

label.radio-box:has(> input:checked) {
    border-color: #527b5c;
    font-weight: bold;
}

label.radio-box:has(> input:checked) .icon {
    color: #527b5c;
}

.banner-icon {
    width: 128px;
    height: 128px;
    display: block;
    margin: 0 auto 20px;
    color: #527b5c;
}

/* whatsapp */
.bubble_wh {
    display: inline-block;
    width: 65px;
    height: 65px;
    background: #007F69;
    border: 1px solid #007F69;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.bubble_wh .icon {
    position: relative;
    width: 38px;
    height: 38px;
    top: 50%;
    margin-top: -21px;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bubble_wh:hover {
    background-color: #fff;
}

.bubble_wh:hover .icon {
    color: #007F69;
}

label:has(+ :required):after {
    content: "*";
    color: red;
}

.color-red {
    color: red;
}

.contact-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto;
}