.project_video {
	display: block;
	width: 100%;
	min-height: 15em;
}

.social_icon {
	margin-top: 4em;
	padding: 2em 0;
	background-color: #151231;
	color: #fff;
}

.social_icon a{
	color: #ffcc00;
	padding:  0 1em;
}

	/* AT Icon */

	.icon.automotivetherapy {
		height: 3.75em;
		line-height: 3.75em;
		width: 3.75em;
	}

		.icon.automotivetherapy:before {
			font-size: 1.75em;
		}

		/* Feature */

			.feature .icon.automotivetherapy {
				font-size: 0.5em;
			}

	.icon.automotivetherapy {
		display: block;
		height: 4.5em;
		line-height: 4.5em;
		margin: 1em auto 3em auto;
		position: relative;
		text-align: center;
		width: 4.5em;
	}

		.icon.automotivetherapy:before {
			color: #ffffff;
			font-size: 2em;
			line-height: inherit;
			position: relative;
			z-index: 1;
		}			

		.icon.automotivetherapy:after {
			-moz-transform: rotate(45deg);
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			transform: rotate(45deg);
			background: #151231;
			content: '';
			height: inherit;
			left: 0;
			line-height: inherit;
			position: absolute;
			top: 0;
			width: inherit;
		}

		.icon.automotivetherapy.fa-paper-plane:before {
			left: -0.125em;
		}	
		
		.feature .icon.automotivetherapy {
			font-size: 0.675em;
			left: 0;
			position: absolute;
			top: 0;
		}	
		
		.wrapper.style1 .icon.automotivetherapy:before {
			color: #7bceba;
		}		

		.wrapper.style1 .icon.automotivetherapy:after {
			background: #ffffff;
		}		


/* ---------------------------- */
/* MODAL SECTION STYLING 		*/
/* ---------------------------- */
.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.1);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    pointer-events: none;
}

    .modalDialog.errorevent {
        opacity:1;
        pointer-events: auto;
    }

.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}

.modalDialog > div {
    width: 40%;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border: solid 2px #F88F78;
    border-radius: 10px;
    /* background: #0f0f0f; */
    background: -moz-linear-gradient(#fff, #c4c4c4);
    background: -webkit-linear-gradient(#fff, #c4c4c4);
    background: -o-linear-gradient(#fff, #c4c4c4);
}

.modalDialog input[type="password"],  input[type="text"] {
    border: 1px solid black;
    background-color: #fff;
}

.modalclose {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.modalclose:hover { background: #4b6f9d; color: #FFFFFF;}

/* Login Error Message Formatting */
.login_error_message {
display: block;
margin: 0.25em 0;
color: #ff0000;
}
    
/* Post */

.post {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    margin-bottom: 2em;
    min-height: 500px;
}

    .post .image {
        display: block;
        margin-bottom: 1em;
        width: 100%;
        -ms-flex: 0 0 auto;
    }

        .post .image img {
            width: 100%;
        }

    .post .content {
        padding: 2.5em 2.5em 0.5em 2.5em ;
        -moz-flex-grow: 1;
        -webkit-flex-grow: 1;
        -ms-flex-grow: 1;
        flex-grow: 1;
    }

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

        .post .content {
            padding: 2em 2em 0.1em 2em ;
        }

    }

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

        .post {
            display: block;
        }

            .post .content {
                padding: 2em 1.5em 0.1em 1.5em ;
            }

    }

.post .content {
    background-color: transparent;
    border: solid 1px #c0c0c0;
}

/* Posts */

.posts {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
}
    .post h3 {
        background-color:#151231;
        color: white;
        text-align: center;
        padding: 0.5em 0.25em;
    }

    .posts .post {
        width: calc(33.33333333% - 1.25em);
    }

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

        .posts .post {
            width: calc(50% - 1em);
        }

    }

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

        .posts {
            display: block;
        }

            .posts .post {
                width: 100%;
            }

    }

/* ------------------------------------------------ */
/* User Creation Section of the adminstration panel */
/* ------------------------------------------------ */
#send_user_invitation {
    display: none;
    border: 1px solid rgba(144, 144, 144, 0.25);
    border-radius: 0.5em;
    padding: 0.5em;
    margin-bottom: 1em;
}

    #send_user_invitation.active {
        display:block;
    }

#create_user_manually {
    display: none;
    border: 1px solid rgba(144, 144, 144, 0.25);
    border-radius: 0.5em;
    padding: 0.5em;
    margin-bottom: 1em;
}
    #create_user_manually.active {
        display:block;
    }    