body {
    margin: 0;
    background-image: linear-gradient(90deg, #eee, #f2f2f2, #fafafa);
}

.profile-buttonWrap {
    margin: 40px auto 20px auto;
    width: 75px;   
}


.profile-container {
    margin: 50px auto 50px auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    background-color:#fff;
    padding:100px 40px 50px 40px;
    border-radius:5px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.input-field.is-focused label {
    color: #3ab54a;
}

.userSearch-container {
    margin: 50px auto 50px auto;
    height: 20%;
    width: 50%;
    display: flex;
    flex-direction: column;
    background-color:#fff;
    padding:100px 20px 50px 20px;
    border-radius:5px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.card__container {
    margin: 10px auto 10px auto;
    padding: 0 20px
}

.input-field>label {
    position: unset!important;
}

.error__block {
    border: red 1px solid;
    color: red;
    background-color: rgba(255, 214, 214, 0.5);
    padding: .5em;
    margin: .25em 0;
}

.error__block>ul {
    margin: 0;
}

.btn, button:focus {
    background-color: #7f06c4;
}

.btn:hover, .btn-large:hover, .btn-small:hover {
    background-color: #6B06AD;
}

.btn:focus, .btn-large:focus, .btn-small:focus, .btn-floating:focus {
    background-color: #330459;
}

[type="checkbox"].filled-in:checked+span:not(.lever):after {
    border: 2px solid #7f06c4;
    background-color: #7f06c4;
}

input:focus, input:focus+label {
    color: #3ab54a!important;
    border-bottom-color: #3ab54a!important;
    box-shadow: 0 1px 0 0 #3ab54a!important;
}

input:focus+label {
    border-bottom: 0!important;
    box-shadow: unset!important;
}

.SVG_Line {
    stroke: #3ab54a;
}

.Node__Container {
    border: 2px solid #7f06c4;
    background-color: #7f06c421;
    border-radius: 17px;
}

@media only screen and (max-width: 900px) {
    .NodeMatrix__Container {
        display: none;
    }
    div#rootExplorer::after {
        content: "Currently, the team viewer is only available to desktop users."
    }
}

.registration__input--forceBorder input {
    border: 1px solid lightgrey!important;
    padding-left: 0.5em!important;
}

.registration__input--forceSelectDisplay select {
    display: unset!important;
}

label.required::after {
    content: "*";
    margin-left: 0.3em;
    color: red;
}