/* fonts */

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../../../../assets/webfonts/pe0qMImSLYBIv1o4X1M8cce9I9tAcVwo.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../../../../assets/webfonts/pe03MImSLYBIv1o4X1M8cc8GBs5tU1ECVZl_.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* branding */

:root {
    --app-font-family: 'Nunito Sans', sans-serif;
    --app-nav-background: #181818;
    --app-nav-left-wide-width: 320px;
    --app-link-color: #0056b3;
    --app-brand-gradient-left: #003f88;
    --app-brand-gradient-right: #002260;
    --app-brand-background-color: #2E3192;
    --xxl-container-width: 1400px;
    --bg-grey: #f4f6f9;
}

/* application */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--app-font-family) !important;
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a, a:hover, .btn-link {
    color: var(--app-link-color);
}

.bg-grey {
    background-color: var(--bg-grey);
}

/* xxl devices (large desktops, 1440px and up) */

@media (min-width: 1440px) {
    .container {
        max-width: var(--xxl-container-width) !important;
    }
}

.brand-gradient {
    background-image: radial-gradient(50% 100.00% at 50% -0.05%, var(--app-brand-gradient-left) 0, var(--app-brand-gradient-right) 100%);
}

.app-nav, .main-nav {
    background-color: var(--app-nav-background);
}

.main-top .nav-icon, .main-nav .nav-icon {
    display: inline-flex;
    align-self: center;
    font-size: 1em;
}

.main-top .nav-icon svg, .main-nav .nav-icon {
    height: 1em;
    width: 1em;
    fill: currentColor;
    position: relative;
    top: .125em;
}

.main-nav .nav-item, .main-top .nav-item {
    font-size: 0.875rem;
}

/* large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    /* sidebar navigation */
    .app-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1004;
        display: flex;
        flex-direction: column;
        width: var(--app-nav-left-wide-width);
        padding: 1.5rem;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .app-nav.navbar-expand-lg .navbar-nav {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .app-nav.navbar-expand-lg .navbar-collapse {
        width: 100%;
        margin-top: 1.5rem;
    }

    .app-nav .navbar-brand img {
        width: 169px;
        height: 45px;
    }

    .app-nav .nav-item, .app-nav .dropdown-item {
        margin: 0.5rem 0rem;
    }

    .app-nav .nav-item a {
        color: #fff !important;
        text-transform: uppercase;
        font-weight: 700;
    }

    .app-nav .nav-item span {
        vertical-align: middle;
    }

    .app-nav .nav-icon {
        display: inline-flex;
        align-self: center;
        font-size: 1em;
    }

    .app-nav .nav-icon svg {
        height: 22px;
        width: 22px;
        fill: currentColor;
        position: relative;
    }

    .app-nav .dropdown-item {
        font-size: 0.9rem !important;
    }

    .app-nav .dropdown-item .nav-icon svg {
        width: 1em !important;
        height: 1em !important;
        top: -0.130em;
    }

    .app-nav .nav-text {
        max-width: 100%;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-nav .dropdown-menu {
        border-radius: 0;
        border: 0;
        background: transparent;
        overflow: hidden;
        width: 100%;
        margin-left: 24px; /* size of main nav icons */
    }

    .app-nav .dropdown-menu.show {
        display: block;
        position: static;
    }

    .app-nav .dropdown-item:focus, .app-nav .dropdown-item:hover {
        background: transparent;
    }

    /* main application */
    .app-main {
        position: relative;
        margin-left: var(--app-nav-left-wide-width);
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
    }
}

/* footer */

.cart-footer {
    background-color: var(--app-nav-background);
}

.cart-footer hr {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    height: 1px;
}

/* whmcs overrides */

.breadcrumb {
    background-color: transparent;
}

.card {
    margin-bottom: 1.4rem !important;
}

.card .card-header h3.card-title {
    font-weight: 700 !important;
    font-size: 1.1rem;
}

.card .card-header {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    background-color: var(--light);
}

.card .card-body, .client-home-cards .list-group .list-group-item {
    padding: 1rem;
}

.tiles .tile, .tiles .tile:hover {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, .125) !important;
    border-radius: 0.25rem;
    text-align: center;
    padding: 2rem;
    margin-bottom: 1.4rem;
}

.tiles .tile .highlight {
    display: none;
}

.tiles .tile i, .tiles .tile:hover i {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1rem;
    line-height: 1;
    color: #ccc;
}

.tiles .tile .title {
    font-weight: 700;
    color: #212529;
    font-size: 1rem;
    margin-top: 1rem;
}

.verification-banner {
    border-radius: 0.25rem;
    margin-bottom: 1.2rem !important;
}

/* responsive client table fix for whmcs */

.table-container {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

/* recaptcha zindex fix */

.grecaptcha-badge {
    z-index: 2000;
}

/* carousel fix */

.upsell-carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 80%;
}

/* disable SSL checks */

#tableServicesList [data-type="service"], #tableServicesList .sorting_disabled, #tableDomainsList [data-type="domain"], #tableDomainsList .sorting_disabled:nth-child(2) {
    display: none;
}

/* module-client-area-hosting (plesk button) */

.module-client-area-hosting input[type=submit] {
    color: #fff;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #28a745;
    border: 1px solid #28a745;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.module-client-area-hosting input[type=submit]:active, .module-client-area-hosting input[type=submit]:focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, .5);
}

/* fix datatables */
.dataTables_wrapper table.table-list thead th {
    font-weight: 700;
}

/* remove default styles from main-content */

.main-content {
    margin: 0;
    min-height: auto;
}

/* rounded-xxl */

.rounded-xxl {
    border-radius: 15px;
}

.rounded-left-xxl {
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}

.rounded-right-xxl {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.rounded-top-xxl {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.rounded-bottom-xxl {
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

/* disable sitejet */

#cPanelGetSitejet, #pleskGetSitejet {
    display: none;
}