.modale-wrapper {
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.71);
    transition: all 0.5s; }

.modale-wrapper h2{
    font-size: 24px;
    text-transform: uppercase;
}

.modale-wrapper p{
    font-size: 16px;
    color: #666666;
}

.modal-body {
    position: relative;
    text-align: center;
    background-color: #fff;
    border: 1px solid #fafafa;
    max-width: 500px; }
.modal-body .modale-close {
    cursor: pointer;
    position: absolute;
    font-size: 25px;
    right: -30px;
    top: -30px;
    color: #fff; }

.modal-visibility {
    visibility: visible;
    opacity: 1; }

.error-input {
    border: 1px solid #C01324; }

.call-widget {
    position: fixed;
    right: 70px;
    bottom: 70px;
    cursor: pointer;
    transition: all 1.5s;
    z-index: 999; }
.call-widget .glyphicon {
    font-size: 24px; }
.call-widget #circle-one, .call-widget #circle-two, .call-widget #circle-three {
    position: absolute;
    width: 78px;
    height: 78px;
    left: -10px;
    top: -10px;
    border-radius: 40px;
    border: 1px solid #C01324;
    opacity: 0; }
.call-widget #circle-two {
    animation-delay: 0.5s; }
.call-widget #circle-three {
    animation-delay: 1s; }
.call-widget .circle-animation {
    animation: animate-circle  5s infinite linear; }
.call-widget #tel-circle {
    width: 60px;
    height: 60px;
    background-color: #C01324;
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }
.call-widget .tel-animation {
    animation: animate-tel  5s infinite ease-in; }

.hide-widget {
    bottom: -200px; }

@keyframes animate-tel {
    75% {
        transform: rotate(0deg); }
    80% {
        transform: rotate(-16deg); }
    85% {
        transform: rotate(16deg); }
    90% {
        transform: rotate(-8deg); }
    95% {
        transform: rotate(8deg); } }

@keyframes animate-circle {
    74% {
        transform: scale(1);
        opacity: 0; }
    75% {
        transform: scale(1);
        opacity: 1; }
    100% {
        transform: scale(2);
        opacity: 0; } }

@media only screen and (max-width: 992px) {
    .call-widget {
        right: 30px;
        bottom: 30px; }
    .hide-widget {
        bottom: -200px; } }


@media only screen and (max-width: 768px) {
    .modal-body {
        margin: 0 10px; }
    .modal-body .modale-close {
        right: 0;
        top: -40px; } }
