html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f3f5f6;
    color: #232323;
}

label{
    font-size: 14px;
    margin-left: 15px;
}
input{
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    border: 0;
    border-bottom: solid 1px #3594f2;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 4px;
}

input:focus{
    outline: none;
}
.LoginPanel h1,
.LoginPanel p{
    text-align: center;
}

#login{
    width: 40%;
    margin-left: 30%;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    overflow: hidden;
    background-color: #fff;
}

#login input{
    margin-top: 20px;
}

a::before{
    position: absolute;
    content: '';
    display: block;
    width: 0;
    transition: all 0.5s;
    border-bottom: solid 1px #3594f2;
    bottom: 0;
}

a{
    position: relative;
    text-decoration: none;
    overflow: visible;
    display: inline-block;
    padding-bottom: 2px;
    cursor: pointer;
    color: #3594f2;
}

a:hover:before{
    width: 100%;
}

a.bt{
    width: 80%;
    margin-left: 10%;
    border: solid 1px #3594f2;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 0;
    padding: 10px 0 10px 0;
    font-size: 16px;
    color: rgba(0,0,0,0.65);
    transition: all 0.3s;
    margin-top: 20px;
}

a.bt:hover{
    color: rgba(0,0,0,0.95);
}

strong{
    color: #3594f2;
    font-weight: normal;
    text-transform: uppercase;
}

select{
    width: 100%;
    border: 0;
    border-bottom: 1px #3594f2 solid;
    padding: 0 15px 0 15px;
    font-family: "Montserrat";
}

select:focus{
    outline: 0;
}

.blue{
    color: #3594f2;
}

#Menu{
    width: 100%;
    height: 50px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    position: fixed;
    background-color: #fff;
}

#NavPath{
    display: inline-block;
    line-height: 50px;
    height: 50px;
    font-size: 22px;
    margin-left: 20px;

}

#Menu svg{
    width: 32px;
    float: right;
    cursor: pointer;
    margin-top: 8.74px;
    margin-right: 20px;
}

#FoldersPanel{
    height: 100vh;
    width: calc(100vw - 80px);
}

.Folder{
    min-width: 150px;
    display: inline-block;
    margin-top: 80px;
    margin-left: 20px;
    box-shadow: 0 0 7px rgba(0,0,0,0.15);
    border-radius: 7px;
    cursor: pointer;
    background-color: #fff;
}

.Folder span{
    margin-top: 15px;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.Folder i{
    text-align: center;
    width: 100%;
    font-size: 52px;
    margin-top: 10px;
    color: #3594f2;
    display: inline-block;
}

#EditorPanel{
    width: 50px;
    box-shadow: -10px 0 5px -2px rgba(0,0,0,0.05);
    position: fixed;
    right: 0;
    top: 51px;
    z-index: 100;
    height: calc(100vh - 51px);
    transition: all 0.5s;
    font-size: 0;
    background-color: #ffffff;
    padding-top: 50px;
}

#EditorPanel input{
    margin-top: 10px;
    margin-bottom: 20px;
}

#EditorPanel label{
    margin-top: 20px;
    display: inline-block;
}

#EditorPanelBt{
    position: absolute;
    width: 50px;
    display: inline-block;
    text-align: center;
    font-size: 26px;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    top: 15px;
}

#EditorPanelTitle{
    top: 15px;
    position: absolute;
    opacity: 0;
    display: inline-block;
    width: calc(100% - 80px);
    overflow: hidden;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    transition: all 0.5s;
    margin-left: 50px;
    text-align: right;
}

.listEl{
    width: calc(100% - 30px);
    margin-left: 15px;
    font-size: 16px;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    height: 30px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 4px;
    transition: 0.65s all;
}

.listEl .new{
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    margin: 0;
}

.listEl span{
    display: inline-block;
    line-height: 30px;
}

.listEl span:first-of-type{
    width: calc(85% - 20px);
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.listEl span:last-of-type{
    width: calc(15% - 1px);
    cursor: pointer;
    border-left: 1px solid #e74c3c;
    color: #e74c3c;
    text-align: center;
    line-height: 30px;
    height: 30px;
    float: right;
    transition: all 0.1s;
}

.listEl span:last-of-type:hover{
    background-color: #e74c3c;
    color: #fff;
}