:root {
    --lime: #a3e635;
    --lime-dark: #65a30d;

    --yellow: #ebff3b;
    --yellow-hover: #daed36;

    --gray-100: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-300: #dddddd;

    --text: #111827;
    --bg-dark: #2b2b2b;

    --font-main: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    --font-size-base: 17px;
}

* {
    box-sizing: border-box;
}

p {
    text-align: center;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    background: #2b2b2b url("../images/forms.png") no-repeat fixed center;
    background-size: cover;
}

h1 {
    font-weight: 700;
    color: #000000;
}

a {
    text-decoration: none;
}

span {
    font-weight: 600;
}

.muted, .system-inline-7, .price-line .label {
    color: #666;
    font-weight: 500;
    margin: 5px;
}

.text-muted, .price-line .old-price, .chk-note, .system-inline-1, .p-payments {
    font-size: 13px;
    opacity: 0.8;
}

.text-muted, .p-payments {
    margin-top: 4px;
    text-align: center;
}

.required {
    color: red;
    font-weight: bold;
    margin-left: 3px;
}

.chip input[type="checkbox"],
.chip input[type="radio"] {
    accent-color: var(--lime);
}

.chip input[type="checkbox"] {
    outline: none;
    box-shadow: none;
}

.chip input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
    box-shadow: none;
}

.btn, .create, .start, .stop, .buttonBuy, .checkout-form-button,
.toggle-btn, .btn-danger, .btn-secondary, .account-nav-button {
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s ease, filter 0.15s ease, color 0.15s ease;
}

.btn, .form-buttons .btn, .buttons button {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
}

.btn {
    background: #ffffff;
    color: #111827;
}

.btn.btn-secondary, .btn-secondary {
    background: #f9fafb;
}

.btn.btn-secondary:hover {
    background: #f8fafc;
}

.create, .buttonBuy, .checkout-form-button {
    background: var(--yellow);
    color: #000000;
    font-weight: 600;
    border: 0;
}

.create:hover, .buttonBuy:hover {
    background: var(--yellow-hover);
}

.create {
    padding: 10px 50px;
    border-radius: 6px;
    margin: 8px;
}

.btn-create {
    display: inline-block;
    padding: 10px 50px;
    border-radius: 6px;
    margin: 8px;
    background: var(--yellow);
    color: #000000;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s ease;
    font-size: 20px;
}

.btn-create:hover {
    background: var(--yellow-hover);
}

.start, .stop {
    margin: 8px;
    padding: 10px 50px;
    font-weight: 300;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
}

.start {
    background: #18ba18;
}

.start:hover {
    background: #3bdf3b;
}

.stop {
    background: #f12626;
}

.stop:hover {
    background: #ff0000;
}

.buttonBuy, .checkout-form-button {
    height: 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.buttonBuy {
    width: 200px;
    min-width: 140px;
    height: 40px;
    border-radius: 999px;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.buttonBuy img {
    height: 20px;
    width: auto;
    display: block;
    margin-right: 8px;
}

.checkout-form-button {
    min-width: 180px;
    height: 40px;
    border-radius: 8px;
    letter-spacing: 0.2px;
    margin: 8px;
    font-size: 20px;
}

.btn-secondary {
    background: #f1f1f1;
    color: #333;
    border-color: #ccc;
    padding: 6px 12px;
    border-radius: 6px;
}

.btn-secondary:hover {
    filter: brightness(0.97);
}

.btn-yellow {
    background-color: var(--yellow);
    color: #000000;
    border: 1px solid var(--yellow);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    font-size: 14px;
    margin-top: 5px;
}

.btn-yellow:hover {
    background-color: #dbe635;
    transform: translateY(-1px);
}

.btn-danger {
    background: #f44545;
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    font-size: 14px;
}

.btn-danger:hover {
    filter: brightness(0.95);
}

.toggle-btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
    color: #000000;
}

.toggle-btn--on {
    background: var(--yellow);
}

.toggle-btn--on:hover {
    filter: brightness(0.95);
}

.toggle-btn--off {
    background: #f44545;
}

input, textarea, select, .auth-field input, .auth-field textarea,
.checkout-form-input, .create-form input, .create-form textarea, .create-form select {
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    background: #ffffff;
    box-sizing: border-box;
}

input:focus, .checkout-form-input:focus, .auth-field input:focus, textarea:focus {
    border-color: #6daefd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    outline: none;
}

input {
    margin-top: 10px;
    width: 300px;
    height: 30px;
}

.auth-field input, .auth-field textarea, .checkout-form-input,
.account-content form input[type="text"], .account-content form input[type="email"],
.account-content form input[type="password"] {
    width: 100%;
    margin-top: 8px;
    border-radius: 8px;
    border-color: #dddddd;
}

.account-table input,
.account-table select,
.account-table textarea {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

.auth-field input, .checkout-form-input {
    height: 34px;
    padding: 0 10px;
}

.auth-field textarea {
    padding: 10px;
    resize: none;
    margin-top: 0;
}

.checkout-form-input {
    border-color: #d1d5db;
    color: #111827;
}

.checkout-form-input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.2);
}

.account-table, .prices-inline-3, .create-form {
    width: 100%;
    border-collapse: collapse;
}

.account-table, .prices-inline-3 {
    table-layout: fixed;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 12px;
}

.account-th, .prices-inline-4, .prices-inline-5, .prices-inline-6,
.create-form th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-200);
}

.account-th {
    background: var(--gray-100);
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.account-td, .prices-inline-7, .prices-inline-9, .prices-inline-10, .prices-inline-11,
.create-form td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #1f2937;
}

.account-td {
    color: #000000;
    text-decoration: none;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.prices-inline-4, .prices-inline-5, .prices-inline-6 {
    border-bottom: 1px solid #ddd;
    padding: 8px;
}

.prices-inline-5 {
    text-align: right;
}

.prices-inline-6 {
    text-align: center;
}

.prices-inline-7, .prices-inline-9, .prices-inline-10, .prices-inline-11 {
    border-bottom: 1px solid #f0f0f0;
    padding: 6px 8px;
}

.prices-inline-7 {
    width: 220px;
}

.prices-inline-9 {
    width: 320px;
}

.prices-inline-11 {
    text-align: right;
}

.create-form th {
    background: #f9f9f9;
    white-space: nowrap;
    width: 25%;
    vertical-align: middle;
    font-weight: 600;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

.create-form td {
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

.create-form input, .create-form select {
    padding: 6px 8px;
    width: 100%;
}

.flash, .chk-alert, .account-content [class^="flash-"] {
    padding: 10px 12px;
    font-weight: 700;
    margin: 5px;
}

.flash.success, .account-content .flash-success {
    color: #1a8f37;
}

.flash.error {
    color: #b31b29;
}

.chk-alert {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    margin: 10px 0 14px;
    background: #f9fafb;
    color: #1f2937;
    font-weight: normal;
    font-size: 14px;
}

.account-content .flash-success {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.checkout-alert {
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.checkout-alert.success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.checkout-alert.error {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.checkout-alert.info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.checkout-alert.warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.head {
    display: flex;
    flex-direction: column;
}

.nav {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 0 64px;
    background: #f6f3f3;
    box-sizing: border-box;
}

.nav img, .nav-main__logo img {
    max-height: 70px;
    width: auto;
}

.option {
    font-size: 32px;
    padding: 0;
}

.message:empty {
    display: none;
}

.button {
    text-decoration: none;
    color: #000000;
}

.indexNav {
    background: linear-gradient(90deg, #000000 0%, #0a0a0a 100%);
    height: 100px;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-main__logo img {
    height: auto;
    max-height: 70px;
}

.nav-main__logo:last-child img {
    max-height: 90px;
}

.head .indexNav > .nav-main__logo, .head .indexNav .three-header .nav-main__logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.head .indexNav > .nav-main__logo {
    left: 64px;
}

.head .indexNav .three-header .nav-main__logo {
    right: 64px;
}

.head .indexNav img {
    height: 40px;
    width: auto;
    padding: 0;
}

.head .indexNav .three-header .nav-main__logo img {
    height: 100px;
}

.three-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-left: 0;
}

.indexOption {
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.head .indexNav .button {
    color: #f8fafc;
    font-size: 43px;
    transition: color .25s ease;
}

.head .indexNav .button:hover {
    color: var(--lime, #a3e635);
}

.main {
    display: flex;
    width: auto;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: 15%;
    margin-left: 15%;
    background-color: #ffffff;
}

.container {
    width: 400px;
    border: 1px solid var(--gray-300);
    margin: 15px;
    border-radius: 7px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.message {
    text-align: center;
    margin: 0;

}

.info {
    margin: 20px;
}

.value {
    font-weight: normal;
}

.auth-card, .checkout-wrap, .product.ix-card, .toggle-modal, .account-nav, .account-content {
    background: #ffffff;
    border-radius: 12px;
}

.auth-card {
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.15);
    height: auto;
}

.auth, .form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.auth {
    max-width: 520px;
    padding: 24px;
}

.form {
    max-width: 600px;
    margin: 100px auto;
    padding: 24px 28px 28px;
    align-items: center;
    font-size: 20px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    margin: 4px 0 12px 0;
    text-align: center;
    color: #000000;
}

.auth-field {
    width: 100%;
    margin: 10px 0 6px;
}

.auth-field label {
    display: block;
    font-weight: 500;
    color: #000000;
}

.auth-actions {
    margin-top: 14px;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 6px;
}

.auth-links .forgotPassword {
    background: transparent;
    padding: 4px 8px;
    border-radius: 6px;
}

.auth-links .btn {
    margin: 0;
}

.forgotPassword {
    border: 0;
    color: #000000;
    cursor: pointer;
}

.buttonsForm {
    display: flex;
    flex-direction: row;
    padding: 15px;
    justify-content: space-around;
    align-items: center;
}

.buttons {
    display: flex;
    justify-content: center;
}

.buttons button + button, .form-buttons .btn + .btn {
    margin-left: 10px;
}

.main-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.product, .product.ix-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.product {
    width: 300px;
    border: 1px solid var(--gray-300);
    margin: 15px;
    border-radius: 7px;
    height: auto;
}

.main.ix-products {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 40px 20px;
    background: transparent !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 400px));
    justify-content: center;
    gap: 40px;
    align-items: start;
    min-height: calc(100vh - 100px);
}
.product.ix-card {
    width: 400px;
    height: 400px;
    border-radius: 28px;
    border: none;
    padding: 26px 26px 30px;
    align-items: stretch;
    position: relative;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product.ix-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--yellow);
}

.title, .product.ix-card .title {
    font-weight: 500;
    text-align: center;
}

.title {
    font-size: 25px;
    margin-top: 15px;
}

.product.ix-card .title {
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111827;
    margin: 4px 0 10px;
}

.desc, .product.ix-card .desc {
    text-align: center;
    color: #4b5563;
}

.desc {
    padding: 20px 0;
    min-height: 72px;
}

.product.ix-card .desc {
    font-size: 13px;
    min-height: 64px;
    margin: 0 0 18px;
}

.product-data {
    width: 300px;
}

.price {
    height: 30px;
    color: #6daefd;
}

.ix-card-meta {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 12px;
}

.ix-card-meta .meta {
    font-size: 17px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
}

.ix-card-prices {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.ix-card-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.ix-card-badge {
    position: absolute;
    top: -18px;
    right: 24px;
    background: var(--yellow);
    padding: 6px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
}

.ix-card-badge__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.08em;
}

.ix-card-badge__label img {
    height: 26px;
    width: auto;
    display: block;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 4px 0;
}

.price-line .label {
    font-size: 16px;
    text-transform: uppercase;
    opacity: .8;
}

.price-line .price {
    font-size: 30px;
    display: flex;
    gap: 6px;
    align-items: baseline;
    flex-wrap: wrap;
    color: #111827;
}

.price-line .old-price {
    text-decoration: line-through;
}

.price-line .new-price {
    font-weight: 700;
}

.price-line--trial {
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}

.price-line--trial .price--main {
    font-size: 28px;
    font-weight: 800;
}

.badge {
    color: #0a7a2a;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 30px;
}

.product-note {
    font-size: 11px;
    color: #6b7280;
    margin-top: 10px;
    text-align: center;
}

.ix-price-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg-dark);
    text-align: center;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ix-price-footer .price-note {
    margin: 0;
    color: #d1d5db;
    font-style: italic;
    text-align: center;
}

.checkout-wrap {
    max-width: 600px;
    margin: 24px auto;
    padding: 20px;
    border: 1px solid var(--gray-300);
}

.chk-wrap {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 20px;
}

.chk-head {
    margin-bottom: 12px;
}

.chk-title {
    margin: 0 0 6px;
    font-size: 30px;
    color: #111827;
    text-align: center;
}

.chk-desc {
    margin: 0 0 8px;
    color: #4b5563;
    text-align: center;
}

.chk-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 700;
    justify-content: space-around;
}

.chk-days {
    color: #1f2937;
}

.checkout-form-label {
    display: block;
    margin: 12px 0;
    color: #111827;
    font-weight: 600;
}

.chk-actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.variants {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 14px;
}

.variants-label {
    color: #374151;
    font-weight: 600;
    margin-right: 4px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}

.chip--active {
    background: var(--yellow);
}

.chip--disabled {
    opacity: .5;
    cursor: not-allowed;
    text-decoration: none;
    pointer-events: none;
}

.input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.input-wrapper input {
    padding-right: 34px;
}

.input-wrapper .info-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--lime);
    cursor: pointer;
    user-select: none;
    z-index: 2;
}

.checkoutForm-inline-2 {
    margin-top: 10px;
}

.checkoutForm-inline-3 {
    opacity: .75;
}

.checkoutForm-inline-4 {
    margin-top: 8px;
}

.main-account {
    box-sizing: border-box;
    padding: 16px;
    height: calc(100vh - 100px);
    background: #2b2b2b url("../images/background.png") no-repeat fixed center;
    background-size: cover;
}

.main-header {
    border: 1px solid var(--gray-200);
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #ffffff;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.input-header {
    border: none;
    background: transparent;
    font-weight: 400;
    color: #000000;
    text-align: center;
    width: 100%;
    outline: none;
    font-size: 25px;
}

.body-account {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 16px;
    align-items: start;
}

.account-nav {
    border: 1px solid var(--gray-200);
    padding: 0;
    height: auto;
    order: 0;
}

.account-option {
    margin: 6px 0;
}

.account-nav-button {
    display: flex;
    padding: 12px 14px;
    text-decoration: none;
    color: #000000;
    font-size: 25px;
    height: 8vh;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.account-nav-button.active {
    background: #f8fafc;
    font-weight: 700;
}

.account-content {
    border: 1px solid var(--gray-200);
    padding: 16px;
    height: 70vh;
    overflow-y: auto;
    overflow-x: auto;
    color: #1f2937;
}

.account-table th {
    white-space: nowrap;
}

.account-table td {
    white-space: nowrap;
}

.account-content form {
    max-width: 448px;
    margin-bottom: 10px;
}

.account-content form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #111827;
}

.account-content .btn {
    margin: 10px;
    text-align: center;
}

.status-label {
    font-weight: 700;
}

.empty_data {
    font-size: 22px;
    color: #000000;
    text-align: center;
    margin: 40px 0;
}

.form-buttons {
    margin-top: 20px;
    text-align: right;
}

.account-form-actions {
    margin-top: 16px;
    display: block;
    text-align: center;
}

.account-form-actions .btn {
    margin: 0;
}

.account-form-actions .btn + .btn {
    margin-left: 10px;
}

.account-type-tabs {
    display: flex;
    gap: 40px;
    margin: 10px 10px;
    justify-content: center;
}

.account-type-tab {
    background: var(--yellow);
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 14px;
}

.account-type-tab input[type="radio"] {
    display: none;
}

.account-type-tab span {
    display: inline-block;
}

.account-type-tab input[type="radio"]:checked + span {
    font-weight: bold;
}

.loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.loader-overlay {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, .05);
    font-size: 25px;
    font-weight: 600;
    color: #222;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgb(0, 161, 0);
    border-top-color: rgb(0, 255, 0);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.is-hidden {
    display: none !important;
}

.toggle-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.toggle-modal {
    padding: 20px 24px;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.toggle-modal h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.toggle-modal__text {
    margin: 0 0 18px 0;
    font-size: 14px;
    color: #444;
}

.toggle-modal__actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}


.allCont.prices-inline-1 .main, .allCont.list-inline-1 .main, .allCont.create-inline-1 .main {
    background: transparent;
}

.prices-inline-1 {
    background: #ffffff;
    min-height: 100%;
    min-width: 100%;
}

.prices-inline-2, .customProduct-inline-2 {
    margin-top: 10px;
}

.prices-inline-8 {
    width: 100%;
    padding: 2px 4px;
}

.prices-inline-12 {
    width: 90px;
    text-align: right;
    padding: 2px 4px;
}

.prices-inline-13 {
    width: 70px;
    text-align: right;
    padding: 2px 4px;
}

.prices-inline-15, .prices-inline-16 {
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.prices-inline-15 {
    border: 1px solid #ccc;
    background: #f5f5f5;
}

.prices-inline-16 {
    border: 1px solid #2ecc71;
    background: #2ecc71;
    color: #fff;
    display: none;
}

.contact-message, .customProduct-inline-1, .forgot_password-inline-1 {
    text-align: center;
    padding: 40px 20px;
}

.contact-muted {
    margin-top: 10px;
    text-align: center;
}

.contact-inline-1 {
    color: #000000;
}

.customProduct-inline-3 {
    margin-top: 25px;
}

.customProduct-inline-4, .forgot_password-inline-3 {
    text-decoration: none;
}

.customProduct-inline-5, .forgot_password-inline-4, .reset_password-inline-1 {
    text-align: center;
    margin-bottom: 20px;
}

.forgot_password-inline-4, .reset_password-inline-1 {
    margin-bottom: 16px;
}

.customProduct-inline-6 {
    background: #f5f5f5;
    cursor: not-allowed;
}

.customProduct-inline-7 {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    color: #000;
}

.custom-product-form {
    margin-top: 20px !important;
    margin-bottom: 80px !important;
    padding-top: 15px !important;
    padding-bottom: 20px !important;
}

.custom-product-form .auth-title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
}

.custom-product-form .customProduct-inline-5 {
    margin-bottom: 15px !important;
    font-size: 14px !important;
}

.custom-product-form .auth-field {
    margin-top: 6px !important;
}

.list-inline-2 {
    color: green;
}

.list-inline-3 {
    color: red;
}

.list-inline-4 {
    display: inline;
}

.system-inline-2 {
    color: #3bdf3b;
}

.system-inline-3 {
    margin-top: 30px;
    text-align: center;
}

.system-inline-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
    justify-content: center;
}

.system-inline-5 {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 16px;
    background: #fff;
    min-width: 260px;
    text-align: center;
}

.system-inline-6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.system-inline-8 {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    background: #2ecc71;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.system-inline-9 {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.user_data-inline-1 {
    margin-top: 16px;
}

.forgot_password-inline-2 {
    margin-top: 18px;
}

.mt-2 {
    margin-top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .body-account {
        grid-template-columns: 1fr;
    }

    .account-nav {
        order: 1;
    }
}

@media (max-width: 560px) {
    .auth {
        margin: 40px auto;
        padding: 20px;
        max-width: 92%;
    }

    .auth-title {
        font-size: 24px;
    }
}

.account-content form:has(.account-table) {
    max-width: 100%;
}

.account-form-actions .btn {
    min-width: 120px;
}

.allCont.prices-inline-1,
.allCont.list-inline-1,
.allCont.create-inline-1 {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    background: #ffffff;
    overflow: auto;
}

.allCont.prices-inline-1 .main,
.allCont.list-inline-1 .main,
.allCont.create-inline-1 .main {
    margin-left: 15%;
    margin-right: 15%;
    width: auto;
    background: transparent;
}

main {
    display: block;
    padding-top: 0;
}

.main .message {
    width: 100%;
    flex: 0 0 100%;
    margin: 10px 0;
    text-align: center;
}


#instancesTable {
    width: 100%;
    table-layout: fixed;
}

#instancesTable th:last-child,
#instancesTable td:last-child {
    width: 35%;
}

#instancesTable td:last-child .actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: center;
    justify-items: start;
    width: 100%;
}


#instancesTable td:last-child .action-renew {
    grid-column: 1;
}

#instancesTable td:last-child .action-upgrade {
    grid-column: 2;
}

#instancesTable td:last-child .action-addons {
    grid-column: 3;
}

#instancesTable td:last-child .actions .btn-yellow {
    min-width: 120px;
    justify-content: center;
}

#instancesTable td {
    vertical-align: middle;
}


.main.ix-products .product.ix-card--custom {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 24px;
    padding: 5px;
    max-width: 360px;
    max-height: 300px;
}

.main.ix-products .product.ix-card--custom .desc {
    font-size: 12px;
    line-height: 1.4;
}

.main.ix-products .product.ix-card--custom .buttonBuy {
    margin-top: 12px;
}

.main.ix-products .product.ix-card--custom .buttonBuy img {
    order: 2;
    height: 26px;
    margin-left: 10px;
    margin-right: 0;
}
.toggle-modal__actions .btn-yellow,
.toggle-modal__actions .btn-danger,
.toggle-modal__actions .btn-success {
    margin-top: 0;
}
.btn-success {
    background: #35d07f;
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    font-size: 14px;
}

.btn-success:hover {
    filter: brightness(0.95);
}
.account-table .btn-yellow,
.account-table .btn-danger,
.account-table .btn-success,
.account-table a.btn-yellow {
    margin-top: 0 !important;
    height: 32px;
    padding: 0 16px !important;
    min-width: 120px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

.account-table td form {
    margin: 0 !important;
    max-width: none !important;
    display: inline-block;
}
