.lws-adminpanel {
    a.lws-adm-btn {
        color: #000;
        font-weight: 300;

        &:hover {
            color: #fff;
        }
    }

    .lws-adm-btn,
    .wp-core-ui .button.lws-adm-btn {
        border: none;
        border-radius: 0;
        border-bottom: 5px solid var(--group-color, #366);
        padding: 4px 15px 4px 15px;
        background-color: #ddd;
        box-sizing: border-box;
        color: #000;
        text-decoration: none;
        transition: all 0.3s;
        height: 30px;
        line-height: 20px;
        cursor: pointer;
        user-select: none;

        &:hover {
            background-color: var(--group-color, #016087);
            color: #fff;
        }

        &.disabled {
            border-color: #ccc;
            color: #999;

            &:hover {
                background-color: #ddd;
                border-color: #ccc;
                color: #999;
            }
        }

        &.lws-adm-btn-trigger {
            width: max-content;
            position: relative;

            .lws-loader {
                position: absolute;
                right: -40px;
                top: 0;
                width: 30px;
                height: 30px;
            }
        }

        &.singular-add-btn {
            font-size: 20px;
        }
    }

    .lws-button-link {
        border: none;
        border-radius: 0;
        border-bottom: 5px solid var(--group-color, #016087);
        display: flex;
        justify-content: center;
        background-color: var(--group-medium-color, #01806760);
        align-items: center;
        color: #000;
        box-sizing: border-box;
        transition: all 0.3s;
        height: 40px;
        font-size: 20px;
        user-select: none;
        text-decoration: none;
        cursor: pointer;

        &:hover {
            background-color: var(--group-color, #016087);
            color: #fff;
        }
    }

    .lws-icon-btn {
        display: flex;
        height: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
        background-color: #dddfdf;
        color: #000;
        user-select: none;
        cursor: pointer;

        .icon {
            width: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--btn-color, #666);
            color: #fff;
            margin-right: 10px;
        }

        .text {
            flex: 1 1 auto;
            line-height: 30px;
            font-family: "Gravity";
            color: #000;

            label {
                vertical-align: inherit;
            }

            a {
                text-decoration: none;
                color: #000;
            }
        }

        .end-line-btn {
            margin-right: 0px !important;
            width: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #333;
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        &:hover {
            background-color: var(--btn-color, #666);
            color: #fff;

            .text {
                color: #fff;
            }

            a {
                color: #fff;
            }

            .end-line-btn {
                background-color: #666;
            }
        }
    }

    .lws-big-icon-btn {
        display: flex;
        height: 120px;
        text-decoration: none;
        transition: all 0.3s ease;
        background-color: #eee;
        user-select: none;
        cursor: pointer;

        .icon {
            width: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--btn-color, #666);
            color: #fff;

            img {
                width: 120px;
            }
        }

        .text {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;

            .title {
                padding: 10px;
                font-size: 18px;
                text-transform: uppercase;
                color: #333;
                background-color: #ccc;
                //color: var(--btn-color, #333);
                transition: all 0.3s ease;
            }

            .description {
                padding: 10px;
                text-align: justify;
                font-size: 16px;
                //color:#eee;
                color: #666;
                transition: all 0.3s ease;
            }
        }

        &:hover {
            background-color: var(--btn-color, #666);
            color: #fff;

            .text {
                .title {
                    background-color: var(--btn-color, #666);
                    color: #fff;
                }

                .description {
                    color: #fff;
                }
            }
        }
    }
}

.lws-scrolltop-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #00000050;
    color: #fff;
    font-size: 25px;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;

    &:hover {
        background-color: #00000080;
    }
}