#floating-button {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: #CA7022;
    position: fixed;
    bottom: 7.4rem;
    right: 3rem;
    cursor: pointer;
    z-index: 9000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

    &.open {
        background: white;
    }
}

.plus {
    color: white;
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 50px;
    font-size: 38px;
    font-weight: 300;
    animation: plus-out 0.3s;
    transition: all 0.3s;
}

#plantercraft-fab {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    z-index: 50;
}

#plantercraft-fab.open {
    height: 400px;
    width: 90px;
    padding: 30px;
}

#plantercraft-fab.open .plus {
    animation: plus-in 0.15s linear;
    animation-fill-mode: forwards;
}

.edit {
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    padding: 0;
    opacity: 0;
    margin: auto;
    line-height: 65px;
    transform: rotateZ(-70deg);
    transition: all 0.3s;
    animation: edit-out 0.3s;
}

#plantercraft-fab.open .edit {
    animation: edit-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes edit-in {
    from {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

@keyframes edit-out {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }
    to {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
}

@keyframes plus-in {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }
    to {
        opacity: 0;
        transform: rotateZ(180deg);
    }
}

@keyframes plus-out {
    from {
        opacity: 0;
        transform: rotateZ(180deg);
    }
    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

.nds {
    width: fit-content;
    height: 4.8rem;
    border-radius: 50%;
    position: fixed;
    z-index: 300;
    transform: scale(0);
    cursor: pointer;
    background: none;
}

.nd1 {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 3rem;
    bottom: 15.4rem;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd3 {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 3rem;
    bottom: 23.4rem;
    animation-delay: 0.15s;
    animation: bounce-out-nds 0.15s linear;
    animation-fill-mode: forwards;
}

.nd4 {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 3rem;
    bottom: 31.4rem;
    animation-delay: 0.1s;
    animation: bounce-out-nds 0.1s linear;
    animation-fill-mode: forwards;
}

@keyframes bounce-nds {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce-out-nds {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}
#plantercraft-fab {
    z-index: 10000;
}
.plantercraft-fab-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    top: 0;
    left: 0;
    z-index: 9000;
}
#plantercraft-fab.open .nds {

    animation: bounce-nds 0.1s linear;
    animation-fill-mode: forwards;
}

#plantercraft-fab.open .nd3 {
    animation-delay: 0.08s;
}

#plantercraft-fab.open .nd4 {
    animation-delay: 0.15s;
}

#plantercraft-fab.open .nd5 {
    animation-delay: 0.2s;
}

.letter {
    font-size: 23px;
    font-family: 'Roboto';
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    line-height: 40px;
}

.reminder {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    line-height: 40px;
}

.profile {
    border-radius: 50%;
    width: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
}

#plantercraft-fab > div a {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer !important;

}

/* Modal Background */
.plantercraft-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;

    /* Modal Content */
    .modal-content {
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        width: 90%;
        max-height: 95%;
        /*overflow: auto;*/

        max-width: fit-content;
        /* Frame 5 */

        /* Auto layout */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2.4rem 3rem;
        gap: 32px;

        border-radius: 16px;
    }

    /* Close Button */
    .close {
        position: absolute;
        top: -15px;
        right: -15px;
        font-size: 30px;
        cursor: pointer;
        background: #CA7022;
        padding: 5px;
        border-radius: 100%;
        opacity: 1;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;;
    }

    .gform_wrapper {
        display: block !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

}

.plantercraft-contact-us-form #field_1_1 {
    display: none;

    .gfield_required.gfield_required_asterisk {
        color: black;
        font-size: 1.6rem;
    }

    #rc-anchor-container {
        background: none;
    }

    .ginput_recaptcha {
        width: 100%;

        overflow: hidden;
        > div {
            width: 100% !important;
        }

        > div {
            width: 100% !important;
        }
    }
}

.plantercraft-fab-button-icon {
    background: #CA7022;
    position: absolute;
    border-radius: 100%;
    right: 0;
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plantercraft-fab-button-text {
    white-space: nowrap;
    background: white;
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3.1rem;
    color: #CA7022;
    border-radius: 2.4rem;
    padding: .8rem 6rem .8rem 3rem;
}