﻿.sbuttons {
    top: 10%;
    position: fixed;
    margin: 1em;
    right: 15px;
    z-index: 99;
}

.sbutton:not(:last-child) {
    width: 30px;
    height: 30px;
    margin: 20px auto 0;
}

.sbutton {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    color: white;
    margin: 20px auto 0;
    box-shadow: 0px 5px 11px -2px rgb(0 0 0 / 18%), 0px 4px 12px -7px rgb(0 0 0 / 15%);
    cursor: pointer;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    position: relative;
}


.shadow {
    position: relative;
    z-index: 1;
}

    .shadow.dark::after {
        background: #000000 none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.5;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

    .shadow.dark-hard::after {
        background: #1d2024 none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.75;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

    .shadow.light::after {
        background: #ffffff none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.3;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

    .shadow.theme::after {
        background: #ff4450 none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.5;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

    .shadow.theme-hard::after {
        background: #ff4450 none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.7;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }
.services-single-area .sidebar .sidebar-item {
    margin-bottom: 50px;
    background: #f8f8f8;
    padding: 15px;
    overflow: hidden;
    border-radius: 8px;
}

    .services-single-area .sidebar .sidebar-item.link li {
        display: block;
        margin-bottom: 10px;
    }

        .services-single-area .sidebar .sidebar-item.link li a {
            display: block;
            font-weight: 600;
            font-size:15px;
            color: #666666;
            background: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            position: relative;
            z-index: 1;
            padding-left: 15px;
            border: 1px solid #e7e7e7;
        }

            .services-single-area .sidebar .sidebar-item.link li a::after {
                position: absolute;
                right: 15px;
                top: 11px;
                content: "\f105";
                font-family: "Font Awesome 5 Free";
                font-weight: 700;
            }

            .services-single-area .sidebar .sidebar-item.link li a:hover, .services-single-area .sidebar .sidebar-item.link li.active a {
                background: #008bcb;
                color: #ffffff;
            }