.navigation {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    display: flex;
    z-index: 100000000;
    transition: opacity 0.3s ease-in-out;
    animation: 1s;
    left: 75%;
    opacity: 0;
}

.navigation span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 36px;
    background-color: #c3d2ce;
    border-top:solid 3px white;
}

.navigation span:hover {
    border-color: #c85f45;
}

.navigation span:hover i {
    color:black;
}

.navigation span i {
    font-size:19px;
    color:#444444;
}

.navigation span:nth-child(2) {
    background-color: #af9c51;
}

@media screen and (min-width:768px) {
    .navigation {
        flex-direction: column;
        bottom:5%;
        
        left:calc(100% - 96px);
    }
    .navigation span {
        width :48px;
        height:48px;
    }
}

.showBtn {
    opacity: 1!important;
}



.share {
    position:fixed;
    bottom:0;
    width:75%;
    height:auto;
    display:flex;
    z-index: 100000000;
    /*opacity:0;*/
    transition: opacity 0.3s ease-in-out;
    animation:1s;
    opacity:0;
}

.share a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.33%;
    height: 36px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-top:solid 3px white;

}

.share a i {
    font-size:19px;
    color:#444444;
}

.share a {
    background-color: #c3d2ce;
}



@media screen and (min-width:768px) {
    .share {
        flex-direction: column;
        top:calc(44% - 48px);
        left:calc(100% - 48px);
    }
    .share a {
        width :48px;
        height:48px;
    }
}