/* streamq.tv */
html,
body {
    background-color: #000721;
    font-family: "Golos Text";
    color: #fff;
    height: 100%;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}
html img,
body img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
html a,
body a {
    text-decoration: none;
}
html .container,
body .container {
    max-width: 1200px;
    padding: 0 24px;
}

body::after {
    content: "";
    background-color: #1370fd;
    height: 192px;
    width: 642px;
    max-width: 100%;
    opacity: 0.5;
    filter: blur(375px);
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -96px;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* Header */
.sp-header {
    padding-top: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 992px) {
    .sp-header {
        padding-top: 42px;
        padding-left: 16px;
        padding-right: 16px;
    }
}
.sp-header .flex {
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
}
.sp-header .flex .sp-header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .sp-header .flex .sp-header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9;
        border-radius: 12px;
        text-align: center;
        padding: 12px 12px 22px 12px;
    }
    .sp-header .flex .sp-header-nav .list {
        gap: 12px;
        flex-direction: column;
        display: flex !important;
    }
    .sp-header .flex .sp-header-nav .list .link,
    .sp-header .flex .sp-header-nav .list li {
        width: 100%;
    }
    .sp-header .flex .sp-header-nav .list .link {
        padding: 10px 16px;
    }
    .sp-header .flex .sp-header-nav .link-logout {
        justify-content: center;
        margin-top: 16px;
    }
}
.sp-header .logo {
    height: 32px;
}
@media (max-width: 992px) {
    .sp-header .logo {
        height: 35px;
    }
}
.sp-header .list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}
.sp-header .list .link {
    display: block;
    padding: 12px 16px;
    font-size: 18px;
    color: #c5c8cf;
    border-radius: 16px;
    transition: 400ms;
}
.sp-header .list .link.active {
    color: #1471ff;
}
.sp-header .list .link:hover {
    color: #fff;
    background: rgba(52, 53, 66, 0.5);
}
.sp-header .link-back {
    color: #04060d;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
}
@media (max-width: 576px) {
    .sp-header .link-back {
        font-size: 14px;
    }
}
.sp-header .link-logout {
    color: #c0d1f0;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
@media (min-width: 992px) {
    .sp-header .sp-toggle-header-nav {
        display: none;
    }
}

/* Home */
.sp-main.page-home .welcome-title {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 64px;
}
@media (max-width: 992px) {
    .sp-main.page-home .welcome-title {
        margin-bottom: 32px;
    }
}
@media (max-width: 576px) {
    .sp-main.page-home .welcome-title {
        font-size: 18px;
        margin-bottom: 12px;
        text-align: center;
    }
}
.sp-main.page-home .welcome-title span {
    background: linear-gradient(to right, #1370fd, #5391e4, #6bcd94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sp-main.page-home .welcome-desc {
    color: #6b6b6c;
    font-size: 22px;
    margin-bottom: 36px;
}
@media (max-width: 576px) {
    .sp-main.page-home .welcome-desc {
        font-size: 15px;
        margin-bottom: 24px;
        text-align: center;
    }
}

.sp-grid-home-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 24px;
    margin-bottom: 64px;
}
@media (max-width: 992px) {
    .sp-grid-home-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 576px) {
    .sp-grid-home-items {
        grid-gap: 16px;
        margin-bottom: 24px;
    }
}

.sp-home-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    border: 2px solid #1d1f28;
    background: linear-gradient(180deg, #171921 0%, #12141a 100%);
    padding: 40px 40px 60px 40px;
    position: relative;
    text-align: center;
    transition: 0.5s;
    overflow: hidden;
}
@media (max-width: 576px) {
    .sp-home-item {
        padding: 30px 30px 50px 30px;
    }
}
.sp-home-item .img img {
    width: 158px;
    transition: 0.5s;
}
.sp-home-item .img .img-hovered {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform: translateY(-52%) translateX(-50%);
    width: 300px;
    opacity: 0;
}
.sp-home-item .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    font-size: 25px;
    color: #5f5f5f;
    font-weight: 400;
    transition: 0.5s;
    width: 100%;
}
@media (max-width: 992px) {
    .sp-home-item .title {
        font-size: 20px;
    }
}
.sp-home-item:hover {
    border-color: rgba(83, 109, 157, 0.3);
    background: linear-gradient(180deg, #262d4b 0%, #1c2036 100%);
    box-shadow: 0px 13.977px 46.591px 2.229px rgba(19, 112, 253, 0.15);
}
.sp-home-item:hover .img .img-normal {
    opacity: 0;
}
.sp-home-item:hover .img .img-hovered {
    transform: translateY(-57%) translateX(-50%) scale(1.03);
    opacity: 1;
}
.sp-home-item:hover .title {
    background: linear-gradient(
        90deg,
        #1370fd 47.62%,
        #5391e4 100%,
        #6bcd94 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sp-home-item.tv-apps .img .img-hovered {
    width: 158px;
    transform: translateY(-48%) translateX(-50%);
}
.sp-home-item.tv-apps:hover .img .img-hovered {
    transform: translateY(-52%) translateX(-50%) scale(1.04);
}

.sp-grid-home-cards {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    grid-gap: 24px;
}
@media (max-width: 992px) {
    .sp-grid-home-cards {
        display: block;
    }
}

.sp-card-server-status {
    background: linear-gradient(180deg, #0e0e0e 0%, #182d20 100%);
    border-radius: 16px;
    padding: 16px;
    border: 2px solid #0e1b13;
}
.sp-card-server-status.danger {
    background: linear-gradient(180deg, #0e0e0e 0%, #310909 100%);
    border-radius: 16px;
    padding: 16px;
    border: 2px solid #310909;
}
@media (max-width: 992px) {
    .sp-card-server-status {
        margin-bottom: 24px;
    }
}
.sp-card-server-status .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.sp-card-server-status .head .title {
    font-size: 18px;
    color: #c0ceed;
}
@media (max-width: 576px) {
    .sp-card-server-status .head .title {
        font-size: 15px;
    }
}
.sp-card-server-status .head .label {
    padding: 4px 12px 4px 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 15px;
    color: #646f83;
    background: linear-gradient(
        180deg,
        rgba(89, 95, 130, 0.19) 0%,
        rgba(96, 105, 135, 0.21) 100%
    );
}
@media (max-width: 576px) {
    .sp-card-server-status .head .label {
        font-size: 13px;
    }
}
.sp-card-server-status .head .label .status-circle {
    height: 24px;
    width: 24px;
    position: relative;
}
.sp-card-server-status .head .label .status-circle::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #30e0a1;
    border-radius: 100%;
}

.sp-card-server-status .head .label .status-circle.danger::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #db3a3a;
    border-radius: 100%;
}

.sp-card-server-status .server-status-grid {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sp-card-server-status .server-status-grid .item {
    width: 5px;
    min-width: 5px;
    height: 44px;
    border: 0.5px solid #75d39c;
    background: linear-gradient(179deg, #16783f -2.36%, #6bcd94 50.72%), #d9d9d9;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.sp-card-server-status .server-status-grid .item.danger {
    width: 5px;
    min-width: 5px;
    height: 44px;
    border: 0.5px solid #75d39c;
    background: linear-gradient(179deg, #16783f -2.36%, #6bcd94 50.72%), #d9d9d9;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    filter: hue-rotate(220deg);
}
@media (max-width: 576px) {
    .sp-card-server-status .server-status-grid .item {
        height: 20px;
    }
}
.sp-card-server-status .alt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.sp-card-server-status .alt .text {
    color: #646f83;
    font-size: 15px;
}
@media (max-width: 576px) {
    .sp-card-server-status .alt .text {
        font-size: 13px;
    }
}
.sp-card-server-status .alt .uptime {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    gap: 4px;
}
@media (max-width: 576px) {
    .sp-card-server-status .alt .uptime {
        font-size: 13px;
    }
}

.sp-card-support {
    border-radius: 16px;
    border: 2px solid #232a4a;
    background: #03071c;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.sp-card-support.other {
    border: 1.5px solid #232a4a;
}
.sp-card-support .left {
    width: 265px;
}
.sp-card-support .left .title {
    font-size: 22px;
}
@media (max-width: 576px) {
    .sp-card-support .left .title {
        font-size: 15px;
    }
}
.sp-card-support .left .desc {
    color: #c5c8cf;
    font-size: 18px;
}
@media (max-width: 576px) {
    .sp-card-support .left .desc {
        font-size: 12px;
    }
}
.sp-card-support .right {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    height: 100%;
}
@media (max-width: 576px) {
    .sp-card-support .right .sp-contact-button .text {
        font-size: 13px;
        width: 70px;
    }
}

.sp-contact-button {
    flex: auto;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    color: #fff !important;
    font-size: 15px;
    height: 100%;
    line-height: 125%;
    transition: 400ms;
}
.sp-contact-button .icon-img,
.sp-contact-button .text {
    transition: 400ms;
}
.sp-contact-button.telegram {
    background-color: #007bff;
}
.sp-contact-button.whatsapp {
    background-color: #198754;
}
.sp-contact-button.streamq {
    background: linear-gradient(180deg, #04060d 0%, #202d75 100%);
}
.sp-contact-button:hover .icon-img {
    transform: scale(1.1);
}
.sp-contact-button:hover .text {
    transform: translateY(4px);
}

.sp-modal-contact .modal-dialog {
    max-width: 519px;
}
.sp-modal-contact .logo {
    height: 48px;
    margin-bottom: 24px;
}
.sp-modal-contact p {
    font-size: 18px;
    margin-bottom: 24px;
}
.sp-modal-contact .sp-contact-button {
    margin-bottom: 16px;
    height: 128px;
}

.modal .modal-content {
    border-radius: 16px;
    border: 2px solid #f2f4f8;
    background-clip: inherit;
}
.modal .modal-content .modal-body {
    padding: 24px;
    color: rgba(4, 6, 13, 0.65);
}
.modal .modal-content .modal-body .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #04060d;
    margin-bottom: 12px;
}
.modal .btn-close {
    height: 28px;
    width: 28px;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 9;
    box-shadow: none !important;
}
.modal .modal-footer {
    margin-top: 42px;
    padding: 42px 0 0 0;
    border-top: 1px solid rgba(4, 6, 13, 0.15);
}
@media (max-width: 768px) {
    .modal .modal-footer {
        margin-top: 24px;
        padding: 24px 0 0 0;
    }
}

/* Subscriptions Page */
.sp-grid-subscriptions-top {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    grid-gap: 24px;
    margin-bottom: 64px;
}
@media (max-width: 992px) {
    .sp-grid-subscriptions-top {
        display: block;
    }
}

.sp-card-attention {
    border: 1.5px solid #781616;
    padding: 16px;
    border-radius: 16px;
}
@media (max-width: 992px) {
    .sp-card-attention {
        margin-bottom: 8px;
    }
}
.sp-card-attention .title {
    font-size: 22px;
    font-weight: 400;
    background: linear-gradient(200deg, #781616 -25.61%, #ff5656 66.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
    .sp-card-attention .title {
        font-size: 15px;
        margin-bottom: 8px;
    }
}
.sp-card-attention .desc {
    font-size: 17px;
    color: #6b6b6c;
}
@media (max-width: 768px) {
    .sp-card-attention .desc {
        font-size: 13px;
    }
}

.sp-list-area {
    margin-bottom: 64px;
}

.sp-list-head {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .sp-list-head {
        margin-bottom: 24px;
    }
}
.sp-list-head .title {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 400;
}
@media (max-width: 768px) {
    .sp-list-head .title {
        font-size: 18px;
    }
}
.sp-list-head .desc {
    font-size: 22px;
    color: #6b6b6c;
    margin-top: 16px;
}
@media (max-width: 768px) {
    .sp-list-head .desc {
        font-size: 13px;
        margin-top: 8px;
    }
}
@media (max-width: 768px) {
    .sp-list-head .btn {
        padding: 4px 16px;
        height: 38px;
        font-size: 13px;
        white-space: nowrap;
        margin-left: 20px;
        min-width: 110px;
    }
}

.sp-subscription-item {
    border-radius: 16px;
    border: 2px solid rgba(83, 109, 157, 0.25);
    background: linear-gradient(180deg, #1b1e25 0%, #101117 100%);
    padding: 16px 20px 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}
@media (max-width: 992px) {
    .sp-subscription-item {
        flex-direction: column;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 16px;
    }
}
.sp-subscription-item .info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
@media (max-width: 992px) {
    .sp-subscription-item .info {
        margin-bottom: 16px;
    }
}
.sp-subscription-item .info .info-content .name {
    color: #c0d1f0;
    font-weight: 400;
    font-size: 22px;
}
.sp-subscription-item .info .info-content .code {
    color: #646f83;
    font-size: 15px;
}
.sp-subscription-item .status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
@media (max-width: 992px) {
    .sp-subscription-item .status {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}
.sp-subscription-item .status .progress-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.sp-subscription-item .status .progress-area .progress-bar {
    padding: 5px;
    border-radius: 1000px;
    border: 1.5px solid rgba(100, 111, 131, 0.5);
    background: #04060d;
    width: 135px;
}
@media (max-width: 576px) {
    .sp-subscription-item .status .progress-area .progress-bar {
        width: 72px;
    }
}
.sp-subscription-item
    .status
    .progress-area
    .progress-bar
    .progress-bar-inline {
    border-radius: 1000px;
    background: linear-gradient(270deg, #2e7315 0%, #5ada2b 100%);
    height: 6px;
}
.sp-subscription-item
    .status
    .progress-area
    .progress-bar
    .progress-bar-inline.orange {
    background: linear-gradient(270deg, #bb7525 0%, #da882b 100%);
}
.sp-subscription-item
    .status
    .progress-area
    .progress-bar
    .progress-bar-inline.red {
    background: linear-gradient(270deg, #b42a25 0%, #da312b 100%);
}
.sp-subscription-item .status .progress-area .progress-text {
    color: #646f83;
    font-size: 15px;
}
@media (max-width: 576px) {
    .sp-subscription-item .status .progress-area .progress-text {
        font-size: 13px;
    }
}
.sp-subscription-item .status .labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.sp-subscription-item .status .labels .label {
    padding: 6px 10px;
    font-size: 15px;
    border-radius: 1000px;
    font-weight: 500;
}
@media (max-width: 576px) {
    .sp-subscription-item .status .labels .label {
        font-size: 13px;
    }
}
.sp-subscription-item .status .labels .label.secondary {
    color: #c9c9c9;
    border: 1px solid rgba(201, 201, 201, 0.5);
    background: rgba(201, 201, 201, 0.15);
}
.sp-subscription-item .status .labels .label.success {
    color: #5ada2b;
    border: 1px solid rgba(90, 218, 43, 0.5);
    background: rgba(90, 218, 43, 0.15);
}
.sp-subscription-item .status .labels .label.dark {
    color: #c9c9c9;
    border: 1px solid rgba(201, 201, 201, 0.5);
    background: #04060d;
}
.sp-subscription-item .status .labels .label.danger {
    color: #da312b;
    border: 1px solid rgba(218, 49, 43, 0.5);
    background: rgba(218, 49, 43, 0.15);
}

.sp-subscription-item .status .labels .label.warning {
    color: var(--bs-warning);
    border: 1px solid rgba(var(--bs-warning-rgb));
    background: rgba(var(--bs-warning-rgb), 15%);
}
.sp-subscription-item .actions .link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    gap: 6px;
    transition: 0.2s;
}
.sp-subscription-item .actions .link .img-renew {
    animation: rotate 3s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.sp-subscription-item .actions .link:hover {
    color: #fff;
}
@media (max-width: 992px) {
    .sp-subscription-item .actions .link {
        padding: 9px;
        position: absolute;
        top: 16px;
        right: 16px;
    }
    .sp-subscription-item .actions .link img {
        width: 24px;
        height: 24px;
    }
    .sp-subscription-item .actions .link .link-text {
        display: none;
    }
}

.sp-card-devices {
    border-radius: 16px;
    border: 2px solid #262a3d;
    background: #12141e;
    padding: 16px 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .sp-card-devices {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding: 16px;
    }
}
.sp-card-devices .left {
    max-width: 270px;
}
@media (max-width: 768px) {
    .sp-card-devices .left {
        margin-bottom: 25px;
        max-width: 100%;
    }
}
.sp-card-devices .left .title {
    font-size: 18px;
    background: linear-gradient(90deg, #1370fd, #5391e4, #6bcd94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}
@media (max-width: 768px) {
    .sp-card-devices .left .title {
        font-size: 15px;
    }
}
.sp-card-devices .left .desc {
    color: #c5c8cf;
    font-size: 15px;
}
@media (max-width: 768px) {
    .sp-card-devices .left .desc {
        font-size: 13px;
        padding-right: 40%;
    }
}
.sp-card-devices .mid {
    height: 128px;
}
@media (max-width: 768px) {
    .sp-card-devices .mid {
        right: 16px;
        bottom: 16px;
        position: absolute;
        height: 100px;
    }
}
@media (max-width: 768px) {
    .sp-card-devices .btn-tertiary {
        height: 38px;
        font-size: 13px;
        padding: 4px 16px;
    }
}

.sp-modal-manage .modal-dialog {
    max-width: 763px;
}
.sp-modal-manage p {
    font-size: 15px;
    color: rgba(4, 6, 13, 0.65);
    margin-bottom: 12px;
}
@media (max-width: 576px) {
    .sp-modal-manage p {
        font-size: 13px;
    }
}
.sp-modal-manage .mb-42 {
    margin-bottom: 42px;
}
@media (max-width: 576px) {
    .sp-modal-manage .mb-42 {
        margin-bottom: 24px;
    }
}
.sp-modal-manage .note-label {
    border-radius: 6px;
    border: 1.5px solid #e3e3e3;
    padding: 10px;
    font-size: 13px;
    color: rgba(4, 6, 13, 0.65);
    font-weight: 600;
    display: inline-block;
}
.sp-modal-manage .iptv-login-details-head {
    position: relative;
    margin-bottom: 12px;
}
.sp-modal-manage .iptv-login-details-head .icon-chevron-down {
    position: absolute;
    top: 0;
    right: 0;
}
@media (min-width: 768px) {
    .sp-modal-manage .iptv-login-details-head .icon-chevron-down {
        display: none;
    }
}
.sp-modal-manage .iptv-login-details-head .icon-chevron-down.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.sp-modal-manage .install-streamq-player .flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.sp-modal-manage .install-streamq-player .label {
    padding: 6px 10px;
    border: 1px solid rgba(19, 112, 253, 0.5);
    background: rgba(19, 112, 253, 0.15);
    font-size: 15px;
    color: #1370fd;
    border-radius: 100px;
    font-weight: 500;
}
.sp-modal-manage .install-streamq-player p span {
    color: #1370fd;
}
.sp-modal-manage .install-streamq-player p strong {
    font-weight: 600;
    color: #04060d;
}
@media (max-width: 768px) {
    .sp-modal-manage .modal-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .sp-modal-manage .modal-footer .btn {
        margin: 0;
    }
}

.input-area {
    margin-bottom: 24px;
}
@media (max-width: 576px) {
    .input-area {
        margin-bottom: 16px;
    }
}
.input-area label {
    font-size: 13px;
    color: rgba(4, 6, 13, 0.65);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.input-area small {
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}
.input-area .flex-inputs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
@media (max-width: 576px) {
    .input-area .flex-inputs {
        flex-direction: column;
    }
}
.input-area .flex-inputs .input-copy {
    flex: 1;
}
@media (max-width: 576px) {
    .input-area .flex-inputs .input-copy {
        width: 100%;
    }
}

.input-copy {
    position: relative;
}
.input-copy .copy-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    cursor: pointer;
}
.input-copy .form-control {
    padding-right: 40px !important;
}

.sp-modal-subscription-item {
    border-radius: 12px;
    border: 2px solid #fff;
    background: linear-gradient(270deg, #04060d -33.75%, #202d75 102.96%);
    box-shadow: 0px 0px 0px 2px #cbd4ff;
    padding: 24px;
    color: #fff;
    margin-bottom: 42px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 576px) {
    .sp-modal-subscription-item {
        padding: 16px;
        margin-bottom: 24px;
    }
}
.sp-modal-subscription-item .info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.sp-modal-subscription-item .info .info-content .name {
    color: #fff;
    font-weight: 400;
    font-size: 22px;
}
@media (max-width: 576px) {
    .sp-modal-subscription-item .info .info-content .name {
        font-size: 15px;
    }
}
.sp-modal-subscription-item .info .info-content .code {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
}
@media (max-width: 576px) {
    .sp-modal-subscription-item .info .info-content .code {
        font-size: 13px;
    }
}
.sp-modal-subscription-item .date {
    font-size: 15px;
    text-align: right;
}

.sp-modal-subscription-item .date .key {
    font-weight: 600;
    color: #fff;
}
.sp-modal-subscription-item .date .value {
    color: rgba(255, 255, 255, 0.65);
}

.sp-modal-renew .modal-dialog {
    max-width: 544px;
}
.sp-modal-renew p {
    font-size: 15px;
    color: rgba(4, 6, 13, 0.65);
    margin-bottom: 12px;
}
@media (max-width: 576px) {
    .sp-modal-renew p {
        font-size: 13px;
    }
}
.sp-modal-renew p strong {
    font-weight: 600;
}
.sp-modal-renew .modal-title span {
    color: #1370fd;
}
.sp-modal-renew .title-2 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    color: #04060d;
}
.sp-modal-renew .mb-42 {
    margin-bottom: 42px;
}
@media (max-width: 576px) {
    .sp-modal-renew .mb-42 {
        margin-bottom: 24px;
    }
}
.sp-modal-renew .modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sp-modal-renew .modal-footer .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
@media (max-width: 576px) {
    .sp-modal-renew .modal-footer .left {
        margin-bottom: 8px !important;
    }
}
.sp-modal-renew .modal-footer .btn {
    margin: 0;
}

/* Affiliates */
.sp-affiliates-hero {
    border-radius: 16px;
    border: 2px solid #19202c;
    background: #121419;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25) inset;
    position: relative;
    display: grid;
    grid-template-columns: 380px 1fr;
    padding-top: 16px;
    overflow: hidden;
    margin-bottom: 64px;
}
@media (max-width: 768px) {
    .sp-affiliates-hero {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 24px;
        padding: 0;
    }
}
.sp-affiliates-hero::before {
    content: "";
    height: 290px;
    width: 290px;
    border-radius: 289px;
    opacity: 0.5;
    background: #ff9a00;
    filter: blur(125px);
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -145px;
    z-index: 2;
    pointer-events: none;
}
.sp-affiliates-hero::after {
    content: "";
    height: 494px;
    width: 494px;
    border-radius: 494px;
    opacity: 0.5;
    background: #1370fd;
    filter: blur(250px);
    display: block;
    position: absolute;
    right: -186px;
    bottom: -378px;
    z-index: 2;
    pointer-events: none;
}
.sp-affiliates-hero .left {
    position: relative;
    z-index: 1;
}
@media (max-width: 1200px) {
    .sp-affiliates-hero .left .img-left {
        position: absolute;
        bottom: 0;
        left: 75px;
    }
}
@media (max-width: 768px) {
    .sp-affiliates-hero .left {
        width: 50%;
        height: 185px;
    }
}
.sp-affiliates-hero .content {
    padding: 30px 55px 40px 55px;
    position: relative;
    z-index: 3;
}
@media (max-width: 992px) {
    .sp-affiliates-hero .content {
        padding: 20px 30px;
    }
}
@media (max-width: 768px) {
    .sp-affiliates-hero .content {
        padding: 24px 24px 12px 24px;
        position: static;
    }
}
.sp-affiliates-hero .content .title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}
@media (max-width: 992px) {
    .sp-affiliates-hero .content .title {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .sp-affiliates-hero .content .title {
        font-size: 15px;
        margin-bottom: 8px;
    }
}
.sp-affiliates-hero .content .title span {
    font-weight: 700;
    background: linear-gradient(266deg, #0f47ff 25.53%, #b7c3ff 86.34%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sp-affiliates-hero .content p {
    font-size: 18px;
    color: #6b6b6c;
    margin-bottom: 64px;
}
@media (max-width: 992px) {
    .sp-affiliates-hero .content p {
        margin-bottom: 32px;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .sp-affiliates-hero .content p {
        font-size: 13px;
        margin-bottom: 0;
    }
}
.sp-affiliates-hero .content .actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
@media (max-width: 768px) {
    .sp-affiliates-hero .content .actions {
        flex-direction: column;
        position: absolute;
        right: 30px;
        bottom: 30px;
    }
}
.sp-affiliates-hero .content .actions .link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .sp-affiliates-hero .content .actions .link img {
        display: none;
    }
}

.sp-table-affiliates thead th:last-child {
    width: 160px;
}
.sp-table-affiliates .link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-weight: 500;
}
.sp-table-affiliates .no-reward {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.sp-grid-referrals {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    grid-gap: 24px;
}
@media (max-width: 992px) {
    .sp-grid-referrals {
        display: block;
    }
}

.sp-card-peoples {
    border-radius: 16px;
    border: 2px solid #171b23;
    background: linear-gradient(180deg, #1b1e25 0%, #101117 100%);
    overflow: hidden;
    position: relative;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .sp-card-peoples {
        margin-bottom: 8px;
    }
}
.sp-card-peoples::before {
    content: "";
    background-color: #842cc8;
    filter: blur(75px);
    display: block;
    height: 95px;
    width: 95px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -47px;
}
.sp-card-peoples .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.sp-card-peoples .left .key {
    font-size: 18px;
}
.sp-card-peoples .value {
    font-size: 22px;
    font-weight: 700;
    color: #c4aee6;
}

.sp-card-referral-link {
    border-radius: 16px;
    border: 2px solid #171b23;
    background: linear-gradient(180deg, #1b1e25 0%, #101117 100%);
    padding: 16px;
}
.sp-card-referral-link .title {
    font-size: 18px;
    margin-bottom: 16px;
}
.sp-card-referral-link .input-copy .form-control {
    border: 1.5px solid rgba(83, 109, 157, 0.75);
    background: #303641;
    border-color: #333a48;
    color: rgba(255, 255, 255, 0.65);
}

.sp-modal-rules .modal-dialog {
    max-width: 544px;
}
.sp-modal-rules ol {
    padding-left: 20px;
}
.sp-modal-rules ol > li::marker {
    font-weight: 700;
}
.sp-modal-rules ul {
    margin-bottom: 12px;
}
.sp-modal-rules ul li {
    font-size: 15px;
    color: rgba(4, 6, 13, 0.65);
    margin-bottom: 0;
    list-style-type: disc;
}
@media (max-width: 576px) {
    .sp-modal-rules ul li {
        font-size: 13px;
    }
}
.sp-modal-rules ul li strong {
    font-weight: 600;
}
.sp-modal-rules .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.sp-modal-rules .modal-footer .btn {
    margin: 0;
}

/* Checkout Page */
.sp-main.checkout-page .page-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}
@media (max-width: 576px) {
    .sp-main.checkout-page .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.sp-main.checkout-page .step-title {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    opacity: 0.7;
}

.sp-checkout-hero {
    border-radius: 16px;
    border: 2px solid #fff;
    background: linear-gradient(270deg, #04060d -33.75%, #202d75 102.96%);
    box-shadow: 0px 0px 0px 2px #cbd4ff;
    color: #fff;
    padding: 36px;
    margin-bottom: 64px;
}
@media (max-width: 576px) {
    .sp-checkout-hero {
        padding: 24px;
        margin-bottom: 32px;
    }
}
.sp-checkout-hero .title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .sp-checkout-hero .title {
        font-size: 24px;
    }
}
@media (max-width: 576px) {
    .sp-checkout-hero .title {
        font-size: 15px;
        margin-bottom: 6px;
    }
}
.sp-checkout-hero .desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 22px;
}
@media (max-width: 992px) {
    .sp-checkout-hero .desc {
        font-size: 15px;
    }
}
@media (max-width: 576px) {
    .sp-checkout-hero .desc {
        font-size: 13px;
    }
}

.sp-checkout-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 36px;
}
@media (max-width: 576px) {
    .sp-checkout-card {
        margin-bottom: 24px;
    }
}
.sp-checkout-card .head-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}
.sp-checkout-card .head-title .number {
    height: 42px;
    min-width: 42px;
    width: 42px;
    border-radius: 8px;
    font-size: 22px;
    color: #fff;
    border-radius: 8px;
    background-color: #1370fd;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 576px) {
    .sp-checkout-card .head-title .number {
        width: 32px;
        min-width: 32px;
        height: 32px;
        font-size: 18px;
        border-radius: 6px;
    }
}
.sp-checkout-card .head-title .title {
    font-size: 22px;
    font-weight: 500;
}
@media (max-width: 576px) {
    .sp-checkout-card .head-title .title {
        font-size: 18px;
    }
}
.sp-checkout-card .input-area .label-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #04060d;
    margin-bottom: 16px;
}
.sp-checkout-card .input-area .flex-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    gap: 12px;
}
@media (max-width: 576px) {
    .sp-checkout-card .input-area .flex-radio {
        flex-direction: column;
    }
}
.sp-checkout-card .input-area .flex-radio .btn-sp-radio {
    flex: auto;
    margin-bottom: 0 !important;
}
@media (max-width: 576px) {
    .sp-checkout-card .input-area .flex-radio .btn-sp-radio {
        width: 100%;
    }
}
.sp-checkout-card small {
    color: #7e7f82;
    font-size: 13px;
    margin-bottom: 16px;
    display: block;
}
.sp-checkout-card .flex-payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
@media (max-width: 576px) {
    .sp-checkout-card .flex-payment-methods {
        flex-direction: column;
    }
}
.sp-checkout-card .flex-payment-methods .btn-sp-radio {
    flex: 1;
}
@media (max-width: 576px) {
    .sp-checkout-card .flex-payment-methods .btn-sp-radio {
        width: 100%;
    }
}

.btn-sp-radio {
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    color: #7e7f82 !important;
    font-weight: 400 !important;
    border: 1.5px solid #e8e8e8;
    background-color: #f8f8f8;
    transition: 0.2s;
    padding: 4px 6px !important;
}
.btn-sp-radio.payment {
    height: 52px !important;
    padding: 4px 10px 4px 16px !important;
    justify-content: space-between !important;
}
.btn-sp-radio.payment .radio-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.btn-sp-radio.payment .radio-icon {
    border-radius: 100%;
    border: 1.25px solid #e8e8e8;
    background: #fff;
    height: 20px;
    width: 20px;
    min-width: 20px;
    padding: 2px;
}
.btn-sp-radio.payment .radio-icon .radio-icon-inline {
    height: 100%;
    width: 100%;
    border-radius: 100%;
}
.btn-sp-radio.payment .radio-text {
    font-size: 15px;
    color: #04060d;
    text-align: left;
}
@media (max-width: 576px) {
    .btn-sp-radio.payment .radio-text {
        font-size: 13px;
    }
}
.btn-sp-radio:hover {
    border: 1.5px solid #e8e8e8 !important;
    background-color: #f8f8f8 !important;
    opacity: 0.7;
}

.btn-check:checked + .btn:not(.payment),
.btn.active:not(.payment),
.btn.show:not(.payment),
.btn:first-child:active:not(.payment),
:not(.btn-check) + .btn:active:not(.payment) {
    border: 1.5px solid #6ca0ff !important;
    background: #172154 !important;
    color: #fff !important;
}

.btn-check:checked + .btn.payment,
.btn.payment.active,
.btn.payment.show,
.btn.payment:first-child:active,
:not(.btn-check) + .btn.payment:active {
    color: #7e7f82 !important;
    border: 1.5px solid #e8e8e8;
    background-color: #f8f8f8;
}

.btn-check:checked + .btn.payment .radio-icon .radio-icon-inline,
.btn.payment.active .radio-icon .radio-icon-inline,
.btn.payment.show .radio-icon .radio-icon-inline,
.btn.payment:first-child:active .radio-icon .radio-icon-inline,
:not(.btn-check) + .btn.payment:active .radio-icon .radio-icon-inline {
    background: #1370fd !important;
}

.row-checkout {
    --bs-gutter-x: 36px;
    margin-bottom: 300px;
}
@media (max-width: 992px) {
    .row-checkout {
        margin-bottom: 100px;
    }
}

.sp-order-summary .head-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sp-order-summary .head-title.details {
    border-top: 1px solid #e8e8e8;
    margin-top: 24px;
    padding-top: 24px;
    border-bottom: 0;
}
.sp-order-summary .price-list {
    color: #7e7f82;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 576px) {
    .sp-order-summary .price-list {
        gap: 12px;
        font-size: 13px;
    }
}
.sp-order-summary .price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sp-order-summary .price-list li .right {
    color: #04060d;
    white-space: nowrap;
    margin-left: 8px;
}
.sp-order-summary .price-list.list-package-details {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}
.sp-order-summary .coupon-code {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}
.sp-order-summary .coupon-code .with-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.sp-order-summary .coupon-code .with-btn .btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 45px;
    border: 1.5px solid #6ca0ff;
    background: #1370fd;
    color: #fff;
    padding: 4px 16px !important;
    border-radius: 6px !important;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}
.sp-order-summary .total-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
}
@media (max-width: 576px) {
    .sp-order-summary .total-area {
        font-size: 18px;
    }
}
.sp-order-summary small {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
}
.sp-order-summary small a {
    text-decoration: underline;
    color: #5391e4;
}
.sp-order-summary .toggle-package-details {
    cursor: pointer;
}

/* Checkout Steps */
.checkout-steps-container {
    max-width: 600px;
    margin: 40px auto 120px auto;
}
.checkout-steps-container .btn-primary {
    border-radius: 16px !important;
}

.sp-checkout-step:not(.active) {
    display: none;
}
.sp-checkout-step .flex-payment-methods {
    display: block;
}
.sp-checkout-step .flex-payment-methods .btn-sp-radio:not(:last-child) {
    margin-bottom: 10px;
}
.sp-checkout-step .card-summary {
    border: 1.5px solid #e8e8e8;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.sp-checkout-step .total-area {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sp-checkout-step .title-payment-methods {
    margin-bottom: 10px;
    font-size: 15px;
}
.sp-checkout-step .title-payment-methods strong {
    font-weight: 600;
}
.sp-checkout-step .radio-price {
    font-size: 18px;
    font-weight: 500;
    color: #343434;
}
.sp-checkout-step .radio-label {
    font-size: 13px;
    margin-left: 14px;
    color: #1370fd;
}
.sp-checkout-step .radio-label-payment {
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 1000px;
    font-weight: 500;
    color: #5ada2b;
    border: 1px solid rgba(90, 218, 43, 0.5);
    background: rgba(90, 218, 43, 0.15);
    margin-left: 12px;
}
@media (max-width: 576px) {
    .sp-checkout-step .radio-label-payment {
        display: inline-block;
        margin-left: 0;
        margin-top: 6px;
        padding: 2px 6px;
        font-size: 12px;
    }
}
@media (max-width: 576px) {
    .sp-checkout-step .right.paypal {
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}
.sp-checkout-step .link.prev-step {
    color: #6c757d;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
}
.sp-checkout-step .price-list {
    color: #7e7f82;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 576px) {
    .sp-checkout-step .price-list {
        gap: 12px;
        font-size: 13px;
    }
}
.sp-checkout-step .price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sp-checkout-step .price-list li .right {
    color: #04060d;
    white-space: nowrap;
    margin-left: 8px;
}
.sp-checkout-step .price-list.list-package-details {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}
.sp-checkout-step .text-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}
.sp-checkout-step .text-desc {
    font-size: 14px;
    color: #515457;
}
.sp-checkout-step.step-cashapp .checkout-steps-container {
    max-width: 800px;
}
.sp-checkout-step.step-cashapp .checkout-steps-container .text-desc {
    font-size: 15px;
}
.sp-checkout-step.step-cashapp .checkout-steps-container ol li {
    margin: 5px 0;
    color: #3a3c3e;
    font-size: 15px;
}
.sp-checkout-step.step-cashapp .checkout-steps-container ol li strong {
    font-weight: 600;
    color: #1370fd;
}
.sp-checkout-step.step-cashapp .checkout-steps-container .video-section {
    max-width: 500px;
    margin: auto;
}
.sp-checkout-step.step-cashapp .checkout-steps-container .video-area {
    padding-bottom: 56.25%;
    position: relative;
}
.sp-checkout-step.step-cashapp .checkout-steps-container .video-area iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.cashapp-area {
    background-color: rgba(0, 214, 79, 0.03);
    border: 1px solid rgba(0, 214, 79, 0.07);
    padding: 24px;
    border-radius: 12px;
    color: #343434;
    margin-top: 24px;
    margin-bottom: 24px;
}
.cashapp-area .ca-head-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.cashapp-area p {
    font-size: 15px;
}
.cashapp-area .ca-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}
.cashapp-area .ca-input {
    background-color: rgba(0, 214, 79, 0.06);
    height: 60px;
    padding: 4px 20px;
    position: relative;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 50px;
}
.cashapp-area .ca-input .ca-input-text {
    overflow: hidden;
}
.cashapp-area .ca-input .ca-input-copy {
    height: 42px;
    width: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.cashapp-area .ca-input .ca-input-copy img {
    height: 24px;
}
.cashapp-area .ca-input .ca-input-copy:hover {
    transform: scale(1.06) translateY(-50%);
}

/* Footer */
.sp-footer {
    padding-top: 115px;
    padding-bottom: 60px;
}
.sp-footer .content-area {
    max-width: 702px;
    margin: auto;
}
.sp-footer .content-area p {
    font-size: 15px;
}
.sp-footer .content-area .text-copyright {
    color: #f3f3f3;
}
.sp-footer .content-area .text-alt {
    color: #6b6b6c;
}

/* General */
.sp-main {
    margin-top: 55px;
    flex: 1;
}
@media (max-width: 992px) {
    .sp-main {
        margin-top: 80px;
    }
}
@media (max-width: 576px) {
    .sp-main {
        margin-top: 24px;
    }
}

.sp-table-bg {
    border: 2px solid #171b23;
    background: #121419;
    padding: 16px;
    border-radius: 16px;
}

.sp-table {
    color: #c0d1f0;
}
.sp-table.table > :not(caption) > * > * {
    border-color: #262a3d;
}
@media (max-width: 992px) {
    .sp-table thead {
        display: none;
    }
}
.sp-table thead th {
    color: rgba(192, 209, 240, 0.5);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 16px 32px 16px;
}
@media (max-width: 992px) {
    .sp-table tbody tr {
        border-bottom: 2px solid #333946;
        border-radius: 8px;
    }
    .sp-table tbody tr:last-child {
        border-bottom: 0;
    }
}
.sp-table tbody tr td {
    font-size: 15px;
    color: #c0d1f0;
    padding: 32px 16px 32px 16px;
}
@media (max-width: 992px) {
    .sp-table tbody tr td {
        display: flex;
        flex-direction: column;
        border: 0;
        padding: 12px;
    }
}
.sp-table tbody tr td .show-mobile {
    display: block;
    margin-right: 8px;
    color: #fff;
}
@media (min-width: 992px) {
    .sp-table tbody tr td .show-mobile {
        display: none;
    }
}
.sp-table tbody tr:last-child td {
    padding-bottom: 0;
    border-bottom: 0;
}

/* General */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.btn {
    box-shadow: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    height: 50px;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 24px;
    border-radius: 8px !important;
}
.btn.rounded-pill {
    border-radius: 100px !important;
}
.btn.btn-sm {
    height: 34px;
    padding: 2px 12px;
    border-radius: 6px !important;
}
.btn.btn-primary {
    border: 1.5px solid #4f6cda;
    color: #fff;
    background: linear-gradient(180deg, #4462ff 0%, #182981 100%);
    overflow: hidden;
    position: relative;
}
.btn.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #4462ff 0%, #182981 252.94%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.btn.btn-primary .text {
    position: relative;
    z-index: 1;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: #fff !important;
}
.btn.btn-primary:hover::after,
.btn.btn-primary:focus::after {
    opacity: 1;
}
.btn.btn-secondary {
    border: 1.5px solid #e3e3e3;
    background: #fff;
    color: #04060d;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    border: 1.5px solid #e3e3e3;
    background: #efefef;
    color: #04060d;
}
.btn.btn-tertiary {
    border: 1.5px solid rgba(83, 109, 157, 0.25);
    background: linear-gradient(180deg, #15192b 0%, #121524 100%);
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 4px 16px !important;
}
.btn.btn-tertiary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #313968 0%, #0c0f1c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.btn.btn-tertiary .text {
    position: relative;
    z-index: 1;
}
.btn.btn-tertiary:hover,
.btn.btn-tertiary:focus {
    border: 1.5px solid rgba(83, 109, 157, 0.25);
    color: #fff;
}
.btn.btn-tertiary:hover::after,
.btn.btn-tertiary:focus::after {
    opacity: 1;
}
.btn.btn-whatsapp {
    border: 1.5px solid #198754;
    background: #198754;
    color: #fff;
    padding: 4px 24px 4px 16px;
    gap: 6px;
}
.btn.btn-whatsapp img {
    height: 24px;
}
.btn.btn-whatsapp:hover,
.btn.btn-whatsapp:focus {
    border: 1.5px solid #167146;
    background: #167146;
    color: #fff;
}
.btn.btn-telegram {
    border: 1.5px solid #007bff;
    background: #007bff;
    color: #fff;
    padding: 4px 24px 4px 16px;
    gap: 6px;
}
.btn.btn-telegram img {
    height: 24px;
}
.btn.btn-telegram:hover,
.btn.btn-telegram:focus {
    border: 1.5px solid #0061ca;
    background: #0061ca;
    color: #fff;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
}

.form-control {
    box-shadow: none !important;
    background-color: #f3f3f3;
    border-color: #e3e3e3;
    border-width: 1.5px;
    height: 45px;
    color: rgba(4, 6, 13, 0.6509803922);
    font-size: 14px;
}
.form-control:focus,
.form-control:hover {
    background-color: #f3f3f3;
    border-color: #e3e3e3;
    color: rgba(4, 6, 13, 0.6509803922);
}

.form-select {
    box-shadow: none !important;
    cursor: pointer;
}

.form-check-input {
    height: 18px;
    width: 18px;
    border-color: #dedede;
    border-radius: 4px;
    box-shadow: none !important;
}
.form-check-input:checked {
    background-color: #e25303;
    border-color: #e25303;
}

.form-check-label {
    margin-left: 2px;
    font-size: 14px;
    position: relative;
    top: 1px;
}

.text-success {
    color: #75d39c !important;
}

.text-danger {
    color: #d37575 !important;
}

.se-all-devices {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}
.se-all-devices::before {
    content: "";
    width: 200px;
    background: linear-gradient(to right, #03071c, transparent);
    display: block;
    position: absolute;
    left: 0;
    bottom: 40px;
    height: 52px;
    z-index: 1;
}
.se-all-devices::after {
    content: "";
    width: 200px;
    background: linear-gradient(to left, #03071c, transparent);
    display: block;
    position: absolute;
    right: 0;
    bottom: 40px;
    height: 52px;
    z-index: 1;
}
.se-all-devices .text-mini {
    margin-bottom: 30px;
}
.se-all-devices .logo-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: scroll-logos 20s linear infinite;
    position: relative;
}
.se-all-devices .logo-list .item {
    width: 140px;
    min-width: 140px;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-700px);
    }
}

.form-floating .form-control {
    padding: 30px 16px 16px 16px !important;
}
.form-floating > label {
    padding: 16px !important;
    opacity: 0.6;
    font-size: 14px;
    white-space: normal;
}

@media (max-width: 470px) {
    .form-floating .label-large {
        top: -25px;
    }
}

/* NEW */
.register-page {
    padding: 30px 0;
}

.form-check {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 6px 7px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
}

.form-check input {
    height: 18px;
    width: 18px;
    min-width: 18px;
    float: none !important;
    margin: 0 !important;
    background-color: #fff;
    border-color: #dee2e6;
}

.form-check label {
    font-size: 13px;
    margin-left: 8px;
}

.stn-card-login .head-title .title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.stn-card-login .head-title p {
    font-size: 14px;
    opacity: 0.8;
}

.stn-card-login .form-check-area .label {
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.stn-card-login .form-check-area small {
    margin-top: 8px;
}

.stn-card-login .form-check-area .form-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

.stn-card-login .form-check-area .form-check {
    padding: 16px;
    margin: 0;
}

.stn-card-login .form-check-area .form-check label {
    font-size: 16px;
}

.stn-card-login small {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
    display: block;
}

.stn-card-login .btn {
    width: 100%;
    height: 60px;
    font-size: 18px;
}

/* Form */
.stn-header {
    text-align: center;
    padding: 30px 0;
}

.stn-header .img-logo {
    height: 30px;
}

.text-mini {
    opacity: 0.7;
    font-size: 14px;
    margin: 10px 0;
}

/* Comments */
.st-checkout-comments {
    background-color: #f7f7f7;
    border: 1px solid #eeeeee;
    padding: 25px;
    border-radius: 4px;
}

.st-checkout-comments .info {
    margin-bottom: 25px;
}

.st-checkout-comments h3 {
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.st-checkout-comments .feature-list li::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z'%3E%3C/path%3E%3C/svg%3E");
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 4px;
}

.st-checkout-comments .feature-list li {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.st-checkout-comments .comment-box {
    margin-bottom: 25px;
}

.st-checkout-comments .comment-box .comment-title {
    font-size: 16px;
    color: #565656 !important;
    font-weight: 600;
    margin-bottom: 15px;
}

.st-checkout-comments .comment-box img {
    height: 20px;
    margin-bottom: 12px;
}

.st-checkout-comments .comment-box p {
    color: #737373;
    font-size: 14px;
    line-height: 21px;
    font-style: italic;
}

.st-checkout-comments .comment-box .comment-author {
    font-size: 13px;
    font-style: normal;
}

.loading-overlay {
    display: none;
    background: rgba(255, 255, 255, 0.7);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9998;
    align-items: center;
    justify-content: center;
}

.loading-overlay.is-active {
    display: flex;
}

/* Order Complete */
.st-order-complete {
    background-color: #03071c;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.st-order-complete .logo {
    height: 32px;
    margin-bottom: 40px;
}

.st-order-complete .oc-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.st-order-complete .oc-id {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.st-order-complete p {
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 21px;
}

.st-order-complete .oc-info {
    text-align: left !important;
    max-width: 1020px;
    margin: auto;
    padding: 0 20px;
}

.st-order-complete .oc-info img {
    height: 24px;
    margin-bottom: 8px;
}

.st-order-complete .oc-info p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.st-order-complete hr {
    border-top: 1px solid #fff !important;
}

.st-order-complete .contacts {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 30px 0 10px 0;
}

.st-order-complete .contacts img {
    max-height: 143px !important;
}

.st-order-complete .copybutton {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px !important;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 14px !important;
    margin: 0 auto 30px auto;
    width: 440px;
    max-width: 100%;
}

.st-order-complete .copybutton i {
    margin-right: 8px;
}

.st-order-complete .gobutton {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px !important;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 14px !important;
    margin: 0 auto 60px auto;
    width: 440px;
    max-width: 100%;
    background-color: #fff !important;
    color: var(--bs-dark);
}

.st-order-complete .gobutton i {
    margin-left: 8px;
}

.oc-textarea {
    max-width: 440px;
    background-color: #111737;
    padding: 20px;
    border-radius: 14px;
    margin: 20px auto;
    text-align: left !important;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.img-copy {
    position: absolute;
    left: 70px;
    top: 230px;
    width: 240px;
}

.button-grid img {
    max-height: 114px;
    max-width: 100%;
}

.video-container {
    max-width: 600px;
    margin: 20px auto;
}

.video {
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.video video {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

@media (min-width: 992px) {
    .button-grid img {
        display: none;
    }
}

@media (max-width: 992px) {
    .st-order-complete .oc-title {
        font-size: 26px;
    }
    .img-copy {
        display: none;
    }
    .button-grid {
        display: grid;
        grid-template-columns: 1fr 120px 1fr;
        align-items: start;
        text-align: center;
        justify-items: center;
        padding: 0 10px;
        grid-gap: 10px;
    }
    .st-order-complete {
        padding: 50px 0;
    }
    .st-order-complete .logo {
        height: 26px;
    }
    .oc-textarea {
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .oc-textarea {
        max-width: 100%;
        margin: 15px;
    }
}

.se-need-help {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
}
.se-need-help .title {
    font-weight: 500 !important;
    font-size: 37px;
    margin-bottom: 30px;
    margin-top: 0;
}
.se-need-help .flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .se-need-help {
        padding: 10px;
    }
    .se-need-help .flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .se-need-help .link {
        margin: 0 !important;
    }
}
.se-need-help .link {
    background-color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90px;
    padding: 0 40px;
    text-align: center;
    border-radius: 14px;
    color: #fff;
    transition: 0.2s;
    text-decoration: none;
    margin: 0 30px;
}
@media (max-width: 768px) {
    .se-need-help .link {
        width: 100%;
        padding: 0;
    }
    .account-modal-title h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .account-modal-title {
        flex-direction: column;
    }
    .navbar-brand img {
        width: 120px !important;
    }
}
.se-need-help .link:hover {
    transform: scale(1.05);
}
.se-need-help .link .icon svg {
    height: 32px;
    width: 32px;
    fill: #fff;
}
.se-need-help .link .text {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 8px;
}

@media (max-width: 1200px) {
    .img-copy {
        left: 0;
    }
}

/*# sourceMappingURL=style.css.map */
