.popup-call-component {
    display: none;
}

.popup-call-component__overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(158, 161, 163, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in;
}

.popup-call-component__box {
    position: fixed;
    width: 440px;
    height: 461px;
    background-color: #FFFFFF;
    border-radius: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in;
}

.popup-call-component__close {
    background: none;
    border: none;
    position: absolute;
    top: 22px;
    right: 22px;
    cursor: pointer;
}

.popup-call-component__heading {
    margin-bottom: 24px;
}

.popup-call-component__heading h6 {
    font-family: "Open Sans", "sans-serif";
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    color: #00A76B;
    text-align: center;
}

.popup-call-component__form {
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.popup-call-component__input-control {
    margin-bottom: 20px;
    position: relative;
}

.popup-call-component__input-control .error-message {
    position: absolute;
    bottom: -18px;
    display: none;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #D70015;
    padding-left: 5px;
}

.popup-call-component__input-control .error-message.error {
    display: block;
}

.popup-call-component__input {
    width: 100%;
    padding: 16px;
    border: 1px solid #AEAEB2;
    border-radius: 50px;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #00A76B;
}

.popup-call-component__input::-moz-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.popup-call-component__input:-ms-input-placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.popup-call-component__input::placeholder {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #AEAEB2;
}

.popup-call-component__input.success {
    border: 1px solid #00A76B;
}

.popup-call-component__input.error {
    border: 1px solid #D70015;
    color: #D70015;
}

.popup-call-component__input.error::-moz-placeholder {
    color: #D70015;
}

.popup-call-component__input.error:-ms-input-placeholder {
    color: #D70015;
}

.popup-call-component__input.error::placeholder {
    color: #D70015;
}

.popup-call-component-agreement__text {
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #AEAEB2;
}

.popup-call-component-agreement__link:link, .popup-call-component-agreement__link:visited {
    color: #00A76B;
}

.popup-call-component-agreement__link:hover {
    text-decoration: underline;
}

.popup-call-component__button {
    align-self: center;
    margin-top: 32px;
    max-width: 142px;
    width: 100%;
}

.popup-call-component_open {
    overflow: hidden;
    display: block;
}

.popup-call-component_open .popup-call-component__overlay {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in;
}

.popup-call-component_open .popup-call-component__box {
    z-index: 2;
    display: flex;
    transition: all 0.3s ease-in;
}

.popup-call-component_open .popup-call-component-box__form__hide {
    display: none;
    visibility: hidden;
}

.popup-call-component-box__timer {
    display: none;
    visibility: hidden;
}

.popup-call-component-box__form__active {
    display: flex;
    flex-direction: column;
    align-content: center;
    max-width: 286px;
    width: 100%;
    visibility: visible;
}

.popup-call-component__text {
    margin-bottom: 40px;
}

.popup-call-component__text p {
    font-family: "Open Sans", "sans-serif";
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    color: #18191F;
    text-align: center;
}

.popup-call-component__round {
    display: flex;
    justify-content: center;
    position: relative;
}

.popup-call-component__ring {
    position: absolute;
    top: 1000px;
}

.popup-call-component__time {
    position: absolute;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color: #00A76B;
    top: 82px;
}

.popup-call-component__ring_load {
    -webkit-animation: load-time 290s 1 forwards;
    animation: load-time 290s 1 forwards;
}