.overlayPopup{
    position: fixed;
    z-index: 2;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background: rgb(0,0,0,.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


@media screen and (min-width: 800px) {
    
    .mainContainerPopup{
        width: 30%;
        border-radius: 10px;
    }

}

@media screen and (max-width: 800px) {

    .mainContainerPopup{
        width: 100% !important;
        border-radius: 0px;
        height: 100% !important;
    }

}

