.agency-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

.agency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
/*    border-bottom: 1px solid #e5e5e5;*/
    padding: 12px 0;
}

.agency-details {
width: 100%;
}

.agency-name {
    font-family: 'Heldane';
    font-size: 1.4em;
    font-weight: 400;
    margin: 0;
}
.agency-listings a {
color: #006c75;
    font-weight: bolder;
    border-bottom: 1px solid #006c7500;
    padding-bottom: 4px;
    transition: all ease .3s;
}
.agency-listings a:hover {
    border-color: #006c75;
}
.agency-listings:after {
    content: "·";
    margin-left: 10px;
    font-weight: 300;
}
.agency-item:hover .agency-location a{
    background: #006c75a6;
    color: white;
}
.agency-meta {
display: flex;
    flex-wrap: wrap;
    gap: 2px 16px;
    font-size: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.agency-meta span {
    line-height: 1.8;
    font-weight: 500;
    font-size: 13px;
}

.agency-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agency-location a {
background: #006c7514;
    padding: 4px 8px;
    color: #0c6d78;
    border-radius: 2px;
    border: 1px solid #0c6d7845;
}

.agency-location a:hover {
    background: #006c75 !important;
    color: white;
}

.agency-logo {
    max-width: 12%;
    max-height: 48px;
}

.agency-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}
.agency-item.hidden {
    display: none;
}

.show-more-less-button {
    display: block;
    cursor: pointer;
    font-size: 12px;
    /* font-weight: 600; */
    /* color: #006c75; */
    background-color: #0000000d;
    padding: 10px 16px;
    border: 1px solid #e5e5e5;
    text-align: center;
    width: fit-content;
    margin-top: 12px;
	text-transform: uppercase;
}
.agency-visit a.button.button-primary {
    background: #006c75;
    padding: 2px 8px;
    color: white;
    border-radius: 2px;
}

.agency-country {
font-weight: bolder;
}


.agency-list.solo {
    background: rgb(245 245 245);
    padding: 4px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin: 0 -20px;
}

.agency-list.solo .agency-meta {
    border-bottom: none;
}