/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

/***** SEARCH FIELDS *****/
.wFormContainer .wFormHeader {
	display: none;
}
.no-display {
    display: none;
}

.books-radio-width {
	width: 70%;
}

.flex-input {
	display: flex;
	justify-content: space-between;
}

.search-flex {
	display: flex;
	justify-content: space-between;
    margin-right: 20px;
    margin-left: 20px;
}

.search-height {
	height: 85%
}

.ask-height {
	height: 96%
}

.bottom-row {
    display: flex;
    /*list-style: none;
    justify-content: space-evenly;
    padding-left: 0px;
    padding-right: 0px;
    align-items: flex-end;*/ /*These shouldn’t be needed*/
    bottom: 0px;
    /*right: 0px;
    left: 0px; */ 
    position: absolute;
    /*width: 100%; May or may not need this depending on outer container styling*/
}

.buttontest {
    background-color: #ffffff; /* Green */
    border: solid lightgray;
    border-width: thin;
    color: black;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;

	text-align: center;
}

.no-right-bord {
	border-right: none;
}

.no-left-bord {
	border-left: none;
}

input[type=text].lSearchText, select.lSelect {	
    width: 100%;
    padding: 20px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 2px solid #444444;
}

::placeholder, ::-webkit-input-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder {
	text-transform: uppercase;
	color: #b3b1b2;
}

input[type=submit].lSearchBtn {	
    position: absolute;
    right: 20px;
	    text-indent: -1000px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    display: block;
	background: url("https://www.uvu.edu/library/images/search-submit.png") no-repeat scroll center center transparent;
	border: none;
}

/* Customize the label (the container) */
.searchselect {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
	text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.searchselect input {
  position: absolute;
  opacity: 0;
}

/* Create a custom radio button */
.green-radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
}

.radiobutton, .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d1d1d1;
}
.wFormContainer {
	margin: 0;
}
.wFormContainer .supportInfo {
	display: none;
}

.radiobutton {
	border-radius: 50%;
}

.checkbox {
	border-radius: 0;
	margin: 0;
}

/* On mouse-over, add a grey background color */
.searchselect:hover input ~ .radiobutton,
.searchselect:hover input ~ .green-radio,
.searchselect:hover input ~ .checkbox {
  background-color: #ccc;
}

/* When the radio button is checked, add a background */
.searchselect input:checked ~ .green-radio {
	background-color: #fff;
}

.searchselect input:checked ~ .radiobutton,
.searchselect input:checked ~ .checkbox {
  background-color: #d1d1d1;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobutton:after, .green-radio:after, .checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.searchselect input:checked ~ .radiobutton:after,
.searchselect input:checked ~ .green-radio:after,
.searchselect input:checked ~ .checkbox:after{
  display: block;
}

/* Style the indicator (dot/circle) */
.searchselect .radiobutton:after,
.searchselect .green-radio:after,
.searchselect .checkbox:after {
  top: 5px;
  left: 5px;
  width: 15px;
  height: 15px;
  background: #585858;
}

/* Style the indicator (dot/circle) */
.searchselect .radiobutton:after, 
.searchselect .green-radio:after {
  border-radius: 50%;
}

/* Style the indicator (dot/circle) */
.searchselect .checkbox:after {
  border-radius: 0;
}

/**** FORM SYLES ****/

.libForm-outer,
.libForm-inner {
  list-style-type: none;
  padding: 0;
}

.libForm-outer {
  max-width: 800px;
}

.libForm-outer li,
.libForm-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.libForm-inner {
  padding: 0 8px;
  justify-content: space-between;  
}

.libForm-outer > li:not(:last-child) {
  margin-bottom: 20px;
}

.libForm-outer li label,
.libForm-outer li p, 
.libForm-outer legend {
  padding: 8px;
  font-weight: 300;
  margin-bottom: 0px;
}

.libForm-outer > li > label,
.libForm-outer > li > ul > li > label,
.libForm-outer li p,
.libForm-outer > li > legend{
  flex: 1 0 120px;
  max-width: 220px;
}

.libForm-outer > li > label + *,
.libForm-inner,
.libForm-outer > li > legend + *
{
  flex: 1 0 220px;
}

.libForm-outer li p {
  margin: 0;
}

.libForm-outer li input:not([type='checkbox']),
.libForm-outer li textarea,
.libForm-outer li select {
  padding: 15px;
  border: 1px solid #d4d4d4;
  background: transparent;
}

.libForm-outer li input[type='checkbox'] {
	margin-bottom: 0px;
}

.libForm-outer li button {
  /*margin-left: auto;*/
  padding: 8px 16px;
  border: none;
  background: #333;
  color: #f2f2f2;
  text-transform: uppercase;
  letter-spacing: .09em;
  border-radius: 2px;
}

.libForm-inner li {
  /*width: 100px;*/
	display: flex;
    margin: 0 10px 0 0;
}

/* eRes Form */

.items , .item-right > ul {
    display: none;
}

#item-info1, #item-info1 .item-right .specific-article {
    display: block;
}

#remove-item {
	display: none;
}

/* Homepage Search Boxes */
/*#bookSearch, #videoSearch, #musicSearch, #siteSearch*/
div[data-search-tab-id="proquest"],
div[data-search-tab-id="book"],
div[data-search-tab-id="music"],
div[data-search-tab-id="video"]{
    display: none;
}

/* Homepage Search Boxes new summer search */
/*div[data-search-tab-id="proquest_new"],*/
div[data-search-tab-id="ebsco_new"],
div[data-search-tab-id="video_new"],
div[data-search-tab-id="news_new"]{
    display: none;
}

.library-search-tab {
	border: 0px;
	background: #275037;
	color: #fff;
	padding: 10px;
	position: relative;
	height: 100%;
	margin: 5px 0;
}

.library-search-tab.active {
	background: #1E1E1E;
}

.searchTabs {
	justify-content: space-between;
	flex-wrap: wrap;
	align-content: flex-start;
	width: 70%;
}



/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {


	
	
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {

.library-search-tab {	
	padding: 15px;
	margin: 10px 0;
}

.library-search-tab.active:after {
	content: '';
    position: absolute;
    left: 40%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #1E1E1E;
    clear: both;
}
	
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {

.library-search-tab {	
	padding: 15px 20px;
}	
	
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/