.widget-action {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    display: none;
}
.widget-action__hint {
    position: relative;
    cursor: pointer;
    pointer-events: none;
    display: none;
}
.widget-action__hint-logo {
    position: absolute;
    right: 35%;
    bottom: 30px;
    max-width: 180px;
    pointer-events: auto;
}
.widget-action__hint-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: auto;
}
.widget-action__hint-text {
    display: inline-flex;
    justify-content: flex-end;
    position: relative;
    padding: 5px 15px;
    background: linear-gradient(to bottom, #ffffff 0%, #404040 100%);
    border-radius: 5px 5px 0 5px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
    color: #FFFFFF !important;
    z-index: 1;
    margin-top: 20px;
}
.widget-action__hint-text:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 5px 5px 0 5px;
    z-index: -1;
    background: linear-gradient(293.69deg, #404040 29.1%, #9D9D9D 189.38%);
}
.widget-action__hint-text:after {
    content: "";
    position: absolute;
    left: calc(100% - 1px);
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 0 5px;
    border-color: transparent transparent transparent #404040;
}
.widget-action__modal {
    color: #fff;
    text-align: center;
    position: relative;
}
.widget-action__modal:before,
.widget-action__modal:after {
    content: "";
    position: absolute;
    top: 0;
    width: calc(50% - 30px);
    height: 2px;
    background: #fff;
}
.widget-action__modal:before {
    left: 0;
}
.widget-action__modal:after {
    right: 0;
}
.widget-action__modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 3;
}
.widget-action__modal-close:before,
.widget-action__modal-close:after {
    content: "";
    width: 2px;
    height: 135%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
.widget-action__modal-close:after {
    transform: translate(-50%,-50%) rotate(45deg);
}
.widget-action__modal-inner {
    padding: 50px 20px 20px;
    border: 2px solid #fff;
    border-top: none;
    overflow: hidden;
    position: relative;
}
.widget-action__modal-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 1000px #E01D24;
    z-index: -1;
}
.widget-action__modal-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100px;
    height: auto;
    z-index: 2;
}
.widget-action__modal-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
}
.widget-action__modal-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    margin-top: 10px;
}
.widget-action__modal-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0 15px;
    background: linear-gradient(to bottom, #ffffff 0%, #404040 100%);
    border-radius: 5px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    text-align: center;
    color: #FFFFFF !important;
    min-width: 200px;
    z-index: 1;
    margin-top: 20px;
}
.widget-action__modal-btn:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(338.92deg, #000000 23.66%, #9D9D9D 240.52%);
    border-radius: 5px;
    z-index: -1;
}
.widget-action__modal-img {
    display: block;
    margin: 12px auto;
    max-width: 340px;
}

.widget-action_visible {
    display: block;
}

.widget-action_mini .widget-action__hint {
    display: block;
}
.widget-action_mini .widget-action__modal {
    display: none;
}