/*----------------------------------- 
        Base (Globals)
------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.no-animate {
    -webkit-transition: none !important;
    transition: none !important;
}

html, body {
    position: relative;
    height: 100%;
}


body {
    color: #101820;
    font: 100 13px/18px "Fellix", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background:#ebeef0;
    background:#f7f7f7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 763px){
    body{
        font-size:16px;
        line-height: 1.7;
    }
}


/* headings
--------------------------------------------- */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em{
    font-weight:100;
}

h1 {
    margin: 0 0 0em;
    line-height: 1.3em;
    font-size: 26px;
    font-weight: 300;
}

h2 {
    margin: 0 0 1em;
    line-height: 1.3em;
    font-size: 1.8em;
    font-weight: 300;
}

h3 {
    margin: 0 0 0.175em;
    font-size: 1.3em;
    font-weight: 300;
}

h4 {
    font-weight: 300;
    font-size:1.125em;
    margin-bottom:1em;
    margin-bottom:0.175em;
    margin-top:0.175em;
    line-height: 1.25;
}

h5, h6{
    margin-bottom:1em;
    font-weight:300;
}

@media (min-width: 1105px) {
    h1{
        font-size:26px;
        margin-bottom:0.75em;
        margin-bottom:0;
        line-height:1.1;
    }

    h2{
        font-size:2.25em;
        margin-bottom:0.5em;
    }

    h3{
        font-size:1.7em;
    }

    h4{
        font-size:1.125em;
    }
}


/* paragraphs
--------------------------------------------- */
p, ul, ol {
    margin-bottom:2em;
    line-height:1.65;
    font-size: 1em;
}

@media screen and (min-width: 763px){
    p, ol, ul
    {
        font-size:1em;
        line-height:1.71;
    }
}

/*p:last-child, ul:last-child, ol:last-child {
    margin-bottom: 0;
}*/

ol{
    list-style:lower-roman;
}

ul{
    list-style:disc;
}

ol, ul{
    padding:0 12%;
}

li{
    margin-bottom:2em;
}

ul ul, ol ol, ul ol, ol ul
{
    margin-bottom: 0;
}

li p {
    font-size: 1em;
}

strong, .strong {
    font-weight: 600;
}

em{
    font-style:italic;
    font-family:georgia, serif;
}

.small-txt{
    font-size:0.9em;
}

.underline{
    text-decoration:underline;
}

/* links
--------------------------------------------- */
a {
    color: #0078bd;
    text-decoration: none;
    -webkit-transition: all 0.24s cubic-bezier(0.645,  0.045,  0.355,  1);
    -moz-transition: all 0.24s cubic-bezier(0.645,  0.045,  0.355,  1);
    -o-transition: all 0.24s cubic-bezier(0.645,  0.045,  0.355,  1);
    transition: all 0.24s cubic-bezier(0.645,  0.045,  0.355,  1);
}

a:hover{
    color:#0078bd;
    text-decoration:underline;
}

a:focus{
}

a img {
    border: none;
}



/* alignment
--------------------------------------------- */
.tleft {
    text-align: left;
}

.tcenter {
    text-align: center !important;
}

.tright {
    text-align: right;
}

.alignright{
    float:right;
}

.alignleft{
    float:left;
}

.hide{
    display:none;
}


/* pre & dd
--------------------------------------------- */

ins{
    background:#ffc;
    text-decoration:none;
}

pre {
    background: #f7f7f7 none repeat scroll 0 0;
    line-height: 18px;
    margin-bottom: 18px;
    overflow: auto;
    padding: 1.5em;
}

pre {
    font-family: "Courier 10 Pitch",Courier,monospace;
}

dd, pre
{
    margin-bottom: 2em;
}

pre, kbd, tt, var
{
    font-size: 15px;
    line-height: 21px;
}

code {
    font-size: 13px;
}

dt, th
{
    color: #101820;
}



/* table
--------------------------------------------- */
table {
    border: 1px solid #e7e7e7;
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
}

tr th, thead th
{
    color: #101820;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    padding: 9px 24px;
}

tr td
{
    border-top: 1px solid #e7e7e7;
    padding: 6px 24px;
    font-size: 12px;
}

tr.odd td
{
    background: #f2f7fc none repeat scroll 0 0;
}



/* blockquote
--------------------------------------------- */
blockquote {
    font-style: italic;
    padding: 0 2em;
    margin:4em 0;
}


blockquote p{
    font-family: "Fellix",  "Helvetica Neue",  sans-serif;
    font-weight:100;
}

cite{
    font-style:italic;
}

blockquote footer{
    font-size:0.9em;
    font-style:normal;
    margin-top:-1em;

}

@media only screen and (min-width: 763px) {
    blockquote{
        width:110%;
        margin-left:-5%;
        text-align:center;
        padding:0;
    }

    blockquote p{
        font-size:2em;
        line-height:1.5;
    }

    blockquote footer{
        margin-top:-2em;
    }
}


/* messages
--------------------------------------------- */
.update{
    color:#101820;
    border:1px solid;
    border-radius:4px;
    text-align:center;
    line-height:1;
    font-weight:500;
    padding:20px;
    margin-bottom:15px;
    font-size:14px;
    line-height:1.54;
}

.alert{
    background-color:#ffee9c;
    border-color:#ffe259;
}

.error{
    color:#fff;
    background-color:#CC3333;
    border-color:#b82e2e;
}

.success{
    color:#fff;
    background-color:#91BC3D;
    border-color:#91BC3D;
}

span.error{
    display:none;
    position:absolute;
    top:72px;
    left:0;
    font-size:14px;
    font-weight:500;
    color:#b64b4b;
}


/* form elements
--------------------------------------------- */
form{
    width:100%;
    margin:0 auto;
}


input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="tel"], textarea, select{
    height: 40px;
    width: 100%;
    font-size: 14px;
    line-height:2rem;
    font-weight:400;
    box-sizing: border-box;
    padding: 10px 20px 0px 20px;
    padding: 5px 10px;
    border: none;
    border: 1px solid rgb(217, 217, 214);
    border-radius:8px;
    outline: none;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow:none !important;
}

textarea{
    line-height: 1.25rem;
}

input:read-only{
    background-color: rgba(0,0,0,0.1);
    background-color: rgb(232, 232, 230);
}

input[type=file]{
    height:auto;
}

/* border radius for checkbox */
input[type="checkbox"] {
    -webkit-border-radius:2px;
    border-radius:2px;
}

/* focus state */
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline:none;
    box-shadow: none;
}

select{
    cursor:pointer;
}

label {
    display:block;
    position: relative;
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 20px 0 0px;
    pointer-events: none;
    font-size: 12px;
    font-size:14px;
    font-weight: 500;
    line-height: 2rem;
    opacity: 1;
    -webkit-transform: translate3d(0,  0,  0);
    transform: translate3d(0,  0,  0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.label-sml label{
    font-size:14px;
    line-height:1.5;
    margin-bottom:7px;
}


.form-group{
    width: 100%;
    height: 70px;
    margin: 0 0 20px 0;
    background: #2A2A2A;
    background: #fff;
    box-sizing: border-box;
    border: 2px solid rgba(42, 42, 42, 0);
    border-bottom:1px solid #e7e7e7;
    border-radius: 2px;
    position: relative;
}

.form-group:after {
    content: "";
    display: table;
    clear: both;
}

.form-group.textarea-group{
    height:210px;
}

.form-group.textarea-group textarea{
    padding-top:30px;
}

.textarea-default{
    height: 100px;
}

.help-block{
    display:block;
    color:#9099a7;
    color:rgba(0,0,0,0.3);
    font-size:12px;
    line-height:20px;
    margin:-5px 0 10px;
}

.help-block a{
    color:#9099a7;
    color:rgba(0,0,0,0.3);
}

.help-block a:hover{
    text-decoration:underline !important;
    color:rgba(0,0,0,0.4);
}

.select-group{
    position:relative;
}

.select-group i,
.select-group span{
    position:absolute;
    right:5px;
    bottom:0px;
    font-size:24px;
    color:#101820;
}

.select-group span{
    bottom: 7px;
}

.input-as-btn{ position:relative; overflow: hidden; padding-right: 1px; }
.input-as-btn input{ position:absolute; left:-100px; }
.input-as-btn label{ position:relative; display:block; border-radius:3px; border:1px solid #ccc; padding:6px 8px 8px 38px; cursor:pointer; pointer-events:initial; font-weight:400; }
.input-as-btn label:hover{ border-color:#888; }
.input-as-btn input:checked + label{ border-color: #4881d5; background-color:#4881d5; color:#fff; }
.input-as-btn label:before{ content:'\e835'; font-family:'Material Icons'; position:absolute; left:10px; top:7px; font-size:20px; }
.label-sml .input-as-btn label:before{ top: 2px; }
.input-as-btn input:checked + label:before{ content:'\e834'; }


.radio-group input{
    margin-right: 10px;
}


.radio-inline{
    display: inline-block;
    width: auto;
    padding-left: 0;
}

/*----------------------------------- 
        Bullet List
------------------------------------*/
.bullet-item{
    position:relative;
    margin-bottom:2em;
}

.numeric-list .bullet-item{
    margin-bottom:1.5em;
}

.numeric-list .bullet-item:first-of-type, .bullet-list .bullet-item:first-of-type{
    margin-top:1.5em;
}

.bullet-icon{
    position:absolute;
    left:0;
    top:0;
    color:#52a1d8;
    font-size:1.25em;
}

.bullet-desc{
    margin-left:30px;
}

.icon-numeric{
    background:#52a1d8;
    color:#fff;
    text-align:center;
    width:25px;
    height:25px;
    line-height:25px;
    border-radius:500px;
    margin-top:3px;
    font-size:12px;
    font-weight:600;
}

ul.check{
    list-style:none;
}

ul.check li:before{
    font-family:'fontello';
    content:'\e805';
    color:#ffa300;
    margin:0 5px 0 -22px;

}

ul.small-list{
    font-size:0.8em;
    list-style:none;
    padding-left:0;
}

ul.small-list li{
    margin-bottom:0.5em;
    padding-bottom:0.5em;
    border-bottom:1px solid rgba(0,0,0,0.1);
}

ul.check.small-list{
    padding-left:40px !important;
}


