/* Modal Form Element Start */

/* .open__popup__modal { */
    /* display: none; */
    /* opacity: 0; */
    /* transition: 0.9s; */
    /* display: none; */
/* } */

/* JavaScript TOGGLING CLASS */
/* .open__popup__modal.is__open { */
    /* z-index: 999999999; */
    /* opacity: 1; */
    /* display: block; */
/* } */

/* ::-webkit-scrollbar {
    visibility: visible;
} */

.modal__form__component__cdmf2176__container__wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999999;

    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.modal__form__component__cdmf2176__container__wrapper.is__open__2 {
    visibility: visible;
    opacity: 1;
}

.modal__form__component__cdmf2176__close__wrapper {
    position: absolute;

    background-color: #00000090;
    /* background-color: red; */
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    /* opacity: 0;
    transition: 2s; */
}

.modal__form__component__cdmf2176__outter__container {
    /* width: 550px; */
    background-color: #000c17;
    padding: 2rem;
    border-radius: 1rem;

    z-index: 99999999;

    /* opacity: 0;
    transition: 2s; */
}

/* .modal__form__component__cdmf2176__outter__container.is__open__2 {
    opacity: 1;
} */

.modal__form__component__cdmf2176__close__icon {
    display: flex;
    justify-content: end;
    align-items: start;
}

.modal__form__component__cdmf2176__outter__container i {
    color: var(--clr-white);
    font-size: var(--size-xl);
}

.modal__form__component__cdmf2176__inner__container {
    background-color: #000c17;
    /* width: 500px; */
    padding: 1.5rem 1rem 1.5rem 1rem;
}

.modal__form__component__cdmf2176__heading {
    color: var(--clr-white);
    font-size: var(--size-3xl);
    font-weight: 400;
    text-align: center;
    padding-bottom: 1rem;
}

.modal__form__component__cdmf2176__inner__container form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;

    padding: 0.1rem 0.1rem;

    height: 400px;
    overflow-x: auto;
    overflow-y: scroll;
}

.modal__form__component__cdmf2176__input__field__wrapper {
    display: flex;
    flex-direction: column;
}

.cdmf2176__form__checkbox__wrapper {
    display: flex;
    flex-direction: column;
}

.cdmf2176__textarea__field__wrapper {
    display: flex;
    flex-direction: column;
}

.modal__form__component__cdmf2176__input__field__wrapper input {
    width: 270px;
    padding: 0.6rem;
    border: none;
    border-radius: 0.5rem;
    font-size: var(--size-sm);
}

.cdmf2176__form__checkbox__field__wrapper label {
    color: var(--clr-white);
    font-size: var(--size-sm);
    font-weight: 300;
}

.cdmf2176__textarea__field__wrapper textarea {
    padding: 0.6rem;
    border: none;
    border-radius: 0.5rem;
    font-size: var(--size-sm);
}

.cdmf2176__submit__button__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cdmf2176__submit__button {
    background-color: var(--clr-blue);
    color: var(--clr-white);
    font-weight: 500;
    font-size: var(--size-base);
    padding: 8px 24px 7px 24px;
    border-radius: 0.7rem;

    margin-top: 0.2rem;

    transition: opacity 0.3s;
}

.cdmf2176__submit__button:hover {
    opacity: 0.9;
}



/* xxs */
@media (min-width: 390px) {
    .modal__form__component__cdmf2176__inner__container form {
        height: inherit;
        overflow-x: auto;
        overflow-y: auto;
    }

}

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
    .modal__form__component__cdmf2176__input__field__wrapper input {
        width: 320px;
        padding: 0.6rem;
        border: none;
        border-radius: 0.5rem;
        font-size: var(--size-sm);
    }
}

/* lg */
@media (min-width: 1024px) {
    .start__project__button__container {
        display: none;
    }

    .modal__form__component__cdmf2176__outter__container i {
        color: var(--clr-white);
        font-size: var(--size-xl);
    }
    
    .modal__form__component__cdmf2176__inner__container {
        padding: 2rem 3rem 2rem 3rem;
    }
    
    .modal__form__component__cdmf2176__input__field__wrapper input {
        width: 320px;
    }

}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


/* Modal Form Element End */