/* Help hint*/
.hlp {
    width: 16px;
    height: 16px;
    transform: translateY(20%);
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.hlp-white {
    background-image: url("../images/logo/svg/hlp-white.svg");
}
.hlp-yellow {
    background-image: url("../images/logo/svg/hlp-yellow.svg");
}

.hlp-popup {
    width: auto;
    max-width: 500px;
    text-align: left;
    left: 0;
    border-radius: 5px;
    padding: 10px;
    opacity: 0;
    z-index: 999999;
    border: 1px solid #e4e7ea;
    background-color: #fff;
    color: #000;
}
.hlp-popup--black {
    background-color: #353539;
    color: #dedede;
    border: none;
}
.hlp-popup--white {
    border: 1px solid #e4e7ea;
    background-color: #fff;
    color: #000;
}
.hlp-popup-arrow {
    position: absolute;
    left: 50%;
    bottom: -8px;
    display: block;
    width: 16px;
    height: 16px;
    transform: translateX(-50%) rotateZ(45deg) ;
    background-color: #353539;
    z-index: 9998;

    background-color: #fff;
    border-bottom: 1px solid #e4e7ea;
    border-right: 1px solid #e4e7ea;
}
.hlp-popup-arrow--black {
    background-color: #353539;
    border: none;
}
.hlp-popup-arrow--white {
    background-color: #fff;
    border-bottom: 1px solid #e4e7ea;
    border-right: 1px solid #e4e7ea;
}
.hlp-popup-top {
    animation: hlp-popup-top .3s ease-out forwards;
}
.hlp-popup-right {
    animation: hlp-popup-right .2s ease-out forwards;
}
.hlp-popup-left {
    animation: hlp-popup-left .2s ease-out forwards;
}
.hlp-popup-bottom {
    animation:hlp-popup-bottom .2s ease-out forwards;
}
@keyframes hlp-popup-top {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    80% {
        opacity: .6;
        transform: translateY(0);
    }
    to {
        opacity: 1;
    }
}
@keyframes hlp-popup-right {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hlp-popup-left {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hlp-popup-bottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Edit Form*/
.editFormHelpOutlineYellow {
    outline: 2px solid yellow !important;
}

/*Header help block*/
.header-help-block-is-exist {
    background: #F3F8F9;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    margin-bottom: 20px;
}

.header-help-block-is-exist p:last-child {
    margin-bottom: 0;
}
