/**
 * Propstack Frontend Styles
 *
 * CSS für die Frontend-Templates des Propstack API v1 Plugins
 *
 * @package    Propstack_Api_V1
 * @subpackage Propstack_Api_V1/assets
 * @since      1.0.0
 */

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
.propstack-single-property *,
.propstack-archive-properties *,
.propstack-taxonomy-properties * {
    box-sizing: border-box;
}

/* .propstack-single-property,
.propstack-archive-properties,
.propstack-taxonomy-properties {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
} */

/* Container */
.propstack-single-property .container,
/* .propstack-archive-properties .container, */
.propstack-taxonomy-properties .container {
    max-width: var(--maxWidthBig, 1504px);
    width: var(--baseWidth, 92%);
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary,
.btn-secondary,
.btn-filter,
.btn-reset,
.btn-submit {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.btn-primary {
    background-color: var(--mainColor, orange);
    color: #fff;
}

.btn-primary:hover {
    background-color: #005a87;
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--greyVeryLight, lightgrey);
    color: #6c757d;
    border: 1px solid var(--greyLight, lightgrey);
}

.btn-secondary:hover {
    background-color: #e9ecef;
    color: var(--fontColor, #000);
    text-decoration: none;
}

.btn-filter {
    background-color: #28a745;
    color: #fff;
}

.btn-filter:hover {
    background-color: #218838;
}

.btn-reset {
    background-color: #6c757d;
    color: #fff;
}

.btn-reset:hover {
    background-color: #5a6268;
    text-decoration: none;
}

.btn-submit {
    background-color: var(--mainColor, orange);
    color: #fff;
    width: 100%;
}

.btn-submit:hover {
    background-color: #005a87;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */
.propstack-breadcrumb,
.taxonomy-breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #999;
}

.breadcrumb-list a {
    color: var(--mainColor, orange);
    /* text-decoration: none; */
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* .breadcrumb-list .current {
    color: #666;
} */

/* ==========================================================================
   Property Header
   ========================================================================== */
/* .propstack-property-header, */
/* .propstack-archive-header,
.propstack-taxonomy-header { */
    /* padding: 40px 0;
    background-color: var(--greyVeryLight, lightgrey); */
    /* border-bottom: 1px solid var(--greyLight, lightgrey); */
/* } */

/* .property-title,
.archive-title,
.taxonomy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
} */

.property-address {
    /* font-family: var(--mainFont), 'sans-serif';
    font-size: 1.1rem;
    color: #666; */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.address-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.property-meta-info {
    display: flex;
    /* gap: 20px; */
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    /* flex-wrap: wrap; */
}

.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    > * {
        flex-grow: 1;
        flex-basis: 300px;
        flex-shrink: 1;
    }

    .details-equipment-list {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;

        .equipment-item {
            /* background: var(--greyVeryLight, lightgrey); */
            border: 1px solid var(--greyVeryLight, lightgrey);
            border-radius: 10px;
            padding: .5rem 1rem;
            flex-basis: 200px;
            display: flex;
            gap: .5rem;
            flex-grow: 1;
            &.equipment-array{
                flex-basis: 100%;
                ul{
                    padding: 0;
                    li{
                        list-style: none;
                        border-radius: 5px;
                        padding: 0px 10px;
                        font-size: 80%;
                    }
                }
            }
        }
        .equipment-icon {
            color: var(--mainColor, orange);
        }
        .equipment-sub-list {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            color: var(--fontColor, #000);

            .equipment-sub-item {
                padding: 5px;
                background-color: var(--greyVeryLight, lightgrey);
            }
        }
    }
}

/* Status Badges */
/* .property-status {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
} */

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-sold {
    background-color: var(--warningColor, red);
    color: #fff;
}

.status-reserved {
    background-color: var(--mainColor, orange);
    color: #fff;
}

.status-available {
    background-color: var(--greenColor, green);
    color: #fff;
}

.status-reference {
    background-color: var(--roseColor, pink);
    color: #fff;
}

/* ==========================================================================
   Property Gallery
   ========================================================================== */
.propstack-property-gallery {
    margin-bottom: 40px;
}

.gallery-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--mainColor, orange);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Property Content Layout
   ========================================================================== */
.propstack-property-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.property-main-content section {
    margin-bottom: 40px;
}

.property-main-content h2 {
    /* font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50; */
    /* margin-bottom: 20px; */
    /* border-bottom: 2px solid var(--mainColor, orange); */
    /* padding-bottom: 10px; */
}
.property-main-content .has-orange-color {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 106%;
    display: table;
    padding-bottom: 20px;
}
.property-main-content .has-orange-color:after {
    bottom: 10px
}
/* Property Details Grid */
.details-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; */
    background-color: var(--greyVeryLight, lightgrey);
    padding: clamp(10px, 1.5vw, 20px);
    border-radius: 10px
}
.details-main-facts,
.details-grid {
    max-width: 500px;
    font-size: 17px;
}

.details-main-facts {
    font-weight: 500;
}
@media only screen and (max-width: 600px) {
    .details-main-facts {
        padding: clamp(10px, 1.5vw, 20px);
    }
}
@media only screen and (min-width: 601px) {
    .details-main-facts {
        margin-bottom: 20px;
        border-bottom: 1px solid var(--greyLight, lightgrey);
        padding-bottom: 20px;
    }
}

.detail-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* background-color: var(--greyVeryLight, lightgrey);
    border-radius: 8px;
    border-left: 4px solid var(--mainColor, orange); */
}
@media only screen and (max-width: 600px) {
    .detail-item {
        flex-direction: column;
        margin-bottom: 5px
    }
    .detail-item:not(:last-child) {
        border-bottom: 1px solid var(--greyLight, lightgrey);
        padding-bottom: 5px;

    }
    .detail-label {
        font-family: var(--headline 'sans-serif' )
    }
}
.details-grid > .detail-item:not(:last-child) {
    margin-bottom: 12px
}

.detail-label {
    width: 65%;
    /* font-weight: 600;
    color: var(--fontColor, #000); */
}

/* .detail-value {
    color: #2c3e50;
    font-weight: 700;
} */

/* Property Description */
.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--fontColor, #000);
}

/* Property Features */
.feature-category {
    margin-bottom: 25px;
}

.feature-category h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 6px 12px;
    background-color: #e9ecef;
    color: var(--fontColor, #000);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.label-tag {
    background-color: var(--mainColor, orange);
    color: #fff;
}

/* ==========================================================================
   Property Sidebar
   ========================================================================== */
.property-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background-color: #fff;
    border: 1px solid var(--greyLight, lightgrey);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    &.contact-form {
        position: sticky;
        top: 140px;
    }
}

.sidebar-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--greyLight, lightgrey);
    padding-bottom: 10px;
}

/* Price Information */
.price-item,
.energy-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--greyVeryLight, lightgrey);
    flex-wrap: wrap
}

@media only screen and (max-width: 600px) {
    .price-item,
    .energy-item {
        flex-direction: column;
    }
}

.price-item:last-child,
.energy-item:last-child {
    border-bottom: none;
}

.price-label,
.energy-label {
    color: #6c757d;
}

.price-value,
.energy-value {
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Form */
.propstack-contact-form .form-group {
    margin-bottom: 20px;
}

.propstack-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--fontColor, #000);
}

.propstack-contact-form input[type="text"],
.propstack-contact-form input[type="email"],
.propstack-contact-form input[type="tel"],
.propstack-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.propstack-contact-form input:focus,
.propstack-contact-form textarea:focus {
    outline: none;
    border-color: var(--mainColor, orange);
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.25);
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: auto !important;
}

/* Property Map */
.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--greyVeryLight, lightgrey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #6c757d;
}

/* ==========================================================================
   Archive & Taxonomy Styles
   ========================================================================== */
.archive-stats,
.taxonomy-stats {
    margin-top: 20px;
}

.stats-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: .5rem
}

.stats-count {
    line-height: 1
}

.stats-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mainColor, orange);
    line-height: 1
}

.stats-label {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1
}

/* Filter Section */
.propstack-filter-section {
    background-color: #fff;
    border-bottom: 1px solid var(--greyLight, lightgrey);
    padding: 30px 0;
}

.filter-toggle {
    text-align: center;
    margin-bottom: 20px;
}

.filter-toggle-btn {
    background-color: var(--mainColor, orange);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

.filter-container {
    display: none;
    padding: 20px;
    background-color: var(--greyVeryLight, lightgrey);
    border-radius: 10px;
    margin-top: 20px;
}

.filter-container.active {
    display: block;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--fontColor, #000);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
}

.filter-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Properties Grid */
.propstack-properties-grid {
    padding: 40px 0;
}

.properties-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.sorting-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sorting-options select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.view-options {
    display: flex;
    gap: 5px;
}

.view-toggle {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    background-color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.view-toggle.active {
    background-color: var(--mainColor, orange);
    color: #fff;
    border-color: var(--mainColor, orange);
}

/* Properties Container */
.properties-container {
    display: grid;
    gap: 30px;
}

.properties-container[data-view="grid"] {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.properties-container[data-view="list"] {
    grid-template-columns: 1fr;
}

/* Property Card */
/* .propstack-property-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.propstack-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.propstack-property-card:hover .property-thumbnail {
    transform: scale(1.05);
}

.property-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--greyVeryLight, lightgrey);
    color: #6c757d;
}

.placeholder-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.property-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
} */

/* Property Content */
.property-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-header {
    margin-bottom: 15px;
}

.property-header .property-title {
    margin-bottom: 0 !important
    /* margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;  */
}

/* .property-title a { */
    /* color: #2c3e50; */
    /* text-decoration: none; */
    /* transition: color 0.3s ease;
} */

/* .property-title a:hover {
    color: var(--mainColor, orange);
} */

.property-location {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.location-icon {
    margin-right: 5px;
}

.property-summary {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--fontColor, #000);
}

.summary-icon {
    font-size: 1rem;
}

.property-price {
    margin-bottom: 0;
    /* background-color: var(--greyVeryLight, lightgrey); */
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    /* flex-direction: column; */
}

.price-type,
.property-status {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0
}
.property-status {
    margin-top: 10px;
}

.property-price strong,
h1.property-title {
    font-size: 2.2rem;
    line-height: 125%
}
.property-price strong {
    color: var(--mainColor, orange);
}

.price-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mainColor, orange);
}

.property-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.btn-favorite {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.favorite-icon {
    font-size: 1.1rem;
}

/* Pagination */
.propstack-pagination {
    margin-top: 50px;
    text-align: center;
}

.propstack-pagination .page-numbers {
    padding: 5px 10px;
}

.propstack-pagination ul {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.propstack-pagination li {
    margin: 0;
}

.propstack-pagination a,
.propstack-pagination span {
    display: block;
    padding: 10px 15px;
    color: var(--mainColor, orange);
    text-decoration: none;
    border: 1px solid var(--greyLight, lightgrey);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.propstack-pagination .current {
    background-color: var(--mainColor, orange);
    color: #fff;
    border-color: var(--mainColor, orange);
}

.propstack-pagination a:hover {
    background-color: var(--greyVeryLight, lightgrey);
}

/* No Results */
.no-properties-found {
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin-top: 40px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="368" height="578" fill="none"><path fill="%23F2F2F2" d="M4 13C4 7.477 8.477 3 14 3h341c5.523 0 10 4.477 10 10v550c0 5.523-4.477 10-10 10H14c-5.523 0-10-4.477-10-10V13Z"/><path fill="%23F2F2F2" d="M360.672 178.803c.057 3.815-.155 4.604-.172 1.52-.004-.88.111-2.011.172-1.52Zm.203 27.115c.029 4.298-.218 2.044-.224 1.323-.026-3.027.233-5.651-.087-6.692-.023-1.842.111-.095.121-1.239.017-2.133-.133-4.249-.143-6.453v-.451c.069-.249.141-.846.211-.767.086 2.334.115 13.214.122 14.279Zm-.091-18.304c-.023 1.055-.126.599-.069 2.597-.084.433-.16-1.512-.159-2.499.003-.027.066.108.067-.126.004-1.742-.068-4.378.11-4.434-.098 1.725.074 3.399.051 4.462Zm-.008-22.077c-.122-.463-.107-1.258-.034-2.477.027.091.055.122.082.225-.02.717-.033 1.509-.048 2.252Zm.026-4.567c-.145-.934-.064-5.994.008-5.102.001 1.699-.004 3.404-.008 5.102ZM182.956 577.388c-3.268.257-15.091-.009-17.756-.012-12.294-.017-21.926.067-33.273.055-7.225-.007-13.922-.091-21.098-.103-1.553-.308-3.136-.614-4.715-.92 1.02.025 1.546.065 2.716.066 1.173 0 3.976.044 4.694-.1-1.048-.145-4.806-.176-5.954-.176-2.206.002-.812.142-2.329.175-1.525.032-4.051-.161-5.912-.088-4.361.174 3.795.284 5.3.253-.505.324-4.146-.054-5.574.199.549.077 2.808.265 3.667.209.852-.056-.478-.248 1.351-.193 1.209.178 2.556.364 3.758.544-1.817.046-4.561-.057-6.179-.053-9.965.032-19.734.021-29.515-.005-8.091-.121-16.166-.248-24.223-.38.088.009.168.019.246.029.133.016.263.032.436.044l.022-.005c.195.016.496.025.802.035.42.013.852.027 1.048.057l-.718.024-1.625.04-1.534-.245-7.6-.126a5.519 5.519 0 0 0-.38-.047l-.38-.037-.606-.021c-1.05-.037-2.354-.067-3.406-.089l-.803-.017c-.786-.017-1.408-.03-1.885-.043a13.952 13.952 0 0 1-.198-.005.716.716 0 0 0-.112-.027c-.368-.061-.879-.058-1.394-.025l-.162.013-.78-.018a317.998 317.998 0 0 1-5.3-.165h-.014l-1.246-.047c-.589-.021-1.223-.044-1.836-.061a97.848 97.848 0 0 0-2.126-.042L14 576.044c-3.3.075-6.915-1.684-8.604-3.33-1.398-1.232-2.443-2.766-2.862-3.367-.508-.946-.899-1.953-1.16-2.993a2.333 2.333 0 0 1-.092-.262c-.077-.26-.184-.712-.263-1.208-.12-.715-.163-1.503-.192-1.884-.01-.092-.022-.152-.036-.168V563a13.251 13.251 0 0 0 .35 3.059c.097.538-.514-1.476-.478-3.059a13.96 13.96 0 0 1 .016-.9c.048-.769.223-.51.324-.218l.02-1.147c-.014-.109-.033-.183-.052-.26-.03-.122-.064-.254-.09-.556-.13-1.524-.026-5.455.142-3.829.02-1.048-.016-1.193-.06-1.358-.046-.175-.1-.38-.105-1.731-.004-1.605.039-2.247.08-2.85.022-.321.043-.636.056-1.077.012-.4.016-1.099.02-1.886.01-1.724.024-3.889.128-4.37.115-.552.149.331.169 1.111l.104-6.157a.325.325 0 0 0-.11-.021c-.026-2.769.057-3.28.157-2.815.044-2.607.088-5.217.13-7.826-.019-.546-.034-1.092-.044-1.534-.043.186-.045.777-.047 1.33-.001.467-.002.913-.028 1.063-.207 1.105-.424-4.338-.142-3.35.068.24.147.514.203.021.041-.372.07-1.835.054-2.372l.01.028a2.622 2.622 0 0 0-.019-.197l-.042-.331a21.03 21.03 0 0 1-.108-.943c-.026-.349-.05-.768-.073-1.196-.26-4.83-.134-1.097.073-6.059.015-.39.013-.827.011-1.239 0-.362-.001-.71.009-.985.015-.519.037-.975.058-1.422.04-.838.08-1.65.076-2.829 0-.032-.008.034-.019.134-.272 2.466.077-1.848.083-1.977.005-.12.009-.214.014-.219.044-.035.068.957.095 2.112.026 1.088.055 2.325.11 2.983l.021-1.407a20.481 20.481 0 0 1-.013-1.682c.007-.17.024-.148.04-.127h.002l.019-1.266c-.014-.074-.029-.072-.032-.071a.195.195 0 0 1-.006-.014c-.02-.716.012-3.708.064-4.053a.504.504 0 0 1 .04-.169l.05-3.336a5.381 5.381 0 0 1-.013-.345c-.003-.264.011-.542.03-.816l.024-1.654-.01-.014c-.025-.031-.051-.066-.058-.169.003 2.91-.058 2.349-.126 1.724-.032-.288-.065-.588-.094-.57-.038.034-.05.582-.06 1.098-.014.648-.027 1.25-.091.746.06-1.621.033-2.72.005-3.828-.089-3.496.139-4.085.124-1.549a23.96 23.96 0 0 0 .019 1.485c.028.468.092.592.15.704a.767.767 0 0 1 .073.19l-.005-.092c-.004-.104-.052-2.52-.05-2.758-.005-1.418.014-1.373.048-1.288.017.043.038.097.06-.028.008-.052.013-.23.019-.408.007-.235.015-.471.027-.437a.967.967 0 0 1 .041.24l.016-1.07a7.915 7.915 0 0 1-.03-.556c.002-.084.049-1.791.055-1.802 0-.004.004.01.008.035.05-3.546.099-7.098.146-10.654l.008-.092.013-.155.04-.429c.048-.519.12-1.296.175-2.027.038-.521.083-1.206.115-2.026.032-.811.066-2.138.036-3.716a55.38 55.38 0 0 0-.116-2.886c-.076-1.012-.164-1.497-.216-1.667-.014-.049-.03-.073-.044-.071l-.058-.45c-.048-.927.004-.935.043-.936.01-.001.018-.002.024-.014.02-.062.117-.317.167-.43.047-3.944.092-7.898.134-11.858a2208.363 2208.363 0 0 0 .123-19.993c-.04.222-.08.335-.127-.437-.064-1.09.034-4.005.05-4.447-.006-.084-.017-.174-.03-.282-.03-.252-.074-.612-.09-1.266-.037-1.455-.455-8.184-.378-9.747-.003-1.31-.008-2.626-.013-3.941l.014-1.401c.016-.143.03-.315.044-.521.134-2.173.235-6.413.402-8.825.046.646.086 1.413.128 2.105.053-.495.105-.998.157-1.499.023.094.046.18.069.267l.118-4.624-.009.007c-.017-.553.003-.799.032-.95l.059-2.273-.037-.725-.19-.527.108-1.225c-.045-1.214-.058-2.407.04-3.23l-.019-2.111a36.186 36.186 0 0 1-.022-1.506c-.078-.73-.545-2.956-.613-6.327l.487.31-.08-2.991-.308-.767.243-.345-.04-5.736h-.003a8.561 8.561 0 0 1 0-.549l-.005-.781.207.127.003-.092a23.382 23.382 0 0 0-.033-1.576l-.09.598-.217-7.65.137-.978a11.586 11.586 0 0 1-.005-.338c.001-.015.029-.018.056-.042l.056-.401v-.148l-.386-1.71-.014-4.307c.02-1.13.04-2.208.06-3.216l.255-5.313a6.23 6.23 0 0 1-.124-.584l.025-1.056-.084-.274c.026-.85.104-2.001-.033-4.279l.449.295c.014-.219.036-.473.063-.746l-.478-7.044.665-3.132.106-7.783-.014-.838-.268 2.513-.6-2.414c.158-1.558.318-3.115.477-4.673-.253-7.656.534-15.077-.402-12.33l.108 3.09-.418-3.991.332-3.659-.144-4.56.334-1.288-.31-3.716.55-3.103-.114-18.284c.414-9.118-.204-4.891-.376-11.239l.37-8.789-.313-3.231.182-2.85.053-13.54-.542 2.611-.107-2.527.662-6.608-.2-5.243c.04-2.432.08-4.865.122-7.298l.398-.295-.642-2.667-.114-10.402.299 6.214.267-5.313-.181-5.7-.254-1.71.257-11.816.007-14.117c-.314-4.155.252-11.394-.604-11.908l.206-11.485-.143-2.526.335-1.309-.297-4.884.02-6.82.234 2.14.32-19.304-.635-.992.182-7.256-.39-.93-.063-11.92.501-12.197c-.34-5.057-.713-16.128.04-18.677l-.28-19.318.381 1.035.11-1.696-.565-1.408c.135-2.24.27-4.48.403-6.72l.329 2.449.011 2.751.383-3.821.01.169c.063-3.631.148-6.962.241-10.044.06-2.187.817-4.189 1.954-5.74.224-.307.466-.6.722-.88 4.032-3.898 7.016-2.842 7.541-2.743.152.059.227.122.227.184.023.338-1.613.308-4.016 1.785-.2.127-.394.263-.582.406C7.245 7.615 5.895 10.324 6.004 13c.036 1.517.065 3.026.088 4.505a79.99 79.99 0 0 1 .142-2.378c.046.522.086 1.148.13 1.71l.153-1.274c.035.112.07.16.106.316.01 2.845.213 6.606.229 9.163.014 2.335-.158 3.65-.164 5.44-.006 1.795.236 7.526-.112 6.425-.015.303-.027.74-.046 1.028.366.297.097 2.602.153 5.067.027 1.158.344 4.605-.177 1.562-.005.38-.024.536-.038.859.457 3.215.308 4.683.158 8.353-.084 2.055-.184 6.216.16 4.342.223 2.1-.12 4.783-.097 6.292.025 1.5.213-.541.241 1.485.005.335.008 3.186-.018 4.032-.027.839-.17-.15-.15 1.218.09 5.921.404 11.389.478 17.586.22 18.34.245 35.747.285 54.851.007 3.156.067 19.494-.056 21.358-.421 6.387-.617-7.159-.8 2.006 1.168 2.494.821 7.915.835 15.602.011 5.668.179 14.823.042 19.684-.145 5.186-.285 1.019-.535 4.11.482 2.086.58 4.593.608 8.874.03 4.499-.12 8.99-.156 13.681-.013 1.579.092 3.733.05 5.538-.053 2.252-.328 1.682-.368 3.062-.04 1.384.279.19.33 1.696.022.685.033 5.446-.09 6.467-.03.237-.13-.653-.225-.464-.052.103-.445.064-.412 1.224.35 1.033.703 1.114.728 4.729.04 5.714-.124 11.115-.148 17.193-.005 1.36.252 4.582-.048 6.052-.088.429-.427.199-.41 2.365.015 1.864.169 2.156.285 3.779.044.615-.116.791-.021 1.956.094 1.174.312 2.853-.106 3.603.127.155.24.179.36.289.023 2.065-.442 5.594-.056 4.976l.005 6.375c-.137.373-.275.733-.413 1.105-.132-1.264.046-3.231-.213-3.462l-.061 5.489c.69-.483 1.036 5.236.313 3.969-.137-.235-.022 3.51.025 4.321.047.805.326 1.02.149 2.682-.1.943-.267 1.523-.075 3.786.078-1.373.173-2.837.258-4.237-.031 2.067.064 4.751-.083 6.587-.037.453-.14-1.334-.199-.492-.059.843-.025 4.288.245 3.568-.528 1.589-.09 1.365-.077 4.722.001.426-.5 3.817-.232 5.362.096.546.452-.475.3 2.182-.114 1.956-.418-.057-.59 2.111.405-1.009.64 2.384.65 4.37.018 3.522-.238 2.998-.35 4.124-.201 2.033.135 3.79-.174 4.927-.008-.599-.033-1.141-.048-1.718-.04 1.268-.077 2.538-.117 3.801.168-.055.337-.12.504-.169.056 2.135-.148 3.031-.19 4.806-.005.25.114 0 .115.254.01 2.051-.054 2.709.185 4.215-.423.096-.141 2.745-.328 4.856-.053.592-.27.926.194.866-.104 4.005-.066 7.017-.42 10.253.463-1.194.47 3.405.344 6.074-.035.712-.36 1.335-.304 2.843.139-.405.298-.87.441-1.302.045 3.057-.383 2.385-.337 4.975.02 1.137.501.417.287 2.576-.122 1.237-.704 1.949.007 2.407.036 1.729-.196.656-.223 1.865-.016.759.248 1.605.215 2.773-.063 2.221-.566 5.217-.045 5.348.037 1.57-.181.439-.153 1.865.038 1.912.381 6.663-.031 7.46a.06.06 0 0 1 .002.007c.238 1.558.153 6.657-.21 5.412.1-2.701-.293-4.777-.288-2.062.006 2.737-.04 3.455-.19 3.793.074 1.381.2 2.09.222 4.018.015 1.37-.06 3.273-.055 4.933.067 0 .126.08.16.472.09 1.017-.11 4.344-.108 5.447v.063c.067.214.173.164.218 1.302.012.318-.085 1.082-.147 2.02.025.806.047 1.577.05 2.336 0 .287-.005.598-.012.922.082 1.481.213 3.983.215 5.067.001.641-.13 1.908-.136 2.154-.017.854.171.455.187 1.196.116 5.473.068 12.06.131 17.362.06 5.037.099 7.772.156 12.913.053 4.772.405 8.623-.603 5.046-.096 3.917.176 2.389.417 2.977.141.351.024 1.391.051 1.605.093.696.187-.954.255-.394.274 2.252.09 12.356.104 14.546.063 10.089.209 17.832.272 27.137.04 5.927 0 11.551.037 17.445-.293 1.78-.585 3.571-.876 5.37.018-.877.054-1.37.048-2.329-.008-.96.017-3.321-.128-3.674-.136 1.095-.142 4.22-.134 5.159.015 1.802.144.43.186 1.618.042 1.194-.132 3.582-.048 4.983.2 3.285.255-3.574.215-4.758.322-.119-.027 3.489.232 4.237.072-.576.242-2.738.182-3.35-.061-.606-.241.806-.199-.781.167-1.282.341-2.696.51-3.976.057 1.413-.027 3.836-.011 5.151.026 2.251.05 4.495.07 6.734-.03 3.371 3.02 6.321 6.319 6.21 7.056-.036 14.131-.059 21.31-.089 1.356-.005 4.053-.015 5.376.03 1.029.036.83.258 1.788.192.096-.012-.39-.15.9-.187 2.448-.07 7.876-.103 10.62-.113 26.89-.103 53.242-.256 80.474-.019 1.427.013 6.784.01 7.769.086 2.939.228 2.412.533 4.082.056 1.577-.026.473.205 1.203.267.296.022 2.137-.307 2.907-.19 1.753.272-1.206.295-2.266.421 2.622.153 5.279-.111 7.516-.117.633-.002.725.255.858.263 2.634.088 2.373-.416 2.252-.628l-3.955-.077c2.579-.073 4.498.076 7.115.143.623.015-.223-.216 1.203-.128.457.162.891.334 1.33.5 3.35-.143 4.532-.24.352-.499 1.665.004 3.338.005 5.011.009-.605.17.264.439 1.907.279.377-.039-.616-.22-.134-.273.487-.053 4.092-.009 4.392.005 2.759.13 3.202.496 5.574.305-.713.01-3.869-.185-1.802-.286 2.306-.111 11.789.102 14.561.17 4.726.118 7.015.209 11.084.475.768.05.712.28 2.209.368 2 .118 5.632.19 7.882.339-.454.049-1.009.093-1.506.14l1.485.144c-.06.036-.066.07-.169.107-2.818.028-6.267.257-8.79.288-2.301.029-3.852-.134-5.644-.129-1.792.006-7.154.284-6.559-.071-.323-.012-.784-.021-1.097-.038.234.367-2.442.113-4.814.185-1.113.034-4.084.373-1.809-.165-.387-.004-.571-.022-.915-.034-2.54.476-4.214.337-8.086.211-2.167-.07-6.447-.143-4.088.188-1.767.235-4.928-.09-6.397-.057-1.467.034.838.209-1.141.25-.341.008-3.165.029-4.039.007-.87-.021-.092-.17-1.422-.14-5.762.128-10.75.475-16.812.589-2.271.042-4.536.082-6.791.118 4.879.191 8.465.641 14.821-.287l12.259-.141.718.154.739-.011a955.25 955.25 0 0 1 5.616-.062c4.173-.035 9.574-.065 15.778-.09 12.443-.051 28.629-.084 45.807-.098h.316l.31.001c.525.002 1.1.005 1.654.01.307.002 1.521.012 2.808.047.352.01 2.736.07 4.37.242.246.026.467.054.661.084l3.934.144-.056.219 3.195-.009.415-.08 10.001-.114 2.765.159c3.089-.005 6.077-.008 8.91-.009l.45-.257 4.511.258c2.934.002 5.646.008 8.058.018l-.211-.101 8.973-.311 3.666.228 2.829-.192 12.154-.045 2.97.413 3.568-.06-2.829-.256 10.092-.076.267-.39c-.984.021-1.934.039-2.794.041-.725.001-.536-.152-.683-.155-2.909-.051-3.167.248-3.265.373l4.427.043c-3.03.045-5.052-.042-7.967-.08-.694-.008.006.128-1.527.076-.341-.095-.639-.197-.957-.295-3.986.087-5.443.145-.957.296l-5.708-.002c.879-.101.189-.26-1.864-.164-.483.022.448.129-.162.161-.614.032-4.701.008-5.011 0-3.004-.075-3.101-.29-6.017-.177.838-.005 4.2.108 1.731.168-2.759.067-13.341-.053-16.432-.092-5.271-.067-7.788-.119-12.14-.274-.823-.029-.494-.166-2.104-.217-2.153-.069-6.231-.109-8.635-.196.192-.01.415-.018.626-.027 2.315-.013 4.527-.011 6.454.013 7.076-.313 15.171-.278 17.748-.309a.406.406 0 0 1-.091.026c.355.008.864.013 1.203.022.062-.093.61-.117 1.436-.119l1.442.019c-.025-.004-.033-.009-.056-.013.84.008 1.792.016 2.752.003.725.034 1.477.06 2.146.082l-.134.014c.441.001.633.012 1.014.018l.035-.003.176.007.542.017c1.014.032 2.214.072 3.336.101 1.197.032 2.356.039 4.081.032.726-.003 1.608-.009 2.703-.018-1.641.14 1.145.392 5.883.377.673-.112-1.12-.045-1.126-.106.007-.061 1.791.008 1.14-.105-2.928-.031-1.569.097-3.793.123.526-.066-.039-.189.359-.245.626-.087 1.893-.031 2.153-.089l.521-.006c1.315.006 2.631.01 3.941.014 1.315-.065 6.268.219 8.684.334l-.436.02 1.077.008c.172.007.308.013.422.015.612.016.961.055 1.21.085-.109.012-.166.025-.126.04l5.496.023c0 .017-.057.033-.148.05a2271.252 2271.252 0 0 0 19.994-.123c2.655-.029 5.308-.058 7.958-.089a8.126 8.126 0 0 0 3.097-.654c.065-.081.213-.249.25-.291a.031.031 0 0 0 .005-.029c-.018-.042-.03-.063.632-.38.009-.004.148-.056.335-.138.006.013.03.017.072.007.139-.036.532-.16 1.198-.665a6.902 6.902 0 0 0 1.59-1.782A6.917 6.917 0 0 0 363.22 563a114.453 114.453 0 0 0-.241-2.85l-.013-.148-.009-.092c-.047-3.555-.095-7.109-.145-10.654-.005.026-.008.039-.009.035a147.94 147.94 0 0 1-.053-1.802c.001-.172.013-.366.028-.563l-.015-1.062a.98.98 0 0 1-.042.239c-.012.03-.019-.204-.026-.436a7.613 7.613 0 0 0-.019-.409c-.023-.124-.043-.071-.06-.028-.034.085-.054.127-.049-1.288-.001-.255.046-2.645.051-2.758l.005-.092-.16.408c-.026.104-.05.252-.064.486-.025.4-.022.955-.019 1.485.006.931.011 1.797-.141 1.668a60.26 60.26 0 0 1 .017-3.216c.029-1.11.057-2.208-.004-3.829.064-.501.077.099.09.746.011.517.023 1.064.061 1.098.029.016.062-.29.094-.577.068-.623.129-1.173.126 1.731.007-.102.033-.138.057-.169a.076.076 0 0 0 .011-.014l-.024-1.661a10.082 10.082 0 0 1-.031-.809c.001-.12.006-.242.013-.352l-.05-3.329a.521.521 0 0 1-.039-.168c-.052-.345-.084-3.338-.064-4.054l.005-.014s.017.01.033-.07l-.019-1.267-.002.007c-.017.021-.034.037-.041-.134a20.533 20.533 0 0 1 .014-1.675l-.022-1.414c-.054.658-.083 1.895-.109 2.984-.028 1.15-.051 2.135-.095 2.104a1.686 1.686 0 0 1-.015-.218c-.019-.435-.054-1.223-.195.26-.055-3.746.064-2.672.112-2.231.011.1.019.165.02.134.003-1.178-.036-1.991-.076-2.829a74.738 74.738 0 0 1-.059-1.422c-.01-.275-.009-.623-.008-.985a29.73 29.73 0 0 0-.012-1.239 80.882 80.882 0 0 0-.145-1.963c-.071-.876-.14-1.729-.137-1.872.103-.241.157-1.248.21-2.224.023-.427.046-.847.072-1.196.024-.289.071-.643.109-.936l.042-.338c.011-.091.017-.164.018-.204l-.009.035c.016-.54-.013-2.002-.054-2.372-.042-.369-.097-.31-.151-.154a43.07 43.07 0 0 0-.101.337c-.046.129-.081.126-.093-.323-.056-2.115.164-3.815.283-3.188.026.149.027.6.029 1.069.002.551.004 1.137.046 1.323.01-.441.026-.995.045-1.541l-.13-7.818c-.1.463-.183-.047-.157-2.815a.358.358 0 0 0 .11-.022l-.104-6.164c-.02.78-.055 1.671-.17 1.119-.104-.482-.116-2.648-.126-4.371-.005-.788-.009-1.486-.021-1.886-.013-.44-.035-.757-.056-1.076a33.95 33.95 0 0 1-.028-.444c-.007-1.109-.015-2.312-.026-3.568.021-.347.051-.468.078-.57.044-.165.081-.307.061-1.358-.065.623-.119.426-.156-.134l-.025-3.005c.01-.255.022-.495.039-.689.026-.303.059-.434.09-.556a2.16 2.16 0 0 0 .051-.261l-.019-1.14c-.05.144-.118.274-.18.282l-.009-1.323c.041-.231.057-.91.07-1.528.009-.38.016-.744.029-.95.007-.095.016-.157.025-.204l-.042-2.449c.087-.556.142-1.98.127-3.413-.012-1.085-.024-2.562-.038-4.103.035-.092.074-.39.116-1.541a25.973 25.973 0 0 1-.142-1.281l-.041-4.687a98.46 98.46 0 0 0-.041-2.125c-.018-.612-.04-1.242-.062-1.83l-.046-1.252v-.015c-.027-.711-.053-1.373-.075-2.047 0-4.034.041-8.13.042-12.33 0-1.815-.07-4.223-.054-6.313.021-2.605.185-2.099.203-3.701.017-1.606-.165-.064-.202-1.76-.016-.775-.043-6.222.025-7.453.016-.281.08.683.135.416.031-.146.261-.321.236-1.626-.21-.992-.418-.896-.449-5.018-.048-6.516.024-12.78.012-19.747-.003-1.557-.169-5.108.001-6.953.05-.538.251-.458.231-2.927-.017-2.123-.109-2.373-.185-4.167-.028-.681.065-.968.004-2.252-.061-1.291-.195-3.097.047-4.18-.075-.107-.142-.081-.213-.141-.022-2.351.235-6.629.011-5.714l-.032-7.291.239-1.492c.083 1.375-.013 3.724.141 3.85l.012-6.32c-.405.925-.633-5.414-.203-4.356.082.189-.003-4.031-.034-4.933-.031-.895-.195-.99-.098-2.984.054-1.135.15-1.891.027-4.378-.04 1.612-.089 3.335-.134 4.983.01-2.383-.058-5.399.021-7.58.02-.538.087 1.446.118.451.031-.999-.003-4.917-.159-3.948.303-2.102.048-1.609.025-5.44-.003-.482.277-4.631.113-6.256-.059-.573-.265.782-.186-2.344.058-2.299.246-.16.337-2.737-.234 1.373-.387-2.378-.401-4.645-.027-4.019.126-3.557.187-4.905.109-2.434-.096-4.268.081-5.736.007.681.025 1.29.036 1.942l.053-4.405c-.099.154-.199.311-.297.457-.042-2.413.074-3.546.091-5.601.002-.284-.067.065-.069-.226-.015-2.341.019-3.121-.128-4.715.249-.338.072-3.225.172-5.742.029-.705.155-1.2-.118-.88.043-4.639.008-8.063.202-11.957-.267 1.615-.291-3.634-.229-6.756.017-.835.206-1.729.166-3.427-.08.538-.171 1.152-.254 1.724-.04-3.47.215-2.932.177-5.869-.017-1.289-.297-.206-.181-2.787.067-1.482.407-2.611-.014-2.751-.029-1.96.112-.861.123-2.259.006-.877-.153-1.702-.139-3.055.027-2.576.31-6.283.003-6.15-.029-1.771.104-.59.082-2.203-.031-2.165-.254-7.418-.014-8.551l-.001-.007c-.147-1.652-.12-7.541.099-6.312-.047 3.145.193 5.308.178 2.202-.025-5.087.054-4.149.336-5.341.04-.175.06-1.62.113-1.323.053.294.109 3.391.223 1.654.021-.337-.069-1.93.049-2.259-.028-.32-.055-.476-.083-.732.251-2.835.338-3.111.376 2.118-.056-.137-.112-.272-.168-.415.07.741.138 1.378.208 2.195-.001 5.725.225 13.423.157 18.586-.059 4.514-.104-1.686-.114-1.794-.11-1.138-.155.937-.227.978-.071.034-.183-2.51-.145-.225.005.305.226 3.322.256 3.427.153.5.217-.142.263.514.087-14.474.175-26.226.246-37.601l.052-8.98c.057-10.753.155-18.948.242-25.694l-.117-6.397.098-2.111.006-11.148.142-.485c-.449-6.219.543-8.026-.243-13.4l-.078-6.798.328-1.513-.089-.626.114-5.954-.247-4.441c.33-1.068-.151-12.748.136-10.478l-.021-5.025.131 1.196.092-.78-.164-3.71c.493-1.793.107-3.87.072-4.736-.055-1.408-.067-4.013-.078-4.18-.017-.251-.147 2.126-.224.127l.238-3.188a53.925 53.925 0 0 0-.134-.366l.08-2.182.153.042.054-1.28-.135-.733-.063-5.538.236-4.103-.026-2.153-.27-.465.331-5.799-.064-3.195-.138.746.084 1.154-.116.233-.173-4.976.127-2.027-.106-1.569-.025-6.735.229-1.647-.033-1.977-.142 1.57-.043-5.603-.294-.204.054-2.484.162-.14.29-10.198-.311-.408c.081-2.302.087-4.643.078-6.925-.004-1.809-.67-3.496-1.652-4.781-.778-1.121-2.213-2.301-2.128-1.912A7.804 7.804 0 0 0 355 5.137c-1.564-.013-3.129-.027-4.693-.042l-2.914.157-4.384-.24c-2.187.21-13.443.345-13.125.037-2.512.073-2.313.008-5.355.114l-2.168-.18-3.835-.034-5.095.162-3.421-.287-.169.225-3.005.074c-2.719.375.548-.704-7.987-.26l3.871.018 1.491.279-5.397.113-3.808-.09-3.18.081-8.445-.179-7.974.07c-.476-.06-.952-.118-1.429-.177l-3.504.213-1.401-.035-.408-.154-6.355.088-4.44-.138.176.136-20.444-.016-.05-.002c-.719-.144-4.287.178-3.856-.273l-.64.133-2.203-.08.141-.157-1.668-.006-.148.196 1.872.13-4.687-.069.647-.132c-2.005-.122-8.023.404-3.469-.629l3.251.13c-.6-.094-1.201-.186-1.801-.279l.478-.227 2.956.15c.504-.052 1.009-.102 1.513-.153l-1.056-.094 1.781-.13 5.918-.041 1.021.097 10.225.046-1.231.175 2.702.005.873-.159 2.688-.044-.528.31-2.604.22 2.147.1.394-.229 3.089.018-1.485-.167.753-.188 4.364-.083.464.139c1.07-.055 2.139-.11 3.209-.163.526.03 1.051.062 1.577.093l.703-.087 3.674.016 2.252.151 2.301-.134 13.765.144c3.116-.27 10.326.14 9.902-.124l11.732.028 2.329.126 11.739-.079 14.623.243-1.477-.279 4.602.018 2.766.198 2.611-.17c1.174.468 4.25-.08 8.205.076A7.464 7.464 0 0 1 355 3.718c1.92-.131 4.059 1.024 5.763 1.976a9.142 9.142 0 0 0-.35-.098c.611.451 1.165.979 1.647 1.566a9.212 9.212 0 0 1 2.111 4.18c-.051.06-.103.12-.155.178.072.49.103.984.095 1.48l-.008.57-.072-.57a9.53 9.53 0 0 0-.098-.568c.006.19.007.377.001.568l-.032 1.288.188 6.883-.142 1.78.135.943-.112 4.068.138-.296.008-1.83.135.099-.027 6.108.092-.492-.022 5.186.011-.112c.076-.672.362-.166.355-3.73-.006-3.06-.135-3.594-.228-6.299-.035-1.024.101-1.251.026-3.195-.076-1.96-.254-4.8.101-5.876-.106-.3-.201-.381-.302-.605-.004-1.163.041-2.586.088-3.92.122-2.428-.903-4.405-.837-3.815-1.308-2.984-4.291-5.165-7.543-5.477a9.246 9.246 0 0 0-.966-.267l-.639-.134c.204-.01.418-.018.639-.024 2.06-.139 4.411 1.049 4.841 1.125A9.861 9.861 0 0 0 355 3.098l-3.856-.03c.541.584-8.954.855-6.608.25.425-.115-5.759-.03-7.101.006-1.338.036-1.787.271-4.447.116-1.513-.088-2.402-.23-6.186-.077 2.221.07 4.577.155 6.84.233-3.378-.035-7.804.037-10.76-.094-.734-.033 2.234-.113.873-.166-1.362-.052-7.014-.037-5.933.193-2.411-.45-2.211-.08-7.72-.081-.701 0-6.073-.436-8.706-.214-.927.079.611.383-3.694.244-3.168-.103.246-.352-3.252-.505 1.508.346-4.142.532-7.403.533-5.778.002-4.818-.211-6.622-.31-3.26-.177-6.272.1-8.023-.164.984-.005 1.879-.024 2.829-.034-2.065-.039-4.129-.075-6.186-.113.028.142.072.285.092.426-3.523.039-4.914-.136-7.812-.177-.407-.006-.039.095-.457.095-3.368.002-4.417-.054-6.974.142-.002-.358-4.467-.13-7.861-.295-.948-.047-1.407-.23-1.478.162-6.532-.103-11.479-.082-16.658-.392 1.793.395-5.754.385-10.085.269-1.158-.032-2.057-.309-4.553-.267.613.118 1.307.254 1.964.377-5.027.027-3.766-.332-8.03-.302-1.873.013-.866.421-4.328.233-1.984-.108-2.941-.602-3.955-.003-2.85.024-.998-.168-2.977-.195-1.239-.017-2.719.204-4.624.172-3.62-.061-8.353-.497-8.761-.057-2.585.025-.64-.155-2.984-.136-3.146.025-11.077.298-12.231-.053v.002c-2.642.196-10.993.105-8.811-.197 4.394.093 7.944-.23 3.49-.235-7.307-.009-5.812-.112-6.967-.524-.17-.06-2.207-.1-1.682-.173.524-.073 5.063-.127 2.801-.304-.435-.033-2.896.082-3.139-.09-.508.037-.778.075-1.196.112-3.556-.382-3.782-.509 3.751-.517-.303.079-.61.157-.922.236 1.194-.094 2.23-.185 3.533-.278 8.161.05 19.573-.205 26.806-.064 6.311.123-2.547.134-2.766.147-1.841.148 1.029.23.95.332-.087.102-3.942.24-.605.205.44-.005 5.153-.293 5.376-.335 1.602-.34-1.322-.38 5.637-.46 2.485-.03 9.666-.052 12.386-.065 3.001-.014 5.422.163 7.207.145 1.784-.018.107-.132 2.217-.149 4.17-.033 10.188.083 14.032.082 4.363-.003 5.622-.175 9.839-.176 2.923 0 6.853.132 10.148.079.777.093-.714.444 1.478.422 2.669-.028-1.046-.242.288-.346 2.706-.054.781.103.873.108 1.322.068 3.583.023 5.222.059-1.083-.073-2.139-.138-3.294-.211 4.473.119 2.197-.131 5.771-.181.937-.012 3.059.253 6.305.181.773-.017 8.392-.187 10.852-.176 1.053.005 2.766.126 3.139.133 1.341.022 1.202-.14 2.449-.146 9.239-.048 19.846.053 28.663.047 8.381-.005 12.944-.012 21.486-.014 7.922-.002 15.158-.26 6.573.548 6.119.116 4.367-.125 5.982-.32.957-.116 2.326-.009 2.751-.029 1.401-.07-1.039-.164.057-.216 1.409-.067 3.998-.088 6.987-.084 3.464-.063 7.306 1.708 9.534 4.458 2.314 2.716 2.963 6.058 2.915 8.11-.004.53-.007.973-.008 1.309-.038 16.62.014 29.638-.017 44.977-.02 9.77-.103 18.825-.126 28.53-.26 2.097-.519 4.227-.778 6.361.023-1.38.057-2.085.06-3.666.002-1.585.045-5.376-.074-6.348-.123 1.415-.157 6.502-.159 8.05-.003 2.986.117 1.093.142 3.154.024 2.061-.143 5.465-.085 7.98.137 5.904.246-5.12.222-7.157.27.686-.054 5.607.156 7.537.065-.741.226-3.8.182-4.961-.046-1.157-.209.647-.159-1.823.15-1.635.309-3.456.462-5.081.034 2.458-.057 6.175-.056 8.36.013 24.333-.088 47.8-.169 72.057-.008 2.228-.025 6.638-.074 8.67-.039 1.58-.223.645-.176 2.386.007.205.129-.242.148 1.985.037 4.179.015 13.12-.001 17.621-.134 38.053-.233 75.558-.542 113.219l.103-1.175.234 3.216.077 10.669-.176 1.844-.083 18.445-.315-2.217-.009 4.87.285 1.577.08 4.841-.558-.95-.256-3.04-.005.071c-.023.402.238 4.339.132 5.271a5.72 5.72 0 0 1-.05.345l-.016 2.807.301-2.667.338 1.351.147 7.882-.247.824.293 5.785-.169 2.857.156 1.26-.028 6.622-.271 4.067.242 4.153-.261 24.835c.485 5.619-.251 18.616.224 17.847l-.05 21.176-.228 4.208.142 21.148-.436 26.383.501-2.653-.031 8.29-.357 4.997.307 4.715c-.844 2.118.144 7.658-.137 14.793.72 3.724-.482 9.273.229 13.765l.029-.26c.045.134.093.21.137.358-.04.727-.067 1.546-.099 2.309-.186-.601-.177-1.326-.073-2.337l-.211-.591-.019 4.49.143 4.659a11.447 11.447 0 0 1-1.05 5.111 9.698 9.698 0 0 1-.445.15 11.254 11.254 0 0 1-1.707 2.336c.068-.017.07.038-.044.198-1.605 1.692-2.92 2.133-3.169 2.19-.287.019.427-.294 1.849-1.395.305-.243.627-.493.883-.686.305-.374.583-.766.832-1.171a10.92 10.92 0 0 1-2.845 2.435 10.854 10.854 0 0 1-5.716 1.787l-5.756.158c.164.071.29.144.183.213-1.513.075-6.087.094-9.845.098l-.014.009-2.006-.009c-1.715 0-3.016-.002-3.364-.001a44.146 44.146 0 0 1-1.59-.02l-3.646-.016-.337.011.83.152-9.367-.039c-1.327.089-1.628.247.465.246 5.403-.002 4.302.125 5.158.616.127.07 1.626.116 1.239.204-.386.088-3.744.16-2.069.368.321.039 2.142-.103 2.322.101.375-.045.571-.09.88-.135 2.632.452 2.801.602-2.773.624.224-.094.445-.189.676-.283-.882.114-1.642.225-2.604.339-6.037-.047-14.482.278-19.832.122-4.672-.137 1.903-.165 2.048-.182 1.358-.179-.756-.272-.704-.394.06-.123 2.914-.294.451-.248-.323.007-3.837.362-3.984.412-1.181.408.98.452-4.166.559-1.839.039-7.151.077-9.163.098-2.22.022-4.014-.187-5.334-.162-1.318.025-.079.158-1.64.182-3.084.047-7.537-.082-10.38-.074-3.225.011-4.153.219-7.27.227-2.162.006-5.071-.146-7.509-.077-.575-.11.525-.533-1.098-.502-1.975.037.774.287-.211.414-1.985.068-.605-.119-.647-.128-.978-.08-2.652-.021-3.864-.061.801.084 1.582.161 2.435.247-3.308-.135-1.622.159-4.264.225-.693.016-2.264-.297-4.666-.206-.582.022-6.213.238-8.03.229-.779-.005-2.048-.147-2.322-.154-.99-.024-.889.169-1.809.179-6.836.072-14.688-.03-21.211-.008-6.198.02-9.572.036-15.891.053-5.86.015-11.211.337-4.863-.646-4.525-.127-3.223.158-4.419.395-.709.139-1.729.013-2.041.038-1.035.087.768.194-.042.259Zm178.871-376.86c.214 2.012.289.07.099 4.398-.226-4.158-.349 1.813-.543 1.844-.11.009-.047-2.03-.105-2.639-.089-.936-.231.447-.288-.669-.057-1.112.046-5.03.04-6.291-.012-2.414-.085-4.474-.096-6.489-.01-2.015.078-5.19.086-6.495a75.058 75.058 0 0 0-.028-2.766c-.072-1.231-.227-.362-.235-2.125.153-.226.391-2.84.489-.324.004-.377.032-.861.027-1.218-.023-1.678-.232-.59-.271-1.358-.064-1.295.101-.503.111-.521.123-1.415-.022-.646-.089-1.175-.035-.285-.114-2.782-.111-3.329.003-.538.087.081.09-.281.014-1.564.031-3.174.009-4.708-.023-1.532-.169-2.296.039-2.428.033-.018.067.834.142.5h.001c.024-.112.139-1.461.215.232.021.478.033 1.002.038 1.548l-.087-.528-.001 1.267c-.074-.183-.152-.379-.223-.493-.076.605.027 1.125.028 1.225-.027 1.472-.178 1.443.002 2.308.025-1 .053-1.991.081-2.963.037-.005.075-.012.112-.021l-.001.577.089-.387a130.42 130.42 0 0 1-.101 4.152c-.044-.402-.092-.852-.138-1.245.04 1.657-.054.757-.101 1.97.178.186.139.872.129 1.872-.01.997.118-.38.137.612.037 2.025-.163 5.654.096 6.003-.152 2.724-.183-.462-.247-.598-.272-.569-.144 4.744.007 5.461-.085.809-.206.898-.169 2.893.052 2.706.183-3.311.217.387.023 2.473-.106 2.211-.133 3.462-.05 2.327.027 6.349.204 4.793.071-.626-.027-2.305.046-3.026.041-.398.413.19.121-1.739-.029-.186-.161 1.038-.169-.682-.003-.495.115-2.224.075-3.603-.018-.606-.193-3.078-.135-4.673.061-1.722.102.816.159.147.057-.678.046-2.768.169-2.779.141 1.028-.073 1.317-.063 1.682.044 1.402.251.089.231 2.174-.113.392-.421-1.25-.335 1.724.005.002.074-.752.102.204.048 1.674.083 4.918.085 7.01.169-.265.15-2.819.263-4.202.036 2.795.097 5.897-.058 8.065l-.079-3.138.034 3.722c-.072-.412-.258-3.081-.292-1.069.184.022.224 2.77.325 3.73Zm-.918 15.137c-.14-1.389-.112-3.527-.113-5.771.149.381.084 4.076.113 5.771Zm.371-58.826c.237-1.682.229 4.177.202 6.545l-.002-1.647c-.05.284-.101.547-.152.83l-.024-1.787c-.051.748-.109 1.423-.161 2.139-.23-1.349-.087-1.581-.061-3.856.016-1.457-.062-1.946-.074-3.723-.055-8.312-.188-16.788-.179-25.377.189-.17.237-.016.267 1.541-.056-.014-.113-.005-.17-.014.024 1.023.051 2.026.08 3.019.029-.986.059-1.964.091-2.928.009.471.017 1.066.027 1.809.007.547.084.617.078 1.372-.013 1.615-.236 3.902-.17 5.602.039.985.246-.573.195 1.907-.159-1.304-.297-2.193-.221 1.485.127-2.277.079-.523.153.204.047.458.019-2.703.113-.732.02.422.131 6.711 0 6.566-.281-.328-.251-.677-.078 3.301.094-5.292.296-.704.225 1.675-.037 1.211-.175-.688-.139 2.069Zm-.308-31c-.006 1.607.123 1.915.041 3.174-.01.107-.142-.84-.151-1.605-.008-.769.032-5.753.052-5.925.221-1.657.061 3.793.058 4.356Zm.002-5.018c-.012-1.951-.022-3.904-.033-5.855v.007c.029.052.057.111.085.169l-.052 5.679Zm.259 102.072c-.191-.422-.209 1.493-.204 2.224.02 2.617-.136 4.259.054 5.257.107-1.612-.024-2.64-.012-3.414.027-1.693.183-1.833.162-4.067Zm-.028 10.07c-.036.71-.135.449-.158 1.408-.024.963-.054 3.735-.016 4.736.039.998.183.744.24 1.534-.019-2.593-.042-5.082-.066-7.678Zm.089 14.828c.009-1.477-.192-3.11-.148.218.002.145.132 1.277.055 2.323-.054.676-.105.218-.166 1.112-.06.893.218 2.807.259-3.653Zm-.079 33.238c-.003-.695-.096-1.468-.111-1.119-.113 2.737.126 4.35.111 1.119Zm-.118-149.448-.001-.077h.003l-.002.077Zm.14 142.685.116 3.871.092-2.47-.208-1.401Zm.385-2.315c-.121-.119-.229.093-.3 1.717.12.255.208-.672.3-1.717Zm-.251 20.796c-.106 1.89.367 2.821.151.211-.021-.249-.143-.35-.151-.211Zm-.012-125.718v-.056l.022.056c-.007.002-.015-.001-.022 0ZM50.539 569.733c1.29.187 2.659-.284 2.392-.314-1.3-.147-3.31.181-2.392.314Zm311.33-316.044c.169-4.457-.198-4.985-.235-5.285-.193-1.558.125-2.239.124-2.625-.014-1.832-.352.594-.358.851-.085 4.052.183 2.853.266 3.209.182.789.045 3.592.203 3.85Zm-.422-86.47a63.76 63.76 0 0 0 0-.978l.019.12.043-1.886.061 2.23-.123.514Zm.167 173.031c.234-2.874-.057-11.979-.131-5.799-.012 1.066.064.482.068 1.14l-.001.007c.004.663-.111 6.787.064 4.652Zm.001-119.074c-.119.857-.074 2.184-.05 3.779l.128-.57-.078-3.209ZM30.017 569.821c1.367-.046 3.824.051 3.71-.2l-3.393-.084c-.106.095-.21.19-.317.284Zm-14.363.446c1.273-.083-.132-.23.352-.346.493-.115 4.633-.066 1.801-.352-.48-.047-2.138.004-3.807.031-.94.032-1.861-.213-2.271-.465-.63.308.933.667 2.271.756.156.011.309.024.457.042.599.07-1.054.339 1.197.334Zm345.929-220.883.076 3.843.007-3.793c-.028-.015-.055-.035-.083-.05Zm.049 164.347-.035-.704-.004-2.083.103-.831-.064 3.618Zm.218-137.9c.073-2.207-.112-5.085-.214-3.42-.123 2.003.096 7.007.214 3.42Zm-.207-12.752c-.043 4.801.253 8.092.154 1.914-.006-.341-.152-.777-.154-1.914Zm.048 162.784c.145-1.806.362 5.631.296 7.784l-.285-1.858a55.918 55.918 0 0 0-.029-.887l-.019-3.793c.019-.625.039-1.205.043-1.26l-.006.014ZM7.237 524.766c-.524 4.502-.024 5.543.093 2.604.014-.357.012-2.687-.093-2.604Zm354.747-258.262c.056-.148.364 1.307.12-1.274-.084-.889-.167-.673-.187-3.272.033 2.405-.197 2.138-.214 2.407-.132 2.193.147 4.366.265 3.898.033-.144-.038-1.604.016-1.759Zm-.301-106.801v-3.892c.041.125.083.235.124.359-.04 1.182-.079 2.391-.124 3.533ZM6.383 543.057c.164.249.792-3.429.835-3.948.265-3.356-.114-5.14.067-8.304-.419.927-.145 3.22-.349 5.123-.062.581-.417-1.507-.52 1.443l-.001.007c-.033.948.081 4.352-.031 5.679Zm355.587-6.426c.055-.978.331.914.112 2.934-.01.071-.028.03-.044-.007-.015-.034-.029-.066-.037-.007-.016.19-.037 1.018-.062 1.985-.051 1.976-.119 4.554-.195 3.617l-.019-3.829c.025-.299.055-.555.085-.802.041-.334.082-.67.109-1.133.047-.84.048-1.89.048-2.449 0-.212 0-.353.003-.387v.078ZM5.862 499.692c-.075.487-.083 2.991-.016 3.188.062.181.117-.183.168-.507l.023-.908.003.76c.055-.327.104-.494.155.296-.008 2.272-.019 4.602-.028 6.897.12-.275.24-.547.36-.817l-.132-1.337.108-1.4c.675 1.295-.046 5.424.277 8.944-.14.004-.286.04-.422.022-.146 6.169.02 1.962.363 1.513.197-.256.025 1.821.057 2.181.233 2.453.505-3.912.492-5.897-.012-1.981-.273-4.748-.288-6.96-.008-1.313.137-1.507.129-2.829-.012-1.977-.005-5.494-.107-7.207-.037-.62-.304-.015-.334.162-.07.44.07 1.283.048 1.788-.022.501-.134.176-.144.83-.008.665.057 4.098.078 4.328.133 1.312.268-.784.252 1.035-.914 2.334-.368-3.707-.424-4.547-.13-1.897-.201-1.556-.254-.823-.03 1.24-.065 2.46-.083 2.527-.188.622-.21-.163-.184-1.19-.036-.137-.07-.245-.098-.07l.001.021Zm.896-72.268c-.02-3.766.382-1.612.388-.978.024 2.657-.43 4.742.104 5.904.028 1.618-.189-.013-.212.979-.046 1.966.232 4.065.197 6.115-.118.162-.243.64-.363.514-.13-2.097-.11-11.588-.114-12.534Zm354.994-192.202.156 5.159c-.028-2.498-.048-3.404.097-5.004-.084-.049-.169-.105-.253-.155Zm.147 103.268c.017-.242-.023-4.819-.115-4.799-.027.832-.019 6.392.115 4.799ZM6.925 451.204c-.071-3.368.294-3.889.302-1.19.002.771-.202 1.669-.302 1.19Zm145.235 118.93c.428.004 6.112-.009 5.567-.238-3.061-.03-6.329-.057-9.459-.085.187.072 1.064.149 1.506.178 1.098.074.813.129 2.386.145ZM6.794 443.441c.045-.903.217-.428.133-2.216l.052-.029c.12.14.209 1.585.202 2.337-.002.029-.11-.148-.114.056-.019 1.513.085 3.865-.216 3.772.177-1.424-.103-3.012-.057-3.92ZM362.14 247.439c.005-1.936-.171-3.032-.285-2.646l.077 3.836.208-1.19ZM185.166 570.087c-.576-.026-1.156-.05-1.732-.075l1.042-.069-1.471-.075c-.527.117-1.05.234-1.583.351l3.744-.132ZM5.816 526.906c-.155 1.566.352.992.401.127.05-.868-.068-2.534.136-3.273.099 1.162-.03 2.497.034 3.962.074 1.733.321-.163.253-.626-.136-.921-.332.118-.164-2.147.143-1.925.583.112.609-1.513.031-2.062-.241-1.245-.408-.492-.045-1.267-.085-2.535-.127-3.8.006 3.796-.322 4.255-.734 5.01-.046 1.614.238.099.2 1.774-.012.588-.186.848-.2.978Zm19.48 43.255c3.077-.008 3.041-.328.428-.172-.556.033-.518.101-.429.172Zm336.696-329.09a3326.46 3326.46 0 0 0-.008 3.159c.028.015.056.035.084.05l.007-3.153c-.028-.015-.056-.042-.083-.056Zm.007-20.923c.025 1.404-.063 3.815.074 3.85l.052-3.772c-.042-.028-.084-.057-.126-.078Zm.004 114.225c-.007.297-.006.559-.001.796l.002-.803-.001.007Zm.009-119.925.076 3.209.05-3.132c-.042-.028-.084-.049-.126-.077Zm-2.662 354.401c-.208.208-1.242.856-2.313 1.112a8.12 8.12 0 0 1-1.76.241c.708-.249 1.773-.443 2.638-.767.865-.306 1.522-.675 1.435-.586Zm-187.344 1.996c7.347.064 4.037-.817-1.844-.788-.405.19 1.063.077 1.168.181.093.103-1.586-.015-.83.175 2.619.056 1.218-.162 3.124-.204-.352.111.338.318.085.413-.476.175-2.084.008-1.703.223ZM6.303 481.359l.003-.056c.092-1.103.59-1.308.606-1.513.13-2.378-.326-3.582-.503-2.125-.103.854.203 2.266-.112 2.301.063-1.769.021-2.414-.04-2.618l.046 4.011Zm.615-57.334c-.25-.45-.116-3.624-.153-5.123.228 1.322.166 3.167.153 5.123Zm355.154-163.228c.005 2.454.103 1.9.161 2.301l.007-1.696-.168-.605ZM6.672 361.729c.001.61.155 1.36.182 1.063.209-2.294-.185-3.889-.182-1.063Zm-.201 128.054c.127 1.842-.034 5.584.328 5.278.216-3.272.09-1.987-.098-3.413-.126-.969.098-2.601-.23-1.865Zm153.768 80.365-2.815-.039 1.027.213 1.788-.174Zm201.511-3.804c.031.183-.664 1.487-1.679 2.315-.987.857-2.094 1.222-1.748 1.022 1.88-1.029 1.623-1.201 1.495-1.123-.074.016-.155.032-.062-.095.595-.616 2-2.374 1.994-2.119Zm.53-322.571-.088 2.153.12.838.01-1.971-.042-1.02ZM6.339 473.759c.388-2.631.643-3.072.319-3.244-.034.538-.077.824-.115.548 0-.199.003-.398.005-.598-.055-.016-.119-.039-.193-.056l-.016 3.35Zm-.017-83.141c-.024 1.279.304 2.857.251-.077-.003-.134-.213-1.216-.077-2.062.095-.55.179-.113.288-.845.11-.729-.35-2.611-.462 2.984Zm-.008 6.242c.016 2.274.039 4.463.062 6.742.067-.587.232-.283.278-1.098.047-.82.114-3.216.056-4.117-.06-.895-.305-.794-.396-1.527ZM338.33 571.273c-1.089.023-3.511.074-3.005-.027.224-.039.863-.031 1.429-.024.67.009 1.249.016.95-.057-2.26-.151-4.219-.119-6.89-.075l-.239.005c-.026.002.064.013.197.029.342.042.953.117.57.165a55.144 55.144 0 0 0-.45-.02c-1.174-.043-.787-.075-2.569-.084l-1.098.002a14.647 14.647 0 0 0-.647-.035c-.38-.013-.87-.019-1.38-.024-.824-.008-1.711-.017-2.294-.061.373-.08 2.092-.029 3.498.013.869.027 1.616.049 1.858.035.056-.003.172-.033.309-.071.22-.062.514-.144.788-.17-.153-.005-.492 0-.865.007-.744.013-1.638.029-1.513-.04l.021-.008.014-.011.007-.001c.186-.108.49-.284 2.154-.289.146-.001.253.013.372.029.14.018.305.04.578.043.397.003.841-.003 1.287-.01a39.74 39.74 0 0 1 1.682-.006c.152.004.317.022.493.041.226.024.478.052.76.055.212.002.538-.016.929-.039.693-.04 1.611-.092 2.519-.066.618.016 1.695.221.507.259-.721.023-.876-.005-1.013-.03a1.603 1.603 0 0 0-.296-.028c-.33-.005-.732 0-1.119.006-.911.014-1.796.027-1.78-.104-.902-.003-.813.141-.563.171.68.091 8.427.231 9.148.171.021-.002-.019-.008-.077-.016-.234-.034-.785-.114.711-.242 1.154-.096 2.568-.088 3.223-.084.194.001.32.001.352-.002.036-.003-.048-.025-.176-.055-.514-.12-1.606-.375 2.73-.16.52-.018.427-.056.345-.088-.058-.022-.106-.043.071-.051a74.294 74.294 0 0 1 2.808-.042l.344.116c-.031.003-.258.007-.577.012-1.055.019-3.18.057-3.082.134 2.529-.055 3.481-.01 5.468.086.051.001.112.005.182.01l.197.018c.453.043 1.142.019 1.436-.186.061-.043-.226.012-.548.043-.428.046-.91.036-.671-.037 1.042-.068 1.578-.28 2.18-.551.038-.017.076-.035.113-.054.247-.062.04.059-.153.156-.131.066-.258.124-.203.121.044.036 1.463-.461 1.529-.536.25-.132.828-.507 1.326-.974.339-.312.644-.661.85-.922a9.78 9.78 0 0 0 .677-.961c.147-.24.254-.45.298-.548.089-.201.159-.417.22-.641.076-.276.14-.572.21-.875.036-.153.087-.332.136-.534a8.353 8.353 0 0 1-.1 1.008 6.41 6.41 0 0 1-.254 1.041c-.04.055-.09.13-.144.214-.24.21-.811 1.548-2.467 2.831-.393.292-.427.331-.445.372-.012.025-.024.05-.137.125a7.426 7.426 0 0 1-2.491 1.013 8.24 8.24 0 0 1-1.559.171c-.732.009-1.43.021-2.04.04.039.049.692.036 1.204.026.255-.005.481-.008.577-.004.128.007.252.04.259.078v.007c-.008.044-.179.091-.682.107-1.812.052-2.403-.028-2.962-.104a9.912 9.912 0 0 0-.95-.092c-2.636-.122-6.28-.031-4.406.195-2.234-.085-2.295-.062-2.386-.025-.039.016-.087.035-.316.048-1.863.114-2.288.102-3.019.079-.353-.011-.784-.025-1.478-.028l-.472.01ZM6.264 412.343c.32.52.364-1.135.36-1.774-.017-2.295.258-3.596-.058-4.616-.192 1.316.023 2.312-.001 2.977-.057 1.456-.321 1.451-.3 3.413Zm.34 52.33c.03.278-.026 1.328-.028 3.076l.015-1.112c.062.242.096.715.11 1.267.005-1.709-.01-2.804-.07-3.181-.01-.015-.018-.033-.027-.05-.007-.062-.018-.112-.035-.091l-.001.014c.012.03.024.055.036.077ZM191.162 570.56l-1.063-.249-1.049.351 2.112-.102Zm171.31-7.975-.016.415c-.023.407-.091.734-.118.682a5.16 5.16 0 0 0 .033-.682 33.416 33.416 0 0 0-.059-1.591l.005.029.005.028.004.035c.046.319.098.707.146 1.084Zm.091-7.052c.001.297-.005.547-.016.767l-.042-.302a7.658 7.658 0 0 0-.164-.866c.002-.637.005-1.271.011-1.59.095-.194.206.293.211 1.991ZM6.418 48.92l.24-.337c-.065.015-.155-.117-.243-.226l.003.563Zm-.203 229.725c-.137 1.864.155 4.518.34 3.153.221-1.646-.116-6.177-.34-3.153ZM33.27 570.403c1.58.265 6.013.326 2.773.048-.822-.069-1.895-.037-2.773-.048ZM6.592 367.606l-.172-3.477-.17 2.09.341 1.387Zm-.21-57.778c-.415 2.316.02 10.476.184 5.151.028-.912-.103-.469-.106-1.041v-.007c-.001-.582.232-5.821-.077-4.103Zm.103 41.57c.19-1.561-.603-2.747-.254-.302.034.232.238.415.254.302Zm-.002-61.451c.106-4.161-.377-7.283-.25-1.809.01.305.258.802.25 1.809Zm.012 11.95-.103-3.407-.038 3.301.141.106Zm355.758 263.18a9.134 9.134 0 0 0 .283-1.991 6.202 6.202 0 0 1 .057.581 7.63 7.63 0 0 1-.34 1.41ZM6.457 457.629a.733.733 0 0 0 .014-.148l-.001-.049-.013.197Zm-.18 1.626c.057.675.093-.229.18-1.626-.036.147-.136-.235-.142.028-.013.528-.026 1.064-.037 1.598Zm-.217-7.826c.003.403.007.802.015 1.154.111.124.242.056.276.45.013.15.02.268.022.359a26.41 26.41 0 0 0 .074-2.111c-.142.306-.283.55-.387.148Zm-.136-82.12c.206.201.389.098.52-1.26-.202-.317-.357.423-.52 1.26Zm.235 84.569c.072.351.138.192.19-.239-.055.095-.18-.254-.189-.24l-.037.212c.01.109.022.201.036.267Zm-.073-10.908c.01.417.039.765.091.858.1.171.14-.593.15-1.344-.045-1.283-.154-.043-.24.486Zm-.044 5.517c.009.327.013.79.014 1.302.135.094.202-.378.221-1.062-.06-.237-.138-.341-.235-.24ZM142.005 3.55c1.425.015 4.025-.15 4.616-.008-1.494.047.891.31 2.358.236 1.389-.06 1.175-.126.042-.206 4.782.004 10.309-.107 14.082.046-.732.027-.864.087-.992.15v.003c1.513.006 2.335.111 4.131.07-.264-.089-.837-.138-1.422-.184 3.85.044 9.23-.143 11.894.08-2.976-.005-5.194-.023-4.455.278 1.249-.018 2.461-.041 3.68-.059 1.902.183-1.826.308.38.336 2.097-.082 2.565.079 4.624-.005.103-.206-.441-.392-2.28-.65 6.83-.045 13.752-.103 20.437-.126-2.184.15-4.735.071-5.877.094-1.012.02-.845.131-1.731.164.142-.009-2.664-.11-2.188.035.954.054 1.917.108 2.892.16 2.956.027 1.525-.193 3.934-.2 1.228.135 7.582.196 5.855-.094-1.344.008-3.44.127-3.378-.081 2.284-.053 3.475.062 6.059-.032 1.133.108-1.412.251.922.26.966-.018.276-.126 1.021-.154 1.868.379 6.477.34 10.584.377-2.135.128-4.573.45-7.347.326.652.124-.528.144-.781.22-2.153-.077-7.62.113-6.306-.034.462-.05 2.422-.002 1.978-.1-2.608-.13-7.027.298-2.013.308-1.219.018-2.426.04-3.645.059-1.677-.266 1.188-.285.612-.49-1.045-.061-3.449.034-4.166.138 3.733-.02.342.035 2.364.235-3.782-.061-5.572.192-9.001.078 2.282-.045 3.782-.271 5.222-.497-1.784-.059-5.098.145-4.94.356-1.786.006-3.61-.086-3.42.124.967.02 1.886.044 2.646.095-6.529.252-13.831.165-24.146.392-1.493-.038-2.683-.123-4.342-.135-2.186.159-5.739.006-7.023-.023-1.288-.033-3.256.013-3.885-.006-3.937-.128-5.986-.502-8.825-.75l-.063-.002c1.562-.208.678-.556 1.893-.784ZM6.24 437.734c.025-1.529-.437-5.032-.207-.971l-.193.38-.006.07c.135.173.27.343.406.521Zm-.05-2.266-.006-.07-.003.168.008-.098Zm-.338-14.884c-.031.974-.098 2.101.003 2.955l.327-1.316a17.055 17.055 0 0 1-.172-1.85c-.048.056-.1.121-.158.211Zm357.102 48.698c-.156 1.512-.189 6.502-.026 3.11.04-.86.02-2.12.026-3.11ZM5.749 392.574c.171-.218.38-.907.386-1.034.145-2.955-.17-2.779-.351-2.899.005.478.008.949.008 1.407l.008.035c.084.535.05.887-.019 1.154a75.654 75.654 0 0 1-.032 1.337Zm.326 89.334c.01.602.014 1.217.013 1.795.069-.081.094-.686.044-2.238-.022.178-.04.322-.057.443Zm-.034 31.486.109-.901c-.116-.376-.233-.751-.348-1.133l-.005 1.105c.08.307.162.621.244.929Zm.062-45.336c-.02.693.01 1.164.042 1.696-.002-.731-.01-1.485-.023-2.16-.007.142-.014.296-.019.464Zm280.684 102.837-2.527.061.936.147 1.591-.208ZM5.889 311.13c-.031.181.007 4.219.163 4.279.052-.699.075-5.558-.163-4.279Zm-.477-40.649c.142-.277.56-.258.616-1.224.088-1.538-.096-3.032-.297-2.161-.06.259-.175 3.217-.32 3.385Zm.58 236.009c-.037-.1-.035-.939-.057-1.084l-.025.957c.027.042.054.087.081.127Zm357.056-91.003-.002 2.133c.004-.295.005-.618.004-1.014-.002-.287-.001-.683-.002-1.119Zm.286 6.299c-.045-.24-.121.611-.1-.922l.07-.929c-.019-.97-.042-1.987-.056-2.984l-.202 2.027a1635 1635 0 0 0 .013 7.72c.054-.779.065-5.172.047-6.186.19.221-.014 3.95.14 5.095.024-.33.067-1.21.092-2.048v-1.034c0-.238-.002-.488-.004-.739Zm-.11-18.312c-.027-1.921-.049-3.87-.065-5.841-.007.402-.019.798-.041 1.154-.008.134-.026.082-.048-.021l-.002 1.133-.008 5.06c.062-.501.121-1.049.164-1.485Zm-.158-383.12.092 1.527.028-1.365-.12-.162Zm.027 440.089c.007 3.525.196 3.841.102.682-.02-.672-.06-.705-.102-.682Zm.011-77.391h-.002l-.005 2.216.008.014-.001-2.23ZM5.69 239.65c-.116 1.26.012 3.202.154 2.245.143-.96-.011-3.804-.155-2.245Zm-.6 245.566c.076.49.38 1.843.505 1.759.2-.14.358-1.804.258-3.019-.061-.05-.113-.178-.12-.619-.126-.135-.315.152-.176-1.781.007-.1.045-.345.092-.647-.03-1.086-.066-3-.035-4.096-.073-.208-.15-.328-.246-.105-.159.371-.072 2.808-.106 3.842-.015.441-.149.69-.153.774-.045 1.031.09 1.378.105 2.33.006.441-.197 1.072-.123 1.562Zm289.917 85.936-4.427.08 1.886.044-1.26.041 1.591.044 2.21-.209ZM5.703 295.478c-.03.442-.057.89-.086 1.338.072-.037.145-.077.216-.113-.073-.884-.148-1.768-.222-2.646l-.119 1.006c.07.141.141.274.21.415Zm-.183 80.404v.232c.096-.191.202-.144.217-.254.208-1.57-.112-3.375-.333-3.61.02.532.037 1.24.049 2.147-.094-.029-.19-.065-.284-.099.118.536.232.983.35 1.584Zm-.868-66.659c.01 2.639.025 5.258.044 7.853.319-.216.425 2.011.702 1.774.16-.141.09-2.685.13-3.667.017-.417.152-.472.158-.549.051-.96-.082-1.508-.09-2.477-.003-.448.203-.778.133-1.372-.072-.596-.366-2.382-.492-2.477-.225-.168-.41 1.668-.23 3.138.089.718.42.188.234 2.309-.026.285-.365 1.465-.345 2.512-.204-1.288-.197-5.501-.138-7.277-.046-.031-.08.059-.106.233Zm.407 217.767c-.077 1.658.116 2.877.31 1.717.06-.35.154-3.453.296-3.828-.14.482-.556 1.066-.606 2.111Zm.465-134.993c.003.431.048.609.112.641-.01-.284-.02-.612-.027-.922a.715.715 0 0 0-.085.281Zm-.106 161.954c-.136 1.162.037 3.777.17 2.013.105-1.42-.034-3.169-.17-2.013Zm.112-102.395c-.12 1.786-.24 2.004-.164 3.997.11-1.037.346-3.113.164-3.997ZM331.08 571.51c.483-.015.949-.03 1.288-.049a65.614 65.614 0 0 0-2.105-.027l.767.017.05.059ZM5.215 421.836c.166.009.466.263.126-1.281-.037-.163-.073-.255-.107-.351-.006.36.059 1.234-.019 1.632Zm.088-45.666c.03.351.05.833.056 1.605-.013-.705.022-1.128.075-1.387l.01-.316c-.047.029-.094.067-.14.098Zm.012 125.528.111-1.169-.211-.119.077-1.45H5.29l-.215.422.239 2.316Zm344.908 70.144-2.928-.011c-1.619-.006-7.736-.001-8.776-.046-3.099-.133-2.159-.314-4.595-.031-1.837.016-.309-.121-1.077-.157-.157-.007-.867.04-1.626.079l.057.066 18.396.523.549-.423ZM4.941 391.582c.09.884.275 1.363.412 1.19l-.05-1.57c-.035.266-.07.512-.11.563-.116.148-.293-1.744-.252-.183Zm359.048-280.409c.007-1.052-.003-2.266-.013-3.533l-.094.464.037 1.689-.174-.042-.063 2.33.262 2.181.028-.837c.007-.747.013-1.499.017-2.252ZM5.304 401.076l.01-1.591c-.032.023-.063.043-.095.064-.012.174-.03.343-.05.513l-.005.901.14.113Zm-.673-129.011c.137-.953.365-.985.626-1.084.056-1.539-.236-.44-.189-2.055.017-.569.192-.58.207-.69.164-1.333-.343-1.484-.399-.696-.054.79.051 2.618-.156 3.061-.091-1.3.044-2.442-.008-3.99-.016-.465-.045-.713-.078-.817v1.872c.049.182.066.398 0 1.225l-.003 3.174Zm359.318-128.513c-.031-.785-.056-1.613-.075-2.505l-.14.654a635 635 0 0 0-.02 1.38c.043-.032.087-.011.134.098.036.086.07.219.101.373ZM5.264 339.913c-.117.872-.364 2.594-.189 3.737.131-1.603.252-1.645.189-3.737Zm-.298 63.879c.02-.076.039-.136.06-.133.12.022.294 2.333.245.309a24.365 24.365 0 0 0-.113-1.02c-.075-.095-.153-.062-.22.119l.028.725ZM364.279 212.21a29.68 29.68 0 0 1-.272-2.231l-.187 2.435-.068-.225-.001.119c.057.556.094 1.056.115 1.52.156-2.026.261 1.633.349 3.54l.078-3.645-.014-1.513Zm-.246-127.393-.178-.675.074 3.652-.143 1.302.174 1.492-.195 3.223.266 1.02a21.708 21.708 0 0 1-.015-.548c-.011-.763-.01-4.526.024-7.41l-.007-2.056Zm-.246 267.382-.011.803.02-.19-.009-.613Zm.056-144.817-.064.767-.002.211.089-.478-.023-.5ZM4.681 324.712l.011 4.532c.177.702.176-1.122.174-2.667-.046.738-.093 1.478-.144 2.196l.005-3.413c.047.028.095.058.143.084.003-.319.008-.57.02-.683.075-.647.439-.35.278-2.132-.061-.675-.23.122-.251.957-.178-3.009-.276-2.325-.317-.598l.08 1.724Zm.272-128.335c.275-1.189.364-5.516.067-2.689-.075.718-.05 1.83-.067 2.689Zm.236 87.363.012-1.098-.237-1.274-.115.732.34 1.64Zm-.565 12.717c.068-.192.113-1.326.16-1.732.078-.684.194.926.27.556v-.021c.078-.385.101-2.852.037-3.145-.141-.621-.257 1.619-.351-.148l.072-6.834c-.063.053-.127.11-.19.162-.002 3.737-.001 7.461.002 11.162ZM364.288 97.182c.035-2.052-.188-.713-.256-2.336l-.152 3.786.161-1 .146 1.091c.047-.333.087-.72.101-1.54ZM5.046 395.875c.015-.194.035-.402.06-.612l.007-.641c-.048.032-.096.061-.144.092-.005.36-.01.723-.013 1.084.03.022.06.053.09.077Zm62.425 176.347c1.28-.136 2.325-.24-2.435-.302-.005.007-.016.015-.021.022 1.754.031 2.752.109 2.456.28Zm296.584-191a16.205 16.205 0 0 0-.019-.824l.01 1.514c-.073 1.594-.088 2.452-.072 2.99.043-1.401.087-2.686.081-3.68ZM4.927 373.77c.01-.034.02-.09.032-.119-.014-.069-.028-.106-.042-.155-.003.061 0 .15.01.274ZM364.05 70.89l.011-.042.002-.38-.013.422ZM4.937 421.07l-.011-.063v.042l.01.021Zm-.014 64.069.005-.035c.013-.101.008-.897-.014-1.759l.01 1.794ZM364.151 39.961l.025.457a82.02 82.02 0 0 1 .004-1l-.029.543ZM4.717 518.91c.034-.203.067-.524.096-1.006.06-.995.019-2.023-.06-2.639a528.98 528.98 0 0 0-.036 3.645ZM364.169 53.93l.023.246.01-1.203-.033.957ZM4.632 258.131c.045-.175.085-.533.113-1.176h.001c.039-.901-.054-4.454.067-5.609-.04-.12-.109-.036-.191.155.005 2.202.008 4.414.01 6.63ZM364.655 82.706c-.121-.753-.242-1.253-.344-1.984l-.005 3.708a6.46 6.46 0 0 1-.08-.056c.024.161.051.273.077.183.045-.149.376.058.352-1.85Zm-77.39 489.532-.725.053c.369.003.732.008 1.084.014a38.112 38.112 0 0 0-.359-.067Zm-159.434.001-.295.004.042.012c.079-.006.175-.011.253-.016ZM4.658 279.482c.112-3.599.086-3.559-.03-2.984 0 .981-.002 1.962-.003 2.942.011.016.022.025.033.042Zm-.053-33.942c.096-1.222.116-3.644.114-4.461-.003-1.451-.09-1.007-.143-1.394.011 1.942.02 3.896.029 5.855Zm-.439-35.722c.044 1.839.086 3.691.122 5.567.013-.346.036-.69.077-.971.074-.495.331 1.545.34-.711-.074-1.388-.23-.195-.342-.845-.089-.524-.058-3.205-.197-3.04Zm345.458 362.481-2.737.165 2.449.051.288-.216Zm14.707-354.248-.03.345c.01-.02.02-.101.03-.268v-.077ZM4.661 203.963c.012-3.078-.306-3.504-.168-.676.03.602.098.662.169.676Zm-.097 33.836c.04-1.127.11-2.455.06-3.49-.034-.689-.067-.982-.095-1.014.013 1.494.025 2.997.035 4.504Zm-.329-59.727c.059.264.12.368.164.141.124-.654-.022-1.73-.15-2.358l-.014 2.217ZM365.22 30.052c.123-3.006-.114-7.472-.275-5.3-.192 2.618.075 10.177.275 5.3ZM122.975 2.759c3.488-.102 19.03-.05 20.585-.051 6.195-.004 2.503.329 1.464.331-4.366.01-7.61-.38-9.712.066-2.675.018.085-.16-1.541-.183-3.208-.045-6.744.182-10.092.145h-.014c-.223-.1-.94-.208-.69-.308Zm128.364.11c-1.001-.001-2.286.126-1.809.15 3.684.184 6.443-.142 1.809-.15Zm-146.83-.105c5.552-.049 6.27.262 1.837.259-1.265-.001-2.659-.177-1.837-.26Zm12.78-.084c1.466.042.607.186 3.575.12l.056.022c.053.112-2.608.193-3.927.184-.042-.002.284-.092-.049-.096-2.474-.021-6.37.059-6.108-.195 2.27.154 4.981-.076 6.453-.035Zm247.628 8.786c.072.52.104 1.033.102 1.534-.029 5.954.3 9.792.219 1.485-.004-.311-.085-.78-.144-1.485a23.507 23.507 0 0 0-.177-1.534Zm-28.361-8.655c-3.643-.359-17.186-.023-8.523.135 1.497.027.814-.085 1.76-.085h.007c.946 0 9.461.217 6.756-.05Zm12.97.123c1.82-.023 3.653-.049 5.474-.073l.151-.001-.151-.003c-1.746-.014-3.504-.027-5.249-.042l-.225.119Zm-145.43-.463c-2.09-.026-4.815.247.028.212.214-.001 2.066-.176 3.407-.057.867.082.111.151 1.273.246h-.014c1.158.094 4.435-.288-4.694-.401Zm-55.012.384c.828-.209 5.981-.085 8.452-.111-2.253.188-5.248.129-8.452.11Zm33.689-.386c.943.059.377.198 1.703.24 1.329.043 5.228.108 6.728.062 1.498-.046 1.414-.255 2.653-.33-3.736.006-7.336.017-11.084.028Zm58.96.312c1.916-.045 3.84-.09 5.756-.133-1.121-.05-2.251-.1-3.364-.151l-2.392.284Zm26.615-.032c2.492.166 4.727-.5.585-.214-.396.028-.769.201-.585.214Zm-99.868-.404c-.969.268 1.725.31 2.772.309 3.772-.006 5.803.23 7.594-.032-2.089-.167-3.803.012-4.884-.012-2.367-.053-2.257-.275-5.482-.265ZM365.868 43.74c-.121.401-.473.216-.524 1.78-.08 2.49.07 5.003.243 3.646.053-.418.159-5.2.281-5.426ZM239.185 2.21c-.405.173-.309.328 1.872.443.594-.169-.56-.302-1.872-.443Zm126.339 91.987c.102-2.024.001-5.257-.123-3.736-.123 1.521-.004 6.239.123 3.736ZM137.719 1.304c3.287-.288.667-.411 6.474-.103-6.379.286 1.914.513 1.577.79-.201.157-2.993.05-3.969.128-1.501.119.185.331-1.513.403-1.696.072-7.076-.108-8.889-.11-3.465-.004-6.544.083-9.437.08-2.894-.002-7.252-.155-9.1-.178-1.845-.022-3.692.001-4.011.017-1.89.092-.948.32-3.476.316-.027-.22-3.295-.581.492-.7-.531-.008-1.17-.052-1.689-.049-2.44.018-1.292.326-2.463.374-1.987.082-.498-.151-.528-.162-1.778-.187-.96.026-1.843.117-.464.047-4.2.139-4.969.13-.76-.008.29-.124-.218-.131-2.206-.033-4.468-.072-6.7-.054-2.23.02-3.593.222-3.378-.076.042-.048 1.303-.088.971-.198v-.001c-.11-.036-1.811-.211.753-.305.728-.027 1.504-.04 2.295-.041l-.936.118 1.808.014c-.404.104-.834.212-1.133.313.721.115 1.67-.03 1.802-.028 2.05.05 1.705.265 3.286.015-1.379-.043-2.73-.091-4.06-.14.064-.053.13-.106.19-.16l.816.007-.373-.132c1.955.024 3.963.1 5.715.182-.657.058-1.384.124-2.034.186 2.44-.043.967.083 2.61.161.612-.253 1.512-.191 2.921-.168 1.406.022-.322-.172 1.133-.19 2.96-.037 7.742.281 8.741-.086 3.592.24-1.002.258-1.323.347-1.339.383 6.488.247 7.804.039.988.127.883.3 3.8.264 3.955-.05-4.377-.29.965-.307 3.574-.011 2.95.17 4.679.22 3.224.091 9.106.017 7.221-.25-.76-.106-3.341.02-4.223-.091-.486-.062 1.078-.587-2.237-.187-.321.04 1.167.238-1.302.235-.71-.001-2.947-.183-4.99-.138-.894.02-4.768.25-6.932.153-2.342-.102 1.364-.14.514-.226-.859-.087-3.844-.09-3.624-.264 1.745-.193 1.737.116 2.28.103 2.081-.05.6-.356 3.533-.311.341.164-2.587.59 1.822.494.022-.008-.944-.113.479-.144 2.476-.054 7.166-.078 10.155-.062-.052-.243-3.723-.237-5.475-.41 4.056-.03 8.595-.089 11.386.151l-4.623.086 5.383-.017c-.729.1-4.895.342-2.09.408.39-.262 4.369-.295 5.933-.432Zm-15.391 572.07.12.052c1.912.001 3.802.015 5.693.036l-5.813-.088ZM82.672 2.414c.983.035 2.099.06 3.131.088-.897.17-2.004.141-3.603.026.182-.037.272-.077.472-.114Zm251.927-.024c-.271-.027-6.918-.01-7.072.122 1.122.046 9.084.083 7.072-.122ZM72.08 2.37c2.424.013 4.838.035 7.249.056-1.614.199-8.682.038-7.249-.056Zm293.556 354.383a95.08 95.08 0 0 0-.06-2.02 74.162 74.162 0 0 0-.046 1.837l.106.183ZM360.449 3.775a10.661 10.661 0 0 0-2.073-1.025l.042.207a10.705 10.705 0 0 1 4.094 2.306 10.948 10.948 0 0 0-1.265-1.182 10.766 10.766 0 0 0-.798-.306ZM3.169 359.322c.032.943.057 2.285.077 3.716l.135-3.033-.193-1.668-.018.985Zm219.408 215.035c-.946-.348 1.917-.567 4.279-.629l-.979-.107-.464.002-2.456.286-4.194-.254-2.034.011-1.443.372-3.082-.124c1.463.133 3.85.334 5.228.144.689-.096-.448-.458 2.738-.299 2.344.118-.181.421 2.407.598ZM213.611 1.703c-6.023-.28-7.487.237-7.988.288-2.595.263-2.95-.197-3.504-.199-2.64.004.17.508.521.518 5.627.156 4.418-.237 5.095-.353 1.476-.251 5.206-.032 5.876-.254Zm19.754 572.336 1.225-.321-3.441.069c.831.074.962.181 1.562.254l.654-.002ZM331.369.687c-3.52-.132-6.724.238-4.835.4 1.11.094 4.241-.149 3.435.115-5.223-.133-4.772.096-4.701.137.475.288-3.441.368-3.146.609.173.135 4.374.084 5.968.122.681.016.719.13.844.135 1.56.047 2.501-.063 4.096-.066.736-.001 1.194.174 2.196.116 1.004-.059 4.048-.3 4.25-.406.357-.189-2.582-.35-5.06-.204-1.207.072-.461.352-3.87.188-.454-.022-2.269-.314-3.998-.3 2.189-.168 9.098-.146 11.985-.09.354-.199-4.513-.136-6.348-.238-1.553-.086-.52-.505-.816-.518ZM149.176 573.74l-.19.046c.207.121.517.277 2.041.293l-1.851-.339Zm59.882.12c.291-.014.621-.025.992-.032a852.25 852.25 0 0 0-1.597-.065l.605.097ZM365.99 165.432c-.235 1.848-.326 8.921-.065 4.398.066-1.15.048-2.995.065-4.398ZM3.18 405.622l.006-.535-.025-.211.02.746Zm182.345 168.407c-.323.138 4.266.027 5.257-.019.427-.02.744-.084 1.111-.135l-.253-.053-2.203.019-3.666.034c-.036.045-.11.096-.246.154ZM74.36 1.709c-1.945-.353 6.409-.292 9.733-.233l-2.343-.012c.307.075.565.15.872.225l-2.59.02c.97.079 1.829.167 2.752.246-2.373.318-2.43.112-5.623.055-2.048-.036-2.901.072-5.46.073-11.962.008-24.307.123-36.54.037.124-.271.438-.337 2.717-.367-.129.08-.23.16-.352.24 1.506-.024 2.996-.054 4.47-.086-1.351-.05-2.691-.102-4.005-.155.689-.009 1.552-.015 2.632-.022.794-.006 1.046-.115 2.111-.1 2.277.032 5.104.37 7.657.29 1.48-.047-.343-.355 3.096-.26-2.166.215-3.7.403 1.69.327-2.997-.201-.597-.118.583-.217.74-.063-3.813-.05-.816-.168.608-.023 9.836-.128 9.36.057-1.012.398-1.446.351 4.567.138-7.374-.178-.437-.426 2.815-.304 1.653.063-1.323.243 2.674.216Zm267.08 572.44c1.587.033 3.292-.079 4.982-.146l-1.47-.117-1.689.243-2.182-.06c-.067.038-.068.071.359.08ZM232.113 1.647c-.104-.08 2.561-.507-1.591-.181-1.43.113-1.276.232-5.018.238 3.49-.025 2.654.301 3.005.327 2.871.208 6.511-.172 6.074-.344-.132-.05-2.361.04-2.47-.04ZM181.422 573.91l-.226.001.191.007a.302.302 0 0 1 .035-.008Zm154.923.219c1.457.074 2.653.129 3.589-.092l-4.019-.11.43.202Zm30.721-528.855c.045-3.28-.19-2.701-.336-1.928-.027-2.188-.048-4.346-.072-6.524-.03 6.197-.306 6.047-.657 6.15-.053 2.509.198.812.152 3.442-.017.926-.165.874-.177 1.048-.143 2.128.285 2.564.334 1.288.049-1.279-.034-4.305.142-4.954.073 2.168-.046 3.992-.007 6.552.047 3.032.27.614.217-.324-.106-1.87-.278-.72-.118-3.948.137-2.745.487 1.782.522-.802ZM23.24 1.926c-1.942-.33 5.545-.054 6.327-.046 2.28.023 2.96-.158 4.595-.03.145.014-1.472.196-2.582.201-1.121.005-8.134-.095-8.34-.125Zm330.396 572.485c-1.085-.048-.456-.221-2.653-.137l-.036-.027c-.038-.134 1.931-.236 2.907-.227.035.002-.212.111.035.115.343.004.722.004 1.111.003 1.9.04 3.885-.718 3.797-.43-1.229.318-2.613.621-3.797.669-.527.029-.997.05-1.364.034Zm-94.577-.17c.21.026.341.012.401-.14l-.978-.032.577.172ZM166.762 1.785c.995.176 2.964.123 5.286.103l-.556-.186-4.73.083Zm199.341 20.293v.014l-.014 1.774.196 2.189.1-1.169-.282-2.808ZM22.41 1.835 14 1.832h.007c.13-.04.27-.08.408-.121l7.995.124ZM367.318 28.16c.007-3.265-.186-8.486-.178-12.133.004-1.647.075-1.993.112-3.026.01-.398.004-.878-.072-1.514-.018-4.21-5.288-9.968-9.227-10.375-1.334-.269-1.062.052-.825.11.615.126 2.674.666 3.458 1.164.779.463-.135.024.911.685.523.328 2.181 1.567 3.271 3.19 1.136 1.589 1.65 3.408 1.714 3.638.669 2.914.279-.73.605 2.779-.417.785-.293-1.333-1.134-3.67-.759-2.381-2.752-4.608-3.483-5.114-2.737-1.939-3.226-1.66-2.582-1.417.613.3 1.994 1.225 2.44 1.68.455.437.087.158-.351-.135-.439-.295-.963-.58-.707-.373a.57.57 0 0 1 .026.017c.261.209 1.312.995 2.143 1.983.852.97 1.457 2.105 1.601 2.347.674 1.03-1.186-2.69.449.256a11.45 11.45 0 0 1 .99 4.749l-.053 6.925c.103-.121.205-.24.307-.352l-.097-2.548c.034-.664.069-1.326.102-1.991.553 3.959-.086 8.713.151 15.335-.116-.378-.238-.71-.352-1.112-.177 9.653-.002 3.262.289 3.469.168.121.005 3.037.029 3.709.172 4.633.456-5.01.463-8.276Zm-52.79-26.635c11.113-.308-7.781-.354-9.057-.225-2.389.246 6.093.134 7.143.199 1.038.065.407.37 3.392.242 1.132-.05-.114-.195-1.478-.216Zm-26.904.235c-1.387-.101-4.119-.317-6.059-.172 2.58.116 2.607.218 6.059.172ZM37.991 1.752h-.113c.002 0 .011-.002.014-.004.032 0 .066.002.099.004Zm138.533 572.511-2.506-.009c-.008.005-.028.01-.035.015l2.97.032-.429-.038ZM366.916 130.61c-.462-2.784-.152 2.83-.365 5.454v-.014c-.064.783-.274-2.634-.289 1.063.057 2.301.193.399.285 1.506.092 1.117.013 7.729.277 3.906.082-1.188-.082-9.843.092-11.915Zm-.653 22.492c-.02 5.042.247 5.862.141 1.175-.023-1.002-.081-1.126-.141-1.175ZM2.128 468.819c.03-3.451-.736-30.906.28-23.829.01.061.015.097.018.07.25-2.998-1.067-10.215.02-14.103.037-.137.067-.247.07-.303.015-.239-.008-.993-.034-1.865-.042-1.404-.094-3.121-.015-3.497.045.583.054 1.468.063 2.294.005.51.01.999.023 1.379.018.511.051.843.085 1.176.05.489.1.982.096 2.04-.006 2.635-.145 1.489-.208.972-.016-.131-.027-.219-.03-.197l-.004.246c-.044 2.672-.077 4.629.075 6.89.073.298.066-.28.057-.951-.007-.567-.016-1.205.023-1.428.102-.508.05 1.917.027 3.005l-.01.471c.003.697.017 1.125.028 1.478.023.733.036 1.155-.078 3.019-.014.231-.032.278-.049.317-.037.09-.06.156.025 2.386-.225-1.874-.317 1.77-.195 4.405.019.406.056.675.093.95.076.56.155 1.15.103 2.963-.03.972-.178.706-.192.422-.005-.095 0-.319.005-.577.01-.513.023-1.16-.027-1.196-.036 1.149-.047 2.6-.058 4.011-.01 1.25-.02 2.47-.046 3.427-.006.175-.019.202-.034.233-.134.278-.074 5.165.042 5.58.012.128.026.233.04.317-.037.502-.076.92-.117 1.358-.023.243-.046.491-.07.767l-.048.535c-.084-1.209.03-1.558.042-2.765ZM187.052 1.71l7.656-.178c-3.613.018-4.946.04-6.946-.18-.233.119-.477.239-.71.358Zm180.115 56.126c-.358.368-.15 4.843-.337 7.39-.057.772-.335-3.593-.448.935v.007c-.036 1.458.029 7.32-.077 9.17.133.854.691-3.416.732-4.152.251-4.743-.05-8.69.13-13.35ZM89.055 1.684l-.085-.001.12-.031-.035.032Zm64.498 573.061c2.225.142 5.523-.151 3.913-.34-1.938-.225-7.524.109-3.913.34ZM366.635 200.19c.134-1.718-.122-5.903-.242-4.772-.166 1.591.213 5.111.242 4.772ZM205.229 1.26c-2.756-.023-4.655.22-4.321.386l5.609-.078-1.288-.307Zm133.29 574.832c-2.431.35-.483.493-4.778.134 4.714-.352-1.425-.611-1.175-.943.147-.188 2.211-.065 2.934-.159 1.113-.145-.138-.396 1.119-.486 1.254-.088 5.231.118 6.573.118 2.565-.002 4.847-.11 6.988-.112 1.417-.001 3.307.075 4.82.134.908.031 1.705-.053 2.245-.149 1.606-.263 3.064-1.038 3.295-1.191 1.354-.94.571-.666 2.207-2.033.178.222 2.577-1.584.233.915.372-.305.828-.677 1.142-1.032 1.403-1.724.431-1.145.967-2.028.775-1.548.384-.299.403-.299.941-1.309.371-.782.583-1.537.212-.377.791-3.596.683-4.275.002-.063.004-.112.007-.149.015-.153.052-.072.085 0 .03.075.057.142.065 0l.001-.035c.036-1.632.079-3.311.053-4.962-.027-1.648-.272-2.656.085-2.498.057.025.107.964.239.718h.002c.042-.084.249-1.34.366.556.033.536.049 1.107.052 1.689-.047-.23-.095-.453-.143-.683l-.013 1.33a9.455 9.455 0 0 0-.376-.823c-.138.536.04 1.236.036 1.33h.001c-.056 1.514-.315 1.259-.014 2.428.049-1.021.105-2.02.161-3.005.064.048.128.09.192.134l-.006.612.156-.282a71.23 71.23 0 0 1-.155 3.491c-.017.317-.046.621-.086.921a11.81 11.81 0 0 0-.075-.921l-.117-.76c.011.349.013.59.01.76-.034.862-.102.234-.281 1.407.235.575.053 1.408-.384 2.61-.473 1.19.317-.194-.168 1.052-.942 2.723-4.653 5.288-5.307 5.976-3.124 1.212.723-.643.811-.997.345-.549-.819.325-2.412.993-1.581.713-3.611 1.024-4.199 1.142a4.202 4.202 0 0 1-.344-.065c-.476-.138-.695-.282-2.532-.24-2.921.067 3.234.338-.718.367-2.639.02-2.176-.198-3.456-.255-2.383-.103-6.731-.005-5.341.31.559.127 2.471-.028 3.125.104.356.075-.796.704 1.653.22.238-.048-.861-.283.964-.283.528.001 2.185.213 3.695.156.375-.014 1.454-.11 2.61-.171 1.092-.041 2.22-.237 3.059-.407 2.095-.469-1.174.484-.398.373.834.02 3.417-1.102 3.308-.872-1.4.951-1.567.536-2.035.725-1.885.557-.423.725-3.26.98-.284-.161 1.848-.71-.674-.59-.226.001-.5.007-.829.019-.041.005.707.133-.359.173-1.833.069-5.306.105-7.516.091.039.291 2.764.278 4.06.483-3.001.041-6.364.12-8.431-.163l3.428-.11-3.984.029c.539-.121 3.62-.417 1.549-.491-.289.314-3.242.36-4.399.526Zm-22.752-1.193c.718-.323-1.279-.37-2.055-.366-2.788.014-4.292-.266-5.616.051 1.547.196 2.818-.02 3.618.006 1.748.06 1.669.326 4.053.309ZM89.498 1.559c-.471-.006-.94-.01-1.4-.008l.197-.026-2.597-.078c1.103-.021 2.2-.044 3.293-.067.169.06.338.12.507.178Zm101.931 573.064c2.426.381 10.779.074 7.755-.118l-2.315.001c-.073.023-.162.045-.436.046l-.007-.002c-.705.001-7.002-.243-4.997.073Zm-24.082-.131c-5.024-.114-8.958.369-2.28.248.372-.008 1.051-.259 2.28-.248Zm14.49.005-4.159.1 3.99.043c.055-.048.114-.096.169-.143Zm79.742.003-1.457.058.028.007h-.218l-2.611.104c.829.058 1.661.116 2.484.175l1.774-.344Zm104.926-412.777c.027 2.353-.077 6.106.133 6.608l.101-5.306-.234-1.302Zm-77.086 413.084c1.546.028 3.558-.303-.021-.254-.165.004-1.531.214-2.52.075-.235-.036-.297-.07-.338-.104l-1.069.101c.652.075 1.863.145 3.948.182ZM235.54.779c-2.646.155-5.098.167-8.438.11-.991.196-1.989.39-2.97.585 5.159.022 1.456-.301 5.954-.256.588-.092-1.963-.047-1.506-.1 2.213-.252 5.165.085 8.212-.055-.406-.094-.837-.19-1.252-.284ZM366.707 546.63c-.012 1.793-.034 3.579-.055 5.362-.24-1.194-.061-6.421.055-5.362Zm-93.46 27.909c1.874.732 6.216.529 6.108.091l-3.547-.009-2.561-.082ZM195.855 1.419l4.497.038c.075-.04.158-.08.233-.119l-4.49-.038c-.075.04-.165.079-.24.119Zm46.04 573.163c-1.843-.195-3.505.606-.444.257.292-.034.577-.241.444-.257Zm55.103.243c2.762-.013 5.421-.033 8.192-.052-.339-.033-.407-.09-.507-.145l-5.018.026-1.696-.059c-.26.086-.479.18-.971.23Zm-33.533.352c.299-.208.224-.392-1.387-.526-.438.203.416.36 1.387.526ZM166.031 1.229c2.052-.025 5.326.123 5.637-.074l-5.278-.106c-.121.06-.247.12-.359.18Zm94.949-.36c-2.423-.034-9.398.32-2.146.165l.098.183L260.98.87Zm-60.705.162 2.892.144c.986-.113 1.985-.226 2.97-.34l-5.862.196Zm-42.337.13 4.722-.082-4.364-.098-.358.18ZM356.145.972c-.42-.055-.8-.083-1.145-.095-3.56-.152-2.245-.04-4.876.092-1.923.097-3.967-.105-3.667.175 2.635-.071 6.69.018 8.543-.088.601-.029 1.012-.03 1.145-.084Zm-69.063.11c3.251-.242-8.472-.474-9.12.05 2.231-.02 7.586.064 9.12-.05ZM143.426 575.545c-.297-.145-.164-.566-1.323-.624-1.841-.092-3.698.092-2.695.297.305.061 3.852.181 4.018.327Zm224.075-27.224c.419-1.441.36 4.741.295 7.199l.01-1.738c-.089.227-.178.42-.267.647l-.028-1.921c-.093.717-.197 1.358-.29 2.041-.384-1.755-.138-1.799-.075-4.159.04-1.515-.091-2.147-.097-4.04-.029-8.848-.188-17.982-.105-27.031.325.091.404.329.444 2.02-.096-.095-.193-.178-.289-.267.032 1.112.07 2.212.111 3.3.058-.998.118-1.984.18-2.956.011.51.019 1.153.03 1.95.008.585.139.767.123 1.555-.036 1.685-.434 3.783-.333 5.672.058 1.089.422-.258.316 2.28-.262-1.602-.49-2.733-.39 1.253.236-2.221.141-.436.261.436.077.545.053-2.819.199-.605.03.476.17 7.264-.051 6.918-.479-.748-.423-1.071-.158 3.378.2-5.452.509-.324.368 2.083-.072 1.225-.293-.973-.254 1.985Zm-174.622 26.803c.213.032 5.116 0 5.229-.158-.834-.053-6.715-.084-5.229.158ZM270.734.977c.999-.148-3.492-.165-4.004-.124-2.025.162 2.988.271 4.004.124Zm96.502 51.377c.015-.558.034-4.34-.054-4.497-.478 5.904-.07 8.968.054 4.497Zm-84.855 523.389c4.455.325 5.541-.297 5.912-.359 1.92-.319 2.18.231 2.59.231 1.952-.009-.128-.606-.387-.617-4.162-.177-3.266.29-3.766.43-1.091.303-3.854.047-4.349.315Zm-176.281-.527c1.497.119 3.89-.008 2.765-.153-1.127-.145-4.617.006-2.765.153ZM367.155 510.5c.392-1.439.074 4.101.066 4.68-.023 1.687.194 2.189.044 3.399-.016.109-.236-1.086-.244-1.907-.008-.827.099-6.01.134-6.172ZM1.965 480.564c-.007 2.532-.428 2.096-.059-.464l.043-.296c.01.22.016.464.015.76Zm171.87 94.724 1.598.089-.078-.22-3.265.221 1.175.122.57-.212Zm193.428-65.4-.01-6.228.001.014c.048.096.096.193.145.296l-.136 5.918Zm-171.992 67.267c2.604.151 4.981-.297 3.583-.487-.823-.11-3.145.185-2.548-.132 3.864.15 3.522-.122 3.469-.171-.354-.344 2.549-.446 2.33-.734-.126-.162-3.233-.094-4.413-.136-.495-.019-.529-.152-.619-.16h-.014c-1.153-.054-1.84.079-3.019.086-.544.002-.885-.206-1.626-.136-.744.072-2.994.366-3.146.492-.265.227 1.911.416 3.744.237.894-.088.345-.422 2.865-.232.335.025 1.678.372 2.955.353-1.62.204-6.732.189-8.867.127-.263.239 3.351.155 4.708.274 1.149.1.384.602.598.619Zm73.422-1.316c.078.096-1.896.611 1.176.214 1.056-.137.945-.279 3.708-.293-2.574.036-1.958-.354-2.216-.385-2.125-.244-4.821.216-4.497.421.097.06 1.745-.052 1.829.043Zm98.697-54.424-.002-.077h.006l-.004.077Zm-50.349 54.151c-.736-.21-2.196-.143-3.913-.115l.415.222 3.498-.107Zm50.516-16.387v-.064c.013.03.025.069.038.099-.013-.009-.026-.027-.038-.035ZM53.403 575.894c-1.369-.279-6.6-.375-3.251-.071.85.077 2.215.053 3.251.071Zm88.89 1.086c2.427.048 2.001-.233 1.429-.406 1.618-.035 3.217-.064 4.828-.097-4.588-.025-4.469-.357-4.547-.776-1.858-.059-.607.238-2.554.187-.682-.018-.646-.194-.774-.209-1.576-.169-1.894.345-.95.401.947.056 3.179-.047 3.659.162-1.602.091-2.949-.048-4.842.003-2.239.061-.463.324.233.259 1.385-.129.538-.334 2.927-.148 2.036.159-1.319.585.591.624Zm159.737-1.292-5.665.226c2.672-.027 3.665-.055 5.144.205l.521-.431Zm65.677-16.179c.006-.347.009-.694.007-1.034l.03.148.09-1.922.085 2.442c-.07.125-.141.242-.212.366Zm-208.263 16.28-1.316-.014-1.619.238.873.116c.687-.113 1.368-.227 2.062-.34Zm68.186.01c1.026.119 3.041.371 4.476.196-1.905-.135-1.925-.257-4.476-.196Zm60.951.458c2.039.023 3.442-.269 3.195-.467l-4.152.101.957.366Zm-80.86-.133c-8.222.388 5.775.412 6.706.255 1.766-.299-4.514-.15-5.285-.226-.765-.077-.305-.443-2.512-.284-.833.061.084.232 1.091.255Zm-52.767 1.129c2.416.003 6.281-.237 8.98-.234 1.6.002 1.538.149 3.152.151 2.41.004 6.634.039 8.903-.049.821-.033.63-.305.478-.336-.389-.074-1.695.06-2.259.034-.559-.026.067-.136-.703-.151-.777-.014-5.071.024-5.384.044-1.852.122.41.274-1.752.243-.966-.936 5.221-.338 6.34-.388 4.207-.189.775-.27-.042-.352-.811-.081 1.186-.195.753-.273l-.021.001c-.436-.079-3.442-.107-3.814-.042-.796.141 1.9.262-.275.354l-8.262-.083c.09.122.178.244.261.366l1.886-.121 1.47.119c-2.927.668-6.447-.088-11.344.207.279-.141.525-.287.823-.424-7.143-.196-2.413.004-2.568.353-.092.2-2.249.009-2.745.04-3.43.214 3.707.538 6.123.541Zm140.559-1.201a3677.07 3677.07 0 0 0-3.321-.038l-.169.143 3.314.038c.056-.048.121-.095.176-.143Zm-29.346.833c1.956-.191 3.766-.209 6.235-.148.731-.234 1.471-.468 2.196-.703-3.819-.017-1.075.362-4.406.315-.435.111 1.454.053 1.119.116-1.637.308-3.825-.092-6.08.081.301.112.628.226.936.339Zm-133.163.236c-.272-.427-3.592-.172-5.475-.391-.559-.068 2.656-.407-.69-.534-1.081-.041-5.414.047-6.784-.077-.631.162 2.539.823 3.075.869 3.509.293 6.426-.074 9.874.133Zm-53.837-.179c2.055-.557-2.098-.177-4.04-.427-.573-.075 1.959-.331-.766-.343-1.703.073-.303.231-1.12.343-.825.112-5.724.029-2.892.338.879.096 7.281-.115 8.818.089Zm-16.644-.742c-3.729-.016-4.332.305-.865.169.74-.029.83-.098.865-.169Zm255.053.03c-1.519.033-3.936-.138-4.166.098l3.898.117c.089-.071.185-.143.268-.215Zm5.996.068-3.498.105 3.23.11.268-.215Zm-31.324.226-2.14-.168-2.195.411 4.335-.243Zm-44.899.295c1.796.036 6.937-.398 1.576-.2l-.07-.22c-.501.139-.999.28-1.506.42Zm-191.201-.316c-1.741.036-4.514-.082-4.885.171l3.92.111.965-.282Zm171.89.104c-2.413.295 6.262.554 6.742-.073-1.65.026-5.603-.065-6.742.073Zm12.083.1c-.738.178 2.575.191 2.963.141 1.5-.197-2.211-.32-2.963-.141Zm-63.034.212c3.511.244 2.206.106 4.307-.07 1.423-.119 2.941.119 2.716-.216-2.479.114-6.658-.079-7.023.286Zm-40.037.275c.404.018 3.221.034 3.329-.073-4.367-.561-6.634-.067-3.329.073Z"/></svg>');
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-properties-found h2 {
    color: #6c757d;
    margin-bottom: 15px;
}

.no-properties-found p {
    color: #6c757d;
    margin-bottom: 30px;
}

.no-results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Terms */
.propstack-related-terms {
    background-color: var(--greyVeryLight, lightgrey);
    padding: 40px 0;
}

.related-terms-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.related-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.related-term-item {
    display: block;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: var(--fontColor, #000);
    transition: all 0.3s ease;
}

.related-term-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--mainColor, orange);
}

.term-name {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.term-count {
    font-size: 0.9rem;
    color: #6c757d;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .propstack-property-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* .property-title,
    .archive-title,
    .taxonomy-title {
        font-size: 2rem;
    } */

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .properties-container[data-view="grid"] {
        grid-template-columns: 1fr;
    }

    .properties-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .property-meta-info {
        margin-left: auto
    }

    .property-summary {
        flex-direction: column;
        gap: 10px;
    }

    .filter-actions {
        flex-direction: column;
    }

    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }

    .related-terms-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Energy Efficiency Classes
   ========================================================================== */

.energy-efficiency-class{
    position: relative;
    .energy-class-indicator{
        position: absolute;
        top: 0;
        height: 30px;
        &::before{
            content: "\27A1";
            transform: rotate(90deg);
            display: inline-block;
            transform-origin: center;
        }
        &.class-a-plus{
            left: 5%;
        }
        &.class-a{
            left: 18%;
        }
        &.class-b{
            left: 28%;
        }
        &.class-c{
            left: 39.25%;
        }
        &.class-d{
            left: 50%;
        }
        &.class-e{
            left: 60.75%;
        }
        &.class-f{
            left: 70%;
        }
        &.class-g{
            left: 80%;
        }
        &.class-h{
            left: 91%;
        }
    }
    .energy-class-background{
        padding-top: 30px;
        img{
            display: block;
            width: 100%;
            height: auto;
        }
    }
}

/* Header-Grid */
.propstack-property-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px
}
.propstack-property-title-section > *:first-child {
    flex-basis: 60%;
    flex-grow: 1;
}

/* Grundriss-Slide */
.floorplan-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}
.floorplan-gallery-grid > * {
    flex: 0 0 220px;
    flex-shrink: 0;
    /* flex-grow: 1; */
    /* max-width: calc(33.3333% - 1rem); */
}
.floorplan-image-wrapper {
    /* border: 1px solid var(--greyLight, lightgrey);
    border-bottom: none;
    background: var(--contrastColorInverted, white) */
    background: var(--contrastColorInverted, white);
    border-bottom: 1px solid var(--greyLight, lightgrey);
}
.floorplan-image-wrapper img {
    width: 100%;
    height: auto
}
.floorplan-item {
    /* background: var(--mainColor, orange); */
    transition: .3s background-color ease;
    border: 1px solid var(--greyLight, lightgrey)
}
.floorplan-item:hover {
    background-color: var(--mainColor, orange)
}
.floorplan-item:hover .floorplan-caption {
    color: var(--contrastColorInverted, white);
}
.floorplan-caption {
    font-size: 14px;
    font-weight: 500;
    /* border: 1px solid var(--mainColor, orange); */
    padding: 5px 8px;
    transition: .3s color ease
    /* color: var(--mainColor, orange); */
    /* color: #fff; */
    /* font-weight: 700; */
}
