/* 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 ========================== */

a {
	border-bottom: 1px dotted var(--color-uvu-primary);
}
a:hover, a:active {
	border-bottom: 1px solid var(--color-uvu-primary);
	text-decoration: none;
}

a.text-white, a.text-white:visited{
	color:white;
}

a.text-white:hover{
	color:white;
	text-decoration:underline;
}

ul{
	margin-bottom:0;
}

.bg-image{
	background-image:url('https://www.uvu.edu/accessibility/images/backgrounds/pw_pattern.png');
	background-size:auto;
	background-repeat:repeat;
}

/* Button Policy */

.button-policy-title{
	font-size:1.9rem;
	font-weight:bold;
}

.button-policy-text{
	font-size:1.5rem;
}

.button-policy, .button-policy:active, .button-policy:focus {   
	background-color: #fff;
    color: #285e39;
    border: 2px solid transparent;
	width:95%;
	height:100%;
	text-align:center;
}
.button-policy, .button-border, .button-shadow {
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 10px;
    border: 2px solid #e8e8e8;
}

.button-policy:hover, .button-border:hover, .button-shadow:hover {
		text-decoration: none;
		}
.button-policy:hover {
	background-color: #e8e8e8;
	color: #285e39;
	border-color: transparent;
}
.button-border:hover {
	/*background-color: #ebebeb;*/
}
.button-shadow:hover {
	/*background-color: #285e39;
	color: #fff;*/
}


/*FLEX BUTTONS*/

.bg-transparent {
	background: rgba(12,12,12,.6);
	transition: .3s;
}
.bg-transparent:hover {
	padding-left: 40px;
}
.bg-transparent a:hover {
	text-decoration: none;
	color:#fff;
}
.flex-center {
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bg-transparent a{
	text-shadow: 1px 1px 24px black;
	-webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
	transition: 0.2s;
}

.bg-image-crisis{
	background-repeat: none;
	background-size: cover;
	width:100%;
	min-height: 150px;
}

/*images size is 400x300*/
.bg-image-exterior {background-image: url("https://www.uvu.edu/accessibility/images/maps-exterior.jpg");}
.bg-image-interior {background-image: url("https://www.uvu.edu/accessibility/images/maps-interior.jpg");}

.height-150{
	height:150px;
}

.width-100p{
	width:100%;
}

.staffc{
	color:#fff;
}

a.staffc:hover{
	color:#fdefc1;
}

.width-300 {
	max-width: 300px;
}
.height-350 {
	min-height: 350px;
}

.padding-1{
	padding:1px;
}

/* =====EXPANDABLE ACCORDION START===== */
/*.question{
  background-color: #dcdcdd;

}*/

.question {
    background-color: #f4f4f4;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.question:before {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    content: "\f0fe";
    font-family: 'FontAwesome';
    font-size: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: auto;
    width: 30px;
    color: #fff;
    background-color: #595478; /*purple*/
    border-radius: 0 3px 3px 0;
}	
.question h3{
  margin: 5px 0 5px 0;
  height: 70px;
  padding: 10px 0 0 10px;
}
.answer{
  	background-color: #f6f6f7;
	margin:10px;
	width:85%;
	padding-top:10px;
}

.vertical-align{
	/*display: -webkit-flex;
	display: flex;
  	 -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  	text-align: center;*/
	
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;

	align-items: center;
}
/* =====EXPANDABLE ACCORDION END===== */


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


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


	
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {

	
	
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
