

.toTop{
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 40%;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgb(38, 0, 191);
    display: none;
    z-index: 99;
    color: white;
    cursor: pointer;
}

.toTop:hover{
    opacity: 1;
    /* animation: pulsare 1s ease-in-out; */
}

/* @keyframes pulsare{
    0%{
        box-shadow:  0 0 15px #5ddcff,
        0 0 20px #4e00c2;
        background-color: aqua;
    }
} */

.svgButtonToTop{
    fill: rgb(38, 0, 191);
}




/* ========== Stiki Search ======== */

.container-alex {
    position: relative;
    width: 520px;
    height: 80px;
    /* padding-top: 10px; */
    border: 2px solid tomato;
}

.form-section{
    /* position: fixed; */
    position: absolute;
    /* z-index: 100; */
    top: 10px;
    left: 10%
}

.search-form{
    display: inline-flex;
    align-items: center;
    background-image: linear-gradient(45deg,rgb(110, 214, 255),
    rgb(231, 216, 11));
    color: #070730;
    opacity: 0.9;
    padding-left: 6px;
    padding-right: 18px;
    padding-top: 10px;
    padding-bottom: 12px;
    border-radius: 4px;
    border: 3px solid #3c67e3;
    box-shadow: 5px 5px 5px #5ddcff;
}



.search-form :is(input, button){
    background: transparent;
    color: inherit;
    border: none;
    outline: none;
}

.search-form>input{
    font-size: 24px;
    width: 0px;
    transition: width 500ms;
}

.search-form>input::placeholder{
    color:black;
}


.search-form>button{
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: color 250ms;
}


.search-form:focus-within input{
    width: 400px;
}