﻿/*Side fixed nav*/
.side-fixed-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /*width: 80px;*/
    height: auto;
    background-color: #000;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: center;
    color: #fff;
    /* padding: 5px; */
    z-index: 999;
}

    .side-fixed-nav .item a {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #fff;
        display: block;
        color: #fff;
        font-size: 0.75rem;
        text-decoration: none;
        transition: all ease-in 0.5s;
    }

    .side-fixed-nav .item:last-child a {
        border-bottom: 0;
    }

    .side-fixed-nav .item span.fa, .side-fixed-nav .item span.fas, .side-fixed-nav .item span.fa-solid  {
        font-size: 18px;
    }

    
    .side-fixed-nav .item span {
        display: block;
        color: #fff;
        font-size: 0.75rem;
        padding-top: 3px;
        text-decoration: none;
        transition: all ease-in 0.5s;
    }

        .side-fixed-nav .item a:hover,
        .side-fixed-nav .item spa:hover {
            color: #fff;
            border-radius: 5px;
            background-color: #ff6a00;
            border-bottom: 0;
        }

@media only screen and (max-width: 576px) {
    .side-fixed-nav {
        position: fixed;
        top: initial;
        bottom: 0;
        transform: translateY(0);
        width: 100%;
        height: auto;
        background-color: #000;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        text-align: center;
        color: #fff;
        padding: 5px;
        z-index: 999;
    }

        .side-fixed-nav .item {
            display: inline-block;
            width: 32%;
            height: auto;
        }

            .side-fixed-nav .item a {
                border: 0;
                border-right: 1px solid #fff;
                padding: 0;
            }

            .side-fixed-nav .item:last-child a {
                border-right: 0;
            }
}
