.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.st-landing-wrap_modal {
    background: white;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 30px;
    font-family: Arial, sans-serif;margin: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #333;
}

.h-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.form-group .textinput {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group .textinput:focus {
    outline: none;
    border-color: #007bff;
}

.form-group .textinput::placeholder {
    color: #aaa;
}

#submitBtn {
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
}

#submitBtn span {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.flexbtn {
    display: flex;
    gap: 10px;
}

.flexbtn input[type="submit"] {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.1s;
}

.flexbtn input[type="submit"]:hover {
    transform: translateY(-2px);
}

.flexbtn input[type="submit"]:active {
    transform: translateY(0);
}

.js-modal-wa {
    background-color: #25D366;
    color: white;
}

.js-modal-wa:hover {
    background-color: #1da851;
}

.js-modal-t {
    background-color: #007bff;
    color: white;
}

.js-modal-t:hover {
    background-color: #0056b3;
}

.conf {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.conf .form-check-input1 {
    margin-top: 3px;
    transform: scale(1.2);
}

.form-check-label1 a {
    color: #b5b2ad;
    text-decoration: none;
}

.form-check-label1 a:hover {
    text-decoration: underline;
}

/* Анимация появления */
.animate {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Скрытый элемент (если нужно убрать галочку успеха) */
.okbody1 {
    display: none;
}

/* Адаптивность */
@media (max-width: 480px) {
    .st-landing-wrap_modal {
        padding: 20px;
        width: 95%;
    }
    
    .flexbtn {
        flex-direction: column;
    }
    
    .h-title {
        font-size: 22px;
    }
}


  .DLEPush {
    z-index: 2001;
    position: fixed;
    right: 20px;
    top: 20px
  }
  
  @keyframes DLEPush-show {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .DLEPush-notification.wrapper {
    animation-name: DLEPush-show;
    animation-duration: 1s;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    color: #333;
    margin-bottom: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
    background-color: #fff;
    border-radius: 10px
  }
  
  .DLEPush-notification .DLEPush-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 45px;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: center;
  }
  
  .DLEPush-notification .DLEPush-icon svg {
    scale: .8;
  }
  
  .DLEPush-notification .DLEPush-header {
    font-weight: 500;
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
    margin-left: 1rem;
    margin-top: .5rem;
  }
  .DLEPush-notification .DLEPush-header:empty {
    margin-top: 0;
  }
  
  .DLEPush-notification .DLEPush-message {
    grid-column: 2;
    grid-row: 2;
    font-size: .875rem;
    margin: 1rem;
  }
  
  .DLEPush-notification .DLEPush-message li, .DLEPush-notification .DLEPush-message ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .DLEPush-notification .DLEPush-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-weight: 300;
    background: none;
    border: 0;
    font-size: 1.15rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    color: inherit;
    outline: 0;
    opacity: 0.75;
  }
  
  @media only screen and (min-width: 601px) {
    .DLEPush-notification.wrapper {
      min-width: 400px;
    }
  }
  
  .DLEPush-notification .DLEPush-close:hover {
    opacity: 1;
  }
  
  .DLEPush-notification.wrapper.push-success {
    background-color: #e0f2f1;
  }
  
  .DLEPush-notification.wrapper.push-success .DLEPush-icon {
    background-color: #00897b;
  }
  
  .DLEPush-notification.wrapper.push-warning {
    background-color: #FFF3E0;
  }
  
  .DLEPush-notification.wrapper.push-warning .DLEPush-icon {
    background-color: #FF9800;
  }
  
  .DLEPush-notification.wrapper.push-error {
    background-color: #FBE9E7;
  }
  
  .DLEPush-notification.wrapper.push-error .DLEPush-icon {
    background-color: #FF5722;
  }