.indian__popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.3);
    padding: 100px 20px 50px;
}
.indian__popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    object-fit: contain;
    cursor: pointer;
}
.indian__popup .wrap {
    height: 100%;
}
.indian__popup .development-form {
    padding-top: unset;
    position: relative;
    overflow-y: auto;
    height: 100%;
}
.indian__popup .development-form:before {
    content: unset !important;
}

.indian__popup__content {
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    min-height: 241px;
    padding: 30px;
}

/* MOBILE */
@media only screen and (max-width: 575px) {
    .indian__popup {
        padding: 100px 0 50px;
    }
}