/* Search */
.search {
    position: relative;
    height: 45px;
}

.search a {
    float: right;
    font-weight: 700;
    color: #000;
    font-size: .75rem;
    margin-bottom: 10px;
    background-image: none
}

.search a:hover {
    color: #fed53d
}

.search input[type=text] {
    border: 1px solid #c4c4c4;
    background-color: #fff;
    color: #333;
    padding: 15px 30px;
    height: 45px;
    width: 100%;
    float: left;
	border-radius: 5px;
}

.search input[type=text]::placeholder {
    color: #797979;
	font-size: 0.85em;
}

.search button {
    width: 60px;
    height: 60px;
    color: #000;
    font-size: 1.1rem;
    appearance: none;
    border: none;
    background: none;
    position: absolute;
    right: 0;
    top: -6px;
	color: #797979;
}

.search button:hover {
    color: #fed53d
}

.search select {
    position: absolute;
    top: 14px;
    right: 70px;
    width: 110px;
    border: 0;
    background-color: transparent;
    color: #797979;
}

@media (min-width: 900px) and (max-width: 1450px) {
    .search input[type=text] {
        width: calc(100% - 15px);
        margin-inline: 15px;
    }
}

@media (max-width: 900px) {
    .mainLibraryContent .search {
		max-width: 90%;
		margin: 0 auto;
	}
}

@media (max-width: 500px) {
    .search input[type=text] {
        padding-inline-start: 10px;
    }
    .search select {
        right: 50px;
    }
}
/* end Search */

/* Reservations and Hours */
#reservationsAndHours {
	display: flex;
}
.reservations {
	padding: 0 30px 30px 30px;
}
.reservations h3 {
	font-family: 'Neue Helvetica Condensed';
	color: #fff;
	font-size: 1.5em;
	font-weight: 600;
	margin: 0 0 0 0;
}

.reservations .rNumber {
	font-size: 3rem;
	font-family: 'Neue Helvetica Condensed';
	font-weight: 600;
	margin: 45px 0 0 0;
	color: #fff;
	line-height: initial;
}

.reservations .rItem,
.reservations .rItem a {
	color: #e3ef96;
	font-size: 1.7rem;
	font-family: 'Neue Helvetica Condensed';
	text-decoration: none;
	font-weight: 600;
	margin: 15px 0 0 0;
	line-height: 1;
}

#reservationsAndHours > div {
	flex-basis: 33%;
	padding: 40px 45px;
}
.available-now {
    background-color: #263F6A;
    text-align: center;
    color: #fff;
    font-weight: 700
}

.available-now dl {
    margin: 0;
    line-height: 1.5
}

.available-now dl dd {
    margin: 0;
    font-size: 3rem;
    margin-top: .5em
}

.available-now dl dd strong {
	font-size: 1rem;
}

.available-now dl dt,
.available-now dl dt a {
    font-size: 1.5rem;
    color: #fed53d;
	text-decoration: none;
}

#libraryHours {
	background-color: #edefef;
	padding: 0 30px;
}

#libraryHours h3 {
	font-family: 'Neue Helvetica Condensed';
	color: #184f2c;
	font-size: 1.5em;
	font-weight: 600;
	margin: 0 0 1em 0;
}

#libraryHours .hours-lists.dayTime {
	background-color: #fff;
    border-radius: 10px;
    padding: 10px 0;
    margin: 30px 0 0 0;
}

#libraryHours .hours {
    position: relative;
    color: #184f2c;
}

.hours a {
    background-image: none;
    color: #8ca796;
    display: flex;
    margin-right: 1em;
    font-size: .875rem;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	cursor: pointer;
	font-family: 'Neue Helvetica Condensed';
}

.hours a.active {
	opacity: 1;
    color: #ced54a;
    border-left: 4px solid #ced54a;
    padding-left: 3px;
}

.hours a:hover {
    opacity: 1
}

.hours ul {
    margin: 10px 0;
    display: none
}

.hours ul:first-of-type {
    display: block
}

.hours ul li {
    list-style: none;
    line-height: 1.5
}
.hours ul li span {
	font-family: 'Neue Helvetica Condensed';
    font-weight: 600;
}
.hours ul li span:first-of-type {
    width: 4em;
    float: left;
    clear: left;
    margin-bottom: auto
}

.hours ul li div.today {
	position: relative;
}

.hours ul li div.today:before {
    content: '';
    width: 3px;
    height: 11px;
    position: absolute;
    left: -10px;
    top: 6px;
    background-color: #ced54a;
}

.hours ul li div.today::after {
    content: "TODAY";
    font-weight: 600;
    font-size: .85em;
    margin-left: 1em;
    position: relative;
    top: -1px;
	font-family: 'Neue Helvetica Condensed';
	color: #ced54a;
}

.hours dl {
    margin-top: 10px;
    display: none
}

.hours dl:first-of-type {
    display: block
}

.hours dl dt {
    width: 5em;
    float: left;
    clear: left;
    font-weight: 700;
    margin-bottom: auto
}
@media (max-width: 1100px) {
	#reservationsAndHours {
		flex-direction: column;
	}
	#reservationsAndHours > div {
		flex-basis: 100%;
		width: 100%;
		box-sizing: border-box;
		margin-top: 0;
		margin-bottom: 0;
	}
}

@media (max-width: 645px) {
	.hours-lists ul {
		padding-bottom: 30px;
	}
}
