  .contact-popup .btn {
padding: 0px 0px;
      width: 60px;
      height: 60px;
      border-radius: 99px;
      position: fixed;
      z-index: 999;
      bottom: 20px;
      right: 20px;
      background-color: #ff6100;
      transition: .3s
  }
.contact-popup .btn:hover {
    box-shadow: 0 0 10px rgba(255, 0, 0, .8);
    color: #ffffff
}

.contact-popup .btn svg * {
    fill: #ffffff
}

.contact-popup .btn svg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    height: 60%;
    fill: #ff6100;
    transition: .3s
}

.contact-popup .btn svg:nth-child(1) {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1)
}

.contact-popup .btn svg:nth-child(2) {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    transform: translateX(-50%) translateY(-50%) scale(0)
}

.contact-popup .btn.open svg:nth-child(1) {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    transform: translateX(-50%) translateY(-50%) scale(0)
}

.contact-popup .btn.open svg:nth-child(2) {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1)
}

.contact-popup .form {
    margin: 0 !important;
    width: 375px;
    max-width: 375px;
    border-radius: 12px;
    position: fixed;
    z-index: 9999999998;
    right: 20px;
    bottom: 20px;
    top: auto;
    -webkit-transform: translateY(-55px);
    transform: translateY(-55px);
    overflow: hidden;
    opacity: 0;
    display: none;
    transition: all .3s, display 0s
}

.contact-popup .form.open {
    display: block;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
    opacity: 1
}


.contact-popup .form:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1
}

.contact-popup .form .top p {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 20px;
    text-transform: none;
    margin: 0;
    top: 0;
    color: #ffffff;
    padding: 30px 20px 30px 20px;
    line-height: 1.3;
    margin-bottom: 0
}

.contact-popup .form .top a {

    font-size: 20px;
    text-transform: none;
    margin: 0;
    top: 0;
    color: #ffffff;
text-decoration:underline;
   
}

.contact-popup .form .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(90% - 20px);
    border-radius: 12px;
    padding: 10px 13px;
    z-index: 2;
    position: relative;
    background-color: none;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
margin-top:20px;
margin-bottom: -20px;
}

.contact-popup .form .links a {
    flex-grow: 1;
    padding: 0 7px;
    height: 31px
}

.contact-popup .form .links a:hover {
    color: #000
}

.contact-popup .form .links a svg {
    transition: .3s;
    height: 41px;
    width: 100%;
    padding: 5px 0;
    border-radius: 10px;
}

.contact-popup .form .links a svg * {
    fill: #ffffff;
}

.contact-popup .form .links a.fb svg {
    background-color: #0284ff
}

.contact-popup .form .links a.fb:hover svg {
    background-color: #026acc
}

.contact-popup .form .links a.vb svg {
    background-color: #665cac
}

.contact-popup .form .links a.vb:hover svg {
    background-color: #524a8a
}

.contact-popup .form .links a.tg svg {
    background-color: #2fa3d9
}

.contact-popup .form .links a.tg:hover svg {
    background-color: #2682ae
}

.contact-popup .form .links a.wa svg {
    background-color: #24d366
}

.contact-popup .form .links a.wa:hover svg {
    background-color: #1da952
}


.contact-popup .form .bottom p {
    margin: 0;
    line-height: 1.3;
    position: static;
    text-transform: none;
    color: #ffffff;
    text-align: center;
margin-bottom:25px;
    font-size: 18px; 
    z-index: 2;}

@media screen and (max-width:415px) {
    .contact-popup .form {
        width: calc(100% - 40px)
    }

    .contact-popup .form .top p {
        font-size: 5.229vw;
    }
}

@media screen and (max-height:450px) {
    .contact-popup .form .top p {
        padding: 10px 20px 30px 20px
    }
}




  .contact-popup .btn {
      -webkit-animation-name: btn;
      animation-name: btn;
      -webkit-animation-duration: 4s;
      animation-duration: 4s;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite
  }

  .contact-popup .btn svg path {
      -webkit-animation-name: btn-svg;
      animation-name: btn-svg;
      -webkit-animation-duration: 4s;
      animation-duration: 4s;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite
  }

  @-webkit-keyframes btn {
      0% {
          background-color: #ff6100
      }

      50% {
          background-color: #ffffff
      }

      0% {
          background-color: #ff6100
      }
  }

  @keyframes btn {
      0% {
          background-color: #ff6100
      }

      50% {
          background-color: #ffffff
      }

      0% {
          background-color: #ff6100
      }
  }

  @-webkit-keyframes btn-svg {
      0% {
          fill: #ffffff
      }

      50% {
          fill: #ff6100
      }

      0% {
          fill: #ffffff
      }
  }

  @keyframes btn-svg {
      0% {
          fill: #ffffff
      }

      50% {
          fill: #ff6100
      }

      0% {
          fill: #ffffff
      }
  }