#crm {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    padding: 40px 32px;
    box-sizing: border-box;
    border-radius: 8px;
    color: black;
    flex-wrap: wrap;
}

#crm #crmtop {
    margin-bottom: 24px;
}

#crm .crmrow {
    display: flex;
    flex-direction: row;
}

#crm #crmleft {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    flex: 0;
}

#crm #crmright {
    display: flex;
    align-items: baseline;
    margin-top: 26px;
}

#crm[data-v1] {
    background: #DEEFE1;
}

#crm input, #crm select {
    border-radius: 4px;
    padding: 12px 16px;
    width: 100%;
    border: 1px solid #B3B3B3;
    height: auto;
    line-height: normal;
}

#crm[data-v1] :is(input, select) {
    border: 0;
}

#crm input:disabled, #crm select:disabled {
    cursor: not-allowed;
    background: darkgray;
    color: gray;
}

#crm .crmbox_input_warning {
    color: #EE2A27;
}

#crm .crmbox_input_warning input {
    color: #EE2A27;
    border: 1px solid #EE2A27;
}

#crm #crmsubmit {
    background: #00993C;
    border-radius: 4px;
    border: 0;
    color: white;
    padding: 12px 24px;
    width: fit-content;
    font-weight: 700;
}

#crm #crmsubmit:disabled {
    cursor: not-allowed;
    background: darkgray;
    color: gray;
}

#crm .crmbox_inputcontainer {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 50%;
    min-width: 390px;
    max-width: 95%;
}

#crm .crmbox_submitcontainer {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-top: 1px solid #e6e6e6;
    padding-top: 24px;
}

#crm[data-v1] .crmbox_submitcontainer {
    border: 0;
    padding-top: 0px;
}

#crm .crmbox_submitcontainer .gform_next_button {
    text-decoration: underline;
    color: black;
    background: transparent;
    border: 0;
    box-shadow: 0px 0px;
    padding: 12px 24px;
    font-weight: 700;
}

#crm .crmbox_submitcontainer #crmbox_ajax_spinner {
    margin-left: 12px;
}

#crm .crmbox_submitcontainer .gform_page_footer {
    flex: 1;
    margin-top: 0;
}

#crm #crmboxerror {
    display: none;
    background: #FDE4D7;
    color: #EE2A27;
    border: 1px solid #EE2A27;
    text-align: center;
    border-radius: 4px;
    padding: 14px 20px;
}

#crm .cr_status .cr_cmicon .line1, #crm .cr_status .cr_cmicon .line2 {
    stroke: #070707;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-miterlimit: 10;
}

#crm .cr_status .cr_cmicon .line1 {
    stroke-dasharray: 180;
    stroke-dashoffset: 0;
    animation: cr_cmok_line1 1.8s ease-in-out;
}

#crm .cr_status .cr_cmicon .line2 {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    animation: cr_cmok_line2 0.9s ease-in-out;
}

#crm .cr_status .cr_cmicon .circle {
    fill: none;
    stroke: #070707;
    stroke-width: 3;
    stroke-miterlimit: 10;
}

#crm .cr_status {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #DEEFE1;
    padding: 29px 22px;
    gap: 24px;
    border-radius: 8px;
    margin-left: 25px;
}

#crm .cr_status .crmarrowdown {
    animation: crm_arrow 2s ease-in-out;
    animation-iteration-count: 3;
    cursor: pointer;
}

#crm .cr_status .cr_cmicon {
    flex: none;
}

#crmboxtestoutput {
    background: darkslategray;
    color: white;
    padding: 5px;
    margin-right: 20px;
}

@keyframes crm_arrow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes cr_cmok_line1 {
    0% {
        stroke-dashoffset: 180;
    }
    
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes cr_cmok_line2 {
    0% {
        stroke-dashoffset: 100;
    }
    
    100% {
        stroke-dashoffset: 200;
    }
}