/* ----------------------------------- */
/* ------ Collective GRID Table ------- */
/* ----------------------------------- */

/* --------------------------------------------- */
/* ------ Collective GRID Table - MOBILE ------- */




/* -------------------------------- */
/* Basic GRID Table Building Blocks */

/* Generic Grids */
.grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12,
.grid-scholarships {
    display: grid;
/*     grid-template-columns: 1fr 3fr; */
/*     column-gap: 10px; */
	grid-gap: 10px;
}

/* Specific Grids */
.grid-tuition-fees, .grid-class-list, .grid-table_row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 10px;
	border-bottom: 2px solid var(--dark-gold_60);
}

.grid-scholarships {
    display: grid;
    grid-template-columns: 1fr 3fr;
/*     column-gap: 10px; */
}

.grid-table_row {
    padding: 1rem 2rem 1.5rem;
}

.grid-table_heading-text,
.advisor-grid_special-note-heading {
    font-weight: bold;
}

.grid-table_heading-text_desktop {
    display: none;
}

.grid-table_headings {
    display: none;
}

.grid-table_row p {
    margin-top: .3rem;
    margin-bottom: .3rem;
}

.grid-table_row:nth-child(odd) {
    background-color: var(--skc-gold);
}

.grid-table_row:nth-child(even) {
    background-color: var(--skc-light);
}

.grid-tuition-fees.full-time {
    font-weight: 700;
}




/* ---------------------------------------------- */
/* ------ Collective GRID Table - DESKTOP ------- */
@media (min-width: 900px) {

    /* -------------------------------- */
    /* Basic GRID Table Building Blocks */

    /* Generic Grids */
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);

    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .grid-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .grid-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .grid-9 {
        grid-template-columns: repeat(8, 1fr);
    }

    .grid-10 {
        grid-template-columns: repeat(10, 1fr);
    }

    .grid-11 {
        grid-template-columns: repeat(11, 1fr);
    }

    .grid-12 {
        grid-template-columns: repeat(12, 1fr);
    }

    /* Specific Grids */
    .grid-tuition-fees {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-scholarships {
        grid-template-columns: .75fr 1fr 1fr 1fr 2fr 1fr 1fr 2fr;
    }

    .grid-class-list {
        grid-template-columns: 1.5fr 3fr 2fr 2fr 1fr 1fr 1.5fr 1fr 1fr 1fr 1fr;
    }
	
	.bison-schedule_grid p {
        text-align: center;
    }
	
	.advisor-grid {
	display: grid;
	grid-template-columns: 2.5fr 3fr 2fr 2fr 1fr;
	}

    .grid-2 p, .grid-3 p, .grid-4 p, .grid-5 p, .grid-6 p, .grid-7 p, .grid-8 p, .grid-9 p, .grid-10 p, .grid-11 p, .grid-1 p, .grid-scholarships p, .grid-tuition-fees p, .grid-class-list p, .advisor-grid p {
        overflow-wrap: anywhere;
        padding: .5rem;
    }

    .grid-table-container, .grid-table-container_class-list {
        box-shadow: 5px 5px 8px var(--dark-gold);
        border-radius: 10px 10px 10px 10px;
    }

    .grid-table-container {
		margin: auto;
		width: 100%;
    }
    
    .grid-table_row {
        display: grid;
        overflow: hidden;
        padding: 0;
    }



}

@media (max-width: 900px) {

    /* -------------------------------- */
    /* Basic GRID Table Building Blocks */

    /* Generic Grids */
/*     .grid-3 {
        grid-template-columns: 1fr;

    } */
/* ------------------------------------------------ */
/* ------ END - Collective GRID Table - END ------- */
/* ------------------------------------------------ */


/* -------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------- */

/* ----------------------------------------- */
/* ------ GRID Table Element Styling ------- */
/* ----------------------------------------- */

/* -------------------------------------------------- */
/* ------ GRID Table Element Styling - MOBILE ------- */


/* ------------------------------------------------- */
/* ----- Class List GRID Table Element Styling ----- */

/* Online Synchronous */
.OLS {
    background-color: #A2D3DF;
}

/* Fact to Face */
.FTF {
    background-color: #f7c69e;
}

/* Online Asynchronous */
.OLA {
    background-color: #b1e1ad;
}

/* Online Face to Face */
.OLFTF,
.OSF {
    background-color: #f8e799;
}

.insCode {
    display: none;
}

/* ------------------- */
/* Basketball Schedule */
.home-game {
    background-color: var(--skc-light_95);
}

/* -------------------------------------------------- */
/* ------ GRID Table Element Styling - DESKTOP ------- */
@media (min-width: 900px) {
    /* ---------------------------------- */
    /* General GRID Table Element Styling */    
    .grid-table_heading-text {
        display: none;
    }

    .grid-table_heading-text_desktop {
        display: block;
        font-weight: bold;
    }

    .grid-table_headings {
        border-bottom: 2px solid var(--skc-grey_dark);
    }

    .grid-table-container .grid-table_row:first-child,
    .grid-table-container_class-list .grid-table_row:first-child {
        border-radius: 10px 10px 0px 0px;
    }

    .grid-table-container .grid-table_row:last-child,
    .grid-table-container_class-list .grid-class-list:last-child {
	
        border-radius: 0px 0px 10px 10px;
		border: none;
    }
    
    /* ---------------------------------------------- */
    /* Basketball Schedule GRID Table Element Styling */


}
/* ----------------------------------------------------- */
/* ------ END - GRID Table Element Styling - END ------- */
/* ----------------------------------------------------- */


/* ----------------------------------------------------- */
/* ------------------- Advisor Grid -------------------- */
/* ----------------------------------------------------- */


.advisor-grid_special-note p {
    grid-column: 1/5;
}

.advisor-grid_special-note p:nth-child(1) {
    margin-bottom: -10px;
}

@media (max-width: 700px) {
    .advisor-grid_special-note p:nth-child(1) {
        margin-bottom: 0px;
    }
}

/* ----------------------------------------------------- */
/* ------------- END - Advisor Grid - END -------------- */
/* 


