html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 400;
    background: #f7f9fa;
    color: #181819;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

a:link, a:visited {
    color: #1565c0;
    cursor: pointer;
}

a:link:hover,
a:visited:hover {
    color: #0091ea;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.05);
}

a:link:active,
a:visited:active {
    color: #311b92;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.05);
}

p {
    margin: 0 0 14px;
}

address {
    font-style: normal;
}

.inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.no-select {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}
