/* 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 {
	color: #285d39;
}
.bg-green-xlight {
	background-color: #ECF0ED;
}
.dots {
	background-image: radial-gradient(#ECF0ED 8%, transparent 30%);
    background-size: 15px 15px;
}
.stop-borders {
    position: relative;
    border-top: 20px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 0;
    border-right: 0;
    border-image: linear-gradient(to left, #ECF0ED 80%, transparent 80%, transparent 100%);
    border-image-slice: 1 0 0 0;
    border-image-width: 20px;
    border-image-outset: 0;
    border-image-repeat: stretch;
}
.stop-borders::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px;
    bottom: -10px;
    background-image: linear-gradient(to right, #ECF0ED 80%, transparent 80%, transparent 100%);
}

.top-x-pattern {
	position: relative;
}
.top-x-pattern:before {
    background: url(/math-success/images/assets/x-pattern.png) no-repeat;
    content: "";
    background-size: 390px;
    position: absolute;
    width: 200px;
    height: 110px;
    top: -60px;
    right: 20px;
}

.step-circle-bg {
    position: relative;
}
.step-circle-bg:after {
	content: "";
    position: absolute;
    background: url(/math-success/images/assets/hollow-step-circle.png) no-repeat;
    width: 70px;
    background-size: 70px;
    top: -30px;
    right: 20px;
    height: 100px;
}

/*****************HEADER CSS*****************/
.page-header.jumbo {
	padding-bottom: 30px;
	overflow: hidden;
	background-position: right;
}
.page-header.jumbo h1 {
	color: #fff;
}
/*HEADER BUTTONS*/
.header-buttons {
    margin-top: 30px;
	display: grid;
	grid-gap: 20px;
}
.header-buttons p {
	margin: 0 !important;
}
.header-buttons .button-shadow {
	font-size: 16px;
	color: #285d39;
	margin-bottom: 0;
}
.header-buttons .button-shadow:hover, .header-buttons .button-shadow:hover:after, .header-buttons .button-shadow:focus, .header-buttons .button-shadow:focus:after {
	color: #fff;
}

/*****************TABLE CSS*****************/
.table th {
    color: #fff;
    background-color: #285d39;
    padding: 10px !important;
}

/***********BUTTONS************/
.button-shadow {
	color: #285d39;
	display: flex;
    justify-content: space-between;
	border-radius: 8px;
	font-weight: bold;
	text-transform: none;
	transition: all 300ms;
	box-shadow: none;
}
.button-shadow:after, .button-solid:after {
    content: "\f061";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    color: #285d39;
}
.button-shadow.on-page:after, .button-solid.on-page:after {
	content: "\f063";
}
.button-shadow:hover, .button-shadow:focus {
	border: 2px solid #fff;
	text-decoration: none;
}
.button-shadow:hover:after, .button-shadow:focus:after {
	color: #fff;
}
.button-solid {
    font-weight: bold;
    text-transform: none;
	display: flex;
    justify-content: space-between;
	border-radius: 8px;
	transition: all 300ms;
}
.button-solid:after {
	color: #fff;
}
.button-solid:hover:after, .button-solid:focus:after {
	color: #285d39;
}

/**************ICON LINKS*************/
.icon-link-container {
    display: flex;
    align-items: center;
    transition: all 300ms;
    height: 150px;
	border-bottom: 1px solid #00843D;
}
.icon-link-container:hover {
    transform: translateY(-20px);
    border-bottom: 1px solid #00843D;
}
.icon-link-container p.icon-link-icon {
    flex: 2;
	text-align: center;
}
.icon-link-content {
    flex: 4;
}
.icon-link-content h3 {
    margin-top: 0;
}
.icon-link-container a{
	text-decoration: none;
	color: #000;
	font-weight: bold;
}
.bg-primary .icon-link-container a {
	color: #fff;
}
.bg-primary .icon-link-container, .bg-primary .icon-link-container:hover {
	border-bottom: 1px solid #fff;
}


/***********ACCORDION************/
details {
	background-color: transparent !important;
	margin-bottom: 0 !important;
	border-radius: 0 !important;
	outline: none !important;
}
details:first-child summary {
    border-top: none !important;
}
details summary {
	font-weight: 500;
    background-color: transparent !important;
    font-size: 1.25em;
    font-family: Rajdhani;
    margin: 0.5em auto 10px;
    padding: 20px !important;
    border-top: 1px solid var(--color-uvu-primary) !important;
    border-radius: 0 !important;
}
details summary::after {
    color: #285d39 !important;
    background-color: transparent !important;
    font-size: 24px !important;
}

.accordion:first-child {
    border-top: none;
}
.accordion {
	font-weight: 500;
    background-color: transparent !important;
    font-size: 1.25em;
    font-family: Rajdhani;
    margin: 0.5em auto 10px;
    padding: 20px 10px 10px 50px !important;
    border-top: 1px solid var(--color-uvu-primary);
    border-radius: 0 !important;
}
.accordion:not(.accordion-unstyled):before {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    content: "\f0da";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    font-weight: 100;
    position: absolute;
    left: 0;
    margin: auto;
    height: auto;
    width: 30px;
    color: var(--color-uvu-primary);
}
.accordion.open:not(.accordion-unstyled):before {
    content: "\f0d7";
}
.accordion:not(.accordion-unstyled):after {
	display: none;
}
.accordion-content {
    padding: 10px !important;
    background-color: transparent !important;
    border-top: none !important;
    margin: 10px auto !important;
}



/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	.width-50 {
		width: 70%;
	}
	
	.top-x-pattern:before {
		right: 100px;
	}
	
	.step-circle-bg:after {
		width: 100px;
		background-size: 100px;
		right: 50px;
		height: 118px;
	}
	
	/*****************HEADER CSS*****************/
	.page-header.jumbo {
		min-height: 350px;
		display: flex;
        align-items: end;
		background-position: center;
	}
	.page-header .container-fluid {
		width: 100%;
	}
	.jumbo header {
		margin-bottom: 30px;
		padding: 0 !important;
	}
	.page-header.jumbo h2 {
		font-size: 32px;
	}
	/*HEADER BUTTONS*/
	.header-buttons {
		grid-auto-rows: auto;
		grid-template-columns: repeat(2, 1fr);
	}
	
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.width-50 {
		width: 50%;
	}
	
	.top-x-pattern:before {
		background-size: 500px;
		width: 300px;
		height: 146px;
	}
	
	/*****************HEADER CSS*****************/
	/*HEADER BUTTONS*/
	.header-buttons {
		width: 65%;
	}
	
}

/*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 landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1600px) {
	 .top-x-pattern:before {
        right: 350px;
    }
	 .step-circle-bg:after {
        right: 350px;
    }
	
}

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