@font-face {
    font-family: 'ProximaNovaBold';
    src: url('fonts/Mark Simonson - Proxima Nova Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AntiqueOlive';
    src: url('fonts/antique-olive.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
h1,h2 {
    font-family: AntiqueOlive, sans-serif;
}

.library-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.library-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.library-col {
    flex: 1 0 0%;
}

.library-row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.library-row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.library-row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.library-row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.library-row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.library-row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.library-row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.library-col-auto {
    flex: 0 0 auto;
    width: auto;
}

.library-col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.library-col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.library-col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.library-col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.library-col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.library-col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.library-col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.library-col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.library-col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.library-col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.library-col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.library-col-12 {
    flex: 0 0 auto;
    width: 100%;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

.library-search {
    background-color: #a77b4a;
    width: 100%;
    height: 100%;
    margin-top: 0;
}

.library-search h1 {
    color: #FFFFFF;
    margin: 2rem;
}

.library-search .header {
    height: auto;
    min-height: 150px;
}

.library-search .results {
    background-color: #dedede;
}

.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
    gap: 20px;
}

.library-section-header{
    text-transform: uppercase;
    font-family: ProximaNovaBold, sans-serif;
    padding-left: 3rem;
    color: #000000;
}
.library-caption {
    width: 400px;
    height: 200px;
    text-transform: capitalize;
    font-family: ProximaNovaBold, sans-serif;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.library-tabs {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 10px auto 0;
    width: 100%;
    text-transform: uppercase;
    font-family: ProximaNovaBold, sans-serif;
}


.library-tabs li {
    float: left;
    background-color: #d1bda4;
    color: #000000;
    width: 200px;
    height: 75px;
    position: relative;
    text-align: left;
    padding-left: 10px;
    border-radius: 15px 15px 0 0;
}

.library-tabs span {
    float: left;
    padding-left: 5px;
    padding-top: 30px;
    text-decoration: none;

    /* Default colors */
    background-color: #d1bda4;
    color: #000000;

}

.library-tabs span:hover {
    text-decoration: underline;
    cursor: pointer;
}

.library-tabs .active {
    background-color: #e7ddd1;
    text-decoration: none;
    z-index: 3;
}

.library-tabs .active span {
    background-color: #e7ddd1;
}

.library-tabs .active span:hover {
    text-decoration: none;
    cursor: default;
}

.library-tabs li:before, .library-tabs li:after,
.library-tabs li a:before, .library-tabs li a:after {
    position: absolute;
    bottom: 0;
}

/* Only the first, last, and active
   tabs need pseudo elements at all */
.library-tabs li:last-child:after, .library-tabs li:last-child a:after,
.library-tabs li:first-child:before, .library-tabs li:first-child a:before,
.library-tabs .active:after, .library-tabs .active:before,
.library-tabs .active a:after, .library-tabs .active a:before {
    content: "";
}

.library-tabs .active:before, .library-tabs .active:after {
    background-color: #d1bda4;

    /* Squares below circles */
    z-index: 1;
}


.library-tabs li:before {
    left: -10px;
}

.library-tabs li:after {
    right: -10px;
}


.library-tabs li a:before {
    left: -20px;
}

.library-tabs li a:after {
    right: -20px;
}

.library-tabs-content {
    height: 100%;
    padding-bottom: 5em;
    background-color: #e7ddd1;
    display: grid;
    place-items: center;
    width: 100%;
}

.library-tabs-content h2 {
    width: 100%;
    margin: 0 auto;
    color: #000000;
}

.library-tabs-content .container {
    width: 90%;
    margin: 0 auto;
}


.library-breadcrumbs {
    width: 100%;
    font-family: ProximaNovaBold, sans-serif;
    color: #000000;
    text-transform: uppercase;
}
.library-breadcrumbs a{
    color: #000000;
    text-decoration: none;
}
.library-breadcrumbs a:hover{
    color: #000000;
    text-decoration: underline;
}

.library-breadcrumbs ul {
    display: flex;
    list-style-type: none;
    gap: 10px;
}

.library-search .library-breadcrumbs {
    color: #ffffff;
}

.library-search .library-breadcrumbs a {
    color: #ffffff;
}

.library-search .library-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.library-form-label {
    padding-top: 1.5em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.library-col-library-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.library-col-library-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
}

.library-col-library-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
}

.library-form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2em;
    color: #000000;
    background-color: #f2ebe3;
    background-clip: padding-box;
    border: 1px solid #000000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .library-form-control {
        transition: none;
    }
}

.library-form-control[type=file] {
    overflow: hidden;
}

.library-form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.library-form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.library-form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

.library-form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.library-form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.library-form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.library-form-control::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.library-form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .library-form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }

    .library-form-control::file-selector-button {
        transition: none;
    }
}

.library-form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

.library-form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.library-form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.library-form-control-plaintext:focus {
    outline: 0;
}

.library-form-control-plaintext.library-form-control-sm, .library-form-control-plaintext.library-form-control-lg {
    padding-right: 0;
    padding-left: 0;
}

.library-form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.library-form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}

.library-form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}

.library-form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
}

.library-form-control-lg::-webkit-file-upload-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem;
}

.library-form-control-lg::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem;
}

textarea.library-form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.library-form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.library-form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
}

.library-form-control-color {
    width: 3rem;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem;
}

.library-form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.library-form-control-color::-moz-color-swatch {
    border: 0 !important;
    border-radius: 0.375rem;
}

.library-form-control-color::-webkit-color-swatch {
    border-radius: 0.375rem;
}

.library-form-control-color.library-form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
}

.library-form-control-color.library-form-control-lg {
    height: calc(1.5em + 1rem + 2px);
}

.library-form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.library-form-range:focus {
    outline: 0;
}

.library-form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.library-form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.library-form-range::-moz-focus-outer {
    border: 0;
}

.library-form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .library-form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}

.library-form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe;
}

.library-form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.library-form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .library-form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}

.library-form-range::-moz-range-thumb:active {
    background-color: #b6d4fe;
}

.library-form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.library-form-range:disabled {
    pointer-events: none;
}

.library-form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}

.library-form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}

.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.library-form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #f2ebe3;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #000000;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .library-form-select {
        transition: none;
    }
}

.library-form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.library-form-select[multiple], .library-form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
}

.library-form-select:disabled {
    background-color: #e9ecef;
}

.library-form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
}

.library-form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.library-form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
}

.example__number {
    width: 75%;
    line-height: 30px;
    border: 1px solid #000000;
    text-align: center;
    background-color: #f2ebe3;
}

.example__values {
    padding-top: 1em;
    display: flex;
    justify-content: space-between;
    font-family: ProximaNovaBold, serif;
}
 #custom-handle {
     width: 1em;
     height: 1em;
     top: 50%;
     margin-top: -.5em;
     line-height: 1em;
     background-color: #000000;
     border-radius: 100%;
     border: 4px solid #000000;
 }
.library-clear {
    font-family: 'ProximaNovaBold', serif;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    top: 75%; left: 0;
}
.library-clear:hover{
    cursor: pointer;
    text-decoration: underline;
}
.small-button a{
    position: relative;
    top: 75%; left: 0;
}
.jcf-select {
    width: 100%;
}

.jcf-select .jcf-unselectable {
    width: 100%;
}

.jcf-select .jcf-select-text  {
    background-color: #f2ebe3;
    border: 1px solid #000000;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2em;
    height: 29px;
    padding: 10px;
    width: 100%;
    padding-block: 10px;
    padding-inline: 10px 30px;
}

.jcf-select-opener{
    padding-right: 5px;
}.jcf-select-opener:after{
    padding-right: .5em;
}
.library-card {
    width: 100%;
    padding: 1em;
    overflow: hidden;    /* Essential: clips the image corners */
}
.library-card img {
    border: 1px solid #000000;
    background-size: cover;
    border-radius: 15px;
    object-fit: cover;
    overflow: hidden;    /* Essential: clips the image corners */
}
.library-highlight-card {
    padding: 1em;
    overflow: hidden;    /* Essential: clips the image corners */
}
.library-highlight-card img {
    height: 200px;
    width: 400px;
    border: 1px solid #000000;
    background-size: cover;
    border-radius: 15px;
    object-fit: cover;
    overflow: hidden;    /* Essential: clips the image corners */
}
.library-search-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 475px;
    width: 450px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.library-search-card img {
    height: 200px;
    width: 400px;
    border: 1px solid #000000;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
}
.library-highlight-card a {
    color:#769695;
}

.library-search-results {
    background-color: #dedede;
    padding-bottom: 4rem;
}

.library-search-results .page-nav, .page-number{
    display: flex;
    justify-content: center;
    align-items: center;
}

.library-search-results .page-number{
    border: solid 1px #000000;
    background-color: #ffffff;
    width: 75px;
    height:45px;
}

.library-search-results ul {
    text-transform: uppercase;
    font-size: 30px;
    list-style-type: none;
    font-weight: bold;
}
.library-search-results li {
    padding: 10px;
    display: inline-block;
}

.library-search-results a {
    color:#000000;
    text-decoration: none;
}
.library-search-results a:hover {
    color:#000000;
    text-decoration: underline;
}

.library-entity-section{

}

.library-entity-section h2 {
    display: flex;
    justify-content: space-between;
    font-size: 30px;
}

.library-entity-section .library-entity-categories {
    display: flex;
    justify-content: center;
    align-items: center;
}

.library-entity-section button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.angled-div {
    color:#ffffff;
    height: 200px; /* adjust to control the size  */
    aspect-ratio: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    background: #808183;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    padding-right:5px;
    border-right: 10px solid #808183;
}
.arrow-back{
    background: #808183;
    height: 12px;
}

.js-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    list-style: none; /* If using <ul> */
    margin-top: 1rem;
}

.js-pagination .prev,
.js-pagination .next,
.js-pagination .number {
    /* Your base button styles: padding, margin, border, etc. */
    margin: 0 2px;
    padding: 5px 10px;
    border: none;
    background-color: #dedede;
    cursor: pointer;
}

.js-pagination .prev:disabled,
.js-pagination .next:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.js-pagination .number.active {
    /* Styles for the active page number */
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: bold;
}

.js-pagination .numbers {
    display: flex;
    justify-content: center;
    align-items: center;
}

.js-pagination .number-first,
.js-pagination .number-last {
    padding: 5px;
    margin: 0 2px;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
    color:#ffffff;
}