.callBack_outer_container {
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    min-height: 149px;
    width: 302px;
    border-radius: 10px;
    right: 20px;
    bottom: 86px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    line-height: 23px;
    font-size: 14px;
    text-align: center;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    animation-duration: 0.2s;
    animation-timing-function: ease;
    animation-delay: 0.05s;
    transform: translateY(0px);
    animation-fill-mode: backwards;
    animation-name: fadeIn;
    display: none;
}

.show-container {
    display: block;
}

.hide-container {
    animation-name: fadeOut;
    animation-duration: 0.5s;
    display: block;
    animation-fill-mode: forwards;
}

.callBack_inner_container {
    height: 227px;
    width: 302px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Raleway", Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.callBack_header {
    background-color: rgb(0, 99, 255);
    display: flex;
    height: 50px;
    border-radius: 9px 9px 0px 0px;
    -webkit-box-align: center;
    align-items: center;
    text-align: left;
}

.cross_pic {
    width: 24px;
    height: 24px;
    filter: invert(1) brightness(2);
}

.cross_pic_div {
    cursor: pointer;
    width: 24px;
    margin: 6px 12px 0px auto;
}

.callBack_pic {
    width: 100%;
    height: 100%;
    filter: invert(1) brightness(100);
    stroke: none;
}

.callBack_img_div {
    width: 28px;
    height: 28px;
    margin: 0px 3px 0px 12px;
}

.callBack_header_text {
    text-align: left;
    color: rgb(255, 255, 255);
}


.callBack_body_div {
    margin: 0 1rem;
    font-family: Open Sans, Arial, sans-serif;
    height: 211px;
    width: 268px;
}

.callBack-form {
    margin-top: 15px;
    font-size: 15px;
}

#custom-message {
    text-align: center;
    color: #3f3f3f;
    background-color: #f9f9f9;
    padding: 7px;
    margin: 0 0 13px 0;
    border-radius: 5px;
}

.input-field {
    position: relative;
    margin-bottom: 7px;

}

.callBack-form input {
    color: #212529;
    border: 1px solid #ced4da;
    appearance: none;
    width: calc(100% - 20px);
    padding: 7px 10px 8px;
    border-radius: 5px;
    font-family: inherit;
    font-size: inherit;
    outline: 0;
    /* transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; */
}

.input-field input:focus {
    border-color: #8fb8f2;
    box-shadow: 0 0 5px #8fb8f2;
}

.error-message {
    position: absolute;
    right: 7px;
    top: 9px;
    padding: 3px 4px 2px;
    background: #8fb8f2;
    color: #fff;
    font-size: 11.8px;
    border-radius: 3px;
    line-height: 1;
    display:none;
}

.show-error {
    display: block;
}


.submit {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    background: rgb(0, 99, 255);
    border-width: 0;
    width: 100%;
    padding: 0;
    cursor: pointer;
    min-height: 38px;
    position: relative;
    font-size: 16px;
}


.icon {
    display: inline-block;
    fill: #fff;
    width: 17px;
    margin: 6px 6px 0 0;
    opacity: .9;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(45px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(45px);
    }
}