﻿:root {
    --help-bg-html: #20BFDF; /*#20BFDF;*/ /*#48aa48;*/
    --help-bg-color: rgb(32,191,223); /*rgb(32, 191, 223);*/ /*#fff;*/
    --help-bow-shadow-00: rgba(32, 191, 223, 0); /*rgba(32, 191, 223, 0);*/ /*rgba(72, 170, 72, 0)*/
    --help-bow-shadow-03: rgba(32, 191, 223, 0.3); /*rgba(32, 191, 223, 0.3);*/ /*rgba(72, 170, 72, 0.3)*/
    --help-bow-shadow-06: rgba(32, 191, 223, 0.6); /*rgba(32, 191, 223, 0.6);*/ /*rgba(255, 255, 255, 0.6)*/
    --help-bow-shadow-09: rgba(32, 191, 223, 0.9); /*rgba(32, 191, 223, 0.9);*/ /*rgba(255, 255, 255, 0.9)*/
    --help-bow-shadow-10: rgba(32, 191, 223, 1); /*rgba(32, 191, 223, 1);*/ /*whitesmoke*/
}

.item-hints {
    height: 250px;
    width: 250px;
    margin-top: calc(100vh * 0.28);
    margin-left: 24px;
}

    .item-hints .hint {
        width: 60px;
        height: 60px;
        /*margin: 150px auto;*/
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .item-hints .hint::before {
            /* //rotated squre */
            background-color: var(--help-bg-color); 
            width: 8px;
            height: 8px;
            z-index: 2;
            -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
            clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

        .item-hints .hint::after {
            /* //green glow */
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            width: 2px;
            height: 2px;
            z-index: 9991; /*1*/
            -webkit-box-shadow: 0 0 50px 30px var(--help-bow-shadow-03);
            box-shadow: 0 0 50px 30px var(--help-bow-shadow-03);
            -webkit-animation: home_hero_item_hints_glow 2s cubic-bezier(0.25, 0.1, 0.2, 1) infinite;
            animation: home_hero_item_hints_glow 2s cubic-bezier(0.25, 0.1, 0.2, 1) infinite;
            -webkit-transition: opacity 0.5s ease;
            transition: opacity 0.5s ease;
        }

@-webkit-keyframes home_hero_item_hints_glow {
    0% {
        -webkit-box-shadow: 0 0 30px 5px var(--help-bg-html);
        box-shadow: 0 0 30px 5px var(--help-bg-html);
    }

    70% {
        -webkit-box-shadow: 0 0 70px 50px var(--help-bow-shadow-00);
        box-shadow: 0 0 70px 50px var(--help-bow-shadow-00);
    }

    100% {
        -webkit-box-shadow: 0 0 0 50px var(--help-bow-shadow-00);
        box-shadow: 0 0 0 50px var(--help-bow-shadow-00);
    }
}

@keyframes home_hero_item_hints_glow {
    0% {
        -webkit-box-shadow: 0 0 30px 5px var(--help-bg-html);
        box-shadow: 0 0 30px 5px var(--help-bg-html);
    }

    70% {
        -webkit-box-shadow: 0 0 70px 50px var(--help-bow-shadow-00);
        box-shadow: 0 0 70px 50px var(--help-bow-shadow-00);
    }

    100% {
        -webkit-box-shadow: 0 0 0 50px var(--help-bow-shadow-00);
        box-shadow: 0 0 0 50px var(--help-bow-shadow-00);
    }
}

.item-hints .hint-dot {
    z-index: 9993; /*3*/
    border: 3px solid var(--help-bg-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: block;
    -webkit-transform: translate(-0%, -0%) scale(0.95);
    transform: translate(-0%, -0%) scale(0.95);
    -webkit-animation: home_hero_item_hints_border 2s linear infinite;
    animation: home_hero_item_hints_border 2s linear infinite;
    margin: auto;
}

@-webkit-keyframes home_hero_item_hints_border {
    0%, 100% {
        border-color: var(--help-bow-shadow-09);
        -webkit-transform: translate(-50%, -50%) scale(0.95);
        transform: translate(-0%, -0%) scale(0.95);
    }

    50% {
        border-color: var(--help-bow-shadow-06);
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-0%, -0%) scale(1);
    }
}

@keyframes home_hero_item_hints_border {
    0%, 100% {
        border-color: var(--help-bow-shadow-09);
        -webkit-transform: translate(-50%, -50%) scale(0.95);
        transform: translate(-0%, -0%) scale(0.95);
    }

    50% {
        border-color: var(--help-bow-shadow-06);
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-0%, -0%) scale(1);
    }
}

.item-hints .hint-radius {
    background-color: var(--help-bow-shadow-03);
    border-radius: 50%;
    width: 150px; /*250px*/
    height: 150px; /*250px*/
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -75px 0 0 -75px; /*-125px 0 0 -125px;*/
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: background-color, opacity, visibility, -webkit-transform;
    transition-property: background-color, opacity, visibility, -webkit-transform;
    transition-property: background-color, opacity, visibility, transform;
    transition-property: background-color, opacity, visibility, transform, -webkit-transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease, ease, ease, cubic-bezier(0.5, 0, 0, 1);
    transition-timing-function: ease, ease, ease, cubic-bezier(0.5, 0, 0, 1);
    /*Glass*/
    /*background: rgba(255, 255, 255, 0.2);*/
    /*border-radius: 16px;*/
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    /*border: 1px solid rgba( 255, 255, 255, 0.18);*/
}

.item-hints .hint:hover .hint-radius {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.item-hints .hint[data-position="1"] .hint-content {
    top: 85px;
    left: 50%;
    margin-left: 56px;
}

.item-hints .hint-content {
    color: #fff;
    width: calc(100vw - 260px); /*calc(100vw - 236px)*/
    position: absolute;
    z-index: 5;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
    visibility: hidden;
    pointer-events: none;
    /*background-color: rgba(255, 255, 255, 0.4);*/ /*David*/
    /*Glass*/
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba( 255, 255, 255, 0.18);
    color: var(--help-bow-shadow-10);
}

.item-hints .hint:hover .hint-content {
    color: #fff;
    width: calc(100vw - 260px); /*calc(100vw - 236px)*/
    position: absolute;
    z-index: 5;
    padding: 12px 0;
    opacity: 1;
    visibility: visible !important;
    -webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
    visibility: hidden;
    pointer-events: none;
    /*background-color: rgba(255, 255, 255, 0.4);*/ /*David*/
    /*Glass*/
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba( 255, 255, 255, 0.18);
    color: var(--help-bow-shadow-10);
}

.item-hints .hint-content::before {
    width: 0px;
    bottom: 0;
    left: 0;
    content: "";
    background-color: #fff;
    height: 1px;
    position: absolute;
    transition: width 0.4s;
}

.item-hints .hint:hover .hint-content::before {
    width: 180px;
    transition: width 0.4s;
}

.item-hints .hint-content::after {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    bottom: 0;
    left: 0;
    width: 80px;
    content: "";
    background-color: #fff;
    height: 1px;
    position: absolute;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.item-hints .hint:hover .hint-content::after {
    opacity: 1;
    visibility: visible;
}

.item-hints .hint[data-position="4"] .hint-content {
    bottom: 85px;
    left: 50%;
    margin-left: 56px;
}
