
.div-30-parent {
    height: 30em;
   
}

.div-30-content {
    height: 28em !important;
    overflow-y: scroll;
    scroll-behavior: auto;
}

.div-50-content {
    height: 49em !important;
    overflow-y: scroll;
    scroll-behavior: auto;
}

.div-80-parent {
    height: 80em;
   
}

.div-80-content {
    height: 78em !important;
    overflow-y: scroll;
    scroll-behavior: auto;
}

.clickableCursor {
    cursor: pointer;
}

.nx-input-container
{
    width: 70%;
    background-color: white;
    display: flex;
    justify-content: space-between;
}


.nx-input {
    position: relative;
    font-size: 1.2em;
    background: linear-gradient(21deg, #ffffff, #ffffff);
    padding: 3px;
    display: inline;
    border-radius: 9999em;
    border: none;
}
.nx-input *:not(span) {
    position: relative;
    /* display: inherit; */
    border-radius: inherit;
    margin: 0;
    border: none;
    outline: none;
    padding: 0 0.325em;
    z-index: 1;
}
.nx-input *:not(span):focus + span {
    opacity: 1;
    /* transform: scale(1); */
}
.nx-input span {
    /* transform: scale(0.993, 0.94); */
    /* transition: transform 0.5s, opacity 0.25s; */
    opacity: 0;
    position: absolute;
    z-index: 0;
    margin: 4px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 3px #fff, 0 0 0 4px #fff, 3px -3px 30px #feffff, -3px 3px 30px #82cfca;
}


.nx-input-form {
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: center;
}

.nx-input-form-container {
    margin-top: 1.5em;
}


.nx-search-button {
    border-radius: 5px;
    right: 0px;
    z-index: 2;
    border: none;
    cursor: pointer;
    color: white;
    background-color: #3677b8;
    /* transform: translateX(2px); */
    /* margin-left: auto; */
    display: block;
    text-align: center;
 
}

.nx-dropdown-menu {
    position: absolute;
    text-align: justify;
    background-color: black;
    color:white;
}

.nx-dropdown-menu-item {
    font-size: 1.1em;
    padding: .5em;
}

.nx-dropdown-menu-item:hover {
    background-color: cornflowerblue;
    color: #fff;
    
}

::placeholder{
    color: darkgray;

}


