.floating-contact{
    position:fixed;
    right:24px;
    bottom:24px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:9999;
}

.floating-contact a{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    border:3px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    transition:all .3s ease;
}

.floating-contact a:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 16px 35px rgba(0,0,0,.28);
}

.call-btn{
    background:#2D3748;
}

.whatsapp-btn{
    background:#25D366;
}

.floating-contact i{
    color:#fff;
    font-size:24px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Mobile */
@media (max-width:768px){

    .floating-contact{
        right:16px;
        bottom:16px;
        gap:12px;
    }

    .floating-contact a{
        width:54px;
        height:54px;
    }

    .floating-contact i{
        font-size:22px;
    }

}
#toast {
    visibility: hidden;
    max-width: 50px;
    height: 50px;
    /*margin-left: -125px;*/
    margin: auto;
    background-color: var(--neon-dark);
    background-image: linear-gradient(180deg, #28F6A2, #8AFACC);
    color: var(--secondary-color);
    text-align: center;
    border-radius: 2px;

    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}

#toast #img {
    width: 50px;
    height: 50px;

    float: left;

    padding-top: 16px;
    padding-bottom: 16px;

    box-sizing: border-box;


    background-color: var(--neon-dark);
    background-image: linear-gradient(180deg, #28F6A2, #8AFACC);
    color: var(--secondary-color);
}

#toast #desc {


    color: var(--secondary-color);

    padding: 16px;

    overflow: hidden;
    white-space: nowrap;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes expand {
    from {
        min-width: 50px
    }
    to {
        min-width: 350px
    }
}

@keyframes expand {
    from {
        min-width: 50px
    }
    to {
        min-width: 350px
    }
}

@-webkit-keyframes stay {
    from {
        min-width: 350px
    }
    to {
        min-width: 350px
    }
}

@keyframes stay {
    from {
        min-width: 350px
    }
    to {
        min-width: 350px
    }
}

@-webkit-keyframes shrink {
    from {
        min-width: 350px;
    }
    to {
        min-width: 50px;
    }
}

@keyframes shrink {
    from {
        min-width: 350px;
    }
    to {
        min-width: 50px;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 60px;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 60px;
        opacity: 0;
    }
}
