#sandwichform-fieldset-test-2,
#sandwichform-fieldset-test-3 {
    display: none;
}

.content .tx-sandwichsimulator .form-group {
    margin-bottom: 10px;
}
.tx-sandwichsimulator .add-test-button,
.tx-sandwichsimulator .hubspot-btn {
    border: none;
    background-color: #e30614;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    width: 300px;
    display: block;
    margin: -2rem auto 1rem auto;
    padding: 15px 20px;
    text-align: center;
}
.tx-sandwichsimulator .hubspot-btn {
    margin: 1rem 0 0 0;
    width: 250px;
}
.tx-sandwichsimulator form .clearfix.remove-button {
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
}
.tx-sandwichsimulator .remove-test-btn {
    padding: 0.25rem 1.75rem 0.75rem;
    background-color: #e30614;
    border-color: #e30614;
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    position: absolute;
    right: 15px;
    top: 15px;
}
.tx-sandwichsimulator .remove-test-btn:hover {
    background-color: #dedede;
    border-color: #e30614;
    color: #e30614;
}
.tx-sandwichsimulator form .clearfix, .tx-sandwichsimulator form .form-element-statictext {
    margin-bottom: 30px;
    border-bottom: 5px solid #dedede;
}
.tx-sandwichsimulator form .clearfix.spinner-wrapper {
    border-bottom: 0;
    margin: 0 auto;
    width: 80px;
    display: none;
}
.tx-sandwichsimulator form .spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 20px;
}
.tx-sandwichsimulator form .spinner div {
    position: absolute;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #e30614;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.tx-sandwichsimulator form .spinner div:nth-child(1) {
    left: 8px;
    animation: spinner1 0.6s infinite;
}
.tx-sandwichsimulator form .spinner div:nth-child(2) {
    left: 8px;
    animation: spinner2 0.6s infinite;
}
.tx-sandwichsimulator form .spinner div:nth-child(3) {
    left: 32px;
    animation: spinner2 0.6s infinite;
}
.tx-sandwichsimulator form .spinner div:nth-child(4) {
    left: 56px;
    animation: spinner3 0.6s infinite;
}
@keyframes spinner1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes spinner3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes spinner2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
