*, ::after, ::before {
    box-sizing: border-box;
}

.stop-scroll {
    overflow: hidden;
    -webkit-overflow-scrolling: hidden;
}

.tooltip-helper-backdrop {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.tooltip-helper-active-description {
    background-color: rgb(36, 36, 36);
    position: absolute;
    font-size: 15px;
    border-radius: 5px;
    height: 170px;
    max-width: 500px;
    z-index: 9998;
    transition-property: transform;
    will-change: transform;
    transform: translateX(0px) translateY(0px);
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.tooltip-helper-active-description p {
    color: #fff;
    overflow-y: auto;
    height: 75%;
    padding: 10px;
    margin: 0 !important;
}

.tooltip-helper-active-description p > h1 {
    font-size: 24px;
}

.tooltip-helper-footer {
    height: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.tooltip-helper-footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tooltip-helper-active {
    position: absolute;
    transition-duration: 150ms;
    transition-property: transform;
    will-change: transform;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: rgba(51, 51, 51, 0.8) 0px 0px 0px 9999px
}

.tooltip-helper-active-element {
    overflow: hidden;
    position: relative;
}

.tooltip-helper-next-sequence,
.tooltip-helper-prev-sequence {
    background-color: rgb(22, 121, 251);
    border: none;
    border-radius: 2px;
    outline: none;
    padding: 3px 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
}

.tooltip-helper-prev-sequence {
    background-color: rgb(131, 131, 131);
}

.tooltip-helper-end-sequence {
    background-color: rgb(131, 131, 131);
    border: none;
    border-radius: 2px;
    outline: none;
    padding: 3px 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
}

.tooltip-disabled-btn {
    background-color: rgb(92, 92, 92) !important;
    user-select: none !important;
    color: rgba(255, 255, 255, 0.671);
}

.tooltip-helper-arrow {
    position: absolute;
    width: 0;
    height: 0;
    z-index: 9997;
    transition-property: transform;
    will-change: transform;
    transform: translate3d(0px, 0px, 0px);
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.tooltip-helper-arrow-up {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid rgb(36, 36, 36);
}

.tooltip-helper-arrow-down {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgb(36, 36, 36);
}

.tooltip-helper-arrow-left {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid rgb(36, 36, 36);
}

.tooltip-helper-arrow-right {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid rgb(36, 36, 36);
}

.ml-2 {
    margin-left: .5rem;
}