   /* Prevent scrollbars to appear when waves go out of bound */
   .sonar-wrapper {
    position: relative;
    z-index: 0;
    overflow: visible;
    padding: 30px 0;
    /* float: right;   */
}

/* The circle */
.sonar-emitter {
    /* right: 25px; */
    position: relative;
    /* margin: 0 auto;*/
    width: 100px;
    height: 100px;
    border-radius: 9999px;
    /* background-color: #00262b; */
    background-color: #29aae3;
}

/* the 'wave', same shape and size as its parent */
.sonar-wave {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-color: #29aae385 ;
    /* background-color:  #00262b ; */
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

/*
Animate!
NOTE: add browser prefixes where needed.
*/
.sonar-wave {
animation: sonarWave 2s linear infinite;
}

@keyframes sonarWave {
from {
    opacity: 0.4;
}
to {
    transform: scale(3);
    opacity: 0;
}
}

@media (min-width: 992px){
    .sonar-shift-right {
        top: 75% !important;
        right: 1% !important;
    }
}
.sonar-shift-right{
    position: fixed;
    right: 5px;
    z-index: 100;
}
@media (max-width: 992px){
    .sonar-shift-right {
        top: 75% !important;
        right: 1% !important;
    }
}

.int{height: 13px !important;margin-bottom: 0px !important;}
.int2{margin-bottom: 0px !important;
margin-bottom: 24px; }
.contact-form {
    text-align: left;
    
    }
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }

    /* Firefox */
    input[type=number] {
    -moz-appearance: textfield;
    }
    .check-box label {
        color :#495057e0 !important;
    }
