body {
    font-family: 'ralewayextralight' !important;
}
/*Override for Padding between header and body*/
.grid-container {
    /*padding-top: 30px;*/
}

select {
    font-size: 14px;
}

a[href], button, .button, .btn, [role="button"] {
    cursor: pointer !important;
}

h2 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

    h3::after {
        content: "";
        display: block;
        height: 8px;
        margin-bottom: 5px;
    }


.callout.primary {
    background: #F8C822 !important;
    position: unset;
}

.callout-oso.primary {
    background: #F8C822 !important;
}

.callout-oso {
    background-color: rgb(254.85, 254.85, 254.85);
    color: #0a0a0a;
    position: relative;
    /* margin: 0 0 1rem 0; */
    padding: 1px;
    padding-top: 11px;
    /* border: 1px solid rgba(10, 10, 10, .25); */
    border-radius: 0;
    height:55px;
}

    .callout-oso h3 {
        margin-bottom: 2px;
        margin-top: 20px;
        font-size: 13px;
    }

.button-yellow {
    background: #ffc300 !important;
    margin-bottom: 5px;
    margin-top: 10px;
    color: white;
}

    .button-yellow:hover {
        background-color: #0078D4; /* A richer blue */
        box-shadow: 0 0 5px rgba(0, 120, 212, 0.5); /* Adds glow */
        transform: scale(1.02); /* Slight zoom */
        transition: all 0.2s ease-in-out;
        border: 1px solid #ffae00;
    }

.button-dark-grey {
    background: #393936 !important;
    margin-bottom: 5px;
    margin-top: 10px;
    color: white;
}

    .button-dark-grey:hover {
        background-color: #0078D4; /* A richer blue */
        box-shadow: 0 0 5px rgba(0, 120, 212, 0.5); /* Adds glow */
        transform: scale(1.02); /* Slight zoom */
        transition: all 0.2s ease-in-out;
        border: 1px solid #ffae00;
    }

.button.primary:hover {
    background-color: #0078D4; /* A richer blue */
    box-shadow: 0 0 5px rgba(0, 120, 212, 0.5); /* Adds glow */
    transform: scale(1.02); /* Slight zoom */
    transition: all 0.2s ease-in-out;
    border: 1px solid #ffae00;
}

.toggle-btn {
    margin-top: 5px;
    background-color: #ffc300 !important;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 4px;
}

    .toggle-btn:hover {
        background-color: #005A9E;
    }


.contactDetailsWrapper li {
    margin-left: 12px;
}


.cart-description .short-text,
.cart-description .full-text {
    display: inline;
    font-size: 0.95em;
    line-height: 1.4;
    color: #333;
}

.cart-description .short-text {
    font-weight: 400;
    font-size: 13px;
}

.cart-description .full-text {
    font-weight: 400;
    font-size: 13px;
}

.cart-description .toggle-btn {
    display: inline-block;
    margin-top: 5px;
    margin-left: 10px;
    background-color: #ffc300;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.85em;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}

    .cart-description .toggle-btn:hover {
        background-color: #005A9E;
    }

.whatsapp {
    position: fixed;
    right: 0;
    top: 100px;
    right: 10px;
    margin: 10px auto;
    height: 50px;
    color: white;
    z-index: 1000;
}

.whatsapp_icon {
    width: 50px;
}

.h6 {
    font-size: 14px;
    font-weight: bold;
}

.squaremeter {
    color: white;
    padding-left: 10px;
    top: -0.45em;
    font-family: 'ralewayextralight';
}

    .squaremeter sup {
        color: white;
        top: -0.45em;
        font-family: 'ralewayextralight';
    }


/*.header-info {*/
.header-bar {
    background-color: #393936;
    color: white;
    height: 122px;
    font-size: 5pt !important;
    line-height: 45px;
}


/* Base menu styling */
.dropdown.menu {
    background-color: #393936;
    border-bottom: 2px solid #e0e0e0;
    padding: 0.5rem 1rem;
    margin-top: -5px !important;
}

    /* Top-level menu items */
    .dropdown.menu > li > a {
        color: #333;
        font-weight: 600;
        padding: 0.75rem 1rem;
        transition: background-color 0.2s ease-in-out;
    }

        .dropdown.menu > li > a:hover {
            background-color: #f0f0f0;
            color: #0078D4;
        }

    /* Submenu container */
    .dropdown.menu .menu.vertical {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        padding: 0.5rem 0;
        min-width: 180px;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    }

        /* Submenu items */
        .dropdown.menu .menu.vertical li a {
            color: #444;
            padding: 0.5rem 1rem;
            font-weight: 500;
        }

            .dropdown.menu .menu.vertical li a:hover {
                background-color: #e6f0ff;
                color: #393936;
            }


    /* Optional: ensure parent li is relatively positioned */
    .dropdown.menu > li {
        position: relative;
    }


        /* Optional: Add hover delay and styling */
        .dropdown.menu > li > ul {
            transition: opacity 0.2s ease-in-out;
        }

        .dropdown.menu > li:hover > ul {
            display: block;
            opacity: 1;
        }

        .dropdown.menu > li:hover .menu.vertical {
            opacity: 1;
            visibility: visible;
        }


.top-bar {
    background-color: #393936;
}

.is-submenu-item.is-dropdown-submenu-item {
    width: 220px;
    z-index: 99999 !important;
}

.home-search-button-container {
    /*padding-top: 10px;*/
    display: flex;
    gap: 1rem;
}

span.error, small.error {
    display: block;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: bold;
    padding: 0.375rem 0.5625rem 0.5625rem;
    /* background: #f04124; */
    color: #ebc53b !important;
    margin-left: 10px;
    /*width: 27px;*/
    /*float: right;*/
}

.privacy-toast-holder {
    bottom: 2rem;
    left: .5rem;
    position: fixed;
    right: .5rem;
    top: auto;
    z-index: 40;
	 width: 400px;
}

.privacy-toast-message {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 100rem;
    width: 100%;
    grid-column-gap: 2rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background: #fff;
    border-radius: .8rem;
    -webkit-box-shadow: 0 3px 21px rgba(0, 0, 0, .4);
    box-shadow: 0 3px 21px rgba(0, 0, 0, .4);
    justify-content: space-between;
    padding: .8rem 1rem;
}

.privacy-toast-message__heading {
    font-size: .8rem;
    font-weight: 600;
    grid-column: 1 / -1;
    margin: 0 auto .7em 0;
    text-align: left;
}

.privacy-toast-message__content {
    font-size: .75rem;
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    text-align: left;
}

.breadcrumbs, .crumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.breadcrumbs {
    list-style: none;
    padding-left: 0;
}

    .breadcrumbs li:not(:last-child)::after {
        position: relative;
        margin: 0px;
        opacity: 1;
        content: "";
        color: #cacaca;
    }

.txt-heading-2, h2 {
    font-size: 18px;
}

.txt-heading-1, .txt-heading-2, h1, h2 {
    font-weight: bold;
    letter-spacing: normal;
    font-size: 18px;
}

.card-header {
    text-align: right;
    font-weight: bold;
    text-transform: uppercase;
    align-items: center;
}

.breadcrumbs a {
    color: #0a0a0a !important;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

.crumb__ico {
    color: #0a0a0a !important;
    height: 10px;
    margin: 0px;
    width: 2px;
}

.crumb__link {
    color: #0a0a0a !important;
}

.txt-small-regular {
    font-weight: normal;
}

.txt-small-regular, .txt-small-semi-bold {
    font-size: 10px;
    letter-spacing: normal;
}

