.t-hint__wrap {
    display: inline-flex;
    position: relative;
    overflow: hidden;
}
.t-hint__icon__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2px;
}
.t-hint__icon__block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.t-hint__icon {
    max-height: 100%;
    width: 14px;
    height: 14px;
}
.t-hint__status_icon {
    display: none;
}
.t-hint__content {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translate(-50%, -100%);
    min-width: 150px;
    max-width: 600px;
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.2s linear;
    font-size: 12px;
    text-transform: none;
    text-align: left;
}
@media screen and (max-width: 1023px) {
    .t-hint__content {
        max-width: 280px;
        min-width: 70px;
        transform: translate(-30px, -100%);
        font-size: 10px;
    }
}
@media screen and (max-width: 460px) {
    .t-hint__content {
        max-width: 250px;
    }
}
@media screen and (max-width: 380px) {
    .t-hint__content {
        max-width: 220px;
    }
}
.t-hint__content:after {
    content: '';
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    border-style: solid;
    z-index: 3;
    bottom: -8px;
    border-width: 1px;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
    background: #fff;
}
@media screen and (max-width: 1023px) {
    .t-hint__content:after {
        left: 32px;
    }
}
.t-hint__content p {
    font-weight: 400;
}
.t-hint__content_active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.t-hint__content_left {
    transform: translate(-100%, -100%);
    left: 32px;
}
.t-hint__content_left:after {
    right: 16px;
    left: auto;
}
.t-hint__content_right {
    transform: translate(-32px, -100%);
}
.t-hint__content_right:after {
    left: 32px;
    right: auto;
}
.t-hint__content_bottom {
    top: auto;
    bottom: -7px;
    transform: translate(-50%, 100%);
}
@media screen and (max-width: 1023px) {
    .t-hint__content_bottom {
        transform: translate(-30px, 100%);
    }
}
.t-hint__content_bottom:after {
    top: -1px;
}
.t-hint__content_bottom.t-hint__content_left {
    transform: translate(-100%, 100%);
}
.t-hint__content_bottom.t-hint__content_left:after {
    content: '';
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    border-style: solid;
    z-index: 3;
    bottom: -8px;
    border-width: 1px;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
    background: #fff;
}
@media screen and (max-width: 1023px) {
    .t-hint__content_bottom.t-hint__content_left:after {
        left: auto;
        right: 16px;
    }
}
.t-hint__content_bottom.t-hint__content_right {
    transform: translate(-32px, 100%);
}
.t-hint__content_bottom.t-hint__content_right:after {
    content: '';
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    border-style: solid;
    z-index: 3;
    bottom: -8px;
    border-width: 1px;
    left: 32px;
    right: auto;
    transform: rotate(45deg) translateX(-50%);
    background: #fff;
}
@media screen and (max-width: 1023px) {
    .t-hint__content_bottom.t-hint__content_right:after {
        left: 32px;
    }
}
.t-hint__content_bottom.t-hint__content_center {
    transform: translate(-50%, 100%);
}
.t-hint__content_center {
    transform: translate(-50%, -100%);
}
@media screen and (max-width: 380px) {
    .t-hint__content_center {
        max-width: 200px;
    }
}
.t-hint__content_center:after {
    left: 50%;
    right: auto;
}
.t-hint_theme_dark .t-hint__content {
    background: #333;
    color: #fff;
}
.t-hint_theme_dark .t-hint__content:after {
    border-color: #333 transparent transparent transparent;
    background: #333;
}
.t-hint_theme_dark .t-hint__content_bottom:after {
    border-color: transparent transparent #333 transparent;
}
.t-hint_theme_light .t-hint__content {
    background: #fff;
    color: #636a77;
    border: 1px solid #b5b5b5;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}
.t-hint_theme_light .t-hint__content:after {
    border-color: transparent #b5b5b5 #b5b5b5 transparent;
}
.t-hint_theme_light .t-hint__content_bottom:after {
    border-color: #b5b5b5 transparent transparent #b5b5b5;
}
.how-it-works .t-hint__icon {
    display: none;
}
#order_form .orderform_label label[data-action='Hint'] {
    display: inline-block;
    padding: 0;
}
#order_form .t-hint_theme_dark p {
    color: #fff;
}
@media screen and (max-width: 1023px) {
    #order_form .t-hint__content strong,
    #order_form .t-hint__content p {
        font-size: 10px;
    }
}
.t-hint_is-visible .t-hint__wrap {
    overflow: inherit;
}
