/* 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 ========================== */
ul.fa-ul {
	margin-left: 2.5em;
}

.fa-ul.early-alert li {
	color: white;
	font-size: 1.5rem;
	font-family: 'Stratum1', sans-serif;
}
.card.padding-40 {
	padding: 40px;
	line-height: 1.5em;
}
.list-guided-item:not(:last-child):after {
	display:none;
}

/*************************partial width borders******************/
.stop-borders {
	position: relative;
	border-top: 20px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 0; /* Ensure no default left border */
	border-right: 0; /* Ensure no default right border */
	border-image: linear-gradient(to left, #ECF0ED 80%, transparent 80%, transparent 100%);
	border-image-slice: 1 0 0 0; /* Apply the first gradient to top, second to bottom */
	border-image-width: 20px; /* Set the width of the border image */
	border-image-outset: 0;
	border-image-repeat: stretch;
}
.stop-borders::after {
 	 content: "";
  	position: absolute;
  	left: 0;
  	width: 100%;
  	height: 20px; /* Match the desired border thickness */
	bottom: -10px;
  	background-image: linear-gradient(to right, #ECF0ED 80%, transparent 80%, transparent 100%);
}


/***********syallbus shapes*******************/
.z-zero {
	z-index: 0;
}
.syllabus {
  	position: relative; /* Needed for absolute positioning of pseudo-elements */
 	padding: 40px 40px 80px; /* Add some padding so the text doesn't overlap the backgrounds */
	margin: 40px 20px 0;
	line-height: 1.75em;

	&::before {
		content: "";
		position: absolute;
		top: -30px;
		right: -100px;
		z-index: -1;
		background-image: url('/retention/images/solid-circle_square.svg');
		background-repeat: no-repeat;
		background-position: top right;
		width: 131px;
		height: 136px;
	}
}

.z-zero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: url('/retention/images/solid-stair.svg'), url('/retention/images/strip-circle_stair.svg');
   	background-position: bottom 0 right 0, bottom 20px left -50px;
    background-repeat: no-repeat;
    background-size: 87px auto, 113px auto;
    z-index: 2;
}
/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {

	.fullbleed p:has(a) {
    width: 48%;
}
	
.syllabus {
  margin: 40px 100px 0;
	padding: 40px 80px 80px;
}
.z-zero::after{
	background-position: bottom 0 right 55px, bottom 20px left 20px;
}

	.list-guided-item:not(:last-child):after {
		display: block;
		color: var(--color-uvu-primary);
	}
}/*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*/