/* Contact Box Styles */
.contact-box-bottom {
    position: fixed;
    bottom: 85px;
    right: 10px;
    z-index: 10000;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
  
  @-webkit-keyframes backInLeft {
    0% {
      opacity: 0.7;
      -webkit-transform: translateX(-2000px) scale(0.7);
      transform: translateX(-2000px) scale(0.7);
    }
    80% {
      opacity: 0.7;
      -webkit-transform: translateX(0) scale(0.7);
      transform: translateX(0) scale(0.7);
    }
    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  
  @keyframes backInLeft {
    0% {
      opacity: 0.7;
      -webkit-transform: translateX(-2000px) scale(0.7);
      transform: translateX(-2000px) scale(0.7);
    }
    80% {
      opacity: 0.7;
      -webkit-transform: translateX(0) scale(0.7);
      transform: translateX(0) scale(0.7);
    }
    to {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  
  .animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft;
  }
  
  .contact-box-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    color: #000;
    text-decoration: none;
  }
  
  .contact-icon-box {
    display: block;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 38px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    margin-right: 10px;
  }
  
  .contact-info span {
    color: #868686;
    font-size: 12px;
    display: block;
  }
  
  /* Fixed Right Menu */
  .fixed-right-menu {
    position: fixed;
    bottom: 85px;
    right: 10px;
    z-index: 9999;
    display: none;
  }
  
  .fixed-right-menu.active {
    display: none;
  }
  
  .fixed-right-menu a {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: #0e68c8;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    text-decoration: none;
  }
  
  .fixed-right-menu a i {
    font-size: 20px;
  }
  
  .fixed-right-menu a:last-child {
    margin-bottom: 0;
  }
  
  /* Footer Contact Menu */
  #azt-contact-footer-outer {
    position: fixed;
    width: 100%;
    z-index: 100 !important;
    bottom: 0;
    display: none;
  }
  
  #azt-contact-footer:after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-image: url("../images/mb-footer-bg.svg");
    background-color: unset;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    box-shadow: unset;
    height: 65px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  
  #azt-contact-footer {
    border-bottom: 15px solid #fff;
    display: flex;
    max-width: 1200px;
    margin: auto;
    position: relative;
    padding-top: 5px;
  }
  
  #azt-contact-footer > a {
    position: relative;
    display: block;
    width: 25%;
    text-align: center;
    padding: 11px 0 0px 0;
    color: #313131;
    text-decoration: none;
  }
  
  #azt-contact-footer > span {
    display: block;
    width: 30px;
  }
  
  #azt-contact-footer span {
    display: block;
  }
  
  .azt-contact-footer-btn-label {
    padding: 0px 2px 0 2px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
  }
  
  #azt-contact-footer > a img {
    height: 30px;
    width: 30px;
  }
  
  #azt-contact-footer-btn-center {
    position: relative;
    background: transparent !important;
  }
  
  #azt-contact-footer-btn-center .azt-contact-footer-btn-label {
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
  }
  
  #azt-contact-footer-btn-center .azt-contact-footer-btn-label > span {
    padding: 0px 8px;
    background-image: linear-gradient(92.83deg, #e29e21 0, #583900 100%);
    border-radius: 30px;
    color: white;
    display: inline-block;
  }
  
  .azt-contact-footer-btn-center-icon {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    background-image: linear-gradient(92.83deg, #e29e21 0, #8b6113 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: -28px;
    text-align: center;
    box-shadow: rgb(0 0 0 / 15%) 0 -3px 10px 0px;
    border: 2px solid #fff;
  }
  
  .azt-contact-footer-btn-center-icon img {
    max-width: 20px;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .phone-vr-circle-fill {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 #0e68c8;
    border: 2px solid transparent;
    transition: all .5s;
    animation: zoom 1.3s infinite;
  }
  
  @keyframes zoom {
    0% {
    }
    70% {
      box-shadow: 0 0 0 15px transparent;
    }
    100% {
      box-shadow: 0 0 0 0 transparent;
    }
  }
  
  /* Responsive Styles */
  @media only screen and (max-width: 850px) {
    #azt-contact-footer-outer {
      display: block;
    }
  
    .contact-box-bottom.animate__backInLeft {
      display: none;
    }
  
    .fixed-right-menu.active {
      display: block;
    }
  }
  
  @media only screen and (max-width: 48em) {
    .animate__backInRight {
      display: none !important;
    }
  
    .fixed-right-menu.active {
      display: block;
    }
  }
  