.header-div {
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #242424;
  position: fixed;
}

.header-div-img-container-image {
  width: 40px;
  height: 40px;
  margin: 5px;
}

.header-div-title {
  color: grey;
  font-family: Verdana;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 1.8rem;
}

.page-login-container {
  width: 300px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.page-login-container-form {
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.1rem;
  background-color: #292929;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
}

.page-login-container-form .error-message {
  font-size: 0.7rem;
  padding: 0;
  color: #ff2600;
  display: inline-block;
  position: relative;
  word-break: break-word;
  margin: 10px;
}

.page-login-container-form .error-message.success {
  color: #00e56c;
}

.page-login-container-form #resend-code {
  text-decoration: none;
  font-size: 0.7rem;
  color: #00e56c;
  background-color: transparent;
  border: none;
}

.page-login-container-form #resend-code:hover, .page-login-container-form #resend-code:focus {
  text-decoration: underline;
}

.page-login-container-form fieldset {
  border: none;
}

.page-login-container-form fieldset > legend {
  margin-bottom: 10px;
  color: #767676;
}

.page-login-container-form fieldset > legend > a {
  background-color: transparent;
  border: none;
  font-size: 1.1rem;
  color: #343434;
  text-decoration: none;
}

.page-login-container-form fieldset > legend > a:hover, .page-login-container-form fieldset > legend > a:focus {
  color: #ff8c00;
}

.page-login-container-form fieldset > legend > a.active {
  color: #ff8c00;
}

.page-login-container-form-input {
  width: 100%;
  padding: 0.4rem;
  border: none;
  background-color: #6a6a6a;
  color: #dbdbdb;
  font-size: 0.8rem;
  margin-bottom: 10px;
  border-radius: 0.1rem;
}

.page-login-container-form-input::placeholder {
  color: rgba(219, 219, 219, 0.3);
}

.page-login-container-form-submit {
  min-width: 30%;
  height: 30px;
  padding: 0 5px 0 5px;
  margin: 10px auto;
  background-color: #008d58;
  border: none;
  border-radius: 0.1rem;
  color: #2d2d2d;
  transition: all ease-in 0.1s;
  -webkit-appearance: none;
}

.page-login-container-form-submit:hover, .page-login-container-form-submit:focus {
  cursor: pointer;
  transition: all ease-in 0.1s;
  background-color: #00c97e;
}

.page-login-container-form-forgot {
  text-decoration: none;
  color: #ff8600;
  font-size: 0.6rem;
  text-align: center;
  display: inline-block;
  width: 30%;
}

.page-login-container-form-forgot:before {
  content: "<";
  width: 5px;
  height: 5px;
  position: relative;
  right: 10px;
  opacity: 0;
  transition: all ease-in 0.5s;
}

.page-login-container-form-forgot:after {
  content: ">";
  width: 5px;
  height: 5px;
  position: relative;
  left: 10px;
  opacity: 0;
  transition: all ease-in 0.5s;
}

.page-login-container-form-forgot:hover, .page-login-container-form-forgot:focus {
  text-decoration: underline;
}

.page-login-container-form-forgot:hover:before, .page-login-container-form-forgot:focus:before {
  content: "<";
  width: 5px;
  height: 5px;
  position: relative;
  right: 2px;
  opacity: 1;
  transition: all ease 0.5s;
}

.page-login-container-form-forgot:hover:after, .page-login-container-form-forgot:focus:after {
  content: ">";
  width: 5px;
  height: 5px;
  position: relative;
  left: 2px;
  opacity: 1;
  transition: all ease 0.5s;
}

.page-main-container {
  max-width: 600px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  position: relative;
  border-radius: 0.1rem;
}

.page-main-container-form {
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.1rem;
  background-color: #292929;
}

.page-main-container-form > label {
  color: orange;
}

.page-main-container-form-back {
  text-decoration: none;
  font-weight: bold;
  background-color: #868686;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2rem;
  font-size: 0.8rem;
  border-radius: 0 0 0 0.2rem;
  border: 1px solid #191919;
  transition: 0.2s ease-in background-color;
  z-index: 100;
}

.page-main-container-form-back:hover, .page-main-container-form-back:focus {
  background-color: #ff6f00;
  transition: 0.2s ease-in background-color;
}

.page-main-container-form-categories-label {
  width: 100%;
  font-size: 0.9rem;
  position: relative;
  margin-bottom: 5px;
  color: #9c9c9c;
  font-weight: bold;
}

.page-main-container-form-categories-options {
  width: 100%;
  height: 40px;
  margin: 10px auto;
  color: #bdbdbd;
  border-radius: 0.1rem;
  border: 1px solid grey;
  -webkit-appearance: none;
  padding: 0 8px;
  background: url("../media/arrow-down.png") no-repeat right #6a6a6a;
  background-size: 20px;
}

.page-main-container-form-categories-options:focus {
  outline: 1px solid #a7a7a7;
}

.page-main-container-form-cards-label {
  width: 100%;
  font-size: 0.9rem;
  position: relative;
  margin-bottom: 5px;
  color: #9c9c9c;
  font-weight: bold;
}

.page-main-container-form-cards-options {
  width: 100%;
  height: 40px;
  margin: 10px auto 20px auto;
  color: #7b7b7b;
}

.page-main-container-form-label {
  color: #d3d3d3;
}

.page-main-container-form-input {
  width: 100%;
  padding: 0.4rem;
  border: none;
  background-color: #6a6a6a;
  color: #bdbdbd;
  font-size: 0.8rem;
  margin-bottom: 10px;
  border-radius: 0.1rem;
}

.page-main-container-form-input::placeholder {
  color: #a8a8a8;
}

.page-main-container-form-description {
  width: 100%;
  height: 200px;
  padding: 0.4rem;
  border: none;
  background-color: #6a6a6a;
  color: #bdbdbd;
  font-size: 0.8rem;
  margin-bottom: 5px;
  border-radius: 0.1rem;
  resize: none;
  tab-size: 2;
  -moz-tab-size: 2;
  -ms-tab-size: 2;
}

.page-main-container-form-description::placeholder {
  color: #a8a8a8;
}

.page-main-container-form-description:focus {
  outline: 1px solid #a7a7a7;
}

.page-main-container-form-label {
  color: #939393;
  font-size: 0.6rem;
  margin-bottom: 5px;
}

.page-main-container-form-term-photo, .page-main-container-form-description-photo {
  color: grey;
  font-size: 0.6rem;
  cursor: pointer;
  margin-bottom: 5px;
}

.page-main-container-form-term-photo[type=file]::-ms-browse, .page-main-container-form-description-photo[type=file]::-ms-browse {
  -webkit-appearance: none;
  width: 70px;
  background-color: white;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: orangered;
}

.page-main-container-form-term-photo[type=file]::-ms-browse:hover, .page-main-container-form-term-photo[type=file]::-ms-browse:focus, .page-main-container-form-description-photo[type=file]::-ms-browse:hover, .page-main-container-form-description-photo[type=file]::-ms-browse:focus {
  background-color: #ffffff;
  border: 1px solid orangered;
  transition: 0.1s;
}

.page-main-container-form-term-photo[type=file]::-webkit-file-upload-button, .page-main-container-form-description-photo[type=file]::-webkit-file-upload-button {
  width: 70px;
  background-color: white;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: orangered;
}

.page-main-container-form-term-photo[type=file]::-webkit-file-upload-button:hover, .page-main-container-form-term-photo[type=file]::-webkit-file-upload-button:focus, .page-main-container-form-description-photo[type=file]::-webkit-file-upload-button:hover, .page-main-container-form-description-photo[type=file]::-webkit-file-upload-button:focus {
  background-color: #6c6c6c;
  border: 1px solid orangered;
  transition: 0.1s;
}

.page-main-container-form-term-photo[type=file]::file-selector-button, .page-main-container-form-description-photo[type=file]::file-selector-button {
  -webkit-appearance: none;
  width: 70px;
  background-color: #6c6c6c;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: orangered;
}

.page-main-container-form-term-photo[type=file]::file-selector-button:hover, .page-main-container-form-term-photo[type=file]::file-selector-button:focus, .page-main-container-form-description-photo[type=file]::file-selector-button:hover, .page-main-container-form-description-photo[type=file]::file-selector-button:focus {
  background-color: #393939;
  border: 1px solid orangered;
  transition: 0.1s;
}

.page-main-container-form-save {
  width: 30%;
  height: 30px;
  margin: 10px auto;
  background-color: #008d58;
  border: none;
  border-radius: 0.1rem;
  color: #2d2d2d;
  transition: font-size ease-in 0.1s;
  -webkit-appearance: none;
}

.page-main-container-form-save:hover, .page-main-container-form-save:focus {
  cursor: pointer;
  transition: font-size ease-in 0.1s;
  background-color: #00c97e;
}

#term_file_name,
#description_file_name {
  color: red;
  font-size: 0.5rem;
  margin-bottom: 10px;
}

#addingMessage {
  display: block;
  position: absolute;
  width: auto;
  height: 24px;
  background-color: #292929;
  color: #292929;
  padding: 2px;
  top: 0;
  right: 60px;
  z-index: 1;
  border-top: 1px solid #292929;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 0 0 0.2rem 0.2rem;
  opacity: 0;
  transition: all ease 0.7s;
}

#addingMessage.show {
  background-color: #00ffc4;
  color: black;
  transition: all ease 0.7s;
  opacity: 1;
}

.page-categories-container {
  max-width: 800px;
  margin: 50px auto 50px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.page-categories-container-category {
  width: 150px;
  height: 150px;
  border: 1px solid #1d1d1d;
  margin: 5px;
  display: flex;
  justify-content: center;
  cursor: pointer !important;
  border-radius: 0.1rem;
  transition: all ease-in 0.2s;
  text-decoration: none;
  position: relative;
  background-color: #292929f2;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.75);
}

.page-categories-container-category.light {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #ffffff;
}

.page-categories-container-category.light > a > div > span {
  color: black;
}

.page-categories-container-category-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.page-categories-container-category-top-left {
  text-decoration: none;
  color: #6c6c6c;
  position: relative;
  bottom: 6px;
}

.page-categories-container-category-top-left:hover {
  color: red;
}

.page-categories-container-category-top-right {
  text-decoration: none;
  color: #6c6c6c;
  position: relative;
  bottom: 4px;
}

.page-categories-container-category-top-right:hover {
  color: lightseagreen;
}

.page-categories-container-category-middle {
  width: 150px;
  height: 150px;
  justify-content: center;
  cursor: pointer;
  border-radius: 0.1rem;
  transition: all ease-in 0.2s;
  text-decoration: none;
  position: relative;
  padding: 0.6rem 0 0.6rem 0;
  flex-direction: column;
}

.page-categories-container-category-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.page-categories-container-category-bottom-left {
  text-decoration: none;
  color: #6c6c6c;
  position: relative;
  top: 1px;
}

.page-categories-container-category-bottom-left:hover {
  color: black;
}

.page-categories-container-category-bottom-right {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #6c6c6c;
  position: relative;
  font-size: 0.7rem;
}

.page-categories-container-category-bottom-right > span {
  padding: 2px;
  position: relative;
  margin: auto;
}

.page-categories-container-category-link {
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 5px;
  height: 100%;
}

.page-categories-container-category-link-name {
  font-size: 0.8rem;
  text-align: center;
  margin: auto;
  color: #d0d0d0;
  font-weight: normal;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-categories-container-category:hover {
  transition: all ease-in 0.2s;
}

.page-categories-container-category-new {
  width: 150px;
  height: 150px;
  border: 1px solid #1f1e1e;
  margin: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 0.1rem;
  transition: all ease-in 0.2s;
  text-decoration: none;
  background-color: #292929f2;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.75);
}

.page-categories-container-category-new.light {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #ffffff;
}

.page-categories-container-category-new.light > div {
  border: 1px dashed grey;
}

.page-categories-container-category-new.light > div > span {
  color: black;
}

.page-categories-container-category-new.light > div > span:hover {
  color: orangered;
}

.page-categories-container-category-new-link {
  width: 60%;
  height: 60%;
  margin: auto;
  padding: 10%;
  text-align: center;
  font-size: 1.8rem;
  border: 1px dashed orange;
  border-radius: 100%;
  transition: all ease-in 0.2s;
}

.page-categories-container-category-new-link-button {
  font-weight: lighter;
  color: orange;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.page-categories-container-category-new-link-button:hover {
  color: orangered;
  transition: all ease-in 0.2s;
}

.page-categories-container-category-new:hover {
  transition: all ease-in 0.2s;
}

.page-category-container::-webkit-scrollbar {
  display: none;
}

.page-category-container-card::-webkit-scrollbar {
  display: none;
}

.page-category-container-card-middle-description::-webkit-scrollbar {
  display: none;
}

.page-category-container {
  max-width: 800px;
  margin: 0 auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: transparent;
  overflow-x: hidden;
  overflow-y: scroll;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.page-category-container #loadcard.light div:nth-of-type(1) .page-category-container-card-top {
  background-color: white;
  border-bottom: 1px solid black;
}

.page-category-container #loadcard.light div:nth-of-type(1) > div {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.page-category-container #loadcard.light div:nth-of-type(1) > div .page-category-container-card-top-left {
  background-color: #cecece;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  color: #363636;
}

.page-category-container #loadcard.light div:nth-of-type(1) > div .page-category-container-card-top-left:hover {
  background-color: #1f1f1f;
  color: #ffffff;
}

.page-category-container #loadcard.light div:nth-of-type(1) > div .page-category-container-card-top-right {
  background-color: #cecece;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  color: #363636;
}

.page-category-container #loadcard.light div:nth-of-type(1) > div .page-category-container-card-top-right:hover {
  background-color: #1f1f1f;
  color: #ffffff;
}

.page-category-container #loadcard.light div:nth-of-type(1) > div > div {
  border: none;
  background-color: white;
}

.page-category-container #loadcard.light div:nth-of-type(1) > div > div span.active {
  color: orangered;
}

.page-category-container #loadcard.light input[type=file] {
  margin: 0 auto;
  height: 40px;
  flex-shrink: 0;
  color: #0e0e0e;
}

.page-category-container #loadcard.light input[type=file]::-ms-browse {
  -webkit-appearance: none;
  width: 70px;
  background-color: white;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: #0e0e0e;
}

.page-category-container #loadcard.light input[type=file]::-ms-browse:hover, .page-category-container #loadcard.light input[type=file]::-ms-browse:focus {
  background-color: #ffffff;
  border: 1px solid #005849;
  transition: 0.1s;
}

.page-category-container #loadcard.light input[type=file]::-webkit-file-upload-button {
  width: 70px;
  background-color: white;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: black;
}

.page-category-container #loadcard.light input[type=file]::-webkit-file-upload-button:hover, .page-category-container #loadcard.light input[type=file]::-webkit-file-upload-button:focus {
  background-color: #5dffdd;
  border: 1px solid #005849;
  transition: 0.1s;
}

.page-category-container #loadcard.light input[type=file]::file-selector-button {
  -webkit-appearance: none;
  width: 70px;
  background-color: #b0ffee;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: #000000;
}

.page-category-container #loadcard.light input[type=file]::file-selector-button:hover, .page-category-container #loadcard.light input[type=file]::file-selector-button:focus {
  background-color: #5dffdd;
  border: 1px solid #005849;
  transition: 0.1s;
}

.page-category-container #loadcard.light div:nth-of-type(2) {
  background-color: white;
  border: 1px solid black;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-prev {
  color: black;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-prev:hover {
  color: #003831;
  background-color: #00ffe1;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-prev.end {
  color: #f5f5f5;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-prev.end:hover {
  background-color: white;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-bookmark.bookmark::before {
  background-color: #00ffe1;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-bookmark.bookmark::after {
  box-shadow: inset 0px 0px 4px 1px black;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-bookmark::before {
  border-color: black;
  border-style: solid;
  border-top: none;
  background-color: #eaeaea;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-bookmark::after {
  border-color: black;
  border-style: solid;
  background-color: white;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-next {
  color: black;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-next:hover {
  color: #003831;
  background-color: #00ffe1;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-next.end {
  color: #f5f5f5;
}

.page-category-container #loadcard.light div:nth-of-type(2) .page-category-container-tools-next.end:hover {
  background-color: white;
}

.page-category-container #loadcard.light div:nth-of-type(2) pre {
  background-color: white;
  color: #111111;
}

.page-category-container #loadcard.light div:nth-of-type(2) textarea {
  background-color: white;
  color: #111111;
}

.page-category-container #loadcard.light div:nth-of-type(2) textarea.error {
  border: 1px solid red;
  background-color: #ffe9e9;
}

.page-category-container.edit-active {
  user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  -moz-user-select: text;
}

.page-category-container:not(.edit-active) {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

.page-category-container.edit-active:before {
  content: attr(data-message);
  width: auto;
  height: 17px;
  display: block;
  position: absolute;
  font-size: 0.8rem;
  padding: 0.2rem;
  top: 0px;
  right: 15%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #009a74;
  color: #ffffff;
  border-radius: 0 0 0.2rem 0.2rem;
}

.page-category-container-box {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  text-decoration: none;
  background-color: #191919;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  border-left: 1px solid #191919;
  border-bottom: 1px solid #191919;
  padding: 0.5rem;
}

.page-category-container-box.light {
  background-color: #ffffff;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  border-left: 1px solid #191919;
}

.page-category-container-box.light span:nth-child(1) {
  color: orangered;
}

.page-category-container-box.light span:nth-child(1) > span:first-of-type {
  color: #000;
}

.page-category-container-box.light span:nth-of-type(2) > a {
  background-color: orange;
  border: none;
}

.page-category-container-box.light span:nth-of-type(2) > a:hover, .page-category-container-box.light span:nth-of-type(2) > a:focus {
  background-color: orangered;
}

.page-category-container-box.light + div > div {
  background-color: #f6f6f6;
  border-right: 1px solid grey;
  border-left: 1px solid grey;
  border-bottom: 1px solid grey;
}

.page-category-container-box.light + div > div > div {
  background-color: #e0e0e0;
}

.page-category-container-box.light + div > div > div div:nth-of-type(1) > span {
  color: black;
}

.page-category-container-box.light + div > div > div div:nth-of-type(2) {
  background-color: #f6f6f6;
}

.page-category-container-box.light + div > div > div div:nth-of-type(2) a:nth-of-type(1):hover, .page-category-container-box.light + div > div > div div:nth-of-type(2) a:nth-of-type(1):focus {
  background-color: #37ff99;
  color: white;
}

.page-category-container-box.light + div > div > div div:nth-of-type(2) a:nth-of-type(2):hover, .page-category-container-box.light + div > div > div div:nth-of-type(2) a:nth-of-type(2):focus {
  background-color: #ff3857;
  color: white;
}

.page-category-container-box-name {
  color: orange;
}

.page-category-container-box-name > span {
  color: grey;
  font-size: 0.6rem;
}

.page-category-container-box-back {
  text-decoration: none;
  font-weight: bold;
  background-color: #474747;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2rem;
  font-size: 0.8rem;
  border: 1px solid #191919;
  border-radius: 0 0 0 0.2rem;
  transition: 0.2s ease-in background-color;
  z-index: 100;
}

.page-category-container-box-back:hover, .page-category-container-box-back:focus {
  background-color: #ff6f00;
  transition: 0.2s ease-in background-color;
}

.page-category-container-tools {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  text-decoration: none;
  background-color: #2d2d2d;
  flex-wrap: wrap;
  user-select: none;
}

.page-category-container-tools-prev {
  color: orange;
  cursor: pointer;
  padding: 0.5rem;
  transition: all ease 0.4s;
  width: 228px;
  text-align: center;
}

@media screen and (max-width: 530px) {
  .page-category-container-tools-prev {
    width: 40%;
  }
  .page-category-container-tools-prev > code {
    display: none;
  }
}

.page-category-container-tools-prev:hover {
  background-color: orange;
  color: white;
}

.page-category-container-tools-prev.end {
  color: #333333;
}

.page-category-container-tools-prev.end:hover {
  background-color: transparent;
  color: transparent;
}

.page-category-container-tools-bookmark {
  display: block;
  width: 40px;
  position: relative;
  cursor: pointer;
}

.page-category-container-tools-bookmark:before {
  content: " ";
  width: 26px;
  height: 97%;
  border-top: 1px dotted #1a1816;
  border-right: 1px dotted #1a1816;
  border-left: 1px dotted #1a1816;
  display: block;
  margin: auto;
  transition: all ease 0.4s;
  background-color: rgba(68, 68, 68, 0.55);
}

.page-category-container-tools-bookmark:hover:before {
  background-color: #767676;
}

.page-category-container-tools-bookmark.bookmark:before {
  border-color: #1a1816;
  background-color: rgba(255, 89, 0, 0.88);
  box-shadow: 0px 1px 3px 1px black;
}

.page-category-container-tools-bookmark:after {
  content: " ";
  width: 18px;
  height: 18px;
  border-top: 1px dotted #1a1816;
  border-right: 1px dotted #1a1816;
  display: block;
  margin: auto;
  transform: rotate(315deg);
  position: relative;
  bottom: 10px;
  transition: all ease 0.4s;
  z-index: 3;
  background: #2d2d2d;
}

.page-category-container-tools-bookmark.bookmark:after {
  border-color: rgba(255, 89, 0, 0.88);
}

.page-category-container-tools-next {
  color: orange;
  cursor: pointer;
  padding: 0.5rem;
  transition: all ease 0.4s;
  width: 228px;
  text-align: center;
}

@media screen and (max-width: 530px) {
  .page-category-container-tools-next {
    width: 40%;
  }
  .page-category-container-tools-next > code {
    display: none;
  }
}

.page-category-container-tools-next:hover {
  background-color: orange;
  color: white;
}

.page-category-container-tools-next.end {
  color: #333333;
}

.page-category-container-tools-next.end:hover {
  background-color: transparent;
  color: transparent;
}

.page-category-container-card {
  width: 100%;
  height: 400px;
  display: inline-block;
  cursor: pointer;
  border-radius: 0.1rem;
  text-decoration: none;
  position: relative;
}

.page-category-container-card-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 23px;
  display: flex;
  justify-content: space-between;
  background-color: #2d2d2d;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
}

.page-category-container-card-top-left {
  position: relative;
  display: block;
  height: 22px;
  font-size: 0.8rem;
  text-align: center;
  padding: 2px;
  background-color: #870024;
  color: white;
}

.page-category-container-card-top-left:hover {
  background-color: #b8002b;
}

.page-category-container-card-top-middle {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.page-category-container-card-top-middle-left {
  margin: auto 5px;
  color: #e0e0e0;
}

.page-category-container-card-top-middle-left.active {
  color: #f64600;
  font-weight: bold;
}

.page-category-container-card-top-middle-right {
  margin: auto 5px;
  color: #e0e0e0;
}

.page-category-container-card-top-middle-right.active {
  color: #f64600;
  font-weight: bold;
}

.page-category-container-card-top-right {
  position: relative;
  display: block;
  height: 22px;
  font-size: 0.8rem;
  text-align: center;
  padding: 2px;
  background-color: #006d50;
  color: white;
}

.page-category-container-card-top-right:hover {
  background-color: #009a74;
}

.page-category-container-card-top-right.active {
  color: white !important;
  background-color: #009a74;
}

.page-category-container-card-editor {
  height: 30px;
  border: 1px solid orange;
  position: absolute;
  top: 22px;
  background-color: #ffffffd1;
  width: 100%;
  z-index: 1000;
  justify-content: space-around;
}

.page-category-container-card-editor-tool {
  display: inline-block;
  justify-self: center;
  position: relative;
  padding: 5px;
}

.page-category-container-card-editor-tool > img {
  position: absolute;
  width: 20px;
  height: 20px;
  margin: auto;
  opacity: 0.30;
}

.page-category-container-card-editor-tool > img:hover {
  opacity: 1;
  cursor: pointer;
}

.page-category-container-card-middle {
  height: calc(95% - 2px);
  cursor: pointer;
  border-radius: 0.1rem;
  text-decoration: none;
  position: relative;
  flex-direction: column;
  margin: 22px 0 0 0;
  background-color: #1d1d1d;
  display: block;
  padding: 20px 0 20px 0;
  transition: all ease 0.3s;
  right: 0;
}

.page-category-container-card-middle input {
  margin: 0 auto;
  height: 40px;
  flex-shrink: 0;
}

.page-category-container-card-middle input[type=file]::-ms-browse {
  -webkit-appearance: none;
  width: 70px;
  background-color: white;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: orangered;
}

.page-category-container-card-middle input[type=file]::-ms-browse:hover, .page-category-container-card-middle input[type=file]::-ms-browse:focus {
  background-color: #ffffff;
  border: 1px solid orangered;
  transition: 0.1s;
}

.page-category-container-card-middle input[type=file]::-webkit-file-upload-button {
  width: 70px;
  background-color: white;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: orangered;
}

.page-category-container-card-middle input[type=file]::-webkit-file-upload-button:hover, .page-category-container-card-middle input[type=file]::-webkit-file-upload-button:focus {
  background-color: #6c6c6c;
  border: 1px solid orangered;
  transition: 0.1s;
}

.page-category-container-card-middle input[type=file]::file-selector-button {
  -webkit-appearance: none;
  width: 70px;
  background-color: #6c6c6c;
  border: 1px solid dimgrey;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: orangered;
}

.page-category-container-card-middle input[type=file]::file-selector-button:hover, .page-category-container-card-middle input[type=file]::file-selector-button:focus {
  background-color: #393939;
  border: 1px solid orangered;
  transition: 0.1s;
}

.page-category-container-card-middle.front {
  transform: rotateY(0deg);
  transition: all ease 0.3s;
}

.page-category-container-card-middle.front .page-category-container-card-middle-front {
  animation-name: hideShowContent;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 2s;
}

.page-category-container-card-middle.front.goToNext {
  position: relative;
  animation-name: nextCard;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 3s;
}

.page-category-container-card-middle.front.goToNext .page-category-container-card-middle-front {
  animation-name: showHideContent;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.page-category-container-card-middle.front.goToPrev {
  position: relative;
  animation-name: prevCard;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 3s;
}

.page-category-container-card-middle.front.goToPrev .page-category-container-card-middle-front {
  animation-name: showHideContent;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.page-category-container-card-middle.back {
  transform: rotateY(180deg);
  transition: transform ease 0.3s;
}

.page-category-container-card-middle.back .page-category-container-card-middle-back {
  transform: rotateY(180deg);
  animation-name: hideShowContent;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 2s;
}

.page-category-container-card-middle.back.goToNext {
  position: relative;
  animation-name: nextCard;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 3s;
}

.page-category-container-card-middle.back.goToNext .page-category-container-card-middle-back {
  animation-name: showHideContent;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.page-category-container-card-middle.back.goToPrev {
  position: relative;
  animation-name: prevCard;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 3s;
}

.page-category-container-card-middle.back.goToPrev .page-category-container-card-middle-back {
  animation-name: showHideContent;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.page-category-container-card-middle-front {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-category-container-card-middle-front textarea.error {
  border: 1px solid red;
  background-color: #1f0000;
}

.page-category-container-card-middle-front-term {
  caret-color: #23b3ab;
  font-size: 1.3rem;
  text-align: center;
  margin: auto 1%;
  color: #c1c1c1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  word-break: break-word;
  white-space: pre;
  width: 98%;
  resize: none;
  overflow: auto;
  padding: 1rem;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  tab-size: 2;
  -moz-tab-size: 2;
  -ms-tab-size: 2;
  background-color: #1d1d1d;
}

.page-category-container-card-middle-front-term::-webkit-scrollbar {
  display: none;
}

.page-category-container-card-middle-front-term:focus {
  outline: 1px solid #23b3ab;
}

.page-category-container-card-middle-front img + p {
  justify-content: start;
}

.page-category-container-card-middle-front .deletePhotoBtn {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  z-index: 1000;
  text-align: center;
  color: red;
  margin-right: auto;
  margin-left: auto;
  flex-shrink: 0 !important;
}

.page-category-container-card-middle-front .deletePhotoBtn:before {
  content: '';
  display: block;
  color: red;
  border-top: 4px solid red;
  transform: rotate(45deg);
  position: absolute;
  width: 20px;
  top: 10px;
}

.page-category-container-card-middle-front .deletePhotoBtn:after {
  content: '';
  display: block;
  color: red;
  border-bottom: 4px solid red;
  transform: rotate(-45deg);
  position: absolute;
  width: 20px;
  top: 10px;
}

.page-category-container-card-middle-front > img {
  margin: 5px auto;
  width: 60%;
  object-fit: contain;
  height: 250px;
  max-height: 250px;
  z-index: 1000;
  position: relative;
  transition: transform ease 0.2s;
}

.page-category-container-card-middle-front > img.hovered {
  transform: scale(1.5);
  z-index: 1000;
  position: relative;
}

.page-category-container-card-middle-back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-category-container-card-middle-back textarea.error {
  border: 1px solid red;
  background-color: #1f0000;
}

.page-category-container-card-middle-back-description {
  caret-color: #23b3ab;
  border: none;
  font-size: 0.9rem;
  text-align: left;
  margin: 0 1%;
  color: #c1c1c1;
  word-break: break-word;
  width: 98%;
  padding: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  white-space: pre;
  overflow: auto;
  resize: none;
  background-color: #1d1d1d;
  height: 100%;
  tab-size: 2;
  -moz-tab-size: 2;
  -ms-tab-size: 2;
}

.page-category-container-card-middle-back-description::-webkit-scrollbar {
  display: none;
}

.page-category-container-card-middle-back-description:focus {
  outline: 1px solid #23b3ab;
}

.page-category-container-card-middle-back img + p {
  justify-content: start;
}

.page-category-container-card-middle-back .deletePhotoBtn {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  z-index: 1000;
  text-align: center;
  color: red;
  margin-right: auto;
  margin-left: auto;
  flex-shrink: 0 !important;
}

.page-category-container-card-middle-back .deletePhotoBtn:before {
  content: '';
  display: block;
  color: red;
  border-top: 4px solid red;
  transform: rotate(45deg);
  position: absolute;
  width: 20px;
  top: 10px;
}

.page-category-container-card-middle-back .deletePhotoBtn:after {
  content: '';
  display: block;
  color: red;
  border-bottom: 4px solid red;
  transform: rotate(-45deg);
  position: absolute;
  width: 20px;
  top: 10px;
}

.page-category-container-card-middle-back > img {
  margin: 5px auto;
  width: 60%;
  object-fit: contain;
  height: 250px;
  max-height: 250px;
  z-index: 1000;
  position: relative;
  transition: transform ease 0.2s;
}

.page-category-container-card-middle-back > img.hovered {
  transform: scale(1.5);
  z-index: 1000;
  position: relative;
}

.page-category-container-card-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.page-category-container-card-bottom-left {
  text-decoration: none;
  color: #e0e0e0;
  position: relative;
  top: 1px;
}

.page-category-container-card-bottom-left:hover {
  color: black;
}

.page-category-container-card-bottom-right {
  text-decoration: none;
  color: #e0e0e0;
  position: relative;
}

.page-category-container-bottomBar {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #404040;
  position: relative;
  z-index: 3;
  padding: 0.5rem;
  background-color: #191919;
  text-decoration: none;
}

.page-category-container-bottomBar-new {
  border: 1px solid #9a9a9a;
  color: #9a9a9a;
  border-radius: 100%;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
  cursor: pointer;
  transition: all ease 0.3s;
}

.page-category-container-bottomBar:hover {
  background-color: #111111;
}

.page-category-container-bottomBar:hover > span {
  color: #00ffc4;
  border: 1px solid #006f4e;
  cursor: pointer;
  animation-name: new;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}

.page-category-container-card-new {
  width: 100px;
  height: 100px;
  border: 1px solid orange;
  margin: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 0.1rem;
  text-decoration: none;
  background-color: #ffffffe0;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
}

.page-category-container-card-new-link {
  width: 60%;
  height: 60%;
  margin: auto;
  padding: 10%;
  text-align: center;
  font-size: 1.8rem;
  border: 1px dashed grey;
  border-radius: 100%;
  transition: all ease-in 0.2s;
}

.page-category-container-card-new-link-button {
  font-weight: lighter;
  color: rgba(141, 141, 141, 0.88);
  display: inline-block;
}

.page-category-container-card-new-link-button:hover {
  color: orangered;
  transition: all ease-in 0.2s;
}

.term_file_name,
.description_file_name {
  color: red;
  font-size: 0.5rem;
  margin: 0 auto;
}

@keyframes new {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

@keyframes hideShowContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showHideContent {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes nextCard {
  0% {
    left: 0;
    opacity: 1;
  }
  25% {
    left: -100%;
    opacity: 0;
  }
  50% {
    transition: none;
    display: none;
    left: 100%;
    opacity: 0;
  }
  100% {
    display: block;
    left: 0;
    opacity: 1;
  }
}

@keyframes prevCard {
  0% {
    left: 0;
    opacity: 1;
  }
  25% {
    left: 100%;
    opacity: 0;
  }
  50% {
    transition: none;
    display: none;
    left: -100%;
    opacity: 0;
  }
  100% {
    display: block;
    left: 0;
    opacity: 1;
  }
}

.page-main-container {
  background-color: #ffffffe0;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
}

.page-main-container-form.light {
  background-color: #ffffff;
  border: 1px solid grey;
}

.page-main-container-form.light > input[type="text"] {
  background-color: #f1f1f1;
  border: 1px solid grey;
  color: #262626;
}

.page-main-container-form.light > input[type="file"] {
  color: black;
}

.page-main-container-form.light > label {
  color: black;
}

.page-main-container-form.light > input[type="file"]::-ms-browse {
  width: 70px;
  background-color: #c2fff5;
  border: 1px solid #67bdaf;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: #000000;
}

.page-main-container-form.light > input[type="file"]::-ms-browse:hover,
.page-main-container-form.light > input[type="file"]::-ms-browse:focus {
  background-color: #00ffd9;
  border: 1px solid #006c5d;
  transition: 0.1s;
}

.page-main-container-form.light > input[type="file"]::-webkit-file-upload-button {
  width: 70px;
  background-color: #c2fff5;
  border: 1px solid #67bdaf;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: #000000;
}

.page-main-container-form.light > input[type="file"]::-webkit-file-upload-button:hover,
.page-main-container-form.light > input[type="file"]::-webkit-file-upload-button:focus {
  background-color: #00ffd9;
  border: 1px solid #006c5d;
  transition: 0.1s;
}

.page-main-container-form.light > input[type="file"]::file-selector-button {
  width: 70px;
  background-color: #c2fff5;
  border: 1px solid #67bdaf;
  padding: .2em .4em;
  border-radius: .2em;
  transition: 0.1s;
  color: #000000;
}

.page-main-container-form.light > input[type="file"]::file-selector-button:hover,
.page-main-container-form.light > input[type="file"]::file-selector-button:focus {
  background-color: #00ffd9;
  border: 1px solid #006c5d;
  color: #000000;
  transition: 0.1s;
}

.page-main-container-form.light > select {
  background-color: #f1f1f1;
  color: black;
}

.page-main-container-form.light > textarea {
  background-color: #f1f1f1;
  border: 1px solid grey;
  color: black;
}

.page-main-container-form.light > a {
  border: none;
  background-color: orange;
}

.page-main-container-form.light > a:hover, .page-main-container-form.light > a:focus {
  background-color: orangered;
}

.page-main-container-form.light > input[type="submit"] {
  background-color: #00e086;
  color: white;
  font-weight: bold;
  -webkit-appearance: none;
}

.page-main-container-form.light > input[type="submit"]:hover, .page-main-container-form.light > input[type="submit"]:focus {
  background-color: #00ff7b;
}

.page-main-container-form-input {
  margin-top: 20px;
}

.delete-category {
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 100;
  background-color: #373636;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: saturate(100%) blur(3px);
  backdrop-filter: saturate(100%) blur(3px);
}

.delete-category.light {
  background-color: #f6f6f6;
}

.delete-category.light > div {
  background-color: #e0e0e0;
}

.delete-category.light > div div:nth-of-type(1) > span {
  color: black;
}

.delete-category.light > div div:nth-of-type(2) {
  background-color: #f6f6f6;
}

.delete-category.light > div div:nth-of-type(2) a:nth-of-type(1):hover, .delete-category.light > div div:nth-of-type(2) a:nth-of-type(1):focus {
  background-color: #37ff99;
  color: white;
}

.delete-category.light > div div:nth-of-type(2) a:nth-of-type(2):hover, .delete-category.light > div div:nth-of-type(2) a:nth-of-type(2):focus {
  background-color: #ff3857;
  color: white;
}

.delete-category-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  margin: auto;
  border-radius: 0 0 0.2rem 0.2rem;
  padding: 1rem;
  background-color: rgba(162, 162, 162, 0.45);
}

.delete-category-container-head {
  margin-bottom: 20px;
}

.delete-category-container-head-message {
  color: #ffffff;
}

.delete-category-container-bottom {
  display: flex;
  justify-content: space-around;
  font-weight: bold;
  background-color: rgba(49, 49, 49, 0.59);
  border-radius: 0.3rem;
}

.delete-category-container-bottom-yes {
  text-align: center;
  text-decoration: none;
  color: limegreen;
  width: 50%;
  padding: 0.4rem;
  transition: 0.2s ease-in all;
  background-color: rgba(100, 198, 100, 0.11);
  border-radius: 0.3rem 0 0 0.3rem;
}

.delete-category-container-bottom-yes:hover, .delete-category-container-bottom-yes:focus {
  background-color: #071d07;
  transition: 0.2s ease-in all;
}

.delete-category-container-bottom-no {
  text-align: center;
  text-decoration: none;
  color: red;
  width: 50%;
  padding: 0.4rem;
  transition: 0.2s ease-in all;
  background-color: rgba(241, 121, 121, 0.1);
  border-radius: 0 0.3rem 0.3rem 0;
}

.delete-category-container-bottom-no:hover, .delete-category-container-bottom-no:focus {
  background-color: #1d0707;
  transition: 0.2s ease-in all;
}

.delete-card {
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 999;
  background-color: #373636;
  width: 100%;
  height: 92.5%;
  -webkit-backdrop-filter: saturate(100%) blur(10px);
  backdrop-filter: saturate(100%) blur(10px);
}

.delete-card-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  margin: auto;
  border-radius: 0.2rem;
  padding: 1rem;
  background-color: rgba(162, 162, 162, 0.45);
}

.delete-card-container-head {
  margin-bottom: 20px;
}

.delete-card-container-head-message {
  color: #ffffff;
}

.delete-card-container-bottom {
  display: flex;
  justify-content: space-around;
  font-weight: bold;
  background-color: rgba(49, 49, 49, 0.59);
  border-radius: 0.3rem;
}

.delete-card-container-bottom-yes {
  text-align: center;
  text-decoration: none;
  color: limegreen;
  width: 50%;
  padding: 0.4rem;
  transition: 0.2s ease-in all;
  background-color: rgba(100, 198, 100, 0.11);
  cursor: pointer;
  border-radius: 0.3rem 0 0 0.3rem;
}

.delete-card-container-bottom-yes:hover, .delete-card-container-bottom-yes:focus {
  background-color: #071d07;
  transition: 0.2s ease-in all;
}

.delete-card-container-bottom-no {
  text-align: center;
  text-decoration: none;
  color: red;
  width: 50%;
  padding: 0.4rem;
  transition: 0.2s ease-in all;
  background-color: rgba(241, 121, 121, 0.1);
  cursor: pointer;
  border-radius: 0 0.3rem 0.3rem 0;
}

.delete-card-container-bottom-no:hover, .delete-card-container-bottom-no:focus {
  background-color: #1d0707;
  transition: 0.2s ease-in all;
}

.page-top {
  position: fixed;
  width: 100%;
  height: 50px;
  z-index: 3000;
  background-color: #292929f2;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
}

.page-top.light {
  background-color: rgba(255, 255, 255, 0.95);
}

.page-top-bar {
  width: 300px;
  height: 30px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  font-size: 0.7rem;
  background-color: #191919;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
  user-select: none !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
}

.page-top-bar .disabled::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(26, 26, 26, 0.96);
  z-index: 1000;
}

.page-top-bar .disabled:hover {
  transition: none;
  transform: none;
  border: none;
}

.page-top-bar.light {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid lightgrey;
}

.page-top-bar.light .disabled:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  z-index: 1000;
}

.page-top-bar-left {
  width: calc(100% / 3);
  display: flex;
  justify-content: center;
  margin: 0 2px;
}

.page-top-bar-left-exit {
  display: flex;
  margin: auto;
  width: calc(100% / 3);
  height: 100%;
  justify-content: center;
  cursor: pointer;
  transition: all ease-in 0.1s;
  font-size: 1.3rem;
  text-align: center;
  color: red;
  font-weight: bold;
  text-decoration: none;
  flex-direction: column;
}

.page-top-bar-left-exit > img {
  position: relative;
  width: 55%;
  height: 55%;
  margin: 0 auto;
}

.page-top-bar-left-exit:hover {
  transition: all ease 0.1s;
  border: 1px solid #b6b6b6;
}

.page-top-bar-left-reset {
  display: flex;
  margin: auto;
  width: calc(100% / 3);
  justify-content: center;
  cursor: pointer;
  transition: all ease-in 0.1s;
  position: relative;
  flex-direction: column;
}

.page-top-bar-left-reset > img {
  position: relative;
  width: 50%;
  height: 50%;
  margin: 0 auto;
}

.page-top-bar-left-reset:hover {
  transition: all ease 0.1s;
  border: 1px solid #b6b6b6;
}

.page-top-bar-left-auto {
  display: flex;
  margin: auto;
  width: calc(100% / 3);
  justify-content: center;
  cursor: pointer;
  transition: all ease-in 0.1s;
  position: relative;
  flex-direction: column;
}

.page-top-bar-left-auto > img {
  position: relative;
  width: 60%;
  height: 60%;
  margin: 0 auto;
}

.page-top-bar-left-auto:hover {
  transition: all ease 0.1s;
  border: 1px solid #b6b6b6;
}

.page-top-bar-middle {
  width: calc(100% / 3);
  display: flex;
  justify-content: center;
  border-left: 1px dotted rgba(52, 52, 52, 0.73);
  border-right: 1px dotted rgba(52, 52, 52, 0.73);
  margin: 0 2px;
}

.page-top-bar-middle-mode {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-top-bar-middle-mode-label {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-top-bar-middle-mode-label.dark {
  background: url("../media/switch-white.png") no-repeat;
  background-size: 100% 120%;
}

.page-top-bar-middle-mode-label.light {
  background: url("../media/switch-black.png") no-repeat;
  background-size: 100% 120%;
}

.page-top-bar-middle-mode-label.light > span:before {
  background: rgba(227, 227, 227, 0.92);
}

.page-top-bar-middle-mode-label.light > span:hover:before {
  border: 1px solid #232323;
}

.page-top-bar-middle-mode-label-button {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .5s;
  transition: all ease-in 0.2s;
}

.page-top-bar-middle-mode-label-button:hover:before {
  transition: all ease-in 0.2s;
  cursor: pointer;
  border: 1px solid #ffffff;
}

.page-top-bar-middle-mode-label-button:before {
  cursor: pointer;
  position: absolute;
  content: "";
  height: calc(100% - 2px);
  width: calc(100% / 2 - 1px);
  left: 0;
  bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid rgba(142, 142, 142, 0.73);
  background-color: rgba(76, 76, 76, 0.87);
}

.page-top-bar-middle-mode-label-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.page-top-bar-middle-mode-label-checkbox:checked + .page-top-bar-middle-mode-label-button:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  cursor: pointer;
}

.page-top-bar-right {
  width: calc(100% / 3);
  display: flex;
  justify-content: center;
  margin: 0 2px;
}

.page-top-bar-right-profile {
  display: flex;
  margin: auto;
  width: calc(100% / 3);
  justify-content: center;
  cursor: pointer;
  transition: all ease-in 0.1s;
  position: relative;
  flex-direction: column;
}

.page-top-bar-right-profile > img {
  position: relative;
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

.page-top-bar-right-profile:hover {
  transition: all ease 0.1s;
  border: 1px solid #b6b6b6;
}

.page-top-bar-right-mark {
  display: flex;
  margin: auto;
  width: calc(100% / 3);
  justify-content: center;
  cursor: pointer;
  transition: all ease-in 0.1s;
  position: relative;
  flex-direction: column;
}

.page-top-bar-right-mark > img {
  position: relative;
  width: 60%;
  height: 60%;
  margin: 0 auto;
}

.page-top-bar-right-mark:hover {
  transition: all ease 0.1s;
  border: 1px solid #b6b6b6;
}

.page-top-bar-right-view {
  display: flex;
  margin: auto;
  width: calc(100% / 3);
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: all ease-in 0.1s;
  position: relative;
}

.page-top-bar-right-view > img {
  position: relative;
  width: 65%;
  height: 65%;
  margin: 0 auto;
}

.page-top-bar-right-view:hover {
  transition: all ease 0.1s;
  border: 1px solid #b6b6b6;
}

.page-category-container.list {
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px);
  position: relative;
  z-index: 100;
}

.page-category-container.list .page-category-container-box {
  order: 1;
  width: 100%;
  position: sticky;
  box-shadow: 0px 2px 4px 1px black;
  z-index: 1000;
  max-width: 800px;
  top: 0;
}

.page-category-container.list #loadcard {
  order: 2;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: rgba(16, 16, 16, 0.81);
}

.page-category-container.list #loadcard.light {
  background-color: white;
  border-right: 1px solid black;
  border-left: 1px solid black;
}

.page-category-container.list #loadcard.light div {
  background-color: #e2e2e2;
  border: 1px solid black;
}

.page-category-container.list #loadcard.light div span {
  font-weight: bold;
}

.page-category-container.list #loadcard.light a {
  background-color: white;
}

.page-category-container.list #loadcard.light a div:nth-of-type(1) {
  border: none;
  background-color: white;
  border-right: 1px solid #2d2d2d;
  margin-right: 5px;
}

.page-category-container.list #loadcard.light a div:nth-of-type(1) pre {
  background-color: white;
  color: black;
}

.page-category-container.list #loadcard.light a div:nth-of-type(1) textarea {
  background-color: white;
  color: black;
}

.page-category-container.list #loadcard.light a div:nth-of-type(1) textarea:focus {
  outline: 1px solid #00ba9b;
}

.page-category-container.list #loadcard.light a div:nth-of-type(1) img {
  background-color: white;
  transition: transform ease 0.2s;
}

.page-category-container.list #loadcard.light a div:nth-of-type(1) img.hidePhoto {
  display: none;
}

.page-category-container.list #loadcard.light a div:nth-of-type(1) img.hovered {
  transform: scale(1.5);
  z-index: 1000;
  position: relative;
}

.page-category-container.list #loadcard.light a div:nth-of-type(2) {
  border: none;
  background-color: white;
  border-left: 1px solid #2d2d2d;
}

.page-category-container.list #loadcard.light a div:nth-of-type(2) pre {
  background-color: white;
  color: black;
}

.page-category-container.list #loadcard.light a div:nth-of-type(2) textarea {
  background-color: white;
  color: black;
}

.page-category-container.list #loadcard.light a div:nth-of-type(2) textarea:focus {
  outline: 1px solid #00ba9b;
}

.page-category-container.list #loadcard.light a div:nth-of-type(2) img {
  background-color: white;
  transition: transform ease 0.2s;
}

.page-category-container.list #loadcard.light a div:nth-of-type(2) img.hidePhoto {
  display: none;
}

.page-category-container.list #loadcard.light a div:nth-of-type(2) img.hovered {
  transform: scale(1.5);
  z-index: 1000;
  position: relative;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component {
  background-color: #f6f6f6;
  border: none;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div {
  background-color: #e0e0e0;
  border: none;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div {
  border: none;
  background-color: #f6f6f6;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div > span {
  color: black;
  font-weight: lighter;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div a:nth-of-type(1) {
  background-color: #dfffef;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div a:nth-of-type(1):hover, .page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div a:nth-of-type(1):focus {
  background-color: #37ff99;
  color: white;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div a:nth-of-type(2) {
  background-color: #ffe2e7;
}

.page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div a:nth-of-type(2):hover, .page-category-container.list #loadcard.light .page-category-container-cards-delete-component > div div a:nth-of-type(2):focus {
  background-color: #ff3857;
  color: white;
}

.page-category-container.list #loadcard .page-category-container-cards {
  width: 100%;
  background-color: #2d2d2d;
  margin: 2px 0;
  position: relative;
  border-bottom: 1px solid #4c4b4b;
}

.page-category-container.list #loadcard .page-category-container-cards.edit-active::before {
  content: attr(data-message);
  width: 110px;
  height: 11px;
  display: block;
  position: absolute;
  font-size: 0.6rem;
  padding: 2px;
  top: 0px;
  right: 17%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #009a74;
  color: #ffffff;
  border-radius: 0 0 0.2rem 0.2rem;
  z-index: 100;
}

.page-category-container.list #loadcard .page-category-container-cards.edit-active textarea {
  display: inline-table;
  margin: 4px;
}

.page-category-container.list #loadcard .page-category-container-cards.edit-active textarea:focus {
  outline: 1px solid #00ba9b;
}

.page-category-container.list #loadcard .page-category-container-cards-top {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.page-category-container.list #loadcard .page-category-container-cards-top-left {
  text-decoration: none;
  color: grey;
  position: relative;
  font-size: 0.6rem;
  padding: 2px;
}

.page-category-container.list #loadcard .page-category-container-cards-top-left:hover {
  color: red;
  cursor: pointer;
}

.page-category-container.list #loadcard .page-category-container-cards-top-right {
  text-decoration: none;
  color: grey;
  position: relative;
  font-size: 0.6rem;
  padding: 2px;
}

.page-category-container.list #loadcard .page-category-container-cards-top-right:hover {
  color: #00ba9b;
  cursor: pointer;
}

.page-category-container.list #loadcard .page-category-container-cards-top-right.active {
  color: #00ba9b;
}

.page-category-container.list #loadcard .page-category-container-cards-middle {
  padding: 5px;
  display: flex;
  background-color: #1d1d1d;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-front {
  width: 30%;
  height: 100%;
  border-right: 1px solid #4c4c4c;
  position: relative;
  background-color: #1d1d1d;
  flex-direction: column;
  margin-right: 4px;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-front-term {
  width: calc(100% - 2px);
  font-size: 0.7rem;
  color: #c1c1c1;
  padding: 5px;
  white-space: pre-line;
  word-break: break-word;
  resize: none;
  background-color: #1d1d1d;
  height: 100%;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-front-term-photo {
  width: 100%;
  height: 100%;
  padding: 5px;
  max-width: 200px;
  transition: transform ease 0.2s;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-front-term-photo.hidePhoto {
  display: none;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-front-term-photo.hovered {
  transform: scale(1.5);
  z-index: 1000;
  position: relative;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-back {
  width: 70%;
  height: 100%;
  position: relative;
  margin-top: -1px;
  margin-left: -1px;
  border-left: 1px solid #4c4c4c;
  background-color: #1d1d1d;
  flex-direction: column;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-back-description {
  font-size: 0.7rem;
  color: #c1c1c1;
  padding: 5px;
  width: calc(100% - 2px);
  border: none;
  white-space: pre;
  word-break: break-word;
  resize: none;
  background-color: #1d1d1d;
  height: 100%;
  tab-size: 2;
  -moz-tab-size: 2;
  -ms-tab-size: 2;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-back-description-photo {
  width: 100%;
  height: 100%;
  padding: 5px;
  max-width: 200px;
  transition: transform ease 0.2s;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-back-description-photo.hidePhoto {
  display: none;
}

.page-category-container.list #loadcard .page-category-container-cards-middle-back-description-photo.hovered {
  transform: scale(1.5);
  z-index: 1000;
  position: relative;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 600;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component .delete-card {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component .delete-card-container {
  height: 50px;
  flex-direction: row;
  background-color: #2a2a2a;
  width: 80%;
  border-radius: 0;
  position: relative !important;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component .delete-card-container-head {
  margin: 10px;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component .delete-card-container-head-message {
  color: #9e9e9e;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component .delete-card-container-bottom {
  font-size: 0.8rem;
  width: 80px;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component .delete-card-container-bottom-yes {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-category-container.list #loadcard .page-category-container-cards-delete-component .delete-card-container-bottom-no {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-category-container.list .page-category-container-bottomBar {
  order: 3;
  width: 100%;
  position: sticky;
  bottom: 0;
  box-shadow: 0px -2px 4px 1px black;
  border: none;
  z-index: 1000;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

textarea {
  border: none;
}

html {
  width: 100%;
  height: 100%;
  background: radial-gradient(#454545 92%, transparent 86%) 0 0, radial-gradient(#787878 1%, transparent 56%) 5px 19px, radial-gradient(rgba(255, 255, 255, 0.1) 5%, transparent 20%) 0 10px, radial-gradient(rgba(201, 201, 201, 0.1) 15%, transparent 20%) 6px 9px;
  background-color: #232323;
  background-size: 16px 16px;
}

html.light {
  background: radial-gradient(#ffffff 92%, transparent 86%) 0 0, radial-gradient(#787878 1%, transparent 56%) 5px 19px, radial-gradient(rgba(255, 255, 255, 0.1) 5%, transparent 20%) 0 10px, radial-gradient(rgba(201, 201, 201, 0.1) 15%, transparent 20%) 6px 9px;
  background-color: #afafaf;
  background-size: 16px 16px;
}

body {
  height: 100% !important;
  font-family: Verdana;
  font-weight: lighter;
}

body ::-moz-selection {
  background: orange;
  color: #343434;
}

body ::selection {
  background: orange;
  color: #343434;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
}

#title-bar {
  text-align: center;
  color: #1c1c1c;
  font-weight: bold;
  font-size: 1.1rem;
  top: 50px;
  left: 0;
  width: 100%;
  height: 30px;
  margin: 0 auto;
  z-index: 2000;
  border-top: 1px solid #ffa201;
  position: fixed;
  background-color: rgba(255, 121, 48, 0.88);
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
  box-shadow: 0px 6px 6px 0px #1c1c1c;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page::-webkit-scrollbar {
  display: none;
}

.page {
  padding-top: 100px;
  margin-left: auto;
  margin-right: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  background-color: transparent;
  position: relative;
  width: 95%;
  height: 100%;
}

.page #startingCounterDisplay {
  width: 100%;
  height: 100%;
  background-color: rgba(121, 121, 121, 0.93);
  position: absolute;
  z-index: 200;
  top: 0;
  font-size: 8rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}

.page-main-container {
  margin-bottom: 100px;
}

.page-profile-container {
  width: calc(100% - 2px);
  height: auto;
  padding: 0.2rem;
  position: absolute;
  top: -450px;
  display: block;
  transition: top ease 0.3s;
  z-index: 1000;
  background-color: #2d2d2d;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
  box-shadow: 0 0 3px 1px #1c1c1c;
  border: 1px solid black;
  margin: 0 1px;
}

.page-profile-container #delete-account-response {
  position: relative;
  width: 100%;
  display: block;
}

.page-profile-container #delete-account-response #delete-account-request {
  background-color: transparent;
  width: 100%;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: space-around;
}

.page-profile-container #delete-account-response #delete-account-request span {
  margin: auto;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  transition: background-color ease 0.3s;
}

.page-profile-container #delete-account-response #delete-account-request span:nth-of-type(1) {
  background-color: rgba(255, 0, 0, 0.1);
}

.page-profile-container #delete-account-response #delete-account-request span:nth-of-type(1):hover {
  background-color: red;
  color: #3e0000;
  cursor: pointer;
}

.page-profile-container #delete-account-response #delete-account-request span:nth-of-type(2) {
  background-color: rgba(0, 255, 123, 0.1);
}

.page-profile-container #delete-account-response #delete-account-request span:nth-of-type(2):hover {
  background-color: #00ff7b;
  color: #003b1a;
  cursor: pointer;
}

.page-profile-container #delete-my-profile {
  font-size: 0.8rem;
  color: #ff7070;
  position: relative;
  transition: color ease 0.3s;
  margin-bottom: 3px;
  display: block;
}

.page-profile-container #delete-my-profile:hover {
  color: red;
  cursor: pointer;
}

.page-profile-container #delete-my-profile:hover > span {
  opacity: 1;
}

.page-profile-container #delete-my-profile > span {
  opacity: 0;
  font-weight: bold;
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  transform: rotate(90deg);
  transition: opacity ease 0.3s;
}

.page-profile-container.light {
  background-color: white;
}

.page-profile-container.light > div > form > fieldset {
  border-color: rgba(245, 245, 245, 0.42);
}

.page-profile-container.light > div > form > fieldset legend {
  color: black;
}

.page-profile-container.light > div > form > fieldset input[type='text'],
.page-profile-container.light > div > form > fieldset input[type='password'] {
  background-color: #e8e8e8;
}

.page-profile-container.light > div > form > fieldset input[type='text']::placeholder,
.page-profile-container.light > div > form > fieldset input[type='password']::placeholder {
  color: #bababa;
}

.page-profile-container.light > div > form > fieldset input[type='submit'] {
  background-color: #00e086;
  color: white;
  font-weight: bold;
  -webkit-appearance: none;
}

.page-profile-container.light > div > form > fieldset input[type='submit']:hover, .page-profile-container.light > div > form > fieldset input[type='submit']:focus {
  background-color: #00ff7b;
}

.page-profile-container.light > div > form > fieldset #save-pass-message {
  color: green;
}

.page-profile-container.profile-active {
  top: 100px;
  display: block;
  transition: top ease 0.3s;
}

.page-profile-container-box {
  max-width: 300px;
  position: relative;
  width: auto;
  height: auto;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.page-profile-container-box-form {
  width: 100%;
  height: auto;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.page-profile-container-box-form fieldset {
  padding: 1rem;
  color: orange;
  border-color: #505050;
}

.page-profile-container-box-form fieldset input[type="password"],
.page-profile-container-box-form fieldset input[type="text"] {
  width: 100%;
  height: 30px;
  background-color: #6c6c6c;
  border: none;
  margin-bottom: 3px;
  padding: 0.2rem;
  color: #000000;
  font-size: 0.9rem;
}

.page-profile-container-box-form fieldset input[type="password"]::placeholder,
.page-profile-container-box-form fieldset input[type="text"]::placeholder {
  color: #898989;
}

.page-profile-container-box-form fieldset input[type="password"]:focus,
.page-profile-container-box-form fieldset input[type="text"]:focus {
  outline: 1px solid #868686;
}

.page-profile-container-box-form fieldset input[type="submit"] {
  width: 50%;
  height: 30px;
  margin: 0 auto;
  position: relative;
  background-color: #00ba9b;
  border: none;
  -webkit-appearance: none;
}

.page-profile-container-box-form fieldset input[type="submit"]:hover {
  background-color: #00deb5;
  cursor: pointer;
}

.page-profile-container-box-form fieldset #save-pass-message {
  font-size: 0.7rem;
  width: 100%;
  display: block;
  margin-top: 10px;
  color: red;
}

.page-profile-container-box-form fieldset #save-pass-message.success {
  color: #00e582;
}

input:focus {
  outline: 1px solid #9e9e9e;
}

.contact-container {
  position: fixed;
  bottom: 2px;
  left: 2px;
  z-index: 2000;
  opacity: 0.3;
}

.contact-container:hover {
  opacity: 1;
}

.contact-container-button {
  border-radius: 100%;
  background-color: #050505;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 3px 1px black;
  transition: all ease 0.3s;
  position: relative;
  z-index: 2000;
}

.contact-container-button > img {
  position: absolute;
  width: 60%;
  height: 60%;
  margin: 20%;
  transition: all ease 0.3s;
}

.contact-container-button > img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.contact-container-button:hover {
  transition: all ease 0.3s;
}

.contact-container.activate div:nth-of-type(2) {
  transition: all ease 0.3s;
  position: absolute;
  top: -158px;
  left: -2px;
}

.contact-container div:nth-of-type(2) {
  display: block;
  width: 170px;
  height: 200px;
  position: absolute;
  top: -158px;
  left: -202px;
  background-color: #363636;
  border: 1px solid #383838;
  border-radius: 0 0 0 25px;
  box-shadow: 0 0 2px 1px black;
  transition: all ease 0.3s;
}

.contact-container div:nth-of-type(2) form {
  padding: 5px;
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-container div:nth-of-type(2) form ::placeholder {
  color: #686868;
}

.contact-container div:nth-of-type(2) form input[type="text"] {
  width: 100%;
  margin-bottom: 2px;
  padding: 4px;
  background-color: #1c1c1c;
  border: none;
  color: #cbcbcb;
}

.contact-container div:nth-of-type(2) form input[type="text"]:focus {
  outline: 1px solid lightgrey;
}

.contact-container div:nth-of-type(2) form > textarea {
  width: 100%;
  height: calc(100% - 75px);
  resize: none;
  padding: 4px;
  background-color: #1c1c1c;
  border: none;
  color: #cbcbcb;
}

.contact-container div:nth-of-type(2) form > textarea:focus {
  outline: 1px solid lightgrey;
}

.contact-container div:nth-of-type(2) form input[type="submit"] {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: auto;
  padding: 5px;
  border: none;
  background-color: #494949;
  font-size: 0.7rem;
  transition: all ease 0.3s;
  border-radius: 0.2rem;
  -webkit-appearance: none;
}

.contact-container div:nth-of-type(2) form input[type="submit"]:hover {
  background-color: #ff7600;
}

.contact-container div:nth-of-type(2) form #error-message-admin-form {
  display: block;
  width: 70%;
  height: 22px;
  position: absolute;
  right: 4px;
  font-size: 0.6rem;
  color: red;
  padding: 2px;
}

.contact-container.light div:nth-of-type(1) {
  background-color: white;
  z-index: 2000;
  transition: all ease 0.3s;
}

.contact-container.light div:nth-of-type(1):hover {
  opacity: 1;
}

.contact-container.light.activate div:nth-of-type(2) {
  transition: all ease 0.3s;
  position: absolute;
  top: -158px;
  left: -2px;
}

.contact-container.light div:nth-of-type(2) {
  display: block;
  width: 170px;
  height: 200px;
  position: absolute;
  top: -158px;
  left: -202px;
  background-color: white;
  border: 1px solid grey;
  border-radius: 0 0 0 25px;
  box-shadow: 0 0 2px 1px black;
  transition: all ease 0.3s;
}

.contact-container.light div:nth-of-type(2) form {
  padding: 5px;
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-container.light div:nth-of-type(2) form input[type="text"] {
  width: 100%;
  margin-bottom: 4px;
  padding: 4px;
  background-color: #d5d5d5;
  color: black;
}

.contact-container.light div:nth-of-type(2) form input[type="text"]:focus {
  outline: 1px solid black;
}

.contact-container.light div:nth-of-type(2) form > textarea {
  width: 100%;
  height: calc(100% - 75px);
  resize: none;
  padding: 4px;
  background-color: #d5d5d5;
  color: black;
}

.contact-container.light div:nth-of-type(2) form > textarea:focus {
  outline: 1px solid black;
}

.contact-container.light div:nth-of-type(2) form input[type="submit"] {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: auto;
  padding: 5px;
  border: none;
  background-color: #e7e7e7;
  font-size: 0.7rem;
  transition: all ease 0.3s;
  border-radius: 0.2rem;
  -webkit-appearance: none;
}

.contact-container.light div:nth-of-type(2) form input[type="submit"]:hover {
  background-color: #00ffc4;
}

.policy {
  position: absolute;
  width: 100%;
  height: calc(100% - 70px);
  margin-left: auto;
  margin-right: auto;
  top: 50px;
  font-size: 0.7rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: #e5e5e5;
  text-shadow: 1px 1px 1px black;
}

.policy a {
  color: orangered;
}

.page-category-container.edit-active textarea {
  border: 1px solid grey !important;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.page-automatic-container {
  width: calc(100% - 2px);
  height: auto;
  padding: 0.2rem;
  position: absolute;
  top: -450px;
  display: block;
  transition: top ease 0.3s;
  z-index: 1000;
  background-color: #2d2d2d;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
  box-shadow: 0 0 3px 1px #1c1c1c;
  border: 1px solid black;
  margin: 0 1px;
}

.page-automatic-container.automatic-active {
  top: 100px;
  display: block;
  transition: top ease 0.3s;
  z-index: 2000;
}

.page-automatic-container > h3 {
  text-align: center;
  color: lightgrey;
}

.page-automatic-container-box {
  display: flex;
  justify-content: space-around;
}

.page-automatic-container-box input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.page-automatic-container-box-top {
  display: flex;
  flex-direction: column;
}

.page-automatic-container-box-top > label {
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  color: #a5a5a5;
}

.page-automatic-container-box-top > input {
  background-color: #181818;
  border: 1px solid grey;
  width: 60px;
  height: 50px;
  margin: 0 auto;
  font-size: 1.4rem;
  color: grey;
  text-align: center;
}

.page-automatic-container-box-top > input:focus {
  border: 1px solid #c4c4c4;
}

.page-automatic-container-box-middle {
  display: flex;
  flex-direction: column;
}

.page-automatic-container-box-middle > label {
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  color: #a5a5a5;
}

.page-automatic-container-box-middle > input {
  background-color: #181818;
  border: 1px solid grey;
  width: 60px;
  height: 50px;
  margin: 0 auto;
  font-size: 1.4rem;
  color: grey;
  text-align: center;
}

.page-automatic-container-box-middle > input:focus {
  border: 1px solid #c4c4c4;
}

.page-automatic-container-box-bottom {
  display: flex;
  flex-direction: column;
}

.page-automatic-container-box-bottom > label {
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  color: #a5a5a5;
}

.page-automatic-container-box-bottom > input {
  background-color: #181818;
  border: 1px solid grey;
  width: 60px;
  height: 50px;
  margin: 0 auto;
  font-size: 1.4rem;
  color: grey;
  text-align: center;
}

.page-automatic-container-box-bottom > input:focus {
  border: 1px solid #c4c4c4;
}

.page-automatic-container-buttons {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.page-automatic-container-buttons span {
  display: block;
  padding: 10px;
  border: 1px solid transparent;
  margin: 0 2px;
}

.page-automatic-container-buttons span:nth-of-type(1) {
  color: #00de98;
  font-weight: bold;
  transition: all ease 0.4s;
}

.page-automatic-container-buttons span:nth-of-type(1):hover {
  background-color: #00231b;
  border: 1px solid #00de98;
  border-radius: 0.2rem;
  cursor: pointer;
}

.page-automatic-container-buttons span:nth-of-type(2) {
  font-weight: bold;
  color: red;
  transition: all ease 0.4s;
}

.page-automatic-container-buttons span:nth-of-type(2):hover {
  background-color: #2d0000;
  border: 1px solid red;
  border-radius: 0.2rem;
  cursor: pointer;
}

.page-automatic-container .message-time {
  text-align: center;
  font-size: 0.6rem;
  color: #ff3434;
  padding-bottom: 10px;
}

.page-automatic-container.light {
  width: calc(100% - 2px);
  height: auto;
  padding: 0.2rem;
  position: absolute;
  top: -450px;
  display: block;
  transition: top ease 0.3s;
  z-index: 1000;
  background-color: #ffffff;
  -webkit-backdrop-filter: saturate(30%) blur(1px);
  backdrop-filter: saturate(1%) blur(1px);
  box-shadow: 0 0 3px 1px #1c1c1c;
  border: 1px solid black;
  margin: 0 1px;
}

.page-automatic-container.light.automatic-active {
  top: 100px;
  display: block;
  transition: top ease 0.3s;
  z-index: 3000;
}

.page-automatic-container.light > h3 {
  text-align: center;
  color: #3d3d3d;
}

.page-automatic-container.light label {
  color: grey;
}

.page-automatic-container.light input {
  background-color: #eeeeee;
  color: black;
  margin: 0 auto;
}

.page-automatic-container.light #start-timer {
  border-radius: 0.2rem;
}

.page-automatic-container.light #start-timer:hover {
  background-color: #5dffda;
  color: #003b29;
  cursor: pointer;
}

.page-automatic-container.light #stop-timer {
  border-radius: 0.2rem;
}

.page-automatic-container.light #stop-timer:hover {
  background-color: #ff6d6d;
  color: #470000;
  cursor: pointer;
}

footer {
  position: relative;
  bottom: 0;
  height: 40px;
  background-color: #0e0e0e;
  width: 100%;
}

footer > div {
  width: 100px;
  height: 100%;
  margin: 0 auto;
}

footer > div > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: grey;
  font-size: 0.8rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

footer > div > span > span {
  color: white;
}

#image-big {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  background-color: rgba(45, 45, 45, 0.95);
}

#image-big.activated {
  display: flex;
}

#image-big.activated > img {
  display: flex;
  width: 70%;
  position: relative;
  margin: auto;
  justify-content: center;
  flex-direction: column;
}

.language-form {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2000;
}

.language-form-select {
  -moz-appearance: none;
  appearance: none;
  background-color: #2d2d2d;
  color: grey;
  border: 1px solid grey;
  -webkit-appearance: none;
  padding: 3px;
}

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