@charset "UTF-8";
:root {
    --font-sans-serif: "Jakarta",sans-serif;
    --body-font-size: 16px!important;
    --root-font-size: 16px!important
}

@keyframes showResult {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes hideResult {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

html {
    scroll-behavior: smooth
}

.form-error-message {
    color: #ce5a56;
    margin-top: .5rem;
    display: block;
    font-size: .75rem
}

.form-validation-floating .form-error-message {
    position: absolute;
    right: 0;
    bottom: calc(100% + .25rem);
    color: #fff;
    font-size: .675rem;
    line-height: 1;
    background: #d36966;
    padding: .3rem .5rem;
    z-index: 1;
    border-radius: .25rem;
    white-space: nowrap
}

.form-validation-floating .form-error-message:before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    border-right: 6px solid #d36966;
    border-left: 6px solid transparent;
    right: 10px;
    border-bottom: 6px solid transparent;
    bottom: -6px
}

.form-result {
    opacity: 0;
    padding: .5rem 1rem;
    border-radius: .375rem;
    animation: hideResult .8s forwards;
    display: none
}

.form-result * {
    color: currentColor
}

.animated {
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1.5s;
    animation-fill-mode: both
}

.animated.delay {
    -webkit-animation-delay: attr(data-delay);
    animation-delay: attr(data-delay)
}

.bounceIn {
    -webkit-animation-duration: .75s;
    -webkit-animation-name: bounceIn;
    animation-duration: .75s;
    animation-name: bounceIn
}

.fadeOut {
    -webkit-animation-duration: .3s;
    -webkit-animation-name: fadeOut;
    animation-duration: .3s;
    animation-name: fadeOut
}

.fadeIn {
    -webkit-animation-duration: .3s;
    -webkit-animation-name: fadeIn;
    animation-duration: .3s;
    animation-name: fadeIn
}

.fadeInLeft {
    -webkit-animation-duration: .3s;
    -webkit-animation-name: fadeInLeft;
    animation-duration: .3s;
    animation-name: fadeInLeft
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        -webkit-transform: scale3d(.3,.3,.3);
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        -webkit-transform: scale3d(1.03,1.03,1.03);
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        -webkit-transform: scaleX(1);
        opacity: 1;
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        -webkit-transform: scale3d(.3,.3,.3);
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        -webkit-transform: scale3d(1.03,1.03,1.03);
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        -webkit-transform: scaleX(1);
        opacity: 1;
        transform: scaleX(1)
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        -webkit-transform: scale3d(.3,.3,.3);
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        -webkit-transform: scale3d(.3,.3,.3);
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

.toast {
    position: fixed;
    top: 1.25rem;
    z-index: 9999;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    width: 100%;
    text-align: center;
    right: 10px;
    display: inline-block
}

.bounceOut {
    -webkit-animation-duration: .75s;
    -webkit-animation-name: bounceOut;
    animation-duration: .75s;
    animation-name: bounceOut
}

.form-result-show {
    animation: showResult .8s forwards
}

.form-result-success {
    background: #ddf0ec;
    color: #55b59e
}

.form-result-error {
    background: #f5dedd;
    color: #ce5a56
}

.header-menu-toggle {
    border: 0!important
}

.toast {
    max-width: 350px;
    overflow: hidden;
    font-size: 15px;
    background: 0 0;
    background-clip: padding-box;
    font-weight: 500
}

.toast:not(:last-child) {
    margin-bottom: .75rem
}

.toast.showing {
    opacity: 1
}

.toast.show {
    display: block;
    opacity: 1
}

.toast.hide {
    display: none
}

@media(min-width: 576px) {
    .product-container .plans {
        border-right:2px solid #212542ab;
        padding-right: 2rem!important
    }

    .orders .txn .wrapper>.d-flex>.d-flex {
        flex-direction: column;
        align-items: flex-end
    }

    .promo-wrap span {
        transition: all .2s ease;
        letter-spacing: .02em;
        font-size: 16px
    }

    body.checkout #fetch {
        border-right: 2px solid #212542ab;
        padding-right: 2.7rem!important
    }

    .product-container .features>li:last-child {
        margin-bottom: 0;
        border: none
    }
}

@media(max-width: 767.98px) {
    .has-dropdown.sub.active {
        height:auto
    }

    .tw-menu-buttons {
        margin-top: 2;
        margin-bottom: 7rem
    }

    .has-dropdown.sub.active .tw-menu-dropdown {
        position: relative!important;
        left: 5px!important;
        margin-top: -5px!important;
        background: #131e35
    }

    .tw-menu-sub .has-dropdown.sub.active .tw-menu-dropdown .tw-menu-link {
        padding: .2rem 1.5rem!important;
        color: #ffffffc2
    }

    footer .card-processors img {
        height: 2.3rem!important
    }

    .orders .txn .wrapper>div {
        width: 100%
    }

    .product-container .services .btn {
        padding: 5px 12px;
        margin-right: 0!important
    }

    .orders .txn .wrapper {
        flex-wrap: wrap
    }

    .orders .txn .link {
        max-width: 225px!important;
        margin: 2px 0 -2px!important
    }

    .orders .txn .status {
        position: absolute;
        right: 0;
    }

    .orders .txn .wrapper>div:last-child {
        margin-top: -21px!important
    }

    .tw-header-menu.menu-mobile .tw-header-toggle {
        position: absolute;
        top: 1.5rem;
        right: 1rem
    }

    .tw-header-toggle .btn .ni {
        font-size: 1.5rem;
        line-height: 1.5rem
    }

    .menu-mobile>ul .tw-menu-item .tw-menu-link {
        font-size: 20px;
        width: fit-content;
        margin-left: 0;
        margin-right: auto
    }

    .menu-mobile>ul .tw-menu-sub .tw-menu-item .tw-menu-link {
        font-size: 15px;
        position: relative
    }

    .menu-mobile .tw-menu-buttons>li .btn {
        scale: 1.15;
        margin-top: 1.25rem;
        margin: .5rem .1rem!important
    }

    .tw-header-menu.menu-mobile {
        display: flex;
        align-items: center;
        height: 100vh;
        width: auto;
        transform: translateX(100%);
        left: auto;
        right: 0;
        z-index: 999;
        padding-top: 3rem;
        overflow-x: hidden
    }

    .tw-menu-toggle:after {
        margin: 0 calc(-20px - .25rem) 0 .25rem!important
    }
}

@media(max-width: 575.98px) {
	body.compare .product-container .services {
		flex-wrap: wrap;
	}
    #social-proof {
        transform:scale(.85) translate(-11%,22%)
    }

    #social-proof .order-product {
        max-width: 275px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .tw-header-main {
        z-index: 1001
    }

    .payment-options label {
        padding: 8px;
        margin: 5px 0 7px!important
    }

    #reviews .reviews .rating-stars {
        --star-size: 20px!important
    }

    .product-container .plan .cart {
        display: flex!important;
        flex-direction: column!important
    }

    .product-container .plan .old-price {
        margin: -2px 13px 2px auto!important
    }

    .product-container .plans {
        max-height: 490px!important
    }

    .product-container .features>li:last-child:nth-last-child(odd) {
        flex-basis: fit-content;
        /* margin-bottom: 0!important */
    }

    #scrollTop {
        right: 1.5rem!important;
        bottom: 5rem!important
    }

    .alert.notes {
        border: none!important
    }

    #reviews .reviews {
        max-height: 375px!important
    }

    .alert.notes li {
        padding: 6px 12px 8px!important
    }

    .tw-hero-content .title {
        font-size: 32px!important
    }

    .tw-hero-content .title span {
        font-size: 32px
    }

    .payment-options img {
        height: 24px!important
    }

    #product .product-title .title {
        font-weight: 900!important;
        font-size: 2.2rem!important
    }

    #product .product-title .lead {
        font-size: 1rem!important
    }

    .checkout.package .product-title .title {
        font-size: 2rem!important
    }

    #product .product-title .title .ni {
        font-weight: 700!important;
        display: none
    }

    .checkout .btn-dropdown {
        margin-bottom: 4px!important
    }

    #fetch .image img {
        max-height: 180px!important
    }

    .checkout .section.banner {
        padding-top: 1rem!important
    }

    .feature-text .title {
        font-size: 16px!important;
        font-weight: 500!important
    }

    .product-container .plans+.flip {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse
    }

    .product-container .plan .cart .ni {
        display: none!important
    }

    .product-container .buy-btn {
        border-bottom: 2px solid #212542ab;
        padding-bottom: 12px!important;
        margin: -5px 0 10px!important
    }

    .product-container .plan {
        padding: .55rem 1rem!important
    }

    .product-container .features {
        display: flex;
        flex-wrap: wrap;
        column-gap: 12px;
        border: none!important;
        background: 0 0!important;
        justify-content: center
    }

    .product-container .features>li {
        font-size: 15px!important;
        padding: 6px 12px 8px!important;
        width: 100%;
        min-width: calc(50% - 6px)!important;
        flex-basis: min-content;
        line-height: 1.5!important;
        justify-content: center;
        text-align: center!important;
        background: #450f15 !important;
        margin: 0 0 12px!important;
        font-weight: 600;
        border-radius: .5rem!important;
        border: none!important;
        text-transform: capitalize;
        opacity: .9
    }
    body.kick .product-container .features>li {
		background: #1e5420 !important;
	}

    .product-container .features>li .ni {
        font-size: 16px;
        position: unset;
        transform: unset!important;
        margin-right: 5px;
        display: none
    }

    .toast {
        max-width: 100%!important;
        width: calc(100% - 30px);
        text-align: center;
        left: 0;
        top: 0;
        margin: 15px;
        border-radius: 0!important;
        line-height: 1.4!important
    }

    .d-xs-none {
        display: none!important
    }
}

@media(min-width: 768px) {
    .has-dropdown:hover .tw-menu-dropdown .tw-menu-dropdown {
        position:absolute;
        right: 0;
        left: calc(100% + 7px);
        top: 0;
        z-index: -1;
        height: fit-content!important;
        margin: 5px 0 0 -10px;
        opacity: 0
    }

    .tw-menu-sub .has-dropdown:hover .tw-menu-dropdown {
        opacity: 1;
        z-index: 0
    }

    .has-dropdown:hover .tw-menu-dropdown .tw-menu-dropdown .tw-menu-link {
        padding: .5rem 1.5rem .5rem 1.75rem!important
    }
}

::-webkit-scrollbar {
    height: 12px;
    width: 12px;
    background: 0 0
}

::-webkit-scrollbar-track {
    background: var(--secondary);
    background: 0 0
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #261e1e;
}

.list-style-numbered {
	list-style: number;
	text-decoration: none;
}

.content p {
    font-size: 16px
}

.content ol,.content ul {
    list-style: circle;
    padding: 10px 0 10px 20px
}

.cursor-pointer {
    cursor: pointer
}

.cursor-not-allowed {
    cursor: not-allowed
}

::selection {
    color: #fff!important;
    background: var(--primary);
    -webkit-text-fill-color: #fff
}

.form-control.vcode {
    font-size: 2rem!important;
    padding: 10px 20px;
    text-align: center;
    letter-spacing: 1rem;
    font-weight: 600
}

.form-control.vcode::placeholder {
    color: #9b9ca2cc
}

.form-control {
    font-size: 16px
}

.product-container .plan>span {
    color: var(--gray-300);
    font-size: 16px
}

.product-container .plan .quantity span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-100);
    margin-right: .5rem;
    text-shadow: 2px 2px #6f399bb8
}

.product-container .plan:hover {
    box-shadow: 0 0 2px 1px #d6586f8f !important;
}

.product-container .plan .price {
    background: #450f15 !important;
    padding: 3px 10px;
    border-radius: .35rem;
    border: 2px solid #703333;
    margin-right: 10px
}

#wallet .price:before,.product-container .plan .price:before {
    content: '$';
    margin-right: 5px;
    opacity: .5
}

.product-container .features {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: rgb(64 28 28);
    border: 2px solid #502f2f;
    border-radius: .5rem;
    padding: 2px 0
}

.product-container .plan {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin: .45rem 0;
    box-shadow: 0 0 2px 0 #d65858e6;
    padding: .9rem 2rem;
    transition: .2s all ease-out;
    --bg-opacity: 0.25;
    --text-opacity: 1;
    color: rgba(var(--primary-rgb),var(--text-opacity))!important;
    background-color: #5026268f;
}

.product-container .features>li {
    padding: 15.5px 3.7rem;
    margin: 0 12px;
    font-size: 16px;
    border-radius: .5rem;
    text-align: left;
    position: relative;
    color: #cad0d7;
    border-color: #25070a5e;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #41476a3b;
    line-height: 1.25;
    border-radius: 0
}

.product-container .features .ni {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #9a2424;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%)
}

.product-container .plan .cart {
    margin: -2px -10px -2px 0;
    display: flex;
    align-items: center
}

.product-container .plan .cart .ni {
    font-size: 22px;
    display: inline-block;
    opacity: .75;
    margin-top: -5px
}

.product-container .plans::-webkit-scrollbar {
    width: 8px;
    height: 10px
}

.product-container .plans::-webkit-scrollbar-thumb {
    background: #282b51
}

.product-container .plans {
    max-height: 400px
}

#product .product-title .title {
    font-weight: 700;
    font-size: 2.75rem;
    text-shadow: 1px 1px #9441f545;
    --bg-opacity: 1;
    --bg-gradient-angle: 145deg
}

.features-right .feature-wrapper>div:last-child {
    margin-top: 2rem
}

#product .product-title .title .ni {
    margin: 5px 0 -5px 10px;
    font-weight: 500;
    line-height: 1
}

input.vcode::-webkit-inner-spin-button,input.vcode::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

body.checkout .btn-dropdown {
    background-color: rgb(255 255 255/15%);
    background-clip: padding-box;
    border: .0625rem solid rgb(255 255 255/30%);
    color: #e7e7e7;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 8px
}

body.checkout .dropdown .quantity span {
    font-size: 17px;
    font-weight: 600;
    margin-right: 5px
}

body.checkout .price:before {
    content: '$';
    margin-right: 3px;
    opacity: .55
}

body.checkout .btn-dropdown+.dropdown-menu {
    background-color: rgb(55 28 28);
    background-clip: padding-box;
    border: .0625rem solid rgb(255 255 255/30%);
    color: #e7e7e7!important;
    width: calc(100% + 2px);
    margin: 4px -1px!important
}

body.checkout .dropdown-item {
    color: #ffffffcf;
    font-size: 16px
}

body.checkout .dropdown-item:hover {
    background: 0 0;
    color: var(--primary)
}

.tw-menu-sub>li:first-child a {
    padding-top: 1rem!important
}

.tw-menu-sub>li:last-child a {
    padding-bottom: 1rem!important
}

[data-menu-collapse=lg] .tw-menu-list {
    overflow: unset;
    height: inherit
}

#fetch .image img {
    border-radius: .5rem;
    border: 1px solid #4346606b;
    max-height: 225px;
    width: auto;
    margin: auto;
    background-color: #9146ff4a
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border: .2rem solid var(--primary);
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    opacity: .85
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

.loading:after {
    content: "";
    display: block;
    width: 1.55rem;
    height: 1.55rem;
    border: .185rem solid var(--primary);
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    position: absolute;
    z-index: 1002;
    top: calc(50% - .75rem);
    left: calc(50% - .5rem)
}

.loading:before {
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    content: "";
    background: #181c3738;
    z-index: 1001;
    backdrop-filter: blur(1px)
}

#fetch .title:empty {
    display: none
}

.loading {
    position: relative;
    pointer-events: none
}

#fetch .title {
    display: block;
    text-align: center;
    margin: 5px auto;
    font-size: 15px;
    opacity: .75;
    overflow: hidden;
    width: 95%;
    padding: 0 5px;
    text-overflow: ellipsis;
    white-space: nowrap
}

body.checkout .btn:disabled em {
    display: none
}

.payment-options label img {
    height: 24px
}

.payment-options label {
    padding: 8px 10px;
    margin: 5px 0;
    background-color: rgb(255 255 255/5%);
    background-clip: padding-box;
    border: 2px solid rgb(255 255 255/20%);
    border-radius: .5rem;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center
}

.payment-options input {
    opacity: 0;
    position: absolute
}

.payment-options input[type=radio]:checked+label {
    border-color: var(--primary);
    transition: all .2s ease
}

.payment-options label .ni {
    display: inline;
    font-size: 22px;
    opacity: .75
}

body.checkout .price {
    font-size: 16px;
    font-weight: 600
}

body.checkout .dropdown .quantity {
    font-size: 15px
}

.payment-options input:disabled+label {
    cursor: not-allowed
}

.accordion-item b,.accordion-item strong {
    color: var(--gray-300)
}

.contact .contacts li {
    display: flex;
    background: #450f15 !important;
    margin: 0 0 12px;
    font-weight: 600;
    border-radius: .5rem!important;
    padding: 10px;
    font-weight: 400;
    justify-content: flex-start;
    line-height: 1.75
}

.contact .contacts li .ni {
    font-size: 20px;
    display: flex;
    padding: 3px 3px 2px 5px
}

#why-us .title {
    font-size: 1.75rem!important
}

#scrollTop {
    position: fixed;
    background: var(--primary-dark);
    right: 1.75rem;
    bottom: 5rem;
    z-index: 9999;
    font-size: 1.5rem;
    border-radius: 100%;
    padding: .25rem;
    cursor: pointer;
    color: #fff
}

.promo-wrap {
    background: #fa4f4f40;
    padding: 8px 10px 9px 16px;
    border-radius: 2rem;
    color: #ffffffde!important;
    text-transform: capitalize;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    white-space: nowrap
}

.promo-wrap .ni {
    font-size: 18px;
    padding: 4px;
    background: #904ffa6e;
    border-radius: 100%
}

.promo-wrap:hover span {
    transform: translateX(3px)
}

footer .address>div>div {
    display: flex;
    background: #450f15 !important;
    font-weight: 600;
    border-radius: .5rem!important;
    padding: 10px 15px;
    font-weight: 400;
    justify-content: center;
    line-height: 1.75;
    align-items: center
}

.alert-primary-alt {
    background: #904ffa52;
    color: #fffc
}

.alert .link {
    background: #904ffa78;
    color: #ffffffbf!important;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border-radius: .35rem;
    margin: 1px 0 3px 0;
    position: relative;
    top: 1px;
    line-height: 1;
    font-family: var(--font-sans-serif);
    padding: 5px 8px
}

.alert .icon .ni {
    position: relative;
    top: 1px;
    background: #904ffa78;
    padding: 1px 4px 3px;
    color: #ffffffb0!important;
    font-size: 18px;
    border-radius: .25rem;
    margin-left: 5px;
    display: inline-block
}

.alert .link:before {
    content: "";
    font-family: Nioicon;
    font-size: 17px;
    margin-right: 5px;
    line-height: 0
}

.alert.notes li {
    background: #282b518a;
    padding: 10px 15px;
    border-radius: .35rem;
    font-size: 15px;
    color: #ffffffb0!important;
    margin-bottom: 12px
}

.alert.notes {
    border: 2px solid #3a3c5c8f;
    color: #fffc
}

[data-menu-collapse=lg] .tw-menu-buttons>li {
    padding: 0 .5rem!important
}

#wallet .price,body.checkout label .price {
    font-weight: 500!important
}

.payment-options label {
    display: flex;
    justify-content: space-between
}

.payment-options .wallet div {
    display: flex;
    width: 100%;
    justify-content: space-between
}

.payment-options .wallet .price+div {
    width: unset!important
}

#wallet .balance {
    display: inline-block;
    font-size: 1.35rem;
    box-shadow: 0 0 2px 0 #6158d6e6;
    padding: .5rem 1rem;
    --bg-opacity: 0.25;
    --text-opacity: 1;
    color: rgba(var(--primary-rgb),var(--text-opacity))!important;
    background-color: #262d508f;
    color: var(--gray-300)!important
}

#wallet .balance .price {
    background: #450f15 !important;
    border-radius: .35rem;
    padding: 2px 8px 4px;
    margin-left: 1rem;
    font-size: 20px
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

#wallet .btn.pay {
    background: linear-gradient(90deg,RGBA(108,91,243,1) 2.76%,RGBA(164,37,254,1) 98.19%);
    color: #fff;
    font-size: 18px;
    padding: 6px 15px
}

#wallet .txn {
    --bg-opacity: 0.25;
    --text-opacity: 1;
    background-color: #262d508f;
    padding: 10px 15px;
    border-radius: .5rem;
}

.txn .wrapper {
    display: flex;
    justify-content: space-between;
    position: relative
}

#wallet .txn .wrapper>div {
    flex-direction: column
}

#wallet .txn .status {
    --bg-opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    width: fit-content;
    margin-top: 5px;
    border-radius: .25rem
}

#wallet .txn .chat {
    --bg-opacity: 0.2;
    opacity: 95%;
    font-size: 15px;
    font-weight: 400;
    width: fit-content;
    margin-top: 5px;
    border-radius: .25rem;
    height: 22px;
}

#wallet .txn .price {
    margin-bottom: 5px
}

.orders .txn .link {
    max-width: 275px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    margin: -2px 0 0
}

.orders .txn .link:before {
    content: '\1F517';
    opacity: .75;
    font-family: var(--font-sans-serif);
    margin: -1px 3px 1px 0
}

.orders .txn .link.username:before {
    content: '@'!important;
    margin: -2px 3px 2px 0!important
}

.orders .txn .badge {
    font-variant: all-small-caps;
    line-height: 1;
    padding: 0 7px 4px
}

#wallet .txn.null {
    justify-content: center;
    padding: 1rem 1rem 1.5rem;
    color: #ffffff8a;
    flex-direction: column;
    align-items: center
}

.pagination .page-link {
    background: rgba(var(--primary-rgb),var(--bg-opacity))!important;
    --bg-opacity: 0.25;
    border: 1px solid #2c2e60;
    font-size: 15px;
    padding: 4px 12px
}

.active>.page-link,.page-link.active {
    background: var(--primary)!important
}

.pagination .disabled .page-link {
    opacity: .75
}

.fw-semibold {
    font-weight: 600!important
}

.tw-hero-content .title {
    font-size: 2.75rem
}

.h2.title,h2.title {
    font-weight: 550;
    font-size: 2rem
}

#why-us .list li {
    font-size: 16px;
    line-height: 1.4
}

.product-container .plan .old-price {
    margin-right: 10px;
    opacity: .75;
    position: relative;
    font-size: 15px
}

.product-container .plan .old-price:before {
    content: '$';
    font-size: 14px;
    position: absolute;
    left: -11px;
    top: 1px
}

.product-container .plan .old-price:after {
    content: '';
    position: absolute;
    display: block;
    width: calc(100% + 12px);
    left: -12px;
    border-bottom: 2px solid;
    transform: translateY(-13px) rotate(-13deg);
    opacity: .8
}

.product-container .services {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: 3px;
    margin-bottom: 5px
}

.product-container .services .btn {
    white-space: nowrap;
    width: 100%
}

.product-container .services .btn:not(:last-child) {
    margin-right: 5px
}

.product-container .services::-webkit-scrollbar {
    height: 3px
}

.product-container .services .btn.active,.product-container .services .btn:focus {
    --bg-opacity: 0.5;
    border-color: #ffffff1a
}

.has-dropdown.active>.tw-menu-dropdown {
    height: unset
}

.tw-header-menu.header-menu-active {
    transform: none!important
}

.nav-backdrop {
    display: none
}

.header-menu-active+.nav-backdrop {
    display: block;
    position: fixed;
    left: 0;
    width: 35%;
    height: 100vh;
    top: 0;
    background: #121b2e1a;
    backdrop-filter: blur(1px);
    z-index: 100
}

.rating-stars {
    --star-size: 45px;
    --star-color: #ffffff82;
    --star-background: #d1c343;
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1
}

.rating-stars::before {
    content: '★★★★★';
    letter-spacing: var(--letter-spacing,3px);
    background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: var(--star-size)
}

footer .card-processors img {
    width: auto;
    max-width: 100%;
    height: 45px
}

.mx-1_5 {
    margin-left: .35rem!important;
    margin-right: .35rem!important
}

#product .howto.section-head .badge {
    display: none
}

#product .howto.section-head {
    padding-top: 5rem!important
}

.w-80 {
    width: 80%
}

.w-90 {
    width: 90%
}

#reviews .rating {
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    flex-direction: row-reverse;
    height: 143px;
    position: relative
}

#reviews .rating>input {
    display: none
}

#reviews .rating>label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-top: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    filter: grayscale(1);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
    transition: .2s
}

#reviews .rating>input:checked~label,#reviews .rating>input:checked~label~label {
    filter: grayscale(0)
}

#reviews .rating>input:not(:checked)~label:hover,#reviews .rating>input:not(:checked)~label:hover~label {
    transform: scale(1.08);
    filter: brightness(.75)
}

#reviews .emoji-wrapper {
    width: 100%;
    text-align: center;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0
}

#reviews .emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .15s
}

#reviews .emoji>svg {
    margin: 15px 0;
    width: 70px;
    height: 70px;
    flex-shrink: 0
}

#rating-1:checked~.emoji-wrapper>.emoji {
    transform: translateY(0)
}

#rating-2:checked~.emoji-wrapper>.emoji {
    transform: translateY(-100px)
}

#rating-3:checked~.emoji-wrapper>.emoji {
    transform: translateY(-200px)
}

#rating-4:checked~.emoji-wrapper>.emoji {
    transform: translateY(-300px)
}

#rating-5:checked~.emoji-wrapper>.emoji {
    transform: translateY(-400px)
}

#reviews .reviews .rating-stars {
    --star-size: 22px;
    --letter-spacing: 1px;
    --star-background: #fcd74fed
}

#reviews .reviews {
    max-height: 545px;
    padding: 0;
    overflow: auto;
    border-radius: .5rem;
    gap: 10px;
    display: flex;
    flex-direction: column;
    background: #1c233242
}

.no-scrollbar,.no-scrollbar::-webkit-scrollbar {
    display: none;
    scrollbar-width: none
}

.checkout.package .product-title .title {
    font-size: 2.5rem!important
}

[data-menu-collapse=lg] .tw-menu-item {
    transition: width .2s ease;
    width: 100%
}

[data-menu-collapse=lg] .on-dark .tw-menu-dropdown {
    box-shadow: inset 1px 0 2px 0 #4b2323;
}

[data-menu-collapse=lg] .tw-menu-item:hover .tw-menu-dropdown {
    width: fit-content;
    overflow: visible;
    height: fit-content!important
}

[data-menu-collapse=lg] .tw-menu-sub .tw-menu-sub {
    padding: 12px 0
}

.sub.tw-menu-toggle:after {
    position: absolute;
    right: 0;
    left: auto;
    margin: 0!important
}

.tw-menu-list::-webkit-scrollbar {
    width: 5px
}

.scrollX {
    overflow-x: scroll
}

.scrollX::-webkit-scrollbar {
    height: 3px
}

.no-scrollbar::-webkit-scrollbar {
    display: none
}

.no-scrollbar {
    scrollbar-width: none
}

#social-proof {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 99
}

.recent-order {
    display: flex;
    flex-direction: revert;
    background: #19212e;
    box-shadow: 0 0 3px 1px #262d50;
    border-radius: .5rem;
    padding: 10px 15px 10px 10px
}

.recent-order .flag {
    height: 14px;
    margin: -2px 4px 2px 4px;
    border-radius: 2px
}

#social-proof .icon {
    width: 50px;
    height: 50px;
    display: flex;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    background: rgb(var(--primary-rgb),.15);
    border-radius: .5rem
}

#social-proof .icon .ni {
    font-size: 35px;
    color: var(--primary)
}

#social-proof .order-product {
    font-weight: 500;
    opacity: .8;
    font-size: 15px
}

#social-proof small {
    font-size: 12px
}

#social-proof .close {
    position: absolute;
    font-weight: 800;
    font-size: 18px;
    right: 5px;
    top: 5px;
    opacity: .8;
    color: var(--primary);
    border-radius: 100%;
    cursor: pointer
}

.bits-usd .col-5 {
    display: flex;
    align-items: center;
    gap: 10px
}

.bits-usd div:nth-child(odd) .ni {
    font-size: 40px;
    color: var(--primary)
}

.bits-usd div:nth-child(even) {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

#checkout .alert .btn {
    background: #904ffa78;
    color: #fffffff2!important;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border-radius: .35rem;
    margin: 1px 0 3px 0;
    position: relative;
    top: 1px;
    line-height: 1;
    font-family: var(--font-sans-serif);
    padding: 5px 8px
}

.no-resize {
    resize: none
}

.modal {
    --modal-bg: #181c37
}

body.auth #brevo-conversations {
    display: none
}

body.kick, body.kick * {
    --primary: rgb(55 183 35);
    --litw-color: var(--primary);
    --primary-dark: rgb(52 173 33);
    --primary-rgb: 71,161,63;
    --dark-rgb: 22,29,31;
    --darker-rgb: 14,23,26;
    --gray-800: #102515;
    --accordion-border-color: #112a1245 !important;
    --accordion-bg: #112a1257 !important;
    --accordion-btn-bg: #112a1245 !important;
}

body.kick .product-title .title {
    text-shadow: 1px 1px #3dc12845 !important;
}
body.kick .product-container .plan {
	box-shadow: 0 0 2px 0 #2c8b39;
}

body.kick .text-gradient-primary {
    background: none;
    color: var(--primary);
    -webkit-text-fill-color: unset;
    background-clip: none;
}

body.kick .product-container .features {
    background-color: rgb(var(--primary-rgb), 0.1);
    border: 2px solid #2f5045;
}

body.kick .bg-gradient-primary {
    background: linear-gradient(var(--bg-gradient-angle,0deg),#225133de 48.76%,#31a91e66 98.19%);
}

body.kick .product-container .plan .price {
    background: #152616 !important;
    border: 2px solid #1b2f29;
}

body.kick .product-container .features .ni {
    color: var(--primary);
}

body.kick .tw-header-main.has-fixed.on-dark {
    background: #0b1c0e !important;
}

body.kick .product-container .plans {
    border-right-color: rgb(var(--primary-rgb), 0.1);
}

body.kick .feature-media {
    filter: hue-rotate(320deg);
}

body.kick .text-bg-indigo-soft-outline {
    /* color: var(--primary); */
    /* border-color: rgb(var(--primary-rgb), 0.2) !important; */
    filter: hue-rotate(337deg);
}

body.kick #why-us img {
    filter: hue-rotate(247deg);
}

body.kick.is-dark .text-bg-primary-soft-outline {
    background: rgb(var(--primary-rgb), 0.1) !important;
}

body.kick .logo-light {
    filter: hue-rotate(224deg);
}

body.kick .alert-primary-alt {
    background: #3db63652;
}

body.kick footer .address>div>div {
    background: #244e2b7a !important;
}

body.kick .bg-indigo {
    filter: hue-rotate(302deg);
}

body.kick .on-dark .tw-menu-dropdown {
    background: #102515;
}

body.kick .brevo-conversations__iframe {
    filter: hue-rotate(231deg);
}

body.kick .bg-shape-blur-e {
    filter: hue-rotate(269deg);
}
body.kick .promo-wrap {
    background: rgb(var(--primary-rgb), 32%) !important;
}
body.kick .promo-wrap  .ni {
    background: rgb(var(--primary-rgb), 43%) !important;
}
.table-dark {
	--table-bg: #11192a;
}
th:empty {
    border-left: none !important;
    border-top: 1px solid transparent !important;
    background: none !important;
}
.compare th {
    background-color: #1a1c43;
}
.compare .promo-wrap {
    padding: 10px 20px 12px;
}
.gt_selector, .gt_selector option {
    background: transparent;
    color: #fff;
    border: none;
    width: 85px;
}

.gt_selector option {
    background: #0e1423;
    line-height: 1.5;
    text-indent: 23px;
}

.gt_selector option:first-child {
    display: none;
}

.__jivoMobileButton {
    scale: 0.8;
    margin: -5px -10px !important;
}
.__jivoDesktopButton {
    scale: 0.8;
    margin: -5px -5px !important;
}

jdiv, jdiv * {
    font-family: var(--font-sans-serif) !important;
}
jdiv[class*="chatCopyright"] {
	display: none !important;
}
.fs-10 {
	font-size: 10px !important;
}
.fs-11 {
	font-size: 11px !important;
}
.fs-13 {
	font-size: 13px !important;
}

.lh-1 {
	line-height: 1 !important;
}
.lh-1_15 {
	line-height: 1.15 !important;
}
.lh-1_25 {
	line-height: 1.25 !important;
}
.lh-1_5 {
	line-height: 1.5 !important;
}
body #banner_notice {
    background: #904ffa52;
    color: #fff;
    opacity: 0.9;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 30px 6px;
}
#banner_notice .btn-close {
    position: absolute;
    right: 10px;
    opacity: 1;
    background: #ffffff24;
    padding: 4px;
    color: #fff;
}
.logo-text {
	color: white;
	font-weight: 700;
	font-size: 1rem;
	font-family: "Jakarta", sans-serif;
}