.box-popUp__content {
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #0068B5;
  border-radius: 100px;
  cursor: pointer;
  gap: 6px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.box-popUp__content.is-circle {
    border-radius: 100px;
}

.box-popUp__content:hover{
    border-color: #E73742;
    transform: scale(1.05);

}

.elementor-kit-10 .box-popUp__title {
    font-family: "Lato", Sans-serif;
    font-size: 13px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.2px;
    line-height: 1;
    color: #E73742;
    margin: 0;
}

.elementor-kit-10 .box-dialog h3{
    color: var(--e-global-color-primary);
    font-family: "Lato", Sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
}

.elementor-kit-10 .box-dialog div > *{
    font-family: "Open Sans", Sans-serif;
    font-size: 0.9rem;
    color: #1e1e1e;
}


dialog.box-dialog {
    background: rgba(255, 255, 255, 1.1);
    /* backdrop-filter: blur(10px) brightness(1.1); */
    border: 2px solid rgba(0, 104, 181, 0.3);
    width: 95%;
    max-width: 530px;
    min-height: 220px;
    border-radius: 20px;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
    padding: 10px 20px 30px;
}
dialog {
    transition: display 500ms allow-discrete, overlay 250ms allow-discrete;
    animation: close 250ms forwards;
    &[open] {
        animation: open 500ms forwards;
    }
}

@keyframes open {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes close {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


dialog[open]::backdrop {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) brightness(1.1);
}

.box-dialog__close {
    width: 38px;
    display: block;
    position: absolute;
    right: 8px;
    top: 10px;
    text-decoration: none;
}
.box-dialog__close:focus-visible {
    outline: none;
}

