dialog.dialog-nc {
    padding: 14px 20px;
    background: white;
    max-width: 450px;
    padding-top: 2rem;
    border-radius: 20px;
    border: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    animation: fadeIn 1s ease both;
    &::backdrop {
        animation: fadeIn 1s ease both;
        background: rgb(255 255 255 / 40%);
        z-index: 2;
        backdrop-filter: blur(20px);
    }
    .x {
        filter: grayscale(1);
        border: none;
        background: none;
        position: absolute;
        top: 1px;
        right: -4px;
        transition: ease filter, transform 0.3s;
        cursor: pointer;
        transform-origin: center;
        font-size: 25px;
        &:hover {
            filter: grayscale(0);
            transform: scale(1.1);
        }
    }
    h2 {
        font-weight: 600;
        font-size: 2rem;
        padding-bottom: 1rem;
    }
    p {
        font-size: 1rem;
        line-height: 1.3rem;
        padding: 0.5rem 0;
        
    }
    .dialog-nc-img{
       img {
        width: 100%;
        height: auto;
        object-fit: cover;
       }
    }
    .btn-dialog{
      padding: 9px 25px;
      background: var(--main-color);
      color: #fff;
      text-decoration: none;
      position: relative;
      text-align: center;
      margin: 0 auto;
      display: table;
      font-size: 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

button.nova_form_btn {
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-btn-spinner {
  display: none;
  width: 34px;
  height: 34px;
  background: transparent;
  box-sizing: border-box;
  border-top: 4px solid green;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 100%;
  margin-right: 15px;
  animation: spin 0.6s ease-out infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.loading-infinite-nc{
  display:none;
  width:100%;
  padding: 14px 25px;
}

.loader-dots-nc {
  width: 15px;
  margin:0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: linf 1s infinite linear alternate;
}
@keyframes linf {
    0%  {box-shadow: 20px 0 #dadada, -20px 0 var(--main-color);background: #dadada }
    33% {box-shadow: 20px 0 #dadada, -20px 0 var(--main-color);background: var(--main-color)}
    66% {box-shadow: 20px 0 var(--main-color),-20px 0 #dadada; background: var(--main-color)}
    100%{box-shadow: 20px 0 var(--main-color),-20px 0 #dadada; background: #dadada }
}

.cont_info_prod h2{
  font-size: 17px;
}

.cont_info_prod img{
  max-width: 140px;
}

.cont_info_prod ._info{
  margin-top: 25px;
}
