hinted-bubble.hinted-hint-bubble {
    border-radius: 4px !important;
    background-color: #fff !important;
    box-shadow: 0px 4px 10px 5px rgba(58, 58, 58, 0.15);

    a.hinted-hint-bottom-link {
        display: none !important;
    }

    .hinted-hint-bubble-container {
        .hinted-hint-bubble-content {
            margin: 0 !important;

            .hinted-hint-content.ql-editor {
                margin: 0 !important;
                padding: 0 !important;

                >* {
                    color: var(--Main1);
                }

                h3 {
                    font-size: 18px;
                    font-weight: bold;
                    font-family: 'PT Sans Caption', sans-serif;
                    text-align: left;
                    margin-bottom: 4px;
                }
            }
        }
    }

    .hinted-hint-bubble-arrow-container {
        width: 6px !important;
        height: 6px !important;

        &.up {
            top: -6px !important;
            left: 38px !important;

            .hinted-hint-bubble-arrow {
                border-bottom: 6px solid #fff !important;
                border-left: 6px solid transparent !important;
                border-right: 6px solid transparent !important;
            }
        }

        &.down {
            bottom: -6px !important;
            left: 38px !important;

            .hinted-hint-bubble-arrow {
                border-left: 6px solid transparent !important;
                border-right: 6px solid transparent !important;
                border-top: 6px solid #fff !important;
            }
        }

        &.right {
            top: 20px !important;
            right: -3px !important;

            .hinted-hint-bubble-arrow {
                border-bottom: 6px solid transparent !important;
                border-left: 6px solid #fff !important;
                border-top: 6px solid transparent !important;
                left: 0;
                border-right: none !important;
            }
        }

        &.left {
            top: 20px !important;
            left: -3px !important;

            .hinted-hint-bubble-arrow {
                border-bottom: 6px solid transparent !important;
                border-top: 6px solid transparent !important;
                border-right: 6px solid #fff !important;
            }
        }

        .hinted-hint-bubble-arrow-border {
            display: none !important;
        }
    }

    .hinted-hint-actions {
        margin-top: 8px !important;
        text-align: left !important;

        button,
        a {
            &.hinted-hint-nav-button {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                font-family: 'PT Sans Caption', sans-serif !important;
                font-weight: 700;
                padding: 2px 20px;
                min-height: 32px;
                font-size: 12px;
                line-height: 1;
                border-radius: 4px;
                border: 1px solid var(--Main2) !important;
                color: #fff;
                background-color: var(--Main2) !important;
                outline: none;
                transition: 0.2s;
                text-align: center;
                text-decoration: none;
                margin-top: 8px;
                margin-right: 8px;
                margin-left: 0 !important;

                &:hover {
                    background-color: var(--Subsidiary) !important;
                    border-color: var(--Subsidiary) !important;
                }

            }
        }
    }

    .fig-img {
        margin-bottom: 8px !important;

        img {
            margin: 0 !important;
        }

        figcaption {
            display: none !important;
        }
    }
}

.hinted-hint-widget {
    #hinted__floating-button {
        background: var(--Green);

        .hinted__plus {

            svg {
                path {
                    fill: #fff;
                }
            }
        }
    }

    #hinted__scenarios {
        border-radius: 4px;
        box-shadow: var(--secondary_shadow);
        background-color: var(--Main2);
        overflow: hidden;
        border: none !important;

        &-title {
            color: #fff;
        }

        #hinted__scenarios-body {
            padding: 0 !important;

            button.hinted-play-btn {
                padding: 8px 16px !important;
                min-height: 38px;
                color: var(--Main1) !important;
                font-family: 'PT Sans', sans-serif !important;
                font-size: 14px !important;

                &:hover {
                    background-color: var(--Bg2) !important;
                }
            }
        }
    }
}

#hinted__container-floating .floating-wrapper:hover #hinted__floating-button {
    background-color: var(--Main2) !important;
}