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;
}

.ws-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 2;
}
.ws-container svg {
    width: 70px;
    height : 70px;
}

.btn-ws{
  background: #53cc60;
    padding: 7px 15px;
    color: #fff;
    font-size: 17px;
    border-radius: 21px;
}


@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 }
}


.main-nav > ul > li > a{
    font-size: 18px;
}

.breadcrumbs-area .breadcrumb-content .title-3{
    font-size: 60px;
}

.product-btn{
    color: #fff;
    background: #f5408a;
    padding: 6px 34px;
    border-radius: 14px;
    margin-top: 14px;
    font-size: 17px;
}

.product-area .single-product {
    -webkit-box-shadow: 0 5px 11px rgba(0, 0, 0, 0.14);
    box-shadow: 0 5px 11px rgba(0, 0, 0, 0.14);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.cnt-order{
    margin-top: 28px;
}

.product-summery .product-head .product-title{
    color: #f5408a;
}

.ctn-cat{
    margin-top: 55px;
}

.ctn-cat a{
    background: #f5408a;
    font-size: 20px;
    color: #fff;
    padding: 9px 19px;
    border-radius: 14px;
}

.cnt-order a{
    font-weight: 600;
}

.product-image img{
  height: 200px;
  object-fit: cover;
}

@media (min-width: 998px) {
    .mb-menu-cont {
        display: none;
    }
}

@media (max-width: 768px){
    .main-nav .btn-ws{
        display: none;
    }
    .mb-menu-cont{
        position: absolute;
        right: 25px;
    }
}