@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7lujVj9w.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: local('Lato Regular'), local('Lato-Regular'), url(fonts/S6uyw4BMUTPHjx4wXiWtFCc.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

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

.hidden{
    position: absolute;
    left: -9999px; top: -9999px;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}

.left{
    float: left;
}
.right{
    float: right;
    margin-left: 15px;
}

html,
body{
    background-color: #000000;
    color: #73879C;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    height: auto;
    letter-spacing: 1.3px;
    text-rendering: optimizeLegibility !important;
    width: 100%;
    overflow-x: hidden;
    padding: 0; margin: 0;
}

.line-title {
    text-align: center;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    left: 0;
    right: 0;
    clear: both;
}
.line-title:after{
    content: "";
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
}

h2{
    background-color: #fff;
    position: relative;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
    z-index: 10;
}
h2.h2-style{
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #000000;
    text-transform: uppercase;
}

button{
    color: #000000;
    background-color: #fff;
    padding: 11px 20px 13px;
    margin: 15px 0;
    font-family: 'Source Sans Pro',sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    border: 1px solid #000000;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    cursor: pointer;
    outline: none;
}
button:hover{
    background-color: #000000;
    color: #fff;
    border: 1px solid #000000;
}
button.black{
    background-color: #000000;
    color: #fff;
    border: 1px solid #000000;
} 
button.black:hover{
    background-color: #000000;
    border: 1px solid #000000;
}

section#page-wrapper{
    margin: 0; padding: 0;
    width: 100%; max-width: 768px;
    min-height: 100vh;
    margin: 0 auto;
    background-color: #fff;
    overflow: auto;
    padding: 0 30px;
}
section#page-wrapper header{
    background-color: #fff;
    text-align: center;
}
section#page-wrapper header a.logo{
    display:block;
    text-decoration: none;
    margin: 0 auto;
    height: 130px;
    width: 189px;
    padding: 10px 0;
}

section#page-wrapper article{
    padding: 25px 0;
    overflow: auto;
}
section#page-wrapper article#text-input{
    overflow: auto;
}
section#page-wrapper article#text-input div.text{
    float: left; overflow: auto;
    width: 100%; height: auto;
}
section#page-wrapper article#text-input div.text #mock-text-area{
    width: 100%;
    height: 215px;
    font-size: 18px;
    color: #666;
    outline: 0;
    text-shadow: 0 1px #fff;
    font-family: Arial,Helvetica,sans-serif;
    min-height: 105px;
    border-radius: .25em;
    background-color: transparent;
    border: 1px solid #ddd;
    line-height: 1.5em;
    overflow-y: auto;
    overflow-x: hidden; 
}
section#page-wrapper article#text-input div.text #mock-text-area > div {
    min-height: 100%;
    padding: .5em 1em;
    outline: none;
}
section#page-wrapper article#text-input div.text #mock-text-area > div:focus{
    background-color: #F5F7FA;
    color: #000000;
    outline: none;
}

section#page-wrapper article#text-input div.buttons,
section#page-wrapper article#history div.buttons{
    margin-top: 25px;
}

section#page-wrapper article#text-input fieldset{
    position: relative;
    float: left;
    width: 19.76%;
    border: none;
    outline: none;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}
section#page-wrapper article#text-input fieldset label{
    width: 100%;
    display: inline-block;
    color: #949494;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    padding-left: 1em;
}
section#page-wrapper article#text-input fieldset input{
    float: left;
    border-color: #ddd!important;
    margin: 10px 0!important; height: 30px;
    width: 100%!important;
    -webkit-box-sizing: border-box!important;
    -moz-box-sizing: border-box!important;
    box-sizing: border-box!important;
    float: left!important;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid #ddd;
    line-height: 1.5em!important;
    width: 100%!important;
    font-size: 15px!important;
    color: #666;
    outline: 0!important;
    text-shadow: 0 1px #fff!important;
    white-space: pre-wrap!important;
    font-family: Arial,Helvetica,sans-serif!important;
    padding: .5em 1em!important;
    border-left: none;
}
section#page-wrapper article#text-input fieldset input:focus{
    background-color: #F5F7FA;
    color: #354290;
    outline: none;
}
section#page-wrapper article#text-input fieldset select{
    -webkit-appearance: none; 
    background-color: #fff;
    border:1px solid #ddd;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
    text-align: left;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0 1px #fff;
    color: #666;
    border-left: none;
    padding: 0 1em;
    margin: 10px 0;
}
section#page-wrapper article#text-input div fieldset:first-child > input{
    border-radius: .25em 0 0 .25em !important;
    border-left: 1px solid #bbb;
}
section#page-wrapper article#text-input div fieldset:last-child > select{
    border-radius: 0 .25em .25em 0 !important;
}
section#page-wrapper article#text-input fieldset select:focus{
    background-color: #F5F7FA;
    color: #354290;
    outline: none;
}
section#page-wrapper article#text-input fieldset .color-preview{
    position: absolute;
    right: 5px; bottom: 24px;
    border: 1px solid #ddd;
    width: 20px; height: 20px;
    pointer-events: none;
}

section#page-wrapper article#text-input .alignment-wrapper{
    width: 100%; height: 30px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 0 .25em .25em 0;
    border-left: none;
    margin: 10px 0;
}
section#page-wrapper article#text-input .alignment-wrapper > span{
    display: inline-block;
    width: 33.33333%; height: 30px;
    text-align: center;
    border-left: 1px solid #ddd;
    font-size: 15px;
    color: #666;
    cursor: pointer;
}
section#page-wrapper article#text-input .alignment-wrapper > span:hover{
    color: #354290;
}
section#page-wrapper article#text-input .alignment-wrapper > span:active,
section#page-wrapper article#text-input .alignment-wrapper > span.active{
    color: #354290;
    background-color: #F5F7FA;
}
section#page-wrapper article#text-input .alignment-wrapper > span:first-child{
    border-left: none;
}
section#page-wrapper article#text-input .alignment-wrapper > span > i{
    font-size: 18px;
    height: 30px;
    line-height: 28px;
}

section#page-wrapper article#history ul,
section#page-wrapper article#playlists ul{
    width: 100%; height: auto;
    margin:0; padding: 0;
    margin-bottom: 25px;
}
section#page-wrapper article#history ul li,
section#page-wrapper article#playlists ul li{
    position: relative;
    min-height: 38px;
    margin:0; padding: 0;
    background-color:#F5F7FA;
    margin-bottom: 10px;
    color: #949494;
    font-family: "montserrat",Tahoma,sans-serif;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.6;
    font-weight: 300;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: .25em!important;
    padding-right: 30px;
    cursor: pointer;
    transition: all .25s;
    -webkit-transition: background-color .25s, color .35s;
    -moz-transition: background-color .25s, color .35s;
    -o-transition: background-color .25s, color .35s;
}
section#page-wrapper article#history ul li span.delete,
section#page-wrapper article#playlists ul li span.start,
section#page-wrapper article#playlists ul li span.stop{
    position: absolute;
    right: 7.5px; top: 7.5px;
    width: 25px; height: 25px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .25s;
    -moz-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s;
    color: inherit;
}
section#page-wrapper article#playlists ul li span.stop{
    right: 37.5px;
}
section#page-wrapper article#history ul li:hover{
    color: #000;
}
section#page-wrapper article#history ul li:hover span.delete,
section#page-wrapper article#playlists ul li:hover span.start,
section#page-wrapper article#playlists ul li:hover span.stop{
    opacity: 1;
    pointer-events: all;
}
section#page-wrapper article#history ul li.selected,
section#page-wrapper article#playlists ul li.selected{
    background-color: #354290;
    color: #fff;
}
section#page-wrapper article#history ul li.selected:hover,
section#page-wrapper article#playlists ul li.selected:hover{
    background-color: #387EAA;
}