:root {
    --paws-green: rgb(41, 104, 83);
    --paws-green-light: rgb(230, 249, 243);
    --paws-green-rgba: rgba(41, 104, 83, 0.6);
}


/**
 * Topbar, info bar header bar
 */


/* MAIN BAR */
#clio-info-header {
    position: relative;
    width: 100%;
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--paws-green);
    color: #fff;
    padding: 10px;

    overflow: visible;
    max-width: 100% !important;
    box-sizing: border-box;
    z-index: 9999;
}

.post-type-archive-listing #clio-info-header,
.page-template-template-dashboard-php #clio-info-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paws-green);
    color: #fff;
    padding: 10px;
    z-index: 1200;
    box-sizing: border-box;
}


/* INNER TEXT WRAPPER */
#clio-info-header p {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 1.3rem;
    line-height: 1.3;
    white-space: nowrap;
    /* prevents cutting text on some themes */
}

/* ICON */
#clio-info-header i {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    color: orange;
    font-size: 1.2em;
}

/* LINK STYLE */
#clio-info-header a {
    color: yellowgreen;
    font-weight: 800;
    text-decoration: none;
}


.clio-back-button {
    padding: 6px;
    font-weight: 700;
    background-color: #e0f5d7;
    border-radius: 6px;
    display: inline-block;
}

/**
 * Old dev pages fixups
 */
.listing-item-container.list-layout .listing-item-image:before {
    opacity: 0 !important;
}

@media (max-width: 991px) {
    .profile-phone-input-container {
        margin-bottom: 60px;
    }
}



/**
 * Messaging system
 */
.message-text p {
    margin: 0;
    white-space: normal;
    word-break: normal;
    /* don't split words */
    overflow-wrap: break-word;
    /* wrap long tokens like URLs */
    hyphens: none;
    /* disable automatic hyphenation */
}

/**
 *  checkout
 */ 
@media (max-width: 699px) {
    .wp-block-woocommerce-checkout-order-summary-block:not(.checkout-order-summary-block-fill-wrapper) {
        display: none;
    }
}