/* Overrides for CSS will run AFTER the main CSS file so you can run over any styling you don't like  */

h1 {font-family: header;}
body { font-family: header;}
p {margin-bottom:4px;}

.balance-text {text-wrap: balance;}

.site-header__logo img { top: 90px; }
.site-header { height: 270px; }

.navigation__span {font-style: italic; font-size: 12px; font-weight: 100; }
.navigation__filter { font-size: 18px; line-height: 30px; }
.navigation__filter.\--active:before { height: 5px; border-radius: 5px; }


.navigation__content {top: 30px;}
.site__about {padding-top: 110px;}


.underline-from-right:before { height: 5px; border-radius: 5px; }

.underline-from-right2 {
  position: relative;
  overflow: hidden; }
  .underline-from-right2:before {
    content: "";
    position: absolute;
    z-index: -1;
	left: 100%;
    right: 0;
    bottom: 0;
    background: #b2b2b2;
    height: 10px;
    transition: left .3s ease-in-out;
    border-radius: 10px; }
  .underline-from-right2:hover:before {
    left: 0; }

.header {font-family: header; font-size: 14px; line-height: 14px; letter-spacing: 2px; text-transform: uppercase;}
.desc { font-family: desc; font-size: 11px; line-height: 12px}

.bio-overlay__logo {padding-bottom: 100px; }
.bio-overlay__content p {padding-top: 30px; line-height: 1.5; text-align: justify; }
.bio-overlay__content {width: 400px;}

*:focus {outline: none;}
.textURL { font-family: desc; text-decoration: underline; display: inline-block; color: #000; font-size: 11px; line-height: 12px; }

.selectDisable {-webkit-user-select: none;  -khtml-user-select: none;   -moz-user-select: none; -o-user-select: none;    user-select: none; }
.selectEnable { -webkit-user-select: text;  -khtml-user-select: text;   -moz-user-select: text; -o-user-select: text;    user-select: text; }

/*IE9*/
*::selection {background-color:#e9e9e9;} 
*::-moz-selection {background-color:#e9e9e9;}
*{  -webkit-user-select: #e9e9e9;
    -moz-user-select: -moz-#e9e9e9;
    /*IE10*/
    -ms-user-select: #e9e9e9;
    user-select: #e9e9e9;

    /*Android*/
    -webkit-tap-highlight-color: rgba(233, 233, 233, 100);
}    

input[type="text"], textarea, [contenteditable]
{

    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}