/**handles:rental-directory**/
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
div.brd_home_form {
    max-width: 1200px;
}
.brd_home_form form {
    text-align: center;
}
.brd_home_form .l-box {
    padding: 8px;
}
.pure-g > div {
    box-sizing: border-box;
}
.brd_home_form .select2-container {
    text-align: left;
}
.brd_home_form .select2-container .select2-selection--single {
    height: 36px;
    padding: 4px;
}

div.brd_results {
    max-width: 1200px;
}
.brd_results .l-box {
    padding: 8px;
    position: relative;
}
.brd_results .current_status {
    padding: 4px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(34, 84, 61);
    background: rgb(198, 246, 213);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.brd_results .current_status.rentmy_store {
    float: right;
    background-color: #bee3f8;
    position: absolute;
    top: 16px;
    right: 16px;
}
.brd_results .current_status.featured {
    float: right;
    background-color: #FEEBC8;
    color: #7B341E;
}
.brd_results .name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.brd_results .bio {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.brd_results .result > .pure-g {
    border: 1px solid rgb(203, 213, 224);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}

.brd_results .result > .pure-g:hover {
    border: 1px solid rgb(223, 74, 49);
}

.brd_results .result img {
    height: 160px;
    width: 160px;
    object-fit: contain;
    margin: 0 auto;
}

div.brd_detail {
    max-width: 1200px;
}
.brd_detail .l-box {
    padding: 8px;
}
.pure-g > div {
    box-sizing: border-box;
}
.brd_detail .current_status {
    padding: 4px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(34, 84, 61);
    background: rgb(198, 246, 213);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.brd_detail .name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.brd_detail td {
    padding-right: 30px;
    padding-bottom: 10px;
}
.brd_detail .claim-button {
    float: right;
}
div.brd_detail .blur {
    filter: blur(4px);
}

div.brd_detail .blur::-moz-selection {
  background: rgba(0, 0, 0, 0);
}

div.brd_detail .blur::selection {
  background: rgba(0, 0, 0, 0);
}

.pure-g > div {
    box-sizing: border-box;
}

.brd_results {
    max-width: 1200px;
}
.brd_results p.title {
    font-weight: 700;
}
.brd_results .l-box {
    padding: 8px;
}
.brd_results .current_status {
    padding: 4px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(34, 84, 61);
    background: rgb(198, 246, 213);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.brd_results .name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.brd_results .bio {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.result > .pure-g {
    border: 1px solid rgb(203, 213, 224);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}

.result > .pure-g:hover {
    border: 1px solid rgb(223, 74, 49);
}

.result img {
    height: 160px;
    width: 160px;
    object-fit: contain;
    margin: 0 auto;
    background: #e2ebf0;
}



img.pure-img {
    position: relative;
    overflow: hidden;
    inset: 0px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-style: none;
    background: #e2ebf0;
}

img[alt]:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-family: 'Helvetica';
  font-weight: 300;
  line-height: 2;
  text-align: center;
  content: attr(alt);
}

.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #f2391b;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}