.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 150px;
    height: 150px;
    background: url('/assets/front/images/loader.gif') no-repeat center center;
    background-size: contain;
}

.hs-toast-fixed-top {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.hs-toast-absolute-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hs-toast-wrapper {
    margin: 0 auto;
    max-width: 44rem;
    padding-left: .75rem;
    padding-right: .75rem;
    z-index: 99999;
}

.hs-toast {
    margin: 0 auto;
    border-radius: .25rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .2);
    background: #5b7e96;
    padding: .5rem .75rem;
    max-width: 40rem;
    position: relative;
}

.hs-toast-inner {
    display: flex;
}

.hs-toast-msg {
    color: white;
    line-height: 1.5rem;
    flex: 1 1 0%;
    min-width: 0;
    padding-top: .2rem;
    padding-left: .5rem;
    padding-right: .75rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.hs-toast-msg ul {
    margin: 0;
    padding-left: .75rem;
}

.hs-toast-icons,
.hs-toast-action {
    flex: none;
    color: white;
}

.hs-toast-action {
    cursor: pointer;
}

.hs-close {
    border: none;
    background: none;
    color: white;
    outline: none;
    padding: 0;
    font-family: 'Arial', Segoe UI Symbol;
}

.hs-toast+.hs-toast {
    margin-top: .5rem;
}

.hs-theme-error {
    background: #fe4a5d;
}

.hs-theme-success {
    background: #00c18c;
}

.hs-theme-warning {
    background: #F2711C;
}

.brand_logo img,
.foot_logo img {
    max-height: 48px;
}

.spinner-border-sm {
    width: 1.2rem;
    height: 1.2rem;
    border-width: .3em;
}

.wd-card-dtls {
    height: auto;
}

.pagination {
    justify-content: center;
}

.wd-card-img img {
    width: 100%;
}

/* -----------Video call --------------- */

.wd-vido-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wd-call-time {
    background: #093770;
    box-shadow: 0px 4px 4px 0px #DB424240;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 70px;
    color: #FFF;
}

.wd-start-video {
    display: flex;
    align-items: center;
    gap: 1px;
    width: 100%;
    margin-bottom: 70px;
}

.wd-call-area {
    border: 1px solid #E3EDF0;
    height: 570px;
    border-radius: 14px;
    width: 100%;
}

.wd-call-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.wd-call-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.wd-call-btns a {
    min-width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.call-hold {
    background: #716BBB;
    box-shadow: 0px 4px 4px 0px #716BBB40;
}

.call-record {
    background: #958771;
    box-shadow: 0px 4px 4px 0px #95877140;
}

.call-mute {
    background: #093770;
    box-shadow: 0px 4px 4px 0px #09377040;
}

.call-end {
    background: #DB4242;
    box-shadow: 0px 4px 4px 0px #DB424240;
}

.wd-call-duration {
    font-size: 18px;
    font-weight: 500;
    color: #5D7492;
    padding: 12px 24px;
    background: #E2EAF4;
    border-radius: 79px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px 0;
    display: block;
    width: fit-content;

}
/* Button videocall component */
.button-videocall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  background-color: #28a745;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;

  /* Animação de batimento */
  animation: heartbeat 1.2s infinite;
}

.button-videocall i {
  font-size: 16px;
}

/* Hover deixa o botão mais escuro e sobe levemente */
.button-videocall:hover {
  color: #fff !important;
  background-color: #218838;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(40, 167, 69, 0.4);
}

@media (max-width: 576px) {
  /* Altera o estilo do botão para ser apenas um ícone no mobile */
  .button-videocall {
    /* Diminui o padding horizontal para que o botão fique mais quadrado */
    padding: 12px;
  }

  /* Esconde o texto dentro do botão */
  .button-videocall > span {
    display: none;
  }

  .remove-sidebar {
    display: none !important;
  }
}

/* Keyframes do batimento */
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
  }
  25% {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.5);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 8px 16px rgba(40, 167, 69, 0.6);
  }
  75% {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.5);
  }
}

@-webkit-keyframes glowing {
    0% {
        background-color: #34A853;
        -webkit-box-shadow: 0 0 3px #34A853;
    }

    50% {
        background-color: #66E980;
        -webkit-box-shadow: 0 0 40px #66E980;
    }

    100% {
        background-color: #34A853;
        -webkit-box-shadow: 0 0 3px #34A853;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #34A853;
        -moz-box-shadow: 0 0 3px #34A853;
    }

    50% {
        background-color: #66E980;
        -moz-box-shadow: 0 0 40px #66E980;
    }

    100% {
        background-color: #34A853;
        -moz-box-shadow: 0 0 3px #34A853;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #34A853;
        box-shadow: 0 0 3px #34A853;
    }

    50% {
        background-color: #66E980;
        box-shadow: 0 0 40px #66E980;
    }

    100% {
        background-color: #34A853;
        box-shadow: 0 0 3px #34A853;
    }
}

@keyframes glowing {
    0% {
        background-color: #34A853;
        box-shadow: 0 0 3px #34A853;
    }

    50% {
        background-color: #66E980;
        box-shadow: 0 0 40px #66E980;
    }

    100% {
        background-color: #34A853;
        box-shadow: 0 0 3px #34A853;
    }
}

@media (min-width: 1300px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1420px;
    }
}

.fix_menu {
    background: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px;
    box-shadow: 0px 3px 10px 0px #e944666b;
    display: none;
    z-index: 11;
}

.fix_menu ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    grid-gap: 15px;
}

.fix_menu li a {
    position: relative;
}

.appointment-point {
    position: absolute;
    height: 7px;
    width: 7px;
    background: green;
    border-radius: 50%;
    top: 5%;
    right: 30%;
}

.noti_active {
    position: absolute;
    height: 7px;
    width: 7px;
    background: green;
    border-radius: 50%;
    top: 5%;
    right: 30%;
    -webkit-animation: noti_active 1500ms infinite;
    -moz-animation: noti_active 1500ms infinite;
    -o-animation: noti_active 1500ms infinite;
    animation: noti_active 1500ms infinite;
}

@-webkit-keyframes noti_active {
    0% {
        background-color: #04a304;
        -webkit-box-shadow: 0 0 3px green;
    }

    50% {
        background-color: #66E980;
        -webkit-box-shadow: 0 0 40px #04a304;
    }

    100% {
        background-color: green;
        -webkit-box-shadow: 0 0 3px green;
    }
}

@-moz-keyframes noti_active {
    0% {
        background-color: green;
        -moz-box-shadow: 0 0 3px green;
    }

    50% {
        background-color: #04a304;
        -moz-box-shadow: 0 0 40px #04a304;
    }

    100% {
        background-color: green;
        -moz-box-shadow: 0 0 3px green;
    }
}

@-o-keyframes noti_active {
    0% {
        background-color: green;
        box-shadow: 0 0 3px green;
    }

    50% {
        background-color: #04a304;
        box-shadow: 0 0 40px #04a304;
    }

    100% {
        background-color: green;
        box-shadow: 0 0 3px green;
    }
}

@keyframes noti_active {
    0% {
        background-color: green;
        box-shadow: 0 0 3px green;
    }

    50% {
        background-color: #04a304;
        box-shadow: 0 0 40px #04a304;
    }

    100% {
        background-color: green;
        box-shadow: 0 0 3px green;
    }
}

@media (max-width:575px) {
    .fix_menu {
        display: block;
    }

    .whatsapp-float {
        display: none !important;
    }

}

.btn-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: -20px;
}

.nav-about-us {
    position: relative;
    color: #054ffc;
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.nav-about-us::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px; 
    bottom: 0;
    left: 0;
    background-color: #054ffc;
    transform: scaleX(0); 
    transform-origin: bottom right; 
    transition: transform 0.3s ease-out; 
}

.nav-about-us:hover {
    color: #054ffc;
}

.header .navbar .menu-item .nav-about-us:hover {
    color: #054ffc !important;
}

.nav-about-us:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}