@charset "UTF-8";

/*
 * Nugget Name: Fully initialized web form (Project Planner) example that sends emails with attachments using Dropzone.js and PHPMailer
 * Nugget URI: http://www.onyxdev.net/snippets-item/form-example-send-emails-with-attachments-using-dropzone-js-phpmailer/
 * Author: Obada Qawwas
 * Author URI: https://www.onyxdev.net
 * Version: 1.0
**/


/************************************************************

    Variables

*************************************************************/
/* 
:root {
    --accent-color: rgba(255, 255, 255, .5);
}
 */


/************************************************************

	Main Styles

*************************************************************/
html {
   /*  background-color: #29323c; */
    background-color: #FFFFFF;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-rendering: optimizeLegibility;
	margin: 0;
	min-height: 100vh;

    line-height: 1.5;
	letter-spacing: normal;
    font-size: 14px;
    overflow-x: hidden;
    color: #000;

}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


input,
textarea {
    border-radius: 0!important;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    -ms-appearance: none!important;
    -o-appearance: none!important;
    appearance: none!important;
    outline: 0 !important
    
}

.hidden {
    display: none;
}

.wrapper {
	padding: 0px;
}



/************************************************************

	Our Form

*************************************************************/


/* Container
*************************************/
.form-container {
    background-color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 0px;
    padding-bottom: 25px;
}


/* Titles
*************************************/
.title {
	color: #000;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
}


/* Descriptions
*************************************/
.desc {
	font-size: 13px;
}


/* Fields groups
*************************************/
.fields-group-head {
	margin-bottom: 15px;
}
.fields-group-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 20px -15px 15px;
}


/* Fields
*************************************/
.form-field:not(.half) {
    -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
}
.form-field.half {
    -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
}
.form-field label {
    display: block;
    line-height: 1.5;
    margin: 0;
    z-index: 1;
    font-size: 12px;
    font-weight: 600;
}
.form-field input {
    padding: 10px 0;
    width: 100%;
    border: 1px solid #888;
    border-width: 0 0 1px;
    -webkit-transition: border .15s linear,color .15s linear;
    -o-transition: border .15s linear,color .15s linear;
    transition: border .15s linear,color .15s linear;
    color: #000;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    font-size: 12px;
    background-color: transparent;
}
.form-field input.error {
	border-color: #d53636
}
.form-field input[type=tel] {
	letter-spacing: .06em
}
.form-field input[type=tel]::-webkit-input-placeholder {
	letter-spacing: 0
}
.form-field input[type=tel]:-moz-placeholder {
	letter-spacing: 0
}
.form-field input[type=tel]::-moz-placeholder {
	letter-spacing: 0
}
.form-field input[type=tel]:-ms-input-placeholder {
	letter-spacing: 0
}
.form-field input::-webkit-input-placeholder {
	color: var(--accent-color);
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field input:-moz-placeholder {
	color: var(--accent-color);
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field input::-moz-placeholder {
	color: var(--accent-color);
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field input:-ms-input-placeholder {
	color: var(--accent-color);
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field input:focus {
	border-color:  #42afdc 
}
.form-field input:focus::-webkit-input-placeholder {
	color: #ccc
}
.form-field input:focus:-moz-placeholder {
	color: #ccc
}
.form-field input:focus::-moz-placeholder {
	color: #ccc
}
.form-field input:focus:-ms-input-placeholder {
	color: #ccc
}
.form-field input::-ms-clear {
	display: none
}
.form-field textarea {
	margin: 15px 0 0;
    padding: 8px 10px;
    width: 100%;
	height: 140px;
    border: 1px solid #888;
    -webkit-transition: border .15s linear,color .15s linear;
    -o-transition: border .15s linear,color .15s linear;
    transition: border .15s linear,color .15s linear;
    color: var(--accent-color);;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    font-size: 12px;
    background-color: transparent;
	resize: none;
}
.form-field textarea.error {
	border-color: #d53636
}
.form-field textarea::-webkit-input-placeholder {
	color: #bbb;
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field textarea:-moz-placeholder {
	color: #bbb;
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field textarea::-moz-placeholder {
	color: #bbb;
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field textarea:-ms-input-placeholder {
	color: #bbb;
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.form-field textarea:focus {
	border-color:  #42afdc
}
.form-field textarea:focus::-webkit-input-placeholder {
	color: #ccc
}
.form-field textarea:focus:-moz-placeholder {
	color: #ccc
}
.form-field textarea:focus::-moz-placeholder {
	color: #ccc
}
.form-field textarea:focus:-ms-input-placeholder {
	color: #ccc
}


/* Form selections
*************************************/
.onyx-checkboxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
}
.type-selection {
	width: 20%;
	display: inline-block;
	position: relative
}
.type-selection input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	margin: 0
}
.type-selection input[checked] + label {
	background-color: #677686 !important;
	color: var(--accent-color) !important
}
.type-selection input[checked] + label:before {
	color: var(--accent-color) !important
}
.type-selection input[checked] + label:after {
	opacity: 1!important
}
.type-selection label {
	cursor: pointer;
	display: block;
	width: 100%;
	-webkit-transition: background .15s linear, color .15s linear;
			-o-transition: background .15s linear, color .15s linear;
			transition: background .15s linear, color .15s linear;
	text-align: center;
	position: relative;
	background-color: #485563;
	color: var(--accent-color);
}
.type-selection label {
	padding: 130px 20px 30px;
    height: 100%;
}
.type-selection label.on_press,
html:not(.mobile):not(.tablet) .type-selection label:hover {
	background-color: #677686
}
.type-selection label:before {
	font-family: FontAwesome;
	position: absolute;
	top: 35px;
	left: 0;
	width: 100%;
	text-align: center;
	line-height: 1;
	font-size: 42px;
	color: var(--accent-color);
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear
}
.type-selection label:after {
	font-family: FontAwesome;
	content: "\f00c";
	position: absolute;
    bottom: 61px;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
	opacity: 0;
	color: var(--accent-color);
	text-align: center;
	font-size: 14px;
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear
}
.type-selection .icon-web:before {
	content: "\f1d8";
}
.type-selection .icon-graphic:before {
	content: "\f1fc";
}
.type-selection .icon-mobile:before {
	content: "\f10b";
}
.type-selection .icon-social:before {
	content: "\f21e";
}
.type-selection .icon-other:before {
	content: "\f219";
}


/* Dropzone
*************************************/
.dropzone-foo {
    position: relative;
    margin-top: 15px;
    padding: 40px 70px;
    height: auto;
	min-height: 0;
	line-height: 1.5;
	-webkit-transition: border .15s linear,color .15s linear;
	-o-transition: border .15s linear,color .15s linear;
	transition: border .15s linear,color .15s linear;
	color: var(--accent-color);
	font-size: 12px;
    border: 1px dashed #888;
    background-color: #FFF;
}
.dropzone-foo:after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 24px;
    content: "\f0c6";
	font-family: FontAwesome;
    line-height: 1;
    color: var(--accent-color);
    font-size: 30px;
}
.dropzone-foo .instructions {
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis
}
.dz-drag-hover .dropzone-foo {
	border-color: var(--accent-color);
	background-color: #677686
}
.dz-preview img,
.dz-error-mark {
	display: none;
}
.dz-preview {
    position: relative;
    width: 100%;
    margin-top: 7px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, .2);
    overflow: hidden;
    z-index: 50;
    font-size: 14px;
}
.dz-preview .dz-filename {
	width: 100%;
    padding: 7px 40px 7px 0;
}
.dz-preview .dz-filename span {
	display:block;
	padding: 0 0 0 10px;
	white-space: nowrap;
	overflow:hidden;
	-o-text-overflow:ellipsis;
	   text-overflow:ellipsis
}
.dz-preview .dz-remove {
	position: absolute;
    right: 7px;
    top: 6px;
	display:block;
	width: 20px;
	height: 20px;
	overflow:hidden;
	text-indent:-99999em;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	cursor: pointer
}
.dz-preview .dz-remove:after,
.dz-preview .dz-remove:before {
	display:block;
	content:" ";
	position: absolute;
	border-radius: 3px;
	background: #d53636;
	-webkit-transition: background .15s linear;
	-o-transition: background .15s linear;
	transition: background .15s linear
}
.dz-progress,
.dz-size,
.dz-success-mark {
	display: none
}
.dz-preview .dz-remove:before {
	top: 4px;
	left: 7px;
	width: 2px;
	height: 12px
}
.dz-preview .dz-remove:after {
	top: 9px;
	left: 2px;
	width: 12px;
	height: 2px
}
.dz-preview .dz-remove.on_press:after,
.dz-preview .dz-remove.on_press:before,
html:not(.mobile):not(.tablet) .dz-preview .dz-remove:hover:after,
html:not(.mobile):not(.tablet) .dz-preview .dz-remove:hover:before {
	background: #f83097
}

.total-uploaded {
    position: relative;
    margin-top: 15px;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 10px 15px;
    -webkit-transition: border .15s linear,color .15s linear,background .15s linear;
    -o-transition: border .15s linear,color .15s linear,background .15s linear;
    transition: border .15s linear,color .15s linear,background .15s linear;
    color: var(--accent-color);
    font-size: 13px;
    border: 1px dashed #888;
    background-color: #FFF;
}
/*.total-uploaded.on_press,
html:not(.mobile):not(.tablet) .total-uploaded:hover {
	background-color: #677686;
	border-color: rgba(255, 255, 255, .25)
}*/


/* Button
*************************************/
.form-controls button {
	padding: 0;
	position: relative;
	color: #fff;
	width: 180px;
	height: 50px;
	padding: 0 25px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border: 0;
	outline: 0;
	line-height: 1;
	text-align: left;
	background-color: #677686;
	-webkit-transition: background .15s linear;
	-o-transition: background .15s linear;
	transition: background .15s linear
}
.form-controls button:after,
.form-controls button:before {
	display: block;
	content: ' ';
	position: absolute
}
.form-controls button:before {
	top: 50%;
	width: 56px;
	height: 2px;
	margin: -1px 0 0;
	background: #fff;
	-webkit-transition: right .15s linear,width .15s linear,background .15s linear;
	-o-transition: right .15s linear,width .15s linear,background .15s linear;
	transition: right .15s linear,width .15s linear,background .15s linear
}
.form-controls button:after {
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(208,208,208,0);
	border-left-color: #fff;
	border-width: 6px;
	margin: -6px -7px 0 0;
	-webkit-transition: right .15s linear,border-color .15s linear;
	-o-transition: right .15s linear,border-color .15s linear;
	transition: right .15s linear,border-color .15s linear;
	right: 30px
}
.form-controls button.on_press:before,
html:not(.mobile):not(.tablet) .form-controls button:hover:before {
	width: 66px;
	background-color: #fff
}
.form-controls button:before {
	right: 35px
}
.form-controls button.on_press,
html:not(.mobile):not(.tablet) .form-controls button:hover {
	cursor: pointer;
	color: #fff;
	background: #485563
}
.form-controls button.on_press:after,
html:not(.mobile):not(.tablet) .form-controls button:hover:after {
	border-left-color: #fff;
	right: 25px
}
.form-controls button.on_press:before,
html:not(.mobile):not(.tablet) .form-controls button:hover:before {
	right: 30px
}
.form-controls button:focus {
	background: #485563
}
.form-controls button:focus:after {
	right: 25px
}
.form-controls button:focus:before {
	right: 30px
}
.form-controls button[disabled] {
	background: #797979 !important;
	cursor: pointer
}
.form-controls button.has-errors {
	background: #797979 !important
}


/* Error messages
*************************************/
.error-msg {
    float: right;
    display: none;
    color: #d53636;
    line-height: 50px;
    font-weight: 400;
}


/* Form spinner
*************************************/
.form-spinner-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.form-spinner {
	display: none;
	z-index: 100;
	height: 100px;
	width: 100px;
	border: 3px solid var(--accent-color);
	border-right-color: #f8f8f8;
	border-left-color: #f8f8f8;
	border-radius: 50%;
	-webkit-animation: rotate .8s infinite linear;
			animation: rotate .8s infinite linear
}


/* Thank you
*************************************/
.form-thankyou-wrap {
	display: none;
	width: 100%;
	height: 100%
}
.form-thankyou-wrap-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.form-thankyou-content {
	width: 100%;
	line-height: 1.5;
    text-align: center;
}
.form-thankyou-content h2 {
	margin: 0;
	color: #000;
	font-size: 24px;
}
.form-thankyou-content h2 em {
	display: block;
	margin: 0 0 40px;
	line-height: 1;
	color: #000;
	font-style: normal;
	font-size: 70px;
}
.form-thankyou-content p {
	width: 100%;
	margin: 0;
	font-size: 15px;
}
.form-thankyou-content a {
	color: #b60f5f;
	background-color: #677686; 
}
.form-thankyou-content .return-btn {
	height: 50px;
	position: relative;
	display: inline-block;
	line-height: 49px;
	padding: 0 25px 0 120px;
	margin: 40px 0 0 -28px;
	text-align: right;
	color: #000;
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
	transition: color .15s linear;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #677686;
	text-decoration: none;
	-webkit-transition: background .15s linear;
	-o-transition: background .15s linear;
	transition: background .15s linear
}
.form-thankyou-content .return-btn:after,
.form-thankyou-content .return-btn:before {
	display: block;
	content: ' ';
	position: absolute
}
.form-thankyou-content .return-btn:before {
	top: 50%;
	width: 56px;
	height: 2px;
	margin: -1px 0 0;
	background: #fff;
	-webkit-transition: left .15s linear,width .15s linear,background .15s linear;
	-o-transition: left .15s linear,width .15s linear,background .15s linear;
	transition: left .15s linear,width .15s linear,background .15s linear
}
.form-thankyou-content .return-btn:after {
	top: 50%;
	border: solid transparent;
	content: " ";
	height:  0;
	width:  0;
	position:  absolute;
	pointer-events: none;
	border-color: rgba(208,208,208,0);
	border-right-color: #fff;
	border-width: 6px;
	margin: -6px 0 0 -7px;
	-webkit-transition: left .15s linear,border-color .15s linear;
	-o-transition: left .15s linear,border-color .15s linear;
	transition: left .15s linear,border-color .15s linear;
	left: 30px
}
.form-thankyou-content .return-btn.on_press:before,
html:not(.mobile):not(.tablet) .form-thankyou-content .return-btn:hover:before {
	right: 0;
	width: 66px;
}
.form-thankyou-content .return-btn:before {
	left: 35px;
}
.form-thankyou-content .return-btn.on_press,
html:not(.mobile):not(.tablet) .form-thankyou-content .return-btn:hover {
	cursor: pointer;
	color: #fff;
	background-color: #485563;
}
.form-thankyou-content .return-btn.on_press:after,
html:not(.mobile):not(.tablet) .form-thankyou-content .return-btn:hover:after {
	right: -5px;
	left: 25px;
}
.form-thankyou-content .return-btn.on_press:before,
html:not(.mobile):not(.tablet) .form-thankyou-content .return-btn:hover:before {
	left: 30px
}



/************************************************************

	Animations

*************************************************************/
@-webkit-keyframes rotate {
	0% {
	-webkit-transform: rotate(0);
	transform: rotate(0)
}
100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg)
	}
}
@keyframes rotate {
	0% {
	-webkit-transform: rotate(0);
	transform: rotate(0)
}
100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg)
	}
}

