
/*Request Call*/
.float-wrapper {
    position: fixed;
    width: 130px;
    height: 45px;
    bottom: 140px;
    right: 15px;
    z-index: 9999;
}


.float-hidden-form {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    visibility: hidden;
    bottom: 50px;
    right: 0px;
    padding: 20px;
    width: 300px;
    height: 300px;
    background-color: #1b243f;
    border-radius: 15px;
}

.float-hidden-form-visible {
    visibility: visible;
    animation: pop-up 0.3s;
}

.closing-animation {
    visibility: hidden;
    animation: pop-up 0.3s;
}

@keyframes pop-up {
    from {
        transform: translateY(10px);
    }
    to {
        transform: translateY(0px);
    }
}

.float-hidden-form-input {
    border-style: none;
    outline: none;
    width: 260px;
    height: 35px;
    background-color: #333f63;
    border-radius: 5px;
    font-size: 14px;
    padding-left: 5px;
}

.float-hidden-form-input:focus {
    border: 1px solid #6f9a60;
    transition: 0.3s;
}

.float-hidden-form-button {
    background: #6F9A60FF;
    /*display: inline-block;*/
    color: #fff;
    font-size: 12px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0px 13px;
    border-radius: 5px;
}

.float-hidden-form-button:hover {
    background-color: #5e8d51;
    transition: 0.3s;
}

.float-hidden-form-close {
    position: absolute;
    background-color: #1b243f;
    border: 1px solid #1b243f;
    border-radius: 3px;
    cursor: pointer;
    width: 30px;
    height: 25px;
    right: 30px;
    top: -10px;
}

.float-hidden-form-close:hover {
    color: #6F9A60FF;
}


#message-loader {
    width: 89px;
    height: 89px;
    position: relative;
    background: rgba(255, 255, 255, 0.13);
    animation-duration: 2.5s;
    animation-name: animSpin;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes animSpin {
    50% {
        transform: rotateZ(180deg) scale(.94);
    }
    100% {
        transform: rotateZ(360deg) scale(1);
    }
}

#message-loader,
#message-loader:before,
#message-loader:after {
    border-radius: 50%;
}

#message-loader:before,
#message-loader:after {
    content: '';
    position: absolute;
    border: 8px solid transparent;
}

#message-loader:before {
    width: 75%;
    height: 75%;
    background: rgba(255, 255, 255, .13);
    left: 12.5%;
    top: 12.5%;
    border-left: 8px solid rgba(255, 255, 255, .34);
    border-bottom: 8px solid rgba(255, 255, 255, .34);
}

#message-loader:after {
    width: 40%;
    height: 40%;
    left: 30%;
    top: 30%;
    border-right: 8px solid rgba(255, 255, 255, 1);
    border-left: 8px solid rgba(255, 255, 255, 1);
    border-bottom: 8px solid rgba(255, 255, 255, 1);
}
.hidden{
    display: none;
}
.shown{
    display: block;
}
