/*============ CSS BEGIN ============*/
/* Geniral style */
* {padding: 0; margin: 0;}
header, nav, section, article, aside, footer {display: block;}
html, body {height: auto; max-height: 100%;}
fieldset {border: none; margin: 0; padding: 0;}

/* Link Style */
a {text-decoration: none;}

.normal {font-weight: normal;}
.bold {font-weight: bold;}
.w800 {font-weight: 800;}
.w300 {font-weight: 300;}
.italic {font-style: italic;}
.center {text-align: center;}
.alleft {text-align: left;}
.alright {text-align: right;}
.upp {text-transform: uppercase;}
.under {text-decoration: underline;}
.no-padding {padding: 0;}
.nowrap {white-space: nowrap;}
.lh180 {line-height: 180%;}
.lh140 {line-height: 1.4;}
.lh120 {line-height: 1.2;}
.vmid {vertical-align: middle;}
.left {float: left;}
.right {float: right;}

.abs {position: absolute;}
.rel {position: relative;}

/* Flex */
.flex {display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-align-content: stretch; -ms-flex-line-pack: stretch; align-content: stretch;}
.flex-between {justify-content:space-between; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify;}
.flex-around {justify-content:space-around; -webkit-align-content: space-around;  -ms-flex-line-pack: distribute;}
.flex-center {justify-content:center; -webkit-box-pack: center; -moz-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center;}
.flex-left {justify-content: flex-start; -webkit-justify-content: flex-start;  -ms-flex-pack: start;}
.flex-right {justify-content: flex-end; -webkit-justify-content: flex-end; -ms-flex-pack: end;}

.flex-top {align-items:flex-start; -webkit-align-items: flex-start; -ms-flex-align: start; }
.flex-mid {align-items:center; -webkit-box-align: center;  -webkit-align-items: center;  -ms-flex-align: center;}
.flex-bot {align-items:flex-end; -webkit-align-items: flex-end; -ms-flex-align: end;}

.flex-wrap {flex-wrap: wrap; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; -o-flex-wrap: wrap;}

.flex-column {flex-direction: column; -webkit-box-orient: vertical;  -webkit-flex-direction: column;  -ms-flex-direction: column;}
.flex-column-rev {flex-flow: column-reverse; -webkit-flex-direction: column-reverse;  -ms-flex-direction: column-reverse;}
.flex-row {flex-direction: row; -webkit-box-orient: horizontal; -moz-box-orient: horizontal; -webkit-flex-direction: row; -ms-flex-direction: row;}
.flex-row-rev {flex-flow: row-reverse;  -webkit-flex-direction: row-reverse; -ms-flex-direction: row-reverse;}

.nopoint {pointer-events: none;-o-pointer-events: none;-webkit-pointer-events: none;}


/*============ FORM ============*/
input {
  width: 100%;
  margin: 0.3em auto;
  border: 0.05px solid #dddddd;
  background: #dddddd; 
  color: #363d41; 
  border-radius: 1.3em; 
  padding: 0.7em 0;
  outline: none;
  text-indent: 1.2em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}


::-webkit-input-placeholder {font-family: 'HarmoniaSansProCyrLight'; color:#363d41;}
::-moz-placeholder          {font-family: 'HarmoniaSansProCyrLight'; color:#363d41;}/* Firefox 19+ */
:-moz-placeholder           {font-family: 'HarmoniaSansProCyrLight'; color:#363d41;}/* Firefox 18- */
:-ms-input-placeholder      {font-family: 'HarmoniaSansProCyrLight'; color:#363d41;}



