

.closeToggle{
    display: none;
}

.menu{
    position: relative;
    margin-top:5px;
    margin-bottom: 5px;
    height: 50px;
    width: 100%;
    box-shadow: 0px 5px 8px -3px rgba(112,0,143,0.28);
    -webkit-box-shadow: 0px 5px 8px -3px rgba(112,0,143,0.28);
    -moz-box-shadow: 0px 5px 8px -3px rgba(112,0,143,0.28);
}

.menu:before{
    content: '';
    position: absolute;
    top: 25px;
    right: 28px;
    height: 2px;
    width: 12px;
    background: #000;
    transform: rotate(40deg);
    transition: 0.6s;
    z-index: 10;
    background:rgb(112, 0, 143);

}

.menu:after{
    content: '';
    position: absolute;
    top: 25px;
    right: 20px;
    height: 2px;
    width: 12px;
    background: #000;
    transform: rotate(-40deg);
    transition: 0.6s;
    z-index: 10;
    background: rgb(112, 0, 143);

}

.menu.active::before{
    right: 20px;
}

.menu.active::after{
    right: 28px;
}
.menu-img{
    height: 100px;
    width: 120px;
}
.menu-span{
    padding-right: 50px;
    color: rgb(112, 0, 143);
    font-weight: bolder;
}
.txt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    padding: 12px 20px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(255,255,255,0.05);
}

.txt::placeholder{
    color: rgb(112, 0, 143);
}

::placeholder{
    opacity: 1;
    text-transform: uppercase;
    font-weight: bolder;
}

.options {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 57px;
    background: rgb(112, 0, 143);
    width: 100%;
    border-radius: 7px;
    box-shadow: 0 30px 30px rgba(255,255,255,0.05);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    color: #fff;
    font-weight: bolder;
    transition: 0.2s;
gap: 20px;
}
.options a{
    color: white;
    text-decoration: none;
}

.options {
    padding: 12px 20px;
    cursor: pointer;
}

.options div:hover{
    /* background:linear-gradient(45deg,#0076ff,#00daea); */
    color: #000;
}

.menu.active .options{
    visibility: visible;
    opacity: 1;
}

