* {
    margin: 0;
    padding: 0;
}
/*StartPage*/
.startPage {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.startPageHeader {
    height: 50px;
    background-color: #529AAF;
    width: 100%;
    align-self: center;
}



.startPageHeader img {
    position: relative;
    float: left;
}

.startPageHeader button {
    width: 160px;
    height: 40px;
    float: right;
    color: white;
    background-color: #519aad;
    border: 2px solid white;
    border-radius: 14px;
    text-align: center;
    font-size: 17px;
    outline: none;
    position: relative;
    padding: 5px;
    margin-right: 20px;

}

.startPageMain {

}

.login {
    width: 400px;
    height: 500px;
    border-radius: 30px;
    background-color: #529AAF;
    padding: 10px;
    position: fixed;
    top: 100px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.loginCode {
    width: 400px;
    height: 500px;
    border-radius: 30px;
    background-color: #529AAF;
    padding: 10px;
    position: fixed;
    top: 100px;
    display: none;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.loginLogo {
    width: 100%;
    height: 20%;
}

.loginLogo img{
    margin: 30px;
}

.loginForm {
    width: 100%;
    height: 80%;
    margin: auto;
    background: #eae8e8;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: inset 4px 2px 8px lightgrey;

}

.loginForm form {
    margin: 50px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

}

.loginForm p {
    font-size: 16px;
    line-height: 1.2;
    color: #00134d;
    padding: 20px;
}

.loginForm label {
    font-size: 17px;
    color: #00134d;
    text-align: left;
    padding: 10px 0;
}

.loginForm input {
    line-height: 2.2;
    border-radius: 8px;
    box-shadow: 2px 2px 2px lightgrey;
    border: 2px solid white;
    font-size: 20px;
}

.loginForm input[type = submit] {
        /*width: 80%;*/
    background-color: #529AAF;
    color: white;
    padding: 10px 20px;
    margin: 20px auto;
    align-content: center;
}
/*StartPage*/
/*Main*/
.main {
    position: relative;
    display: grid;
    grid-template-columns: 250px 1fr 287px;
    grid-template-areas:
        "leftBar article rightBar";
    grid-column-gap: 20px;
    height: 100vh;
}
/*Main*/
/*LeftBar*/
.leftBar {
    grid-area: leftBar;
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column nowrap;
    border-radius: 0 30px 30px 0;
    background-color: #529AAF;
}

.logo {
    height: 100px;
}

.logo img {
    margin: 30px;
}

.menu {
    /*height: 250px;*/
    margin-bottom: 30px;
    border-top: 1px solid white;
    color: white;
}

.menu h4 {
    margin: 20px 30px;
}

.menu ul {
    padding: 10px 0 0;
}

.menu ul li {
    list-style-type: none;
    padding: 10px 30px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    transition: .3s linear;
}

.menu ul svg {
    fill: white;
}

.menu ul li:hover {
    background-color: white;
    color: #529AAF;
}

.menu ul li:hover svg{
    /*background-color: white;*/
    fill: #529AAF;
}

.active {
    background-color: white;
    color: #529AAF;
    fill: #529AAF;
}

.active svg path{
    /*background-color: white;*/
    fill: #529AAF;
}

.menu ul li p {
    padding: 0 10px;
}

/*LeftBar*/
/*Article*/
.article {
    grid-area: article;
    position: relative;
}

.path {
    margin: 20px auto 20px 0;
    font-size: 1.3em;
    color: #529AAF;
}

.section {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}
    /*AddWord*/
.head {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.aside {
    width: 250px;
    height: 100px;
    margin: 30px 0 0 0;
    border-radius: 30px;
    background-color: #529AAF;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.addWord {
    height: 125px;
    margin: 30px 0;
    border-radius: 30px;
    background-color: #529AAF;
}

.addWord p {
    margin: 20px;
    color: white;
}

.addWord form {
    margin: 20px;
    display: flex;
    flex-flow: row nowrap;
    /*todo*/
    justify-content: center;
    align-items: center;
}

.addWord form select {
    width: 100px;
    height: 25px;
    margin-right: 20px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;
}

.addWord form input[type="text"] {
    width: 200px;
    height: 25px;
    margin-right: 20px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;
}

.addWord form button {
    width: 100px;
    height: 25px;
    margin-left: auto;
    border: 1px solid white;
    border-radius: 15px;
    color: #529AAF;
    float: right;
    background-color: white;

}
    /*AddWord*/
    /*Properties*/
    /*Properties*/
    /*CollectionJobs*/
.collectionJobs {
    width: 100%;
    /*height: 500px;*/
    margin: 30px 0 0;
    border-radius: 30px;
    background-color: #529AAF;
}

.collectionJobs > p {
    margin: 20px;
    color: white;
}

.selectJobs {
    margin: 25px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

.selectJobs select {
    width: 100px;
    height: 25px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;
}

.selectJobs input[type="text"] {
    width: 200px;
    height: 25px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;
}

table {
    width: 100%;
    margin: 20px auto 0;
    border-collapse: collapse;
    text-align: center;
    color: white;
}
table th {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 15px 0;
}

table td {
    padding: 5px 0;
}


.nextPage {
    margin: 20px;
    float: right;
    color: white;
}
    /*CollectionJobs*/
    /*CollectionTranslation*/
.collectionTranslation {
    width: 100%;
    /*height: 500px;*/
    margin: 30px 0 0;
    border-radius: 30px;
    background-color: #529AAF;
}

.collectionTranslation > p {
    margin: 20px;
    color: white;
}

.selectLanguage {
    margin: 25px;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    color: white;
}

.selectLanguage select {
    width: 100px;
    height: 25px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;

}

.selectLanguage p {
    margin: 0 10px;
}

.collectionTranslation table {
    padding-bottom: 20px;
    table-layout: fixed;
}

.collectionTranslation th, .collectionTranslation td {
    padding: 5px;
    border-left: 1px solid white;
    width: 100%;
    border-collapse: collapse;

}

.collectionTranslation th:nth-child(1) {
    width: 5%;
}

.collectionTranslation th:nth-child(2) {
    width: 25%;
}

.collectionTranslation td:nth-child(2) {
    overflow-x: scroll;
}

.collectionTranslation th:nth-child(3) {
    width: 35%;
}

.collectionTranslation th:nth-child(4) {
    width: 35%;
}

.collectionTranslation textarea {
    width: 100%;
    display: inline-block;
    border: none;
    background-color: #529AAF;
    color: white;
}

.collectionTranslation textarea:focus {
    border: none;
    background-color: #529AAF;
    color: white;
}
    /*CollectionTranslation*/
    /*Chart*/
.chart {
    /*width: 800px;*/
    height: 400px;
    margin: 30px 0 0;
    border-radius: 30px;
    background-color: #529AAF;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    /*align-items: center;*/
}

.chartLegend {
    padding: 20px 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chartLegend select {
    width: 120px;
    height: 25px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;
}

.chartInfo {
    margin: 25px auto;
}
    /*Chart*/
    /*FeedbackList*/
.feedbackList {
    width: 100%;
    /*height: 500px;*/
    margin: 30px 0 0;
    border-radius: 30px;
    background-color: #529AAF;
}

.newFeedback {
    padding: 20px 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.newFeedback select {
    width: 120px;
    height: 25px;
    margin: 10px 15px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;
}

.feedback {
    width: 100%;
    padding: 20px;
    border-top: 1px solid white;
    color: white;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.user {
    padding-left: 20px;
}

.name p {
    margin-bottom: 5px;
}

.name span {
    margin: 5px 5px 0 0 ;
    padding: 3px;
    border-radius: 5px;
    background-color: white;
    color: #529AAF;
}

.text {
    margin-top: 40px;
}
    /*FeedbackList*/
/*Article*/
/*RightBar*/
.rightBar {
    grid-area: rightBar;
    width: 287px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    color: white;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.chooseCountry {
    height: 100px;
    border-bottom-left-radius: 30px;
    background-color: #529AAF;
    display: none;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.chooseCountry p {
    margin: 20px auto 10px;
}

.chooseCountry select {
    width: 100px;
    height: 25px;
    margin: 10px auto 20px;
    border: 1px solid white;
    border-radius: 5px;
    color: #529AAF;
}

    /*.hero img {*/
    /*    position: fixed;*/
    /*    bottom: 0;*/
    /*    right: 0;*/
    /*}*/
/*RightBar*/
