* {
  box-sizing: border-box;
  font-family: Arial, "Kumbh Sans", sans-serif;
}

html, body, #root {
  height: 100%;
}

body {
  font-size: 16px;
  color: #33575F;
  margin: 0;
  max-width: 100%;
}

main {
  position: absolute;
  width: 100%;
  top: 55px;
  bottom: 0;
}

.Content {
  display: inline-block;
  position: absolute;
  left: 65px;
  right: 0;
  top: 15px;
  bottom: 0;
  padding: 50px;
  padding-top: 30px;
  border-left: 1px solid #707070;
  height: calc(100vh - 55px - 30px);
  overflow-y: scroll;
}

section {
  box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: #33575F;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

input,
select,
textarea {
  background: #fff;
  border: none;
  border-radius: 15px;
  padding: 3px 12px;
}

textarea {
  border: 1px solid #ccc;
  width: -webkit-fill-available;
  margin-right: 10px;
  font-size: 16px;
  resize: none;
  overflow: hidden;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(/icons/select.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 6px) center;
  margin-right: 5px;
  padding-right: 2rem;
  background-size: 12px;
  color: #33575F;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #9E9E9E;
}

::-webkit-scrollbar-thumb:hover {
  background: #676767;
}

.ny-file-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 10px;
  padding: 10px;
}
.ny-file-icon-wrapper .removeIcon {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 16px;
}
.ny-file-icon-wrapper .fileIcon {
  height: 55px;
}
.ny-file-icon-wrapper .ny-file-title {
  font-size: 10px;
  margin-top: 5px;
}

.ny_header {
  background: #467d80;
  /* Old browsers */
  background: -moz-linear-gradient(top, #467d80 0%, #375e65 74%, #33575f 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #467d80 0%, #375e65 74%, #33575f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #467d80 0%, #375e65 74%, #33575f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  display: flex;
  height: 55px;
  position: relative;
  justify-content: center;
  align-items: center;
}
.ny_header img {
  height: 40px;
  width: 40px;
  margin: 5px;
}
.ny_header .ny_header__right {
  padding: 10px;
  position: absolute;
  right: 10px;
}
.ny_header .ny_header__right a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-left: 7px;
}
.ny_header .ny_header__right img {
  height: 22px;
  width: 22px;
  margin: 0;
}
.ny_header .ny_header__right span {
  font-size: 10px;
  color: #fff;
}
.ny_header #ny-header-help-modal {
  height: 100vh;
}
.ny_header #ny-header-help-modal .ny-modal-content {
  font-weight: bold;
  font-size: 14px;
}
.ny_header #ny-header-help-modal .ny-modal-content p {
  margin: 0;
  display: inline;
}
.ny_header #ny-header-help-modal .ny-modal-content a {
  text-decoration: underline;
  color: revert;
  font-weight: normal;
}

@media (min-width: 768px) {
  .ny_header #ny-header-help-modal .ny-modal-content {
    top: 30%;
    width: auto;
  }
  .ny_header #ny-header-help-modal .ny-modal-content table tr td:first-child {
    padding-right: 40px;
  }
}
.ny_sideNav__wrapper {
  display: inline-block;
  width: 65px;
  padding-top: 10px;
  display: inline-flex;
  justify-content: center;
}

.ny_sideNav {
  display: inline-flex;
  flex-direction: column;
}
.ny_sideNav .ny_sideNaveItem {
  margin-bottom: 10px;
  text-align: center;
}
.ny_sideNav img {
  width: 35px;
  height: 35px;
  margin-bottom: -5px;
}
.ny_sideNav span {
  font-size: 10px;
}

.ny_searchBar-wrapper {
  position: relative;
  display: inline-block;
}
.ny_searchBar-wrapper .ny_searchBar {
  display: inline-flex;
  flex: 1 1 300px;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
  height: 30px;
  background-color: #fff;
}
.ny_searchBar-wrapper .ny_searchBar .searchIcon {
  padding: 0.5rem;
}
.ny_searchBar-wrapper .ny_searchBar .searchBox {
  width: 250px;
  border: 0;
  padding: 0.5rem 0.5rem 0.5rem 0;
  flex: 1;
}
.ny_searchBar-wrapper .ny_searchBar-button {
  height: 30px;
  margin-left: 15px;
  cursor: pointer;
}

.ny-modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  justify-content: center;
}
.ny-modal.visible {
  display: flex;
}
.ny-modal .ny-modal-close {
  color: red;
  font-weight: bold;
  font-size: 12px;
}

.ny-modal-content {
  position: relative;
  border: 1px solid #888;
  border-radius: 15px;
  width: 90vw;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  background-color: #F0F1F0;
  top: 10%;
  height: fit-content;
  height: -moz-max-content;
}
.ny-modal-content h2 {
  text-align: center;
}
.ny-modal-content p {
  margin-bottom: 40px;
}
.ny-modal-content .modal-header {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 10px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border-bottom: 1px solid #828284;
}
.ny-modal-content .modal-header * {
  display: inline;
}
.ny-modal-content .modal-header button {
  border: none;
  background-color: #fff;
  position: absolute;
  font-size: 14px;
  font-weight: normal;
}
.ny-modal-content .modal-header button.ny-modal-close {
  left: 10px;
}
.ny-modal-content .modal-header button.continue {
  right: 10px;
  color: #579E9C;
}
.ny-modal-content .modal-header h2 {
  font-size: 16px;
  margin: 0;
}
.ny-modal-content .modal-main {
  margin: 25px 2em;
}

.ny-modal-trigger {
  cursor: pointer;
}

.PatientsPage.Overview {
  padding-bottom: 0 !important;
}
.PatientsPage.Overview h1 {
  font-size: 24px;
  margin: 0;
  margin-bottom: 16px;
}
.PatientsPage.Overview .PatientsPageMenu {
  display: flex;
  align-items: center;
}
.PatientsPage.Overview .PatientsPageMenu button {
  margin-left: 30px;
  height: 30px;
  background-color: #579C9F;
  border-color: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  padding: 0 10px;
}
.PatientsPage.Overview .PatientsPageMenu label {
  margin-left: auto;
}
.PatientsPage.Overview .PatientsTable {
  border-top: 2px solid black;
  margin-top: 20px;
  height: calc(100% - 55px - 45px);
  font-size: 12px;
}
.PatientsPage.Overview .PatientsTable .tableHead {
  height: 40px;
  font-weight: bold;
}
.PatientsPage.Overview .PatientsTable .tableBody {
  overflow-y: scroll;
  height: calc(100% - 40px);
}
.PatientsPage.Overview .PatientsTable .groupLabel {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  text-align: justify;
  background-color: #F0F1F0;
  font-weight: bold;
  padding-left: 15px;
}
.PatientsPage.Overview .PatientsTable .ny_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  border-top: 1px solid #9E9E9E;
}
.PatientsPage.Overview .PatientsTable .tableBody .ny_row {
  cursor: pointer;
  font-size: 14px;
}
.PatientsPage.Overview .PatientsTable .groupLabel + .ny_row {
  border: none;
}
.PatientsPage.Overview .PatientsTable .ny_column {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.PatientsPage.Overview .PatientsTable .ny_column._avatar {
  width: 80px;
  width: 5%;
  padding-left: 0;
}
.PatientsPage.Overview .PatientsTable .ny_column._avatar img {
  height: 45px;
  background-color: #F0F1F0;
  border-radius: 45px;
}
.PatientsPage.Overview .PatientsTable .ny_column._name {
  width: 130px;
  width: 40%;
}
.PatientsPage.Overview .PatientsTable .ny_column._number {
  width: 130px;
  width: 15%;
}
.PatientsPage.Overview .PatientsTable .ny_column._date {
  width: 80px;
  width: 15%;
}
.PatientsPage.Overview .PatientsTable .ny_column._status {
  width: 130px;
  width: 15%;
}
.PatientsPage.Patient.Content {
  padding-bottom: 0;
  padding-top: 0;
}
.PatientsPage.Patient .profileWrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.PatientsPage.Patient .profileWrapper * {
  display: inline-block;
  margin-right: 15px;
}
.PatientsPage.Patient .profileWrapper .backLink {
  height: 15px;
  position: absolute;
  left: -15px;
  cursor: pointer;
}
.PatientsPage.Patient .profileWrapper .profileImage {
  height: 60px;
  border-radius: 30px;
  background-color: #F0F1F0;
}
.PatientsPage.Patient .profileWrapper .userInfo {
  display: inline-flex;
  flex-direction: column;
}
.PatientsPage.Patient .profileWrapper .userInfo * {
  margin: 0;
}
.PatientsPage.Patient .profileWrapper .userInfo h2 {
  font-size: 18px;
}
.PatientsPage.Patient .profileWrapper .userInfo span {
  font-size: 12px;
  color: #707070;
}
.PatientsPage.Patient .profileWrapper .iconExternalLink {
  height: 15px;
  cursor: pointer;
}
.PatientsPage.Patient .contentWrapper {
  background-color: #F0F1F0;
  height: 90%;
  margin-top: 20px;
  position: relative;
  display: flex;
  height: calc(100% - 60px - 20px);
}
.PatientsPage.Patient .contentWrapper* {
  display: inline;
}
.PatientsPage.Patient .contentWrapper:after {
  content: "";
  background-color: #828284;
  position: absolute;
  width: 2px;
  top: 20px;
  left: 50%;
  display: block;
  height: calc(100% - 40px);
}
.PatientsPage.Patient .contentWrapper > div {
  display: inline-block;
  width: 50%;
  height: 100%;
  position: relative;
}
.PatientsPage.Patient .contentWrapper h3 {
  display: inline;
  font-size: 18px;
}
.PatientsPage.Patient .contentWrapper .chatWrapper {
  padding: 20px;
}
.PatientsPage.Patient .contentWrapper .chatWrapper .chatHeader {
  border-bottom: 2px solid #828284;
  padding-bottom: 10px;
}
.PatientsPage.Patient .contentWrapper .chatWrapper .chatHeader img {
  height: 24px;
  float: right;
  margin-left: 10px;
  cursor: pointer;
}
.PatientsPage.Patient .contentWrapper .chatWrapper .chatFooter {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 20px);
  display: flex;
  align-items: center;
}
.PatientsPage.Patient .contentWrapper .chatWrapper .chatFooter .chatFileUpload {
  background: #fff;
  padding: 1px 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  display: flex;
  cursor: pointer;
  margin-right: 10px;
}
.PatientsPage.Patient .contentWrapper .chatWrapper .chatFooter .chatFileUpload img {
  height: 18px;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper {
  height: 100%;
  position: relative;
  padding: 20px;
  padding-top: 10px;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper img {
  width: 24px;
  margin-right: 15px;
  cursor: pointer;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .sentDocumentsHeader {
  border-bottom: 2px solid #828284;
  height: 35px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .sentDocumentsHeader img {
  height: 14px;
  margin-top: -3px;
  width: auto;
  margin-right: 10px;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .sentDocumentsBody {
  padding-bottom: 20px;
  height: calc(100% - 15px);
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .documentsWrapper {
  height: calc(100% - 215px);
  padding: 0;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .documentsWrapper .documentsHeader {
  border-bottom: 1px solid #828284;
  padding: 10px 0;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .documentsWrapper .documentsHeader h3 {
  display: block;
  margin: 0;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .documentsWrapper .documentsHeader .ny_searchBar-wrapper {
  margin-top: 5px;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .documentsWrapper .documentsHeader .ny_searchBar-wrapper img {
  margin-right: 0;
  width: 26px;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .documentsWrapper .documentsBody {
  padding: 20px 0;
  border-bottom: 2px solid #828284;
  height: calc(100% - 80px);
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .sentDocumentsSearch {
  padding: 20px 0;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .sentDocumentsSearch > div {
  display: flex;
  align-items: center;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .sentDocumentsSearch span {
  font-weight: bold;
}
.PatientsPage.Patient .contentWrapper .sentDocumentsWrapper .showAll {
  margin-left: 10px;
  font-weight: bold;
  color: #579E9C;
  cursor: pointer;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper {
  padding: 20px;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .documentsHeader {
  border-bottom: 2px solid #828284;
  padding-bottom: 10px;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .searchWrapper {
  margin-top: 10px;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .searchWrapper .addIcon {
  height: 24px;
  margin-left: 10px;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .ny_searchBar {
  height: 24px;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .ny_searchBar .searchIcon {
  padding: 0.3rem;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .ny_searchBar .searchIcon.lense {
  padding-left: 0.5rem;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .ny_searchBar .searchIcon.cross {
  padding-right: 0.5rem;
}
.PatientsPage.Patient .contentWrapper .documentsWrapper .ny_searchBar-button {
  height: 24px;
  margin-left: 15px;
  cursor: pointer;
}
.PatientsPage #ny-patient-page-profile-modal .ny-modal-content {
  padding: 2em;
  padding-right: 7px;
  height: 65%;
}
.PatientsPage #ny-patient-page-profile-modal form {
  height: 100%;
  overflow-y: scroll;
  padding-right: calc(2em - 7px);
}
.PatientsPage #ny-patient-page-profile-modal h2 {
  font-size: 16px;
}
.PatientsPage #ny-patient-page-profile-modal table td {
  font-size: 14px;
}
.PatientsPage #ny-patient-page-profile-modal .image-section-wrapper {
  display: flex;
  position: relative;
  margin-bottom: 15px;
}
.PatientsPage #ny-patient-page-profile-modal .image-section-wrapper .addImage,
.PatientsPage #ny-patient-page-profile-modal .image-section-wrapper .editImage {
  position: absolute;
  top: 50%;
  font-size: 14px;
}
.PatientsPage #ny-patient-page-profile-modal .image-section-wrapper .editImage {
  right: 125px;
  color: #579E9C;
}
.PatientsPage #ny-patient-page-profile-modal .image-section-wrapper img {
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100%;
  background-color: #fff;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data {
  margin-bottom: 30px;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td {
  padding-bottom: 5px;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td:first-child {
  width: 180px;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td:last-child {
  width: auto;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td input {
  width: 85%;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td input[name=dateofbirth] {
  width: auto;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td [name=healthInsuranceNumber] {
  width: calc(42.5% - 5px + 10px);
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td [name=healthInsurance] {
  width: calc(42.5% - 5px - 10px);
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td [name=healthInsurance] {
  margin-left: 10px;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td [name=street] {
  width: calc(65% - 10px);
  margin-right: 10px;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td [name=houseNumber] {
  width: 20%;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td [name=zip] {
  width: 25%;
}
.PatientsPage #ny-patient-page-profile-modal table#table-general-data tr td [name=city] {
  width: calc(60% - 10px);
  margin-left: 10px;
}
.PatientsPage #ny-patient-page-profile-modal #table-system-data h3 {
  font-size: 14px;
}
.PatientsPage #ny-patient-page-profile-modal #table-system-data tr td:first-child {
  width: 280px;
}
.PatientsPage #ny-patient-page-profile-modal select {
  font-weight: bold;
}
.PatientsPage #ny-patient-page-profile-modal .ny-form-btn {
  background-color: #579C9F;
  color: #fff;
  padding: 3px 17px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 10px;
  border: 0;
}
.PatientsPage #ny-patient-page-profile-modal .modal-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.PatientsPage #ny-patient-page-profile-modal .modal-footer #ny-save-form {
  height: 32px;
  cursor: pointer;
}
.PatientsPage #ny-patient-page-profile-modal .modal-footer .ny-modal-close {
  margin: 0;
  display: inline;
}
.PatientsPage #ny-patient-page-profile-modal #sendLoginData.disabled {
  background-color: #707070;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-main {
  border-bottom: 1px solid #828284;
  padding-bottom: 16px;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-main p {
  margin: 1em 0;
  font-size: 14px;
  font-weight: bold;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-main textarea {
  width: 100%;
  border-radius: 15px;
  resize: none;
  padding: 15px;
  line-height: 18px;
  font-family: Arial, "Kumbh Sans", sans-serif;
  font-size: 14px;
  margin-bottom: 1em;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-main .data-submission-save-wrapper {
  display: flex;
  align-items: center;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-main .data-submission-save-wrapper label {
  font-size: 14px;
  margin-right: 10px;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-main .data-submission-save-wrapper input[type=checkbox] {
  height: 18px;
  width: 18px;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-footer {
  padding: 0 2em;
  display: flex;
  align-items: center;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-footer* {
  display: inline-block;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-footer p {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
}
.PatientsPage #ny-patient-page-data-submission-modal .modal-footer .addFileIcon {
  height: 24px;
}
.PatientsPage #ny-patient-page-data-query-modal input {
  height: 16px;
  width: 16px;
}
.PatientsPage #ny-patient-page-data-query-modal label[for=generalDataCheck] {
  font-weight: bold;
}
.PatientsPage #ny-patient-page-data-query-modal input#generalDataCheck {
  float: right;
  margin-right: 50px;
}
.PatientsPage #ny-patient-page-data-query-modal .checkGroup {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.PatientsPage #ny-patient-page-data-query-modal .checkGroup label {
  font-weight: normal;
}

@media (min-width: 768px) {
  .PatientsPage .ny-modal-content {
    width: 600px;
  }
  .PatientsPage #ny-patient-page-data-query-modal .ny-modal-content {
    width: 450px;
  }
}
.LoginPage {
  background: -moz-linear-gradient(top, rgba(87, 158, 156, 0.28) 0%, rgba(87, 158, 156, 0.61) 60%, rgba(87, 158, 156, 0.83) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(87, 158, 156, 0.28) 0%, rgba(87, 158, 156, 0.61) 60%, rgba(87, 158, 156, 0.83) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(87, 158, 156, 0.28) 0%, rgba(87, 158, 156, 0.61) 60%, rgba(87, 158, 156, 0.83) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.LoginPage.Content {
  position: initial;
}
.LoginPage header img {
  height: 50px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.LoginPage h1 {
  font-size: 24px;
}
.LoginPage form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.LoginPage form p#loginErrorMessage {
  font-weight: bold;
  color: red;
}
.LoginPage form input,
.LoginPage form button {
  height: 25px;
  width: 210px;
  font-size: 14px;
}
.LoginPage form input {
  display: block;
  margin: 5px 0;
  border: 1px solid #d3d3d3 !important;
  padding-left: 35px;
  background: #fff;
  background-repeat: no-repeat;
}
.LoginPage form input[type=email] {
  background-image: url(/icons/message.svg);
  background-position: 12px 6px;
  background-size: 13px;
}
.LoginPage form input[type=password] {
  background-image: url(/icons/lock.svg);
  background-position: 13px 4px;
  background-size: 11px;
}
.LoginPage form button {
  border-radius: 15px;
  color: #fff;
  background-color: #33575F;
  margin-top: 10px;
  border: none;
}
.LoginPage form button:disabled {
  opacity: 0.5;
}
.LoginPage footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.ChatPage.Content {
  padding: 0;
  overflow: initial;
  display: flex;
  padding-right: 20px;
}
.ChatPage h3 {
  font-size: 18px;
  margin: 0;
}
.ChatPage .column {
  height: 100%;
  padding-left: 20px;
  display: inline-block;
}
.ChatPage .column .switchWrapper,
.ChatPage .column .listWrapper,
.ChatPage .column .chatWrapper,
.ChatPage .column .invitationsWrapper,
.ChatPage .column .chatInfoWrapper,
.ChatPage .column .profileWrapper {
  background-color: #F0F1F0;
  border-radius: 10px;
}
.ChatPage .column.List {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.ChatPage .column.List .switchWrapper {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.ChatPage .column.List .switchWrapper .switch {
  font-size: 16px;
  background-color: #fff;
  padding: 1px;
  height: 26px;
  display: flex;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}
.ChatPage .column.List .switchWrapper .switch span {
  background-color: #fff;
  color: #579E9C;
  padding: 3px 25px;
  border-radius: 10px;
  width: 50%;
  text-align: center;
}
.ChatPage .column.List .switchWrapper .switch span.active {
  background-color: #579E9C;
  color: #fff;
}
.ChatPage .column.List .listWrapper {
  margin-top: 15px;
  flex: 1;
  padding: 5px;
  position: relative;
}
.ChatPage .column.List .listWrapper .listHeader {
  border-bottom: 1px solid #828284;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.ChatPage .column.List .listWrapper .listHeader div {
  display: inline-block;
}
.ChatPage .column.List .listWrapper .listHeader img {
  height: 24px;
  margin-left: 10px;
  cursor: pointer;
}
.ChatPage .column.List .listWrapper .listBody .listSearch {
  border-bottom: 1px solid #828284;
  padding-top: 7px;
  padding-bottom: 6px;
}
.ChatPage .column.List .listWrapper .listBody .ny_searchBar-wrapper {
  display: flex;
  align-items: center;
}
.ChatPage .column.List .listWrapper .listBody .ny_searchBar {
  height: 28px;
}
.ChatPage .column.List .listWrapper .listBody .ny_searchBar .searchIcon {
  padding: 0.4rem;
}
.ChatPage .column.List .listWrapper .listBody .ny_searchBar .searchBox {
  width: 139px;
  font-size: 16px;
}
.ChatPage .column.List .listWrapper .listBody .ny_searchBar-button {
  height: 24px;
  margin-left: 5px;
}
.ChatPage .column.List #ny-chat-page-add-modal.visible {
  display: block;
  height: auto;
  left: calc(100% + 10px);
}
.ChatPage .column.List #ny-chat-page-add-modal .ny-modal-content {
  padding: 10px;
  width: 200px;
  border-radius: 10px;
}
.ChatPage .column.List #ny-chat-page-add-modal .ny-modal-content div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  height: 30px;
}
.ChatPage .column.List #ny-chat-page-add-modal img {
  height: 24px;
}
.ChatPage .column.List #ny-chat-page-new-chat-modal.visible {
  display: block;
}
.ChatPage .column.List #ny-chat-page-new-chat-modal .ny-modal-content {
  width: 480px;
}
.ChatPage .column.List #ny-chat-page-new-chat-modal .modal-main {
  display: flex;
}
.ChatPage .column.List #ny-chat-page-new-chat-modal label {
  margin-right: 10px;
}
.ChatPage .column.List #ny-chat-page-new-chat-modal input {
  flex: 1;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal.visible {
  display: block;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal img {
  height: 21px;
  cursor: pointer;
  margin-left: 10px;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .ny-modal-content {
  width: 480px;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .row {
  margin-bottom: 5px;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .row > div {
  display: inline;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .row > .right {
  display: flex;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .left {
  width: 185px;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .right {
  flex: 1;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .group {
  margin-top: 10px;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .group.members .row {
  justify-content: flex-end;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .group.members .right {
  flex: none;
  width: calc(100% - 185px);
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal .group.members .right input {
  flex: 1;
  color: #33575F;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal #groupName {
  width: 100%;
}
.ChatPage .column.List #ny-chat-page-new-group-chat-modal #receiver {
  flex: 1;
}
.ChatPage .column.Chat {
  width: 50%;
}
.ChatPage .column.Chat .chatWrapper {
  height: 100%;
  position: relative;
  padding: 10px;
}
.ChatPage .column.Chat .chatHeader {
  border-bottom: 2px solid #828284;
  padding-bottom: 10px;
  height: 35px;
}
.ChatPage .column.Chat .chatHeader img {
  height: 24px;
  margin-left: 10px;
}
.ChatPage .column.Chat .chatHeader > img {
  margin-left: 0;
  border: 1px solid #828284;
  border-radius: 15px;
  margin-bottom: -5px;
  margin-right: 10px;
}
.ChatPage .column.Chat .chatHeader div {
  float: right;
}
.ChatPage .column.Chat .chatHeader div img {
  cursor: pointer;
}
.ChatPage .column.Chat .chatFooter {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 20px);
  display: flex;
  align-items: center;
}
.ChatPage .column.Chat .chatFooter .chatFileUpload {
  background: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  display: flex;
  cursor: pointer;
}
.ChatPage .column.Chat .chatFooter .chatFileUpload img {
  height: 18px;
}
.ChatPage .column.Invitations {
  width: 50%;
}
.ChatPage .column.Invitations .invitationsWrapper {
  height: 100%;
  position: relative;
  padding: 10px;
}
.ChatPage .column.Invitations h2 {
  font-size: 18px;
  margin: 0;
}
.ChatPage .column.Profile {
  width: 25%;
}
.ChatPage .column.Profile .profileWrapper {
  height: 100%;
  padding: 10px;
}
.ChatPage .column.Profile .profileHeader {
  border-bottom: 2px solid #828284;
  padding-bottom: 10px;
  height: 35px;
}
.ChatPage .column.Profile .profileImage {
  text-align: center;
  margin-top: 15px;
}
.ChatPage .column.Profile .profileImage img {
  width: 50%;
  border: 1px solid #828284;
  border-radius: 50%;
  background: #fff;
}
.ChatPage .column.Profile p {
  width: 100%;
  background: #fff;
  padding: 5px 10px;
  border-radius: 15px;
}
.ChatPage .column.Profile .groupListWrapper,
.ChatPage .column.Profile .addToGroupWrapper {
  position: relative;
}
.ChatPage .column.Profile #ny-chat-page-profile-group-list-modal,
.ChatPage .column.Profile #ny-chat-page-profile-add-to-group-modal {
  right: calc(100% + 5px);
  left: auto;
  top: 0;
  width: 100%;
  position: absolute;
  justify-content: center;
  height: auto;
}
.ChatPage .column.Profile #ny-chat-page-profile-group-list-modal .content {
  padding: 10px;
}
.ChatPage .column.Profile #ny-chat-page-profile-group-list-modal p {
  width: auto;
  background: transparent;
  padding: 0;
  margin-bottom: revert;
}
.ChatPage .column.Profile #ny-chat-page-profile-add-to-group-modal .content {
  display: flex;
  padding: 10px;
}
.ChatPage .column.Profile #ny-chat-page-profile-add-to-group-modal .content input {
  flex: 1;
  margin-right: 10px;
  font-size: 16px;
}
.ChatPage .column.Profile #ny-chat-page-profile-add-to-group-modal .content img {
  cursor: pointer;
  width: 24px;
}
.ChatPage .column.ChatInfo {
  width: 50%;
}
.ChatPage .column.ChatInfo img {
  width: 24px;
  margin-right: 15px;
  cursor: pointer;
}
.ChatPage .column.ChatInfo .chatInfoWrapper {
  height: 100%;
  position: relative;
  padding: 20px;
  padding-top: 10px;
}
.ChatPage .column.ChatInfo .chatInfoHeader {
  border-bottom: 2px solid #828284;
  padding-bottom: 10px;
  height: 35px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ChatPage .column.ChatInfo .chatInfoHeader img {
  height: 14px;
  margin-top: -3px;
  width: auto;
  margin-right: 10px;
}
.ChatPage .column.ChatInfo .chatInfoBody {
  padding-bottom: 20px;
  height: calc(100% - 15px);
}
.ChatPage .column.ChatInfo .documentsWrapper {
  height: calc(100% - 315px);
}
.ChatPage .column.ChatInfo .documentsWrapper .documentsHeader {
  border-bottom: 1px solid #828284;
  padding: 10px 0;
}
.ChatPage .column.ChatInfo .documentsWrapper .documentsHeader .ny_searchBar-wrapper {
  margin-top: 5px;
}
.ChatPage .column.ChatInfo .documentsWrapper .documentsHeader .ny_searchBar-wrapper img {
  margin-right: 0;
  width: 26px;
}
.ChatPage .column.ChatInfo .documentsWrapper .documentsBody {
  padding: 20px 0;
  border-bottom: 2px solid #828284;
  height: calc(100% - 80px);
}
.ChatPage .column.ChatInfo .chatInfoSearch {
  padding: 20px 0;
  border-bottom: 2px solid #828284;
}
.ChatPage .column.ChatInfo .chatInfoSearch > div {
  display: flex;
  align-items: center;
}
.ChatPage .column.ChatInfo .membersWrapper {
  padding: 20px 0;
  border-bottom: 2px solid #828284;
}
.ChatPage .column.ChatInfo .actionButton {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ChatPage .column.ChatInfo .chatInfoSearch span,
.ChatPage .column.ChatInfo .actionButton span {
  font-weight: bold;
}
.ChatPage .column.ChatInfo .list {
  margin-top: 20px;
  margin-bottom: 10px;
}
.ChatPage .column.ChatInfo .member {
  background-color: #fff;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 15px;
  cursor: pointer;
}
.ChatPage .column.ChatInfo .member.selected {
  color: #fff;
  background-color: #579E9C;
}
.ChatPage .column.ChatInfo .member span.admin {
  font-weight: bold;
  color: red;
  float: right;
}
.ChatPage .column.ChatInfo .showAll {
  margin-left: 10px;
  font-weight: bold;
  color: #579E9C;
  cursor: pointer;
}

.ContactPage.Content {
  padding: 0;
  padding-right: 20px;
  overflow: initial;
  display: flex;
}
.ContactPage h3 {
  display: inline;
  font-size: 18px;
  margin: 0;
}
.ContactPage .column {
  height: 100%;
  padding-left: 20px;
  display: inline-block;
}
.ContactPage .column .switchWrapper,
.ContactPage .column .listWrapper,
.ContactPage .column .profileWrapper,
.ContactPage .column .externalProfileWrapper,
.ContactPage .column .invitationsWrapper,
.ContactPage .column .groupsWrapper {
  background-color: #F0F1F0;
  border-radius: 10px;
}
.ContactPage .column.List {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.ContactPage .column.List .switchWrapper {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.ContactPage .column.List .switchWrapper .switch {
  font-size: 15px;
  background-color: #fff;
  padding: 1px;
  height: 26px;
  display: flex;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  align-items: center;
}
.ContactPage .column.List .switchWrapper .switch span {
  background-color: #fff;
  color: #579E9C;
  padding: 5px 0;
  border-radius: 10px;
  width: 50%;
  text-align: center;
}
.ContactPage .column.List .switchWrapper .switch span.active {
  background-color: #579E9C;
  color: #fff;
}
.ContactPage .column.List .listWrapper {
  margin-top: 15px;
  flex: 1;
  padding: 5px;
  position: relative;
}
.ContactPage .column.List .listWrapper .listHeader {
  border-bottom: 1px solid #828284;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ContactPage .column.List .listWrapper .listHeader .modal-main {
  align-items: center;
}
.ContactPage .column.List .listWrapper .listHeader .ny-modal-content input {
  font-size: 16px;
}
.ContactPage .column.List .listWrapper .listHeader img {
  height: 24px;
  margin-left: 10px;
  cursor: pointer;
}
.ContactPage .column.List .listWrapper .listBody .listSearch {
  border-bottom: 1px solid #828284;
  padding-top: 7px;
  padding-bottom: 6px;
}
.ContactPage .column.List .listWrapper .listBody .ny_searchBar-wrapper {
  display: flex;
  align-items: center;
}
.ContactPage .column.List .listWrapper .listBody .ny_searchBar {
  height: 28px;
}
.ContactPage .column.List .listWrapper .listBody .ny_searchBar .searchIcon {
  padding: 0.4rem;
}
.ContactPage .column.List .listWrapper .listBody .ny_searchBar .searchBox {
  width: 139px;
  font-size: 16px;
}
.ContactPage .column.List .listWrapper .listBody .ny_searchBar-button {
  height: 24px;
  margin-left: 5px;
}
.ContactPage .column.List #ny-contact-page-new-chat-modal.visible {
  display: block;
}
.ContactPage .column.List #ny-contact-page-new-chat-modal .ny-modal-content {
  width: 480px;
}
.ContactPage .column.List #ny-contact-page-new-chat-modal .modal-main {
  display: flex;
}
.ContactPage .column.List #ny-contact-page-new-chat-modal label {
  margin-right: 10px;
}
.ContactPage .column.List #ny-contact-page-new-chat-modal input {
  flex: 1;
}
.ContactPage .column.Profile {
  width: 50%;
}
.ContactPage .column.Profile .profileWrapper {
  height: 100%;
  padding: 25px;
  position: relative;
}
.ContactPage .column.Profile .profileWrapper .header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #9E9E9E;
}
.ContactPage .column.Profile .profileWrapper .header h2 {
  margin-bottom: 10px;
}
.ContactPage .column.Profile .profileWrapper .header p {
  margin: 0;
  font-size: 14px;
}
.ContactPage .column.Profile .profileWrapper .header .imageWrapper {
  margin-bottom: 20px;
}
.ContactPage .column.Profile .profileWrapper .header .imageWrapper img {
  height: 80px;
}
.ContactPage .column.Profile .profileWrapper .header .messageWrapper {
  cursor: pointer;
}
.ContactPage .column.Profile .profileWrapper .header .messageWrapper img {
  height: 28px;
}
.ContactPage .column.Profile .profileWrapper .body {
  font-size: 16px;
}
.ContactPage .column.Profile .profileWrapper .body .row {
  display: flex;
  margin-bottom: 10px;
}
.ContactPage .column.Profile .profileWrapper .body .row > div {
  display: inline;
  width: auto;
}
.ContactPage .column.Profile .profileWrapper .body .group {
  margin-bottom: 15px;
}
.ContactPage .column.Profile .profileWrapper .body .left {
  width: 160px !important;
  font-weight: bold;
}
.ContactPage .column.Profile .profileWrapper .body .right {
  flex: 1;
}
.ContactPage .column.Profile .profileWrapper .body textarea {
  width: 100%;
  resize: none;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  padding: 5px;
}
.ContactPage .column.Profile .profileWrapper .footer {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 15px;
  left: 0;
}
.ContactPage .column.Profile .profileWrapper .footer img {
  margin-left: 10px;
  height: 36px;
  cursor: pointer;
}
.ContactPage .column.ExternalProfile {
  width: 50%;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper {
  height: 100%;
  padding: 25px;
  position: relative;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .header {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  height: 145px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .header .left,
.ContactPage .column.ExternalProfile .externalProfileWrapper .header .right {
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 0;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .header .left {
  left: 0;
  color: #E22020;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .header .right {
  right: 0;
  color: #579E9C;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .header h3 {
  display: block;
  margin-bottom: 20px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .header .imageWrapper span {
  position: absolute;
  left: 0;
  top: calc(50% + 10px);
  cursor: pointer;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .header .imageWrapper img {
  height: 100px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body {
  height: calc(100% - 145px - 20px);
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: -10px;
  padding-right: 10px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body .row {
  font-size: 18px;
  margin-bottom: 10px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body .row > div {
  display: inline;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body .left {
  width: 180px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body .right {
  flex: 1;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body input {
  width: 100%;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body input[name=street] {
  width: calc(80% - 10px);
  margin-right: 10px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body input[name=houseNumber] {
  width: 20%;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body input[name=zip] {
  width: 25%;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body input[name=city] {
  width: calc(75% - 10px);
  margin-left: 10px;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body select, .ContactPage .column.ExternalProfile .externalProfileWrapper .body input {
  color: #33575F;
  font-size: 18px;
  font-weight: bold;
}
.ContactPage .column.ExternalProfile .externalProfileWrapper .body textarea {
  width: 100%;
  resize: none;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  padding: 5px;
}
.ContactPage .column.Invitations {
  width: 50%;
}
.ContactPage .column.Invitations .invitationsWrapper {
  height: 100%;
  position: relative;
  padding: 10px;
}
.ContactPage .column.Invitations h2 {
  font-size: 18px;
  margin: 0;
}
.ContactPage .column.Groups {
  width: 25%;
}
.ContactPage .column.Groups .groupsWrapper {
  height: 100%;
  padding: 25px;
}
.ContactPage .column.Groups .groupsWrapper h3 {
  display: block;
  margin-bottom: 20px;
}
.ContactPage .column.Groups .groupsWrapper input {
  flex: 1;
  font-size: 16px;
}
.ContactPage .column.Groups .groupsWrapper div {
  display: flex;
  margin-bottom: 10px;
}
.ContactPage .column.Groups .groupsWrapper img {
  height: 26px;
  margin-left: 10px;
  cursor: pointer;
}

.SettingsPage.Content {
  padding-top: 0;
  padding-bottom: 0;
  overflow: initial;
  display: flex;
  flex-direction: column;
}
.SettingsPage .headerNavigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.SettingsPage .headerNavigation div {
  color: #33575F;
  background: #D5D5D5;
  font-size: 18px;
  width: 22%;
  height: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.SettingsPage .headerNavigation div.active {
  color: #fff;
  background-color: #579E9C;
}
.SettingsPage .body {
  background-color: #F0F1F0;
  border-radius: 15px;
  height: calc(100% - 45px);
}
.SettingsPage .body .tab.UserData {
  display: flex;
  height: 100%;
  padding: 25px 0;
}
.SettingsPage .body .tab.UserData:after {
  content: "";
  background-color: #707070;
  position: absolute;
  width: 2px;
  top: 60px;
  left: 50%;
  display: block;
  height: calc(100% - 75px);
}
.SettingsPage .body .tab.UserData > div {
  display: inline-block;
  width: 50%;
  padding: 0 25px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.SettingsPage .body .tab.UserData img {
  cursor: pointer;
}
.SettingsPage .body .tab.UserData .imageWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.SettingsPage .body .tab.UserData .imageWrapper .image {
  display: flex;
  align-items: center;
}
.SettingsPage .body .tab.UserData .imageWrapper .image span {
  margin-left: 20px;
  cursor: pointer;
  color: #579E9C;
}
.SettingsPage .body .tab.UserData .row {
  margin-bottom: 10px;
}
.SettingsPage .body .tab.UserData .row > div {
  display: inline-block;
}
.SettingsPage .body .tab.UserData .left {
  width: 150px;
}
.SettingsPage .body .tab.UserData .right {
  flex: 1;
}
.SettingsPage .body .tab.UserData .right input {
  width: 100%;
}
.SettingsPage .body .tab.UserData .right input[name=street] {
  width: calc(80% - 10px);
  margin-right: 10px;
}
.SettingsPage .body .tab.UserData .right input[name=houseNumber] {
  width: 20%;
}
.SettingsPage .body .tab.UserData .right input[name=zip] {
  width: 25%;
}
.SettingsPage .body .tab.UserData .right input[name=city] {
  width: calc(75% - 10px);
  margin-left: 10px;
}
.SettingsPage .body .tab.UserData .officeData {
  padding-right: 35px;
  margin-right: 15px;
}
.SettingsPage .body .tab.UserData .otherData .group {
  margin-bottom: 30px;
}
.SettingsPage .body .tab.UserData .otherData .left {
  width: 280px;
}
.SettingsPage .body .tab.UserData .otherData .right {
  flex: none;
  width: auto;
  /* float: right; */
  margin-left: auto;
  width: calc(100% - 280px);
  display: flex;
  align-items: center;
}
.SettingsPage .body .tab.UserData .otherData .right span {
  margin-left: 15px;
}
.SettingsPage .body .tab.UserData .otherData .right .label {
  display: inline;
  margin-right: 10px;
  margin-left: 0;
  width: 270px;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: bold;
}
.SettingsPage .body .tab.UserData .otherData .right img {
  width: 26px;
}
.SettingsPage .body .tab.UserData .otherData .imageWrapper .right {
  width: auto;
}
.SettingsPage .body .tab.UserData .otherData .imageWrapper img {
  width: 300px;
  cursor: auto;
}
.SettingsPage .body .tab.UserData #ny-settings-page-profile-image-modal {
  left: 50%;
  width: auto;
}
.SettingsPage .body .tab.NibyouDocuments {
  display: flex;
  height: 100%;
  padding: 35px;
  padding-top: 20px;
}
.SettingsPage .body .tab.NibyouDocuments > div {
  display: inline-block;
}
.SettingsPage .body .tab.NibyouDocuments > div.ny-modal {
  display: none;
}
.SettingsPage .body .tab.NibyouDocuments > div.ny-modal.visible {
  display: flex;
}
.SettingsPage .body .tab.NibyouDocuments .ny-modal-content {
  width: auto;
}
.SettingsPage .body .tab.NibyouDocuments .ny-modal-content span {
  font-weight: bold;
}
.SettingsPage .body .tab.NibyouDocuments .ny-modal-content a {
  color: revert;
  text-decoration: underline;
}
.SettingsPage .body .tab.NibyouDocuments .ny-modal-content .row {
  justify-content: space-between;
  margin-bottom: 10px;
}
.SettingsPage .body .tab.NibyouDocuments .ny-modal-content .row * {
  width: auto;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper {
  width: 60%;
  padding-right: 20px;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper h3 {
  margin: 0;
  margin-bottom: 20px;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .header {
  border-bottom: 3px solid #707070;
  padding-bottom: 10px;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .header > div {
  display: flex;
  justify-content: space-between;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .header button {
  background: #579E9C;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0 30px;
  height: 28px;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .invoice {
  padding: 10px 5px;
  border-bottom: 1px solid #707070;
  position: relative;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .invoice:last-child {
  border-bottom: none;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .invoice.new::after {
  content: " ";
  height: 13px;
  width: 13px;
  border-radius: 15px;
  background: red;
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .invoice.active div {
  background: #579E9C;
  color: #fff;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .invoice div {
  background: #fff;
  padding: 7px 10px;
  border-radius: 20px;
  cursor: pointer;
}
.SettingsPage .body .tab.NibyouDocuments .listWrapper .invoice .title {
  margin-left: 40px;
}
.SettingsPage .body .tab.NibyouDocuments .detailWrapper {
  width: 40%;
}
.SettingsPage .body .tab.NibyouDocuments .detailWrapper div {
  background: #fff;
  height: 100%;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.SettingsPage .body .tab.NibyouDocuments .detailWrapper img {
  height: 200px;
}
.SettingsPage .body .tab.Security {
  padding: 35px;
  font-size: 18px;
}
.SettingsPage .body .tab.Security .row {
  margin-bottom: 10px;
}
.SettingsPage .body .tab.Security .row > div {
  display: inline-block;
}
.SettingsPage .body .tab.Security .left {
  width: 350px;
}
.SettingsPage .body .tab.Security .right {
  flex: 1;
}
.SettingsPage .body .tab.Security .right input {
  margin-right: 20px;
  font-size: 18px;
  width: 300px;
}
.SettingsPage .body .tab.Security span {
  font-size: 12px;
}
.SettingsPage .body .tab.Security #passwordForgotten {
  text-decoration: underline;
  cursor: pointer;
  color: #579E9C;
}
.SettingsPage .body .tab.Security button {
  background-color: #579E9C;
  color: #fff;
  padding: 0 13px;
  border: none;
  border-radius: 10px;
  height: 27px;
  font-size: 16px;
}
.SettingsPage .body .tab.Security h2 {
  margin-top: 0;
}
.SettingsPage #ny-settings-page-profile-image-modal .ny-modal-content,
.SettingsPage #ny-settings-page-logo-image-modal .ny-modal-content {
  box-shadow: none;
  width: auto;
  overflow: hidden;
  border: none;
  padding: 10px;
}
.SettingsPage #ny-settings-page-profile-image-modal .actionButtons,
.SettingsPage #ny-settings-page-logo-image-modal .actionButtons {
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.SettingsPage .ny-modal-content {
  overflow: hidden;
}
.SettingsPage .ny-modal-content .actionModal {
  width: 250px;
}
.SettingsPage .ny-modal-content .actionModal .action,
.SettingsPage .ny-modal-content .actionModal .cancel {
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #579E9C;
}
.SettingsPage .ny-modal-content .actionModal .action:hover,
.SettingsPage .ny-modal-content .actionModal .cancel:hover {
  background: #e6e4e4;
}
.SettingsPage .ny-modal-content .actionModal .action {
  border-bottom: 1px solid #D5D5D5;
}
.SettingsPage .ny-modal-content .actionModal .action.delete {
  color: red;
}
.SettingsPage .ny-modal-content .actionModal .cancel {
  margin-top: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.NotFoundPage {
  background-image: url(/images/puppy.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.NotFoundPage h1 {
  font-size: 44px;
}
.NotFoundPage p {
  font-size: 24px;
  margin-bottom: 40px;
}
.NotFoundPage a {
  background: #F18748;
  font-size: 21px;
  text-decoration: none;
  color: #fff;
  padding: 15px 60px;
  border-radius: 25px;
}

/*# sourceMappingURL=styles.css.map */
