@charset "UTF-8";

@font-face {
  font-family: "material";
  src:url("../fonts/material.eot");
  src:url("../fonts/material.eot?#iefix") format("embedded-opentype"),
    url("../fonts/material.woff") format("woff"),
    url("../fonts/material.ttf") format("truetype"),
    url("../fonts/material.svg#material") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "material" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before,
.material .material-checkbox:before {
  font-family: "material" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-down:before {
  content: "b";
}
.icon-check:before {
  content: "a";
}

/* Material input */
.material .material-input{
    position: relative;
    padding-top: 18px;
    margin-bottom: 10px;
    background:#fff;
}

.material .material-input:after{
    display: block;
    clear: both;
    content:"";
}
.material .material-input input, 
.material .material-input textarea{
    font-size: 16px;
    width: 100%;
    border:0;
    border-bottom: 1px solid lightgray;
    outline: none;
    background: 0;
    float:left;
}

.material .material-input textarea{
    height: 120px;
    padding:7px 0;
}

.material .material-input input{
    height: 32px;
}

.material .material-input label{
    line-height: 32px;
}

.material .material-input label{
    color:gray;
    /*font-size: 16px;
    font-weight: 300;*/
    font-size: 14px;
    font-weight: 300;
    
    position: absolute;
    left:0;
    top:20px;
}

.material .material-bar{
    position: absolute;
    bottom:0;left:0;
    display: block;
    width: 100%;
}

.material .material-bar:before, 
.material .material-bar:after{
    content:"";
    height: 2px;
    width: 0;
    bottom:0;
    position: absolute;
    background: orange ;
    /*#0000ff*/
}

.material .material-bar:before{
    left:50%;
}

.material .material-bar:after{
    right:50%;
}

.material .material-input :focus ~ .material-bar:before,
.material .material-input :focus ~ .material-bar:after,
.material .error ~ .material-bar:before,
.material .error ~ .material-bar:after{
  width:50%;
}

.material .error ~ .material-bar:before,
.material .error ~ .material-bar:after,
.material .error ~ .material-bar:before,
.material .error ~ .material-bar:after{
    background:#ff0000;
}

.material .error:focus,
.material .error.filled,
.material .error:not(.filled) ~ label{
    color:red;
}

.material .material-input :focus ~ label,
.material .material-input .filled ~ label,
.material .error:focus ~ label{
    /*color:lightgray;*/
    color:orange;
    font-size: 13px;
    top:0;
    line-height: 24px;
}

/* Radio */
.material .material-group{
    padding-top: 10px;
}
.material .material-group input{
    display: none
}

.material .material-group-item{
    position: relative;
    margin-bottom: 5px;
}
.material .material-group-item:last-child{
    margin-bottom: 0
}

.material .material-group label{
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    z-index: 2;
    font-weight: 300;
}

.material .material-checkbox,
.material .material-radio{
    width: 18px;
    height: 18px;
    background:#fff;
    left:0;
    top:50%;
    margin-top: -9px;
    position: absolute;
    z-index: 1;
    border: 2px solid gray;
}

.material .material-radio{
    border-radius: 10px;
}

.material .material-checkbox{
    border-radius: 3px;
}

.material .material-checkbox:before{
    content:"a";
    font-size: 14px;
    text-align: center;
    padding-top: 3px;
    color:#fff;
    background:gray;
    position: absolute;
    top:0;left:0;right:0;bottom:0;


    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
}

.material .material-radio:before{
    position: absolute;
    top:3px;left:3px;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background:gray;
    content:"";
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
}

.material input:checked ~ .material-radio:before,
.material input:checked ~ .material-checkbox:before{
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}



/* Select */
.material .material-select {
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    padding-top: 18px;
    z-index: 3
}
.material .material-select input{display: none}
.material .material-select > label{
    color:gray;
    border-bottom: 1px solid lightgray;

    height: 40px;
    line-height: 40px;
    padding:0 30px 0 0px;
    width: 100%;
    cursor: pointer;
    position: relative;
    display: block;
}

.material .material-select > .material-title{
    position: absolute;
    color:lightgray;
    height: 40px;
    line-height: 40px;
    top:18px;left:0;
    opacity: 0;
    visibility: hidden;
}

.material .material-select > input:checked + .material-title,
.material .material-select.filled > .material-title{
    top:0;
    opacity: 1;
    visibility: visible;
    font-size: 13px;
    line-height: 24px;
}

.material .material-select > label strong{
    border-color: lightgray transparent transparent transparent;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    
    margin-top: -3px;
    width: 0;
    height: 0;
    position: absolute;
    right:0;top:50%;
}

.material .material-select > input:checked ~ ul{
    visibility: visible;
    opacity: 1;
    top:24px;
}
.material .material-select ul{
    background:#fff;
    top:0;
    left:0;width: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 2
}
.material .material-select ul li label{
    color:gray
}
.material .material-select ul li input:checked + label, 
.material .material-select ul li:hover input:checked + label{

    font-weight: 400
}
.material .material-select ul li label{
    display: block;
    cursor: pointer;
    padding:7px 10px;
}
.material .material-select ul li label:hover{
    background:#f5f5f5
}

.material .material-select > input:checked + .material-bar{
    top:22px;
}

.material .material-select .material-bar{
    height: 2px;
    background: #0000ff;
    width: 0;
    bottom:auto;
    top:56px;
}

/* Shadow */
.material .material-select ul{
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
}

/* Animation */
.material .material-select ul,
.material .material-bar:before, 
.material .material-bar:after,
.material .material-input label,
.material .material-select .material-bar,
.material .material-select > span,
.material .material-radio:before,
.material .material-checkbox,
.material .material-checkbox:before,
.material .material-checkbox:after{
    transition:.2s ease all; 
    -moz-transition:.2s ease all; 
    -webkit-transition:.2s ease all;
}

/* Disable select */
.material{
    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

/* Material border box reset */
.material *,
.material *:before,
.material *:after {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing:    border-box; 
    box-sizing:         border-box;
}

/*	12 COLUMN : RESPONSIVE GRID SYSTEM
	DEVELOPER : DENIS LEBLANC
	URL : http://responsive.gs
	VERSION : 3.0
	LICENSE : GPL & MIT */


/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */



/*	MAIN CONTAINER 
	Set the width to whatever you want the width of your site to be. */

/*	MAIN CONTAINER 
	Set the width to whatever you want the width of your site to be. */
.container { 
	margin: 0 auto; 
}


/*	SELF CLEARING FLOATS - CLEARFIX METHOD */
.container:after,
.row:after, 
.col:after, 
.clr:after, 
.group:after { 
	content: ""; 
	display: table; 
	clear: both; 
}

/* 	DEFAULT ROW STYLES 
	Set bottom padding according to preference */
.row { padding-bottom: 0; }
			
								  
/* DEFAULT COLUMN STYLES */
.col { 
	display: block;
	float: left;
	width: 100%;
}

@media ( min-width : 768px ) {
	
	.gutters .col {
		margin-left: 2%;
	}
	
	.gutters .col:first-child { 
		margin-left: 0; 
	}
}


/*	COLUMN WIDTH ON DISPLAYS +768px 
	You might need to play with media queries here to suite your design. */
/*@media ( min-width : 768px ) {
	.span_1 { width: 6.25%; }
    .span_2 { width: 12.5%; }
    .span_3 { width: 18.75%; }
    .span_4 { width: 25%; }
    .span_5 { width: 31.25%; }
    .span_6 { width: 37.5%; }
    .span_7 { width: 43.75%; }
    .span_8 { width: 50%; }
    .span_9 { width: 56.25%; }
    .span_10 { width: 62.5%; }
    .span_11 { width: 68.75%; }
    .span_12 { width: 75%; }
    .span_13 { width: 81.25%; }
    .span_14 { width: 87.5%; }
    .span_15 { width: 93.75%; }
    .span_16 { width: 100%; }
    
    .gutters .span_1 { width: 4.375%; }
	.gutters .span_2 { width: 10.75%; }
	.gutters .span_3 { width: 17.125%; }
	.gutters .span_4 { width: 23.5%; }
	.gutters .span_5 { width: 29.875%; }
	.gutters .span_6 { width: 36.25%; }
	.gutters .span_7 { width: 42.625%; }
	.gutters .span_8 { width: 49.0%; }
	.gutters .span_9 { width: 55.375%; }
	.gutters .span_10 { width: 61.75%; }
	.gutters .span_11 { width: 68.125%; }
	.gutters .span_12 { width: 74.5%; }
	.gutters .span_13 { width: 80.875%; }
	.gutters .span_14 { width: 87.25%; }
	.gutters .span_15 { width: 93.625%; }
	.gutters .span_16 { width: 100%; }
}*/

@media ( min-width : 1025px ) {
	.span_1 { width: 8.33333333333%; }
	.span_2 { width: 16.6666666667%; }
	.span_3 { width: 25%; }
	.span_4 { width: 33.3333333333%; }
	.span_5 { width: 41.6666666667%; }
	.span_6 { width: 50%; }
	.span_7 { width: 58.3333333333%; }
	.span_8 { width: 66.6666666667%; }
	.span_9 { width: 75%; }
	.span_10 { width: 83.3333333333%; }
	.span_11 { width: 91.6666666667%; }
	.span_12 { width: 100%; }
	
	.gutters .span_1 { width: 6.5%; }
	.gutters .span_2 { width: 15.0%; }
	.gutters .span_3 { width: 23.5%; }
	.gutters .span_4 { width: 32.0%; }
	.gutters .span_5 { width: 40.5%; }
	.gutters .span_6 { width: 49.0%; }
	.gutters .span_7 { width: 57.5%; }
	.gutters .span_8 { width: 66.0%; }
	.gutters .span_9 { width: 74.5%; }
	.gutters .span_10 { width: 83.0%; }
	.gutters .span_11 { width: 91.5%; }
	.gutters .span_12 { width: 100%; }
}