/*==============================================================
						Front Switcher
==============================================================*/
    .fixed-controls {
        position: fixed;
        z-index: 999;
        top: 50vh;
        left: 0;
        transform: translateY(-50%) translateX(calc(-100% + 50px));
        filter: drop-shadow(5px 10px 30px #0004);
        display: flex;
        transition: all 0.4s ease;
        &.show {
            transform: translateY(-50%) translateX(0);
            .toggel-content-card {
                opacity: 1;
            }
        }

        .toggel-icon {
            cursor: pointer;
            width: 50px;
            height: 50px;
            background-color: #fff;
            color: var(--cr-blue2);
            font-size: 25px;
            border-radius: 0 10px 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
            &:hover {
                background-color: #000;
                color: #fff;
            }
            i{
                webkit-animation: spin 5000ms linear infinite;
                -moz-animation: spin 5000ms linear infinite;
                -ms-animation: spin 5000ms linear infinite;
                -o-animation: spin 5000ms linear infinite;
                animation: spin 5000ms linear infinite;
            }
        }

        .toggel-content-card {
            padding: 20px 10px;
            background-color: #fff;
            border-bottom-right-radius: 10px;
            opacity: 0;
            transition: all 0.4s ease;

            .toggel-card {
                margin-bottom: 30px;
                &:last-of-type {
                    margin-bottom: 0;
                }
                h5 {
                    text-transform: uppercase;
                    margin-bottom: 10px;
                    font-weight: bold;
                    font-size: 14px;
                }

                .btns {
                    a {
                        padding: 5px 18px;
                        text-align: center;
                        border-radius: 10px;
                        background-color: #eaeaea;
                        margin-inline-end: 10px;
                        text-transform: capitalize;
					    color: #000;
					    display: inline-block;
					    -webkit-transition: all 0.3s ease;
					    transition: all 0.3s ease;
					    color: inherit;
					    text-decoration: none;
                        &.active {
                            background-color: #000;
                            color: #fff;
                        }
                    }
                }
            }
            
        }
    }

    .cursor_standerd {

        .mouse-cursor {
            display: none;
        }

    }