/*********************************************************************************************
** Grid-Layout -> Mobile
*********************************************************************************************/

@media only screen and (max-width: 1024px) {

    .amobile {
        font-size: 85%;
        color: #888888;
    }

    .main {
        padding: 140px 0 20px 0;
        background-color: #e0e0e2;
        font-size: 17px; }

    .slogan, .fb-like-box {
        display: none;
    }

    .hide-for-mobile {
        display: none;
    }

    .show-for-mobile-only {
        max-width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
    }

    .wrapper_heading {
        max-width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
    }

    .wrapper_two_column,
    .wrp_one_column {
        max-width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
    }

    .card_two_column {
        border: 1px solid #dddddd;
        padding: 10px;
        border-radius: 10px;
    }

    .wrp_three_column  {
        max-width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
    }

    .ce-left .ce-gallery {
        clear: both;
        float: none;
        max-width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
    }

    .field_empty {
        display: none;
    }

    .footer-container {
        padding-right: 10px;
        padding-left: 10px;   
    } 

    .footer-columns {
        max-width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
    }   

    .footer-threecolumns { 
        padding-left: 30px; 
        max-width: 90%;
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
    } 

    /* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		padding-left: 5%; 
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 95%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	
	td:nth-of-type(1):before { content: "First Name"; }
	td:nth-of-type(2):before { content: "Last Name"; }
	td:nth-of-type(3):before { content: "Job Title"; }
	td:nth-of-type(4):before { content: "Favorite Color"; }
	td:nth-of-type(5):before { content: "Wars of Trek?"; }
	td:nth-of-type(6):before { content: "Secret Alias"; }
	td:nth-of-type(7):before { content: "Date of Birth"; }
	td:nth-of-type(8):before { content: "Dream Vacation City"; }
	td:nth-of-type(9):before { content: "GPA"; }
	td:nth-of-type(10):before { content: "Arbitrary Data"; }
    */
  
}    

