* {
  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;
  height: calc(100vh - 55px);
  width: 100%;
}

@media (min-width: 576px) {
  .Content {
    position: absolute;
    bottom: 0;
    padding: 50px;
    padding-top: 30px;
    overflow-y: scroll;
  }
}
section {
  box-sizing: border-box;
}

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,
.ny_header__mobile {
  background: rgb(70, 125, 128); /* Old browsers */
  background: -moz-linear-gradient(top, rgb(70, 125, 128) 0%, rgb(55, 94, 101) 74%, rgb(51, 87, 95) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgb(70, 125, 128) 0%, rgb(55, 94, 101) 74%, rgb(51, 87, 95) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(70, 125, 128) 0%, rgb(55, 94, 101) 74%, rgb(51, 87, 95) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  display: flex;
  align-items: center;
}

.ny_header {
  height: 55px;
  position: relative;
  justify-content: center;
}
.ny_header img {
  height: 40px;
  width: 40px;
  margin: 5px;
}
.ny_header .ny_header__right,
.ny_header .ny_header__left {
  padding: 10px;
  position: absolute;
}
.ny_header .ny_header__right a,
.ny_header .ny_header__left a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-left: 7px;
}
.ny_header .ny_header__right img,
.ny_header .ny_header__left img {
  height: 22px;
  width: 22px;
  margin: 0;
}
.ny_header .ny_header__right span,
.ny_header .ny_header__left span {
  font-size: 10px;
  color: #fff;
}
.ny_header .ny_header__right {
  right: 100px;
}
.ny_header .ny_header__left {
  left: 100px;
}
.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_header__mobile {
  justify-content: space-between;
  height: 80px;
  padding: 0 20px;
}
.ny_header__mobile .ny_header__right img {
  height: 24px;
}

.FooterMobile {
  border-top: 1px solid #9E9E9E;
  background: #fff;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  bottom: 0;
  height: 100px;
}
.FooterMobile button {
  background: transparent;
  border: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.FooterMobile button img {
  margin-bottom: 5px;
}

.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;
}

.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: relative;
}
.LoginPage header {
  position: absolute;
  top: 50px;
}
.LoginPage form {
  width: 100%;
  padding: 0 15px;
}
.LoginPage form input,
.LoginPage form button {
  height: 36px;
  width: 100%;
  font-size: 16px;
}
.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 a {
  color: #fff;
  margin-top: 30px;
  font-size: 16px;
}
.LoginPage footer {
  bottom: 20px;
  position: absolute;
  bottom: 20px;
  /* left: 20px; */
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

@media (min-width: 576px) {
  .LoginPage header {
    position: static;
    width: auto;
  }
  .LoginPage header img {
    height: 60px;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .LoginPage h1 {
    font-size: 24px;
  }
  .LoginPage form {
    width: auto;
    padding: 0;
  }
  .LoginPage form input,
.LoginPage form button {
    height: 25px;
    width: 210px;
    font-size: 14px;
  }
  .LoginPage a {
    font-size: 14px;
  }
  .LoginPage footer {
    left: 20px;
    width: auto;
    text-align: initial;
    font-size: 20px;
  }
}
.PasswordRecoveryPage {
  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;
}
.PasswordRecoveryPage.Content {
  position: initial;
}
.PasswordRecoveryPage header img {
  height: 60px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.PasswordRecoveryPage h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.PasswordRecoveryPage .PasswordRecoveryForm,
.PasswordRecoveryPage .RecoveryMailSentMessage,
.PasswordRecoveryPage .RecoveryPasswordForgotten {
  background-color: #fff;
  padding: 30px;
  padding-top: 10px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 3px 7px 0px #616161;
  box-shadow: 0px 3px 7px 0px #616161;
}
.PasswordRecoveryPage .RecoveryPasswordForgotten button {
  color: #E22020;
  border: none;
  background-color: transparent;
  font-size: 16px;
}
.PasswordRecoveryPage .RecoveryPasswordForgotten button.cancel {
  background-color: #579E9C;
  color: #fff;
  margin-right: 20px;
  padding: 5px 10px;
  border-radius: 15px;
}
.PasswordRecoveryPage form {
  min-height: 50%;
  width: 700px;
  position: relative;
}
.PasswordRecoveryPage form > div {
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  position: relative;
  margin-bottom: 10px;
}
.PasswordRecoveryPage form > div.formFooter {
  position: absolute;
  bottom: 10px;
  justify-content: space-between;
}
.PasswordRecoveryPage form > div.formFooter .cancel {
  color: red;
  cursor: pointer;
  text-decoration: none;
}
.PasswordRecoveryPage form input,
.PasswordRecoveryPage form button {
  height: 25px;
}
.PasswordRecoveryPage form input,
.PasswordRecoveryPage form p {
  position: absolute;
  right: 70px;
}
.PasswordRecoveryPage form input {
  width: 290px;
  margin: 5px 0;
  border: 1px solid #d3d3d3;
  font-size: 18px;
}
.PasswordRecoveryPage form button {
  font-size: 18px;
  border-radius: 15px;
  color: #fff;
  background-color: #579E9C;
  border: none;
  padding: 1px 15px;
}
.PasswordRecoveryPage form button.changePassword {
  display: none;
}
.PasswordRecoveryPage form #recoveryPasswordWrapper {
  margin-bottom: 20px;
}
.PasswordRecoveryPage form #recoveryPasswordForgotWrapper {
  margin-bottom: 35px;
}
.PasswordRecoveryPage form #recoveryPasswordForgotWrapper p {
  cursor: pointer;
  color: #579E9C;
  text-decoration: underline;
  font-size: 14px;
}
.PasswordRecoveryPage footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media (max-width: 576px) {
  .PasswordRecoveryPage .PasswordRecoveryForm,
.PasswordRecoveryPage .RecoveryMailSentMessage,
.PasswordRecoveryPage .RecoveryPasswordForgotten {
    padding: 30px 20px;
    min-height: 500px;
  }
  .PasswordRecoveryPage .RecoveryMailSentMessage,
.PasswordRecoveryPage .RecoveryPasswordForgotten {
    width: calc(100% - 30px);
  }
  .PasswordRecoveryPage .RecoveryMailSentMessage button.cancel,
.PasswordRecoveryPage .RecoveryPasswordForgotten button.cancel {
    width: 100%;
    margin-bottom: 10px;
  }
  .PasswordRecoveryPage header {
    position: absolute;
    top: 50px;
  }
  .PasswordRecoveryPage header img {
    position: static;
    height: auto;
  }
  .PasswordRecoveryPage form {
    width: calc(100% - 30px);
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .PasswordRecoveryPage form > div {
    display: block;
    width: auto;
  }
  .PasswordRecoveryPage form h1 {
    display: none;
  }
  .PasswordRecoveryPage form input, .PasswordRecoveryPage form p {
    position: static;
    height: 35px;
    width: 100%;
  }
  .PasswordRecoveryPage form p {
    text-align: center;
  }
  .PasswordRecoveryPage form #recoveryPasswordWrapper {
    margin-bottom: 10px;
  }
  .PasswordRecoveryPage form #recoveryPasswordForgotWrapper p {
    height: auto;
    margin-top: 0;
  }
  .PasswordRecoveryPage form button.changePassword {
    display: block;
    height: 35px;
    width: 100%;
  }
  .PasswordRecoveryPage form .formFooter button {
    display: none;
  }
  .PasswordRecoveryPage form .formFooter .cancel {
    font-size: 18px;
  }
  .PasswordRecoveryPage footer {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
}
.Chat.Content {
  padding-bottom: 0;
  padding-top: 0;
}
.Chat .contentWrapper {
  background-color: #F0F1F0;
  height: 90%;
  margin-top: 20px;
  position: relative;
  display: flex;
  height: calc(100% - 60px);
}
.Chat .contentWrapper* {
  display: inline;
}
.Chat .contentWrapper:after {
  content: "";
  background-color: #828284;
  position: absolute;
  width: 2px;
  top: 20px;
  left: 50%;
  display: block;
  height: calc(100% - 40px);
}
.Chat .contentWrapper > div {
  display: inline-block;
  width: 50%;
  height: 100%;
  position: relative;
}
.Chat .contentWrapper h3 {
  display: inline;
  font-size: 18px;
}
.Chat .contentWrapper .chatWrapper {
  padding: 20px;
}
.Chat .contentWrapper .chatWrapper .chatHeader {
  border-bottom: 2px solid #828284;
  padding-bottom: 10px;
}
.Chat .contentWrapper .chatWrapper .chatHeader img {
  height: 24px;
  float: right;
  margin-left: 10px;
  cursor: pointer;
}
.Chat .contentWrapper .chatWrapper .chatFooter {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 20px);
  display: flex;
  align-items: center;
}
.Chat .contentWrapper .chatWrapper .chatFooter .chatFileUpload {
  background: #fff;
  padding: 1px 10px;
  border-radius: 10px;
  border: 1px solid #707070;
  display: flex;
  cursor: pointer;
  margin-right: 10px;
}
.Chat .contentWrapper .chatWrapper .chatFooter .chatFileUpload img {
  height: 18px;
}
.Chat .contentWrapper .documentsWrapper {
  padding: 20px;
}
.Chat .contentWrapper .documentsWrapper .documentsHeader {
  border-bottom: 2px solid #828284;
  padding-bottom: 10px;
}
.Chat .contentWrapper .documentsWrapper .searchWrapper {
  margin-top: 10px;
}
.Chat .contentWrapper .documentsWrapper .searchWrapper .addIcon {
  height: 24px;
  margin-left: 10px;
}
.Chat .contentWrapper .documentsWrapper .ny_searchBar {
  height: 24px;
}
.Chat .contentWrapper .documentsWrapper .ny_searchBar .searchIcon {
  padding: 0.3rem;
}
.Chat .contentWrapper .documentsWrapper .ny_searchBar .searchIcon.lense {
  padding-left: 0.5rem;
}
.Chat .contentWrapper .documentsWrapper .ny_searchBar .searchIcon.cross {
  padding-right: 0.5rem;
}
.Chat .contentWrapper .documentsWrapper .ny_searchBar-button {
  height: 24px;
  margin-left: 15px;
  cursor: pointer;
}

.ChatMobile,
.DocumentsMobile {
  height: 100vh;
}
.ChatMobile .ny_searchBar-wrapper,
.DocumentsMobile .ny_searchBar-wrapper {
  width: 100%;
  padding: 10px;
}
.ChatMobile .ny_searchBar-wrapper .ny_searchBar,
.DocumentsMobile .ny_searchBar-wrapper .ny_searchBar {
  width: 100%;
  height: 38px;
}
.ChatMobile .ny_searchBar-wrapper .ny_searchBar .searchBox,
.DocumentsMobile .ny_searchBar-wrapper .ny_searchBar .searchBox {
  font-size: 18px;
}

.DocumentsMobile {
  background-color: #E7E7E7;
}
.DocumentsMobile .ny_searchBar-wrapper {
  width: auto;
}

.ProfilePage.Content {
  display: flex;
  padding: 30px 50px;
}
.ProfilePage.Content * {
  font-size: 16px;
}
.ProfilePage > div {
  padding: 10px;
  background-color: #F0F1F0;
  border-radius: 10px;
}
.ProfilePage .PersonalData {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.ProfilePage .pointer {
  cursor: pointer;
}
.ProfilePage .menuWrapper {
  margin-right: 20px;
}
.ProfilePage .menuWrapper .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ProfilePage .menuWrapper .header h2 {
  display: inline;
}
.ProfilePage .menuWrapper .header a {
  text-decoration: none;
  cursor: pointer;
  color: #579E9C;
}
.ProfilePage .menuWrapper .body {
  display: flex;
  flex-direction: column;
}
.ProfilePage .menuWrapper .body button {
  background: #fff;
  color: #33575F;
  margin-bottom: 10px;
  border-radius: 15px;
  padding: 5px;
  font-size: 14px;
  border: 1px solid #707070;
  width: 250px;
}
.ProfilePage .menuWrapper .body button.active {
  background: #579E9C;
  color: #fff;
}
.ProfilePage .contentWrapper {
  flex: 1;
  padding: 20px;
}
.ProfilePage .contentWrapper input, .ProfilePage .contentWrapper select {
  color: #33575F;
}
.ProfilePage .contentWrapper .row {
  align-items: center;
  margin-bottom: 10px;
}
.ProfilePage .contentWrapper .left {
  width: 180px;
}
.ProfilePage .contentWrapper .right {
  width: auto;
}
.ProfilePage .contentWrapper .PersonalData .profileImage {
  margin-bottom: 30px;
}
.ProfilePage .contentWrapper .PersonalData .profileImage img {
  height: 100px;
  background: #fff;
  border-radius: 50px;
  margin-right: 20px;
}
.ProfilePage .contentWrapper .PersonalData .profileImage .right {
  display: flex;
  align-items: center;
}
.ProfilePage .contentWrapper .PersonalData .profileImage .right button {
  border: none;
  color: #579E9C;
}
.ProfilePage .contentWrapper .PersonalData input[type=text] {
  width: 300px;
}
.ProfilePage .contentWrapper .PersonalData input[name=houseNumber] {
  width: 100px;
}
.ProfilePage .contentWrapper .PersonalData input[name=zip] {
  width: 100px;
}
.ProfilePage .contentWrapper .Account .left {
  width: 300px;
}
.ProfilePage .contentWrapper .Account .left span {
  font-size: 14px !important;
}
.ProfilePage .contentWrapper .Account .right span,
.ProfilePage .contentWrapper .Account .right button {
  margin-left: 20px;
}
.ProfilePage .contentWrapper .Account .right button {
  background: #579E9C;
  border-radius: 15px;
  color: #fff;
  border: none;
  padding: 5px 15px;
  font-size: 14px;
}
.ProfilePage .contentWrapper .Account .pointer {
  color: #579E9C;
  text-decoration: underline;
  font-size: 14px;
}
.ProfilePage .contentWrapper .Privacy {
  width: 600px;
}
.ProfilePage .contentWrapper .Privacy button {
  border: none;
  border-radius: 15px;
  background: #579E9C;
  color: #fff;
  margin-left: 15px;
  padding: 5px 20px;
}
.ProfilePage .contentWrapper .AboutNibyou div * {
  font-size: 14px;
}
.ProfilePage .contentWrapper .AboutNibyou a {
  margin-left: 40px;
}

.ProfilePageMobile {
  background-color: #E7E7E7;
  height: 100vh;
  padding: 30px 20px;
}
.ProfilePageMobile .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.ProfilePageMobile .header h1 {
  margin: 0;
  font-size: 20px;
}
.ProfilePageMobile .header a, .ProfilePageMobile .header span {
  color: #579E9C;
  font-weight: bold;
  text-decoration: none;
}
.ProfilePageMobile.Menu .body {
  display: flex;
  flex-direction: column;
}
.ProfilePageMobile.Menu .body button {
  margin-bottom: 10px;
  font-size: 18px;
  border: 1px solid #707070;
  border-radius: 15px;
  background-color: #fff;
  padding: 5px;
  color: #33575F;
  font-weight: bold;
}
.ProfilePageMobile .PersonalData .profileImage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.ProfilePageMobile .PersonalData .profileImage img {
  height: 100px;
  border-radius: 50px;
  background-color: #fff;
  margin-bottom: 10px;
}
.ProfilePageMobile .PersonalData .profileImage button {
  color: #579E9C;
  background: transparent;
  border: none;
}
.ProfilePageMobile .PersonalData .row {
  margin-bottom: 10px;
}
.ProfilePageMobile .PersonalData input, .ProfilePageMobile .PersonalData select {
  font-size: 16px;
}
.ProfilePageMobile .PersonalData input[name=salutation] {
  margin-bottom: 10px;
}
.ProfilePageMobile .PersonalData input[name=houseNumber],
.ProfilePageMobile .PersonalData input[name=zip] {
  width: 50%;
}
.ProfilePageMobile .PersonalData .left {
  width: 160px;
}
.ProfilePageMobile .PersonalData .right {
  width: auto;
  flex: 1;
}
.ProfilePageMobile .Account input {
  width: 100%;
  font-size: 20px;
  padding: 5px 10px;
}
.ProfilePageMobile .Account input[name=newPassword] {
  margin-top: 40px;
  margin-bottom: 10px;
}
.ProfilePageMobile .Account input[name=newPasswordRepeat] {
  margin-bottom: 40px;
}
.ProfilePageMobile .Account p {
  color: #579E9C;
  text-align: center;
  text-decoration: underline;
}
.ProfilePageMobile .Account h2,
.ProfilePageMobile .Privacy h2,
.ProfilePageMobile .AboutNibyouMobile h2 {
  font-size: 20px;
  margin-top: -10px;
  font-weight: normal;
}
.ProfilePageMobile .Account button,
.ProfilePageMobile .Privacy button,
.ProfilePageMobile .AboutNibyouMobile button {
  background: #579E9C;
  border: none;
  padding: 5px;
  font-size: 20px;
  width: 100%;
  color: #fff;
  border-radius: 15px;
}
.ProfilePageMobile .PasswordRecoveryPage {
  position: absolute;
  top: 0;
  left: 0;
}

.AccountDeletionPage {
  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;
}
.AccountDeletionPage.Content {
  position: initial;
}
.AccountDeletionPage header img {
  height: 60px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.AccountDeletionPage h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.AccountDeletionPage form {
  background-color: #fff;
  padding: 30px;
  padding-top: 10px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 3px 7px 0px #616161;
  box-shadow: 0px 3px 7px 0px #616161;
  min-height: 60%;
  width: 700px;
  position: relative;
}
.AccountDeletionPage form button {
  font-size: 18px;
  border-radius: 15px;
  color: #fff;
  background-color: #E22020;
  border: none;
  padding: 3px 20px;
}
.AccountDeletionPage form label {
  margin-right: 20px;
}
.AccountDeletionPage form > div {
  display: flex;
  align-items: center;
}
.AccountDeletionPage form > div.formFooter {
  position: absolute;
  bottom: 25px;
  justify-content: flex-end;
  border-top: 1px solid #707070;
  width: calc(100% - 60px);
  padding-top: 5px;
  margin-top: 20px;
  display: flex;
}
.AccountDeletionPage form input {
  margin: 5px 0;
  border: 1px solid #d3d3d3;
  font-size: 18px;
}
.AccountDeletionPage footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-weight: bold;
}

@media (max-width: 576px) {
  .AccountDeletionPage header {
    position: absolute;
    top: 50px;
  }
  .AccountDeletionPage header img {
    position: static;
    height: auto;
  }
  .AccountDeletionPage form {
    padding: 30px 20px;
    min-height: 570px;
    width: calc(100% - 30px);
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .AccountDeletionPage form > div {
    display: block;
  }
  .AccountDeletionPage form > div.formFooter {
    display: block;
    border: none;
    width: calc(100% - 40px);
  }
  .AccountDeletionPage form > div.formFooter button {
    width: 100%;
  }
  .AccountDeletionPage form > div.consentWrapper {
    display: flex;
    margin-top: 10px;
  }
  .AccountDeletionPage form > div.consentWrapper label {
    margin: 0;
  }
  .AccountDeletionPage form > div.consentWrapper input {
    width: 30px;
    margin: 0 10px;
  }
  .AccountDeletionPage form input {
    position: static;
    height: 35px;
    width: 100%;
  }
  .AccountDeletionPage footer {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
}
.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 */
