helixpay.css

Default CSS used for integration

.helixpay-purchase-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.subscriptionRecurrenceSelect {
    min-width: 230px;
}
.recurrenceSelector {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.recurrenceSelector input[type="radio"] {
    margin-right: 10px;
}

/* HelixPay Subscription Tooltip */
.helixPay-hsw {
    position: relative;
    margin: 10px 0 40px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
}
.helixPay-hsw img {
    max-width: 100px;
}
.hsw-tooltip {
    position: absolute;
    display: block;
    z-index: 101;
    background: #b37d62;
    border-radius: 3px;
    width: 350px;
    top: 0;
    left: 20px;
    padding: 10px 15px;
    visibility: hidden;
    text-align: left;
}
.hsw-tooltip.active{
    visibility: visible; 
}
.hsw-tooltip a {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 150px;
    height: 40px;
    color: white;
    text-decoration: none;
    text-align: right;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.hsw-tooltip p {
    font-size: 12px;
    margin-bottom: 65px;
    margin-top: 5px;
    color: #fff;
}
.hsw-header,
.hsw-hover{
    display: flex;
    justify-content: space-between;
}
.hsw-header{
    align-items: start;
    margin-bottom: 20px;
}
.hsw-hover {
    gap: 6px;
    align-items: center;
}
.hsw-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 100;
    cursor: pointer;
    padding: 0px;
    min-height: unset;
    height: 22px;
    line-height: 22px;
}
.hsw-header{
    font-weight: 600; 
}
.hsw-header span {
    max-width: 85%;
}
@media 
  (max-device-width: 480px) { 
    .hsw-tooltip {
        width:90%;
        max-width: 320px;
    }
}
/* HelixPay Subscription Tooltip */