/* *****************************************************

    FoxxOS Custom Stylesheet
    WHMCS / Twenty-One / FoxxOS Cart Overrides

***************************************************** */

html {
    font-size: 14px;
}

:root {
    --foxxos-orange: #ff6900;
    --foxxos-orange-light: #ff8500;
    --foxxos-grey: #121212;
    --foxxos-black: #000000;
    --foxxos-white: #ffffff;

    --white: #ffffff;

    --primary: #ff6900;
    --primary-lifted: #ff8500;
    --primary-accented: #ca3500;

    --secondary: #6b7280;
    --secondary-lifted: #4b5563;
    --secondary-accented: #374151;

    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    --warning: #ff6900;
    --warning-lifted: #ff8500;
    --warning-accented: #ca3500;

    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    --grayscale: #121212;
    --grayscale-lifted: #1f1f1f;
    --grayscale-accented: #2a2a2a;

    --neutral: #6b7280;
    --neutral-lifted: #4b5563;
    --neutral-accented: #374151;

    --text-inverted: #ffffff;
    --text-muted: #b8b8b8;
    --text-lifted: #d6d6d6;
    --text-accented: #ff6900;
    --text: #ffffff;

    --border-muted: #222222;
    --border: #2a2a2a;
    --border-lifted: #333333;
    --border-accented: #ff6900;

    --bg: #121212;
    --bg-muted: #121212;
    --bg-lifted: #000000;
    --bg-accented: #1f1f1f;
    --bg-inverted: #ffffff;

    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}


/* *****************************************************

    Global Layout

***************************************************** */

html,
body {
    background: #121212 !important;
    color: #ffffff !important;
    min-height: 100vh;
}

body {
    overflow-x: hidden;
}

section#main-body,
.main-body,
.main-content {
    background: #121212 !important;
    color: #ffffff !important;
}

section#main-body {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.container,
.container-fluid {
    background: transparent !important;
}

a {
    color: #ff6900;
}

a:hover,
a:focus {
    color: #ff8500;
}


/* *****************************************************

    Header / Navigation

***************************************************** */

.header,
.header .container,
section#header,
section#header .container {
    background: #000000 !important;
    color: #ffffff !important;
}

.header {
    border-bottom: 1px solid #222222 !important;
}

.navbar-main,
.navbar,
.navbar-default {
    background: #000000 !important;
    border: none !important;
}

.navbar-main .navbar-nav > li > a,
.navbar-main .navbar-nav > li > a:visited,
.navbar .navbar-nav > li > a,
.navbar .navbar-nav > li > a:visited,
.header a {
    color: #ffffff !important;
}

.navbar-main .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:hover,
.header a:hover {
    color: #ff6900 !important;
}

.dropdown-menu {
    background: #121212 !important;
    border: 1px solid #333333 !important;
}

.dropdown-menu > li > a,
.dropdown-menu a {
    color: #ffffff !important;
}

.dropdown-menu > li > a:hover,
.dropdown-menu a:hover {
    background: #000000 !important;
    color: #ff6900 !important;
}

#inputKnowledgebaseSearch,
.header input[type="search"],
.header input[type="text"],
input[name="search"] {
    background: #121212 !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}

#inputKnowledgebaseSearch::placeholder,
.header input::placeholder {
    color: #aaaaaa !important;
}

.header .btn,
.header button {
    background: #121212 !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}

.header .btn:hover,
.header button:hover {
    background: #ff6900 !important;
    border-color: #ff6900 !important;
    color: #ffffff !important;
}


/* *****************************************************

    Breadcrumbs

***************************************************** */

.master-breadcrumb,
.breadcrumb,
.breadcrumb-section,
section#breadcrumb,
div[role="navigation"].breadcrumb {
    background: #121212 !important;
    border: none !important;
    color: #b8b8b8 !important;
}

.breadcrumb a,
.breadcrumb li,
.breadcrumb .active {
    color: #b8b8b8 !important;
}

.breadcrumb a:hover {
    color: #ff6900 !important;
}


/* *****************************************************

    Buttons / Forms

***************************************************** */

.btn-primary,
.btn-success,
.btn-warning {
    background: #ff6900 !important;
    border-color: #ff6900 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-success:hover,
.btn-warning:hover {
    background: #ff8500 !important;
    border-color: #ff8500 !important;
    color: #ffffff !important;
}

.btn-default,
.btn-secondary,
.btn-outline-primary {
    background: #000000 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

.btn-default:hover,
.btn-secondary:hover,
.btn-outline-primary:hover {
    background: #ff6900 !important;
    border-color: #ff6900 !important;
    color: #ffffff !important;
}

input.form-control,
textarea.form-control,
select.form-control {
    background: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #333333 !important;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #aaaaaa !important;
}


/* *****************************************************

    Panels / Cards / Sidebar

***************************************************** */

.cart-body,
.cart-sidebar,
.view-cart-items,
.panel,
.card,
.list-group,
.list-group-item {
    background: #121212 !important;
    color: #ffffff !important;
    border-color: #2a2a2a !important;
}

.list-group-item {
    border-color: #2a2a2a !important;
}

.list-group-item a,
.cart-sidebar a,
.panel a,
.card a {
    color: #ffffff !important;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    background: #ff6900 !important;
    border-color: #ff6900 !important;
    color: #ffffff !important;
}

.panel-heading,
.card-header {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #2a2a2a !important;
}

.panel-body,
.card-body {
    background: #121212 !important;
    color: #ffffff !important;
}

.sidebar .panel,
.sidebar .card,
.cart-sidebar .panel,
.cart-sidebar .card {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
}

.sidebar .panel-heading,
.cart-sidebar .panel-heading {
    background: #000000 !important;
    color: #ffffff !important;
}


/* *****************************************************

    Tables / Domain Pricing

***************************************************** */

.table,
table,
.domain-pricing,
.domain-pricing table {
    background: #121212 !important;
    color: #ffffff !important;
    border-color: #2a2a2a !important;
}

.domain-pricing table {
    border-collapse: collapse !important;
}

.table > thead > tr > th,
table > thead > tr > th,
.domain-pricing table th,
.domain-pricing table thead th {
    background: #ff6900 !important;
    color: #ffffff !important;
    border-color: #ff6900 !important;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
table > tbody > tr > td,
.domain-pricing table td {
    background: #121212 !important;
    color: #ffffff !important;
    border-color: #2a2a2a !important;
}

.table-striped > tbody > tr:nth-of-type(odd),
.table-striped tbody tr:nth-child(odd) {
    background: #151515 !important;
}

.table-striped > tbody > tr:nth-of-type(even),
.table-striped tbody tr:nth-child(even) {
    background: #0f0f0f !important;
}

.table-striped > tbody > tr:nth-of-type(odd) td,
.table-striped > tbody > tr:nth-of-type(even) td {
    background: transparent !important;
}

.domain-pricing a,
.domain-pricing span,
.domain-pricing strong {
    color: #ffffff !important;
}


/* *****************************************************

    Alerts

***************************************************** */

.alert,
.alert-info,
.alert-warning,
.alert-success,
.alert-danger {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}


/* *****************************************************

    Footer

***************************************************** */

footer.footer,
.footer,
section#footer {
    background: #000000 !important;
    border-top: 1px solid #222222 !important;
    color: #ffffff !important;
}

footer.footer a,
.footer a,
section#footer a {
    color: #ffffff !important;
}

footer.footer a:hover,
.footer a:hover,
section#footer a:hover {
    color: #ff6900 !important;
}


/* *****************************************************

    FoxxOS Cart Template Rebuild

***************************************************** */

.foxxos-cart-page {
    color: #ffffff;
}

.foxxos-cart-page,
.foxxos-cart-page * {
    box-sizing: border-box;
}

.foxxos-page-heading {
    margin-bottom: 24px;
}

.foxxos-page-heading h1 {
    color: #ffffff !important;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.foxxos-page-heading p {
    color: #d6d6d6 !important;
    font-size: 16px;
    max-width: 680px;
}

.foxxos-domain-panel {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 14px !important;
    padding: 54px 36px !important;
    margin-bottom: 34px !important;
}

.foxxos-domain-panel-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.foxxos-domain-panel h2 {
    color: #ffffff !important;
    font-size: 30px;
    margin-bottom: 10px;
}

.foxxos-domain-panel p {
    color: #b8b8b8 !important;
    margin-bottom: 24px;
}

.foxxos-domain-panel .foxxos-domain-search-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.foxxos-domain-search-row-advanced {
    align-items: stretch;
}

.foxxos-domain-input,
.foxxos-domain-search-row textarea {

    flex:1;
    width:100%;
    height:64px !important;
    min-height:64px !important;
    max-height:64px !important;

    background:#000000 !important;
    border:1px solid #333333 !important;
    border-radius:10px !important;

    color:#ffffff !important;

    padding:18px 20px !important;

    font-size:18px;
    line-height:26px;

    resize:none !important;
    overflow:hidden !important;

    box-shadow:none !important;

}

.foxxos-domain-search-row textarea {
    min-height: 120px;
    resize: vertical;
}

.foxxos-domain-input::placeholder,
.foxxos-domain-search-row textarea::placeholder {
    color: #aaaaaa !important;
}

.foxxos-domain-search-btn {
    min-width: 150px;
    background: #ff6900 !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 14px 24px !important;
    box-shadow: none !important;
}

.foxxos-domain-search-btn:hover {
    background: #ff8500 !important;
    color: #ffffff !important;
}

.foxxos-domain-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.foxxos-domain-options .dropdown-toggle,
.foxxos-domain-panel .dropdown-toggle {
    background: #ff6900 !important;
    border-color: #ff6900 !important;
    color: #ffffff !important;
}

.foxxos-safe-search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b8b8b8 !important;
    margin: 0;
}

.foxxos-captcha-wrap {
    margin-top: 24px;
}

.foxxos-pricing-table {
    background: #121212 !important;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 24px;
}

.foxxos-pricing-table .tld-pricing-header,
.foxxos-pricing-table .tld-pricing-header * {
    background: #ff6900 !important;
    color: #ffffff !important;
    font-weight: 700;
}

.foxxos-pricing-table .tld-pricing-header > div,
.foxxos-pricing-table .tld-pricing-header .row > div {
    padding: 14px 12px;
}

.foxxos-pricing-table .tld-row {
    background: #121212 !important;
    color: #ffffff !important;
    border-top: 1px solid #2a2a2a;
}

.foxxos-pricing-table .tld-row > div,
.foxxos-pricing-table .tld-row .row > div {
    color: #ffffff !important;
    padding: 14px 12px;
}

.foxxos-pricing-table .tld-row:nth-child(odd) {
    background: #151515 !important;
}

.foxxos-pricing-table .tld-row:nth-child(even) {
    background: #0f0f0f !important;
}

.foxxos-domain-promos {
    margin-top: 34px;
}

.domain-promo-box {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    color: #ffffff !important;
}


/* *****************************************************

    Mobile

***************************************************** */

@media (max-width: 768px) {
    .foxxos-domain-panel {
        padding: 32px 20px !important;
    }

    .foxxos-domain-panel .foxxos-domain-search-row {
        flex-direction: column;
    }

    .foxxos-domain-search-btn {
        width: 100%;
    }

    .foxxos-page-heading h1 {
        font-size: 34px;
    }
}

/* *****************************************************

    FoxxOS Domain Search Results

***************************************************** */

.primary-domain-header {
    color: #ffffff !important;
    border-bottom: 2px solid #ff6900 !important;
    padding-bottom: 12px !important;
    margin-top: 36px !important;
}

.domain-checker-available,
.domain-available {
    color: #ff6900 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.domain-price {
    color: #ffffff !important;
    font-size: 24px !important;
}

.domain-price .price {
    color: #ffffff !important;
}

.suggested-domains {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.suggested-domains .panel-heading,
.suggested-domains .card-header {
    background: #000000 !important;
    color: #ffffff !important;
    border-bottom: 1px solid #2a2a2a !important;
}

.domain-lookup-message,
.domain-suggestions-warning {
    color: #b8b8b8 !important;
}

/* *****************************************************

    FoxxOS Hosting Product Cards

***************************************************** */

.foxxos-hosting-page .cart-body {
    padding-bottom: 70px;
}

.foxxos-hosting-hero {
    max-width: 980px;
    margin: 0 auto 44px;
    text-align: center;
}

.foxxos-hosting-hero .foxxos-label {
    display: inline-block;
    color: #ff6900;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.foxxos-hosting-hero h1 {
    color: #ffffff !important;
    font-size: 46px;
    line-height: 1.12;
    margin-bottom: 18px;
}

.foxxos-hosting-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #d6d6d6 !important;
    font-size: 18px;
    line-height: 1.7;
}

.foxxos-hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.foxxos-hosting-card {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.foxxos-hosting-card:hover {
    border-color: #ff6900;
}

.foxxos-hosting-card-head {
    background: #000000;
    padding: 30px 26px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}

.foxxos-hosting-card-head h2 {
    color: #ffffff !important;
    font-size: 32px;
    margin: 0 0 18px;
}

.foxxos-hosting-price {
    color: #ff6900 !important;
    font-size: 30px;
    font-weight: 700;
}

.foxxos-hosting-price span {
    display: block;
    color: #b8b8b8 !important;
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
}

.foxxos-hosting-card-body {
    padding: 26px;
    flex: 1;
}

.foxxos-hosting-desc {
    color: #d6d6d6 !important;
    font-size: 15px;
    line-height: 1.6;
}

.foxxos-hosting-desc p {
    color: #d6d6d6 !important;
}

.foxxos-hosting-desc ul,
.foxxos-hosting-features {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.foxxos-hosting-desc li,
.foxxos-hosting-features li {
    color: #ffffff !important;
    padding: 9px 0;
    border-bottom: 1px solid #2a2a2a;
}

.foxxos-hosting-desc li::before,
.foxxos-hosting-features li::before {
    content: "✓";
    color: #ff6900;
    font-weight: 700;
    margin-right: 8px;
}

.foxxos-hosting-features span {
    color: #ff6900;
    font-weight: 700;
}

.foxxos-hosting-card-foot {
    padding: 26px;
    border-top: 1px solid #2a2a2a;
}

.foxxos-hosting-button {
    display: block;
    width: 100%;
    background: #ff6900;
    color: #ffffff !important;
    text-align: center;
    padding: 15px 18px;
    border-radius: 9px;
    font-weight: 700;
    text-decoration: none !important;
}

.foxxos-hosting-button:hover {
    background: #ff8500;
    color: #ffffff !important;
}

@media (max-width: 1100px) {
    .foxxos-hosting-grid {
        grid-template-columns: 1fr;
    }

    .foxxos-hosting-hero h1 {
        font-size: 34px;
    }
}

/* *****************************************************

FoxxOS Comparison + Accordions

***************************************************** */

.foxxos-plan-tag{

color:#b8b8b8;
margin-bottom:20px;

}

.foxxos-hosting-card-body ul{

list-style:none;
padding:0;
margin:0;

}

.foxxos-hosting-card-body li{

padding:12px 0;
border-bottom:1px solid #222;

}

.foxxos-comparison{

margin-top:70px;

}

.foxxos-comparison h2{

margin-bottom:30px;
color:#fff;

}

.foxxos-comparison table{

width:100%;
border-collapse:collapse;

}

.foxxos-comparison th{

background:#ff6900;
color:#fff;
padding:18px;

}

.foxxos-comparison td{

padding:18px;
border-bottom:1px solid #222;
color:#fff;

}

.foxxos-comparison tr:nth-child(even){

background:#111;

}

.foxxos-accordion{

margin-top:70px;

}

.foxxos-accordion details{

background:#121212;
border:1px solid #2a2a2a;
margin-bottom:15px;
border-radius:8px;

}

.foxxos-accordion summary{

padding:20px;
cursor:pointer;
font-weight:700;

}

.foxxos-accordion-content{

padding:20px;
border-top:1px solid #2a2a2a;

}

.foxxos-hosting-footer{

margin-top:80px;
padding:60px;
background:#000;
border-radius:12px;
text-align:center;

}

.foxxos-hosting-footer p{

margin:20px auto;

}

/* *****************************************************

    FoxxOS Hosting Offers / Popular Plan

***************************************************** */

.foxxos-hosting-offer {

    display:inline-block;
    margin-top:28px;

    background:#000000;
    border:1px solid #2a2a2a;

    color:#ffffff;

    padding:14px 22px;

    border-radius:999px;

    font-weight:700;

}


.foxxos-hosting-card {

    position:relative;

}


.foxxos-hosting-card.popular {

    border:2px solid #ff6900;
    transform:scale(1.03);

}


.foxxos-hosting-card.popular:hover {

    transform:scale(1.05);

}


/* Most Popular Badge */

.foxxos-popular{

    position:absolute;

    top:18px;
    left:50%;

    transform:translateX(-50%);

    background:#ff6900;
    color:#ffffff;

    padding:8px 24px;

    border-radius:999px;

    font-size:11px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:.12em;

    white-space:nowrap;

    min-width:170px;

    text-align:center;

    z-index:10;

    box-shadow:0 4px 20px rgba(0,0,0,.35);

}


/* Push Platinum title down only */

.foxxos-hosting-card.popular .foxxos-hosting-card-head h2{

    margin-top:62px !important;

}


/* Leave other cards alone */

.foxxos-hosting-card:not(.popular) .foxxos-hosting-card-head h2{

    margin-top:0 !important;

}


.foxxos-saving {

    margin-top:12px;
    font-size:13px;

    color:#7ce38b;

}


.foxxos-bonus {

    background:#000000;

    border:1px solid #2a2a2a;

    padding:12px;

    border-radius:8px;

    margin:20px 0;

    color:#ffffff;

    font-size:14px;

}


@media (max-width:1100px) {

    .foxxos-hosting-card.popular,
    .foxxos-hosting-card.popular:hover {

        transform:none;

    }

}

/* *****************************************************

    FoxxOS Product Domain Step

***************************************************** */

.foxxos-domain-header {
    max-width: 900px;
    margin: 0 auto 38px;
    text-align: center;
}

.foxxos-domain-header h1 {
    color: #ffffff !important;
    font-size: 46px;
    line-height: 1.12;
    margin-bottom: 16px;
}

.foxxos-domain-header p {
    color: #d6d6d6 !important;
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.foxxos-domain-options-list {
    max-width: 920px;
    margin: 0 auto;
}

.foxxos-domain-choice {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    padding: 22px !important;
    margin-bottom: 14px !important;
}

.foxxos-domain-choice label {
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.foxxos-domain-choice-help {
    color: #b8b8b8 !important;
    margin-left: 24px;
    margin-bottom: 18px;
}

.foxxos-domain-note {
    max-width: 920px;
    margin: 18px auto 0;
    color: #d6d6d6 !important;
    font-style: normal !important;
}

.foxxos-config-domain-page textarea#message {
    width: 100%;
    min-height: 74px !important;
    max-height: 74px !important;
    resize: none !important;
    overflow: hidden !important;
    background: #000000 !important;
    border: 1px solid #333333 !important;
    border-radius: 9px !important;
    color: #ffffff !important;
    padding: 18px !important;
    font-size: 16px;
}

.foxxos-config-domain-page textarea#message::placeholder {
    color: #aaaaaa !important;
}

.foxxos-config-domain-page .domain-input-group {
    background: transparent !important;
    border: none !important;
}

.foxxos-config-domain-page .domains-row {
    align-items: center;
}

.foxxos-config-domain-page .primary-domain-header {
    max-width: 920px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.foxxos-config-domain-page #searchDomainInfo,
.foxxos-config-domain-page .suggested-domains {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

/* *****************************************************

    FoxxOS Configure Product

***************************************************** */

.foxxos-config-card{

background:#121212;

border:1px solid #2a2a2a;

padding:30px;

border-radius:14px;

margin-bottom:35px;

}

.foxxos-plan-name{

font-size:36px;

font-weight:700;

color:#ffffff;

margin-bottom:10px;

}

.foxxos-plan-summary{

color:#d4d4d4;

margin-bottom:25px;

}

.foxxos-plan-list{

padding:0;
margin:0;

list-style:none;

}

.foxxos-plan-list li{

padding:10px 0;

border-bottom:1px solid #222;

color:#fff;

}



.foxxos-billing-section{

margin-top:40px;

}

.foxxos-billing-section h3{

color:#fff;

margin-bottom:20px;

}

.foxxos-cycle-grid{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.foxxos-cycle-card{

position:relative;

display:block;

width:260px;

background:#121212;

border:1px solid #2a2a2a;

border-radius:14px;

padding:24px;

cursor:pointer;

transition:.25s;

}

.foxxos-cycle-card:hover{

border-color:#ff6900;

transform:translateY(-3px);

}

.foxxos-cycle-card input{

display:none;

}

.foxxos-cycle-card.active{

border:2px solid #ff6900;

}

.cycle-title{

display:block;

color:#fff;

font-size:22px;

font-weight:700;

margin-bottom:10px;

}

.cycle-price{

display:block;

font-size:28px;

font-weight:700;

color:#ff6900;

margin-bottom:8px;

}

.cycle-small{

display:block;

color:#b5b5b5;

}

.cycle-saving{

display:block;

margin-top:10px;

color:#7ce38b;

font-weight:700;

}

.foxxos-popular-small{

position:absolute;

top:-12px;

left:20px;

background:#ff6900;

padding:6px 14px;

border-radius:999px;

font-size:11px;

font-weight:700;

color:#fff;

}

/* *****************************************************

    FoxxOS Configure Billing + Summary Fixes

***************************************************** */

.foxxos-cycle-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    max-width: 620px;
}

.foxxos-cycle-card {
    width: auto !important;
    min-height: 230px;
}

#orderSummary,
#orderSummary .order-summary {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 14px !important;
    overflow: hidden;
    color: #ffffff !important;
}

#orderSummary .order-summary h2,
#orderSummary h2 {
    background: #000000 !important;
    color: #ffffff !important;
    border-bottom: 1px solid #2a2a2a !important;
    padding: 18px 22px !important;
    margin: 0 !important;
    font-size: 24px !important;
    text-align: center;
}

#orderSummary .summary-container,
#producttotal {
    background: #121212 !important;
    color: #ffffff !important;
    padding: 20px !important;
}

#orderSummary table,
#orderSummary tbody,
#orderSummary tr,
#orderSummary td,
#orderSummary div,
#orderSummary span,
#orderSummary small {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #2a2a2a !important;
}

#orderSummary .total-due-today,
#orderSummary .amt,
#orderSummary .price,
#orderSummary strong {
    color: #ff6900 !important;
}

#btnCompleteProductConfig {
    margin-top: 22px !important;
    background: #ff6900 !important;
    border-color: #ff6900 !important;
    color: #ffffff !important;
    border-radius: 9px !important;
    padding: 14px 26px !important;
}

#btnCompleteProductConfig:hover {
    background: #ff8500 !important;
    border-color: #ff8500 !important;
}

@media (max-width: 768px) {
    .foxxos-cycle-grid {
        grid-template-columns: 1fr !important;
        max-width: none;
    }
}

/* *****************************************************

    FoxxOS Modal Windows

***************************************************** */

.modal-content{

background:#121212 !important;

border:1px solid #2a2a2a !important;

border-radius:14px !important;

color:#ffffff !important;

box-shadow:0 20px 50px rgba(0,0,0,.55);

}

.modal-header{

background:#000000 !important;

border-bottom:1px solid #2a2a2a !important;

}

.modal-header h4,
.modal-title{

color:#ffffff !important;

font-weight:700;

}

.modal-body{

background:#121212 !important;

color:#d4d4d4 !important;

padding:30px !important;

}

.modal-footer{

background:#121212 !important;

border-top:1px solid #2a2a2a !important;

}

.modal .btn-default{

background:#000000 !important;

border:1px solid #333 !important;

color:#ffffff !important;

}

.modal .btn-default:hover{

border-color:#ff6900 !important;

}

.modal .btn-primary{

background:#ff6900 !important;

border-color:#ff6900 !important;

color:#ffffff !important;

}

.modal .btn-primary:hover{

background:#ff8500 !important;

border-color:#ff8500 !important;

}

button.close{

color:#ffffff !important;

opacity:1 !important;

}

.modal-backdrop{

background:#000000 !important;

opacity:.8 !important;

}
/* *****************************************************

   FoxxOS Cart / Checkout Page

***************************************************** */

.view-cart-items-header{
    background:#ff6900!important;
    border:none!important;
    border-radius:14px 14px 0 0;
    padding:18px;
}

.view-cart-items-header *{
    color:#fff!important;
    font-weight:700;
}

.view-cart-items{
    background:#111!important;
    border:1px solid #262626;
    border-top:none;
    border-radius:0 0 14px 14px;
    overflow:hidden;
}

.view-cart-items .item{
    background:#0d0d0d;
    padding:22px;
    border-bottom:1px solid #202020;
}

.view-cart-items .item:last-child{
    border-bottom:none;
}

.item-title{
    color:#fff!important;
    font-size:18px;
    font-weight:700;
}

.item-group{
    color:#888!important;
    display:block;
    margin-top:4px;
}

.item-domain{
    display:block;
    margin-top:8px;
    color:#ff6900!important;
}

.item-price{
    color:#fff!important;
    text-align:right;
}

.item-price span:first-child{
    font-size:20px;
    color:#ff6900!important;
    font-weight:700;
}

.item-price .cycle{
    color:#888!important;
}

.btn-remove-from-cart{
    color:#ff6900!important;
}

.empty-cart{
    text-align:right;
    margin-top:20px;
}

.empty-cart button{
    background:#0e5f8c!important;
    color:#fff!important;
    border:none!important;
    border-radius:10px;
    padding:10px 18px;
}

.view-cart-tabs{
    margin-top:40px;
}

.view-cart-tabs .nav-tabs{
    border:none!important;
}

.view-cart-tabs .nav-tabs li a{
    background:#111!important;
    color:#fff!important;
    border:none!important;
    border-radius:10px 10px 0 0;
}

.view-cart-tabs .nav-tabs .active a{
    background:#ff6900!important;
}

.tab-content{
    background:#111;
    border:1px solid #262626;
    padding:30px;
    border-radius:0 14px 14px 14px;
}

.tab-content input{
    background:#000!important;
    color:#fff!important;
    border:1px solid #333!important;
}

.tab-content button{
    background:#ff6900!important;
    border:none!important;
}

.order-summary{
    background:#111!important;
    border:1px solid #262626!important;
    border-radius:20px!important;
    overflow:hidden;
}

.order-summary h2{
    background:#000!important;
    color:#fff!important;
    padding:28px!important;
    margin:0!important;
    border-bottom:1px solid #222;
}

.summary-container{
    padding:28px;
}

.summary-container *{
    color:#fff!important;
}

.total-due-today .amt{
    color:#ff6900!important;
    font-size:46px!important;
    font-weight:700;
}

.btn-checkout{
    width:100%;
    background:#ff6900!important;
    border:none!important;
    border-radius:12px!important;
    padding:18px!important;
    font-size:20px!important;
}

.btn-checkout:hover{
    transform:translateY(-2px);
}

.btn-continue-shopping{
    color:#777!important;
}

@media(max-width:991px){

.secondary-cart-sidebar{
margin-top:40px;
}

}

/* *****************************************************

   FoxxOS Cart Cleanup Pass

***************************************************** */

.view-cart-items,
.view-cart-items .item,
.view-cart-tabs,
.tab-content,
.tab-pane,
.promo {
    background: #121212 !important;
    border-color: #2a2a2a !important;
}

.view-cart-items .item {
    color: #ffffff !important;
}

.view-cart-items .item *,
.tab-content *,
.view-cart-tabs * {
    color: #ffffff !important;
}

.item-group {
    color: #b8b8b8 !important;
}

.item-domain {
    color: #ff6900 !important;
}

.tab-content {
    border: 1px solid #2a2a2a !important;
    border-radius: 0 14px 14px 14px !important;
}

.view-cart-tabs .nav-tabs li a,
.view-cart-tabs .nav-tabs .active a {
    background: #ff6900 !important;
    color: #ffffff !important;
    border: none !important;
}

.order-summary,
.order-summary .summary-container {
    background: #121212 !important;
}

.order-summary .total-due-today .amt,
#totalDueToday {
    color: #ff6900 !important;
    font-size: 34px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    display: block;
}

.order-summary .total-due-today {
    text-align: center;
    margin: 28px 0 !important;
}

.order-summary .total-due-today span:last-child {
    font-size: 13px !important;
    color: #ffffff !important;
}

.btn-checkout {
    font-size: 18px !important;
}

/* *****************************************************

    FoxxOS Checkout Page

***************************************************** */

#frmCheckout .sub-heading {
    border-top: 1px solid #2a2a2a !important;
    text-align: center;
    margin: 34px 0 24px;
}

#frmCheckout .sub-heading span {
    background: #121212 !important;
    color: #ff6900 !important;
    font-size: 18px;
    font-weight: 700;
    padding: 0 18px;
}

.account-select-container .account,
.existing-cc-grid,
.cc-input-container,
.apply-credit-container,
.marketing-email-optin {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    padding: 18px !important;
    margin-bottom: 12px;
}

.account-select-container .account.active {
    border-color: #ff6900 !important;
}

.account-select-container .account *,
.existing-cc-grid *,
.cc-input-container *,
.apply-credit-container *,
.marketing-email-optin * {
    color: #ffffff !important;
}

#totalDueToday {
    background: #000000 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    padding: 24px !important;
    font-size: 24px !important;
}

#totalCartPrice {
    color: #ff6900 !important;
    font-size: 34px !important;
}

#paymentGatewaysContainer {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    padding: 22px !important;
}

#paymentGatewaysContainer * {
    color: #ffffff !important;
}

#frmCheckout textarea,
#frmCheckout input,
#frmCheckout select {
    background: #000000 !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}

#frmCheckout textarea::placeholder,
#frmCheckout input::placeholder {
    color: #aaaaaa !important;
}

#btnCompleteOrder {
    background: #ff6900 !important;
    border-color: #ff6900 !important;
    border-radius: 10px !important;
    padding: 15px 28px !important;
    color: #ffffff !important;
    font-size: 18px !important;
}

#btnCompleteOrder:hover {
    background: #ff8500 !important;
    border-color: #ff8500 !important;
}

.checkout-security-msg {
    background: #000000 !important;
    border: 1px solid #2a2a2a !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    margin-top: 34px;
}

.checkout-security-msg i {
    color: #ff6900 !important;
}

.foxxos-addon-section {
    margin-top: 40px;
}

.foxxos-addon-section h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.foxxos-addon-intro {
    color: #b8b8b8;
    margin-bottom: 22px;
}

.panel-addon {
    background: #121212 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    overflow: hidden;
}

.panel-addon-selected {
    border-color: #ff6900 !important;
}

.panel-addon .panel-body,
.panel-addon .card-body {
    background: #121212 !important;
    color: #ffffff !important;
    padding: 22px !important;
}

.panel-addon label {
    color: #ffffff !important;
    font-weight: 700;
}

.foxxos-addon-desc {
    color: #b8b8b8 !important;
    margin-top: 10px;
}

.panel-addon .panel-price {
    background: #000000 !important;
    color: #ff6900 !important;
    padding: 14px 22px;
    font-weight: 700;
}

.panel-addon .panel-add {
    background: #ff6900 !important;
    color: #ffffff !important;
    padding: 12px 22px;
    font-weight: 700;
}

/* *****************************************************

    FoxxOS Grouped Addon Accordions

***************************************************** */

.foxxos-addon-section {
    margin-top: 44px;
}

.foxxos-addon-section h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.foxxos-addon-intro {
    color: #b8b8b8;
    margin-bottom: 24px;
}

.foxxos-addon-group {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 24px;
}

.foxxos-addon-group h4 {
    color: #ff6900;
    font-size: 20px;
    margin-bottom: 18px;
}

.foxxos-addon-accordion {
    background: #000000;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.foxxos-addon-accordion.selected {
    border-color: #ff6900;
}

.foxxos-addon-summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
}

.foxxos-addon-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0;
}

.foxxos-addon-check input {
    margin: 0;
}

.foxxos-addon-price {
    color: #ff6900;
    font-weight: 700;
    white-space: nowrap;
}

.foxxos-addon-details {
    border-top: 1px solid #2a2a2a;
}

.foxxos-addon-details summary {
    cursor: pointer;
    padding: 14px 20px;
    color: #b8b8b8;
    font-weight: 700;
}

.foxxos-addon-details summary:hover {
    color: #ff6900;
}

.foxxos-addon-desc {
    color: #d6d6d6 !important;
    padding: 0 20px 20px;
}

.foxxos-addon-desc p,
.foxxos-addon-desc li,
.foxxos-addon-desc strong {
    color: #d6d6d6 !important;
}

.foxxos-addon-desc strong {
    color: #ffffff !important;
}

.foxxos-addon-desc ul {
    margin-top: 10px;
    padding-left: 20px;
}

@media (max-width: 768px) {

    .foxxos-addon-summary {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* *****************************************************

    FoxxOS Addon Category Accordions

***************************************************** */

.foxxos-addon-category {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
}

.foxxos-addon-category > summary {
    cursor: pointer;
    padding: 22px 24px;
    color: #ff6900;
    font-size: 20px;
    font-weight: 700;
    list-style: none;
}

.foxxos-addon-category > summary::-webkit-details-marker {
    display: none;
}

.foxxos-addon-category > summary::before {
    content: "▸";
    display: inline-block;
    margin-right: 10px;
    transition: transform .2s ease;
}

.foxxos-addon-category[open] > summary::before {
    transform: rotate(90deg);
}

.foxxos-addon-category-inner {
    padding: 0 24px 24px;
}