/*
.send-button {
    background-color: #fd9701;
    border-radius: 0px 5px 5px 0px;
    padding: 4px 45px 3px 10px;
    display: inline-block;
    cursor: pointer;
}

body .send-button .icon-wrapper .icon-1 {
    transform: rotate(15deg);
    font-size: 23px;
    font-size: 2.3rem;
    opacity: 1;
}

.ion-paper-airplane:before {
    content: "\f2c3";
}

body .send-button .icon-wrapper .icon-2 {
    opacity: 0;
    font-size: 25px;
    font-size: 2.5rem;
}

.ion-checkmark:before {
    content: "\f122";
}*/


.ion-paper-airplane:before {
    content: "\f2c3";
}
.ion-checkmark:before {
    content: "\f122";
}

@keyframes icon-animation {
    0% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(-120deg) scale(4);
    }
    66% {
        transform: rotate(-240deg) scale(4);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
}
@keyframes input-shadow {
    0% {
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
    }
    40% {
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: none;
    }
    70% {
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
    }
}
.icon-wrapper-animation {
    animation: icon-animation 1.5s linear;
    transition: color 0.6s ease;
    color: #66bb6a;
}




body .send-button {
    width: auto;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s;
    z-index: 9;
    background-color: #fd9701;
    border-radius: 0px 5px 5px 0px;
    padding: 5px 40px 2px 0;
    display: inline-block;
    position: relative;
}
body .send-button .text {
    padding-left: 1rem;
    font-size: 14px;
    text-transform: uppercase;
}
body .send-button .icon-wrapper {
    position: absolute;
    right: -65px;
    bottom: -10px;
    width: 200px;
    height: 30px;
    border-radius: 50%;
    line-height: 45px;
}
body .send-button .icon-wrapper [class*="icon-"] {
    position: absolute;
    left: 100px;
    bottom: 0;
    transition: color 0.6s ease;
    z-index: 99;
}
body .send-button .icon-wrapper .icon-1 {
    transform: rotate(15deg);
    font-size: 23px;
    font-size: 2.3rem;
    opacity: 1;
}
body .send-button .icon-wrapper .icon-2 {
    opacity: 0;
    font-size: 25px;
    font-size: 2.5rem;
}

.icon-wrapper3  {
    bottom: -8px !important;
}

.form-container-absolute {
    background-color: rgba(0, 0, 0, .5) !important;
}