.CallWrapper {
    position: fixed;
    z-index: 8888;
    left: 110px;
    bottom: -42px;
    transform: translate(-90%, -90%);
}

.pulse {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    width: 80px;
    height: 80px;
    color: #fff;
    text-align: center;
    background: #127a1a;
    border-radius: 50%;
    transition: .5s;
    cursor: pointer;
}

.phone {
    position: absolute;
    font-size: 50px;
    text-align: center;
    width: 80px;
    height: 80px;
    line-height: 82px;
    opacity: 1;
    animation: phone .9s ease-in-out infinite;
}

.phone i {
    transition: .5s ease-in-out;
}

.pulse:hover i {
    transition: .5s ease-in-out;
    transform: scale(0);
    opacity: 0;
}

.pulse:hover {
    background: #127a1a;
}

.text {
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 700;
    top: 26px;
    font-size: 0.7rem;
    transform: scaleX(-1);
    transition: .5s ease-in-out;
    opacity: 0;
}

.pulse:hover .text {
    transform: scaleX(1);
    transition: .5s ease-in-out;
    opacity: 1;
}

.pulse::before, .pulse::after {
    content: '';
    position: absolute;
    border: 1px solid #127a1a;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 1.8s linear infinite;
}

.pulse::after {
    animation-delay: .5s;
}

.wrapper_desktop {
    display: block;
}

.wrapper_mobile {
    display: none;
}

@media (max-width: 1024px) {
    .CallWrapper {
        left: 87px;
        bottom: 0px;
    }

    .pulse {
        width: 50px;
        height: 50px;
    }

    .phone {
        font-size: 30px;
        width: 50px;
        height: 50px;
        line-height: 52px;
    }

    .text {
        display: none;
    }

    .wrapper_desktop {
        display: none;
    }

    .wrapper_mobile {
        display: block;
    }

    .pulse:hover i {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes phone {
    0%, 100% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(21deg);
    }
}

/*----------- Form -------------*/
@keyframes FadeInForm {
    0% {
        left: -5px;
        opacity: 0;
    }

    100% {
        left: 0;
    }
}

@keyframes FadeOutForm {
    0% {
        left: -5px;
        opacity: 0;
    }

    100% {
        left: 0;
    }
}

.close_wrap {
    position: absolute;
    top: -5px;
    right: 19px;
    cursor: pointer;
    color: #f7e0e0b8;
    font-size: 3rem;
    font-weight: bold;
    transition: 300ms;
}

.close_wrap:hover, .close_wrap:focus {
    color: #bbb;
    text-decoration: none;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.clear-fix {
    clear: both;
}

div.logo {
    text-align: center;
    margin: 20px 20px 30px 20px;
    margin-bottom: 42px;
    fill: #566375;
}

div.logo svg {
    width: 180px;
    height: 100px;
}

.logo-active {
    fill: #44aacc !important;
}

#FormWrapper {
    display: none;
    position: fixed;
    z-index: 7777;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all .2s ease;
    animation: FadeInForm 0.3s linear;
    opacity: 1;
}

div#form {
    position: absolute;
    width: 505px;
    height: 312px;
    /*height:auto;*/
    background-color: #000000b5;
    margin: auto;
    border-radius: 25px;
    padding: 20px;
    left: 3%;
    bottom: 0%;
    margin-left: -180px;
    margin-top: -200px;
}

div.form-item {
    position: relative;
    display: block;
    margin-bottom: 29px;
    margin-left: 35%;
    margin-right: 4%;
}

input {
    transition: all .2s ease;
}

input.form-style {
    color: #8a8a8a;
    display: block;
    width: 100%;
    height: 50px;
    padding: 5px 5%;
    border: 1px solid #ccc;
    -moz-border-radius: 27px;
    -webkit-border-radius: 27px;
    border-radius: 27px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #00000040;
    font-family: 'HelveticaNeue','Arial', sans-serif;
    font-size: 105%;
    letter-spacing: .8px;
}

div.form-item .form-style:focus {
    outline: none;
    border: 1px solid #58bff6;
    color: #58bff6;
}

div.form-item p.formLabel {
    position: absolute;
    left: 26px;
    top: 12px;
    transition: all .4s ease;
    color: #bbb;
}

.formTop {
    top: -8px !important;
    left: 26px;
    background-color: #00000040;
    padding: 0 5px;
    font-size: 14px;
    color: #58bff6 !important;
    opacity: 0;
}

.formStatus {
    color: #8a8a8a !important;
}

input[type="submit"].SendMyNumber {
    float: right;
    width: 172px;
    height: 44px;
    -moz-border-radius: 19px;
    -webkit-border-radius: 19px;
    border-radius: 33px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #127a1a;
    border: 1px solid #127a1a;
    border: none;
    color: #fff;
    font-weight: bold;
}

input[type="submit"].SendMyNumber:hover {
    background-color: #00000026;
    border: 1px solid #127a1a;
    color: #127a1a;
    cursor: pointer;
}

input[type="submit"].SendMyNumber:focus {
    outline: none;
}

div.Success_send {
    float: right;
    width: 172px;
    height: 44px;
    -moz-border-radius: 19px;
    -webkit-border-radius: 19px;
    border-radius: 33px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #55df86;
    border: 1px solid #55df86;
    border: none;
    color: #fff;
    font-weight: bold;  	
  	text-align: center;
  	cursor: pointer;
  	display: none;
  	padding: 9px 6px;
}

input[type="image"] {
	max-width: 51% !important;
}