.disable {
    display: none;
}

.popup-after-send__button, .button__send_order {
    font-family: "Roboto Condensed", sans-serif;
    background-color: #78C240;
    position: relative;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    border: none;
    padding: 9px 30px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 10px -5px #2A9B00;
}

.button__send_order:disabled {
    cursor: default;
    background-color: #a5d084;
    box-shadow: grey;
    box-shadow: 0 10px 10px -5px #72af43;
}

.button__send_order:disabled:hover {
    cursor: default;
    background-color: #a5d084;
    box-shadow: 0 10px 10px -5px #72af43;
}

.popup-after-send__button {
    margin-top: 15px;
    background-color: #8e8e8e;
    box-shadow: 0 10px 10px -5px #8e8e8e;
}

.popup-after-send__button:hover {
    background-color: #7e7e7e;
}

.popup-after-send__button:active {
    box-shadow: inset 0 0 12px 3px rgba(0, 0, 0, 0.4);
    background-color: #777777;
}

.button__send_order:hover {
    background-color: #72af43;
}

.popup-after-send__button:focus, .button__send_order:focus {
    outline: none;
}

.button__send_order:active {
    box-shadow: inset 0 0 12px 3px rgba(0, 0, 0, 0.4);
    background-color: #518a26;
}

.input_phone {
    font-size: 21px;
    border: 1px solid #ff6e00;
    padding: 7px;
    outline: none;
    border-radius: 5px;
    box-shadow: inset 0 2px 4px rgba(232, 151, 83, 0.5);

}

.popup-after-send {
    text-align: center;
    width: 100%;
    font-size: 1.4rem;
}

@keyframes loader-spin {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

.loader {
    position: absolute;
    z-index: 100;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    left: 0;
    background: rgba(160, 160, 160, 0.5);
    animation: loader-spin 2s ease-in-out infinite;
}

.loader circle {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    opacity: 1;
}

.form_send_order {
    height: 14vh;
    display: flex;
    align-items: center;
    padding-top: 25px;
}

.label_for_phone {
    color: #363636;
    font-size: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    width: 19%;
    margin-top: 5px;
}

.button__container {
    margin-left: 30px;
    position: relative;
    display: inline-block;
}

.form_phone {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    width: 100%
}

.form_phone input:valid:not(:placeholder-shown) {
    border-color: green;
}

.not_input_phone {
    width: 27%;
    display: flex;
    flex-direction: column;
}

.text-center {
    font-size: 13px;
    text-align: center;
    color: red;
}