@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,700,700i|Roboto:300,300i,400,400i,500,700,900');
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto';
    line-height: 22px;
    color: #8080a3;
    font-size: 13px;
    font-weight: 400;
    background: #f2f4f7;
}
.floatleft {
    float: left;
}
.floatright {
    float: right;
}
img {
    max-width: 100%;
    height: auto
}
.fix {
    overflow: hidden
}
p {
    margin: 0px;
    font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    margin-top: 0px;
    color: #646777;
}
input:focus,
select:focus {
    outline: none;
}
input,
button {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
button {
    cursor: pointer;
}
a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    text-decoration: none;
    color: #8080a3;
}
a:hover {
    color: #646777;
}
a:active,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}
button:focus {
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
}
:before,
:after {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
div {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.sidebar-wrap{
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    background: #fff;
    padding: 110px 0px 50px;
    box-shadow: 0 1px 30px 1px rgba(0, 0, 0, 0.11);
    min-height: 100vh;
    min-height: 100%;
}
.sidebar-wrap ul li{
    height: 35px;
    line-height: 35px;
    padding: 0px 30px;
    position: relative;
}
.sidebar-wrap ul li::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #8080a3; 
    content: "";
    opacity: 0;
}
.sidebar-wrap ul li:hover::before,
.sidebar-wrap ul li.active::before{
    opacity: 1;
}
.sidebar-wrap ul li a{
    display: inline-block;
    font-size: 14px;
}
.sidebar-wrap ul li a:hover,
.sidebar-wrap ul li.active a{
    color: #70bbfd;
}
.header-area{
    background: #fff;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 99;
    display: flex;
    align-items: center;
}
.logo{
    width: 60px;
}
.logo img{
    max-width: 40px;
}
.header-area h2{
    font-weight: 500;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 0;
    margin-left: 30px;
}
.main-container{
    padding:30px 15px 30px 265px;
}
.card-wrap{
    padding: 30px;
    background: #fff;
    border-radius: 5px;
}
.card-wrap h3{
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.introduction-wrap p{
    font-size: 13px;
    margin-bottom: 30px;
}
.introduction-wrap ul{
    padding-left: 15px;
}
.introduction-wrap ul li{
    font-size: 13px;
}
.installation-wrap p{
    font-size: 13px;
    margin-bottom: 10px;
}
.installation-wrap span{
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}
.installation-wrap ol{
    padding-left: 30px;
}
.installation-wrap ol li a{
    color:#70bbfd
}
.structure-wrap pre.documentation__structure{
    background-color: #f5f5f5 !important;
    font-size: 14px;
    padding: 10px 15px;
    display: block;
    overflow: auto;
    margin-top: 0;
}
.structure-wrap pre.documentation__structure code{
    font-size: inherit;
    color: inherit;
    word-break: normal;
}
.structure-wrap p{
    color: #646777;
}
.components-wrap p{
    margin-bottom: 10px;
}
.components-wrap p a{
    color: #70bbfd;
}
.resources-wrap ul{
    margin-bottom: 30px;
    padding-left: 15px;
}
.resources-wrap ul li p{
    color: #646777;
}
.resources-wrap ul li p a {
    color: #70bbfd;
    word-break: break-word;
}

.logo{
    display: flex;
    align-items: center;
}
.logo h2{
    margin-top: 10px;
    margin-left: 5px;
    font-size: 25px;
}

.components-wrap span{
    font-weight: 700;
}