
.content {
    max-width: 1170px;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
}

#grey_section {
    background-color: #f2f2f2;
    padding: 30px 0px;
}

.form-error {
    display: none;
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    /* margin-bottom: 0.5rem; */
    font-size: 0.85rem;
    font-weight: bold;
    font-style: italic;
    color: #e55d48;
}

.form-error.is-visible {
    display: block;
}

input[type="text"].active {
    border-color: #85B563 !important;
}



#progress {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
}

#progress.active {
    display: flex;
}

#progress .text {
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: black;
    margin-top: 10px;
}

#progress .icon {
    width: 50px;
    height: 50px;
    background: url("../images/order/progress.svg");
    -moz-animation: rotate 1.5s infinite linear;
    -webkit-animation: rotate 1.5s infinite linear;
    animation: rotate 1.5s infinite linear;
}
