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

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

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

/* Custom CSS for Nexus Cart
 *
 * This block allows you to customize theme colors and styles for the entire Nexus Cart template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

html {
    font-size: 14px;
}

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

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

/* *****************************************************
   Webdev customizations ported from previous theme
   Brand color: #f0682a (Webdev orange)
***************************************************** */

.c-wd-orange {
    color: #f0682a;
}

/* Brand the main CTA buttons orange (delete this rule to restore theme yellow) */
.btn-default-yellow-fill {
    background-color: #f0682a !important;
    color: white !important;
}

.btn-default-primary-fill {
    background-color: #f0682a !important;
    color: white !important;
}

.btn.btn-default-primary-fill {
    border: none;
}

.btn-default-fill:hover {
    background-color: #f0682a !important;
    color: #fff !important;
    border: none;
}

.domain-promo-box i, .btn.btn-add-to-cart {
    background-color: #f0682a !important;
    color: white !important;
}

/* Orange hover accents */
.menu-item a:hover,
.soc-icons i:hover {
    color: #f0682a !important;
}

.nav-menu .main-menu > .menu-item:hover > a {
    color: #f0682a !important;
}

:is([data-color="black"] .nav-menu .main-menu .menu-item .menu-large .service-list .service .media-body a:hover) {
    color: #f0682a !important;
}

.footer .soc-icons a:hover i {
    color: #f0682a;
}

.footer .footer-menu .menu-item a:hover {
    text-decoration: none;
    color: #f0682a;
}

.header .mobile .dropdown.open a.dropdown-toggle,
#menu-mobile .dropdown.open .dropdown-menu a:active {
    color: #f0682a !important;
}

.navbar-main .navbar-nav .open .dropdown-menu>li>a:hover {
    background: transparent !important;
    color: #f0682a !important;
    transition: 0.3s;
}

.navbar-main .navbar-nav > li a:hover {
    color: #f0682a !important;
    transition: 0.3s;
}

#nav-toggle.active span:before {
    background-color: #f0682a !important;
}

#nav-toggle.active span:after {
    background-color: #f0682a;
}

.active #nav-toggle span:after {
    background: #f0682a !important;
}

/* Orange loading spinner */
.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #f0682a;
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

/* PNG logo sizing in header */
#logo-wrap,
#mobile-logo-wrap {
    display: flex;
    height: 47px;
    align-items: center;
}

/* Floating WhatsApp / webchat button */
.fab-container {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
    cursor: pointer;
}

.fab-icon-holder {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #f0682a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fab-icon-holder:hover {
    opacity: 0.8;
}

.fab-icon-holder i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 25px;
    color: #ffffff;
}

.fab {
    width: 60px;
    height: 60px;
    background: #f0682a;
}

.fab-options {
    list-style-type: none;
    margin: 0;
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
    transform-origin: 85% bottom;
}

.fab:hover+.fab-options,
.fab-options:hover {
    opacity: 1;
    transform: scale(1);
}

.fab-options li {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}

.fab-label {
    padding: 2px 5px;
    align-self: center;
    user-select: none;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 16px;
    background: #666666;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
}

/* Functional preferences */
#Primary_Sidebar-My_Invoices_Status_Filter-Paid {
    display: none !important;
}

.grecaptcha-badge {
    visibility: hidden;
}

ul.top-nav>li>a.btn-logged-in-admin {
    border-radius: 50px;
    margin-left: 0px;
    border: none !important;
    background-color: #f0682a !important;
    padding: 1px 7px !important;
    font-size: 9px !important;
    color: #000 !important;
}

/* Styling for custom content blocks used in product descriptions */
.workspace .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.workspace .row:before {
    display: none;
}

.workspace .service-title {
    font-size: 18px;
}

.workspace .gap-2 {
    gap: 1.2rem;
}

.workspace .justify-content-center {
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .workspace .row {
        display: flex;
        flex-direction: column;
    }
}

.why-wd.sec-bg4 {
    background-color: #efefef !important;
}

.product-desc.list-info {
    min-height: 500px;
}

.prod-desc-div {
    color: white !important;
}

.section-choosing p {
    line-height: 2em;
}

.section-choosing h3 {
    font-size: 18px;
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0px !important;
}

/* Domain checker mobile buttons */
@media screen and (max-width: 767px) {
    #domain-btns {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    #btn-search {
        border-radius: 50px;
    }
}

@media screen and (min-width: 768px) {
    .domain-checker-container #domain-btns {
        display: flex;
        min-width: 200px;
        left: 78%;
    }
}
