/*     OTHERS         */
@font-face {
  font-family: "JetBrainsMono";
  src: url("../fonts/JetBrainsMono-2.304/webfonts/JetBrainsMono-Regular.woff2") format("woff2"), url("../fonts/JetBrainsMono-2.304/ttf/JetBrainsMonoNL-Regular.ttf");
}
@font-face {
  font-family: "JetBrainsMono_Italic";
  src: url("../fonts/JetBrainsMono-2.304/webfonts/JetBrainsMono-Italic.woff2") format("woff2"), url("../fonts/JetBrainsMono-2.304/ttf/JetBrainsMono-Italic.ttf");
}
@font-face {
  font-family: "Syne Mono";
  src: url("../fonts/SyneMono/SyneMono-Regular.woff2") format("woff2"), url("../fonts/SyneMono/SyneMono-Regular.ttf");
}
.JetBrainsMono {
  font-family: "JetBrainsMono", monospace !important;
}

.JetBrainsMono_Italic {
  font-family: "JetBrainsMono_Italic", JetBrainsMono-Italic, cursive !important;
}

.SyneMono {
  font-family: "Syne Mono", monospace !important;
}

.fs-65p {
  font-size: 65%;
}

.scrollie-hidden {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollie-hidden::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

/*     OTHERS         */
nav {
  position: sticky;
  top: 0;
  min-height: 3rem;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.75rem;
  padding: 0.2rem 1.2rem 0.2rem;
  justify-items: center;
  background-color: #188781;
  box-shadow: 0 0 2rem 0.5rem #177e78;
  z-index: 13;
}
nav .left {
  justify-self: start;
}
nav .left .title {
  font-family: "Syne Mono", monospace !important;
  font-size: xx-large;
}
nav .right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
nav .right img {
  max-height: 1.75rem;
}
nav .collapsable {
  display: flex;
  user-select: none;
}
nav .collapsable .burger {
  /*top: 0.5rem;
right: 0.5rem;*/
  display: flex;
  justify-content: end;
}
nav .collapsable .burger img {
  margin: 0.45rem;
  padding: 0;
  height: 2.5rem;
  transition: 0.2s all ease-in;
}
nav .collapsable .items {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 1rem;
  top: 2rem;
  right: 2rem;
  padding: 0;
  perspective: 1000px;
  background-color: #1ea9a2;
  border-radius: 1rem;
  border: solid 0.05rem #1da199;
}
nav .collapsable .items > a {
  display: inline-block;
  text-align: center;
  align-content: center;
}
nav .collapsable .items > a:hover {
  border-radius: 0.1rem;
  transition: 0.2s all cubic-bezier(0.52, 0.22, 0.25, 0.81);
  transform: rotateX(-10deg) scale(1.06);
}
nav .collapsable .items form.search {
  display: flex;
  align-items: stretch;
  height: 2.2rem;
  margin: auto 0;
  border: 0.1rem solid #14716c;
  border-radius: 0.2rem;
}
nav .collapsable .items form.search input:hover {
  background-color: #006054 !important;
}
nav .collapsable .items form.search input:-webkit-autofill {
  -webkit-box-shadow: 0 0 3.125rem #002d27 inset !important;
  background-color: transparent !important;
  background-clip: text;
  -webkit-text-fill-color: #FFFFFF !important;
}
nav .collapsable .items form.search input[type=image] {
  background-color: #1b948d;
  padding: 0.15rem;
  border-top-right-radius: 0.15rem;
}
nav .collapsable .items form.search input[type=image]:hover {
  background-color: #1c9c95 !important;
}
nav .collapsable .items form.search label {
  border-right: 0.1rem solid #002d27;
  height: 100%;
  width: 100%;
  align-content: center;
  overflow: hidden;
}
nav .collapsable .items form.search input[type=text] {
  background-color: #00463e;
  border: none;
  padding: 0 0 0 0.5rem;
  height: 100%;
  width: 100%;
  color: #FFFFFF;
}
nav .collapsable .items form.search input[type=text]:focus {
  background-color: #006054;
  outline: none;
}
nav .collapsable .items #searchResult {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  position: absolute;
  display: flex;
  flex-flow: column;
  margin-bottom: -3rem;
  background-color: #005a50;
  width: 15rem;
  overflow: scroll;
  gap: 0.1rem;
  border: 0.1rem solid #002d27;
}
nav .collapsable .items #searchResult::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}
:not(:has(.result)) nav .collapsable .items #searchResult {
  display: none;
}
nav .collapsable .items #searchResult:has(.result) #noResults {
  display: none;
}
nav .collapsable .items #searchResult .result {
  display: flex;
  align-items: center;
  background-color: #006a5d;
}
nav .collapsable .items #searchResult .result:hover {
  background-color: #00554b;
}
nav .collapsable .items #searchResult .result .shortcode {
  padding: 0 0.25rem;
  color: #e6e6e6;
  font-size: 0.85rem;
}
nav .collapsable .items #searchResult .result .shortcode:hover {
  background-color: #003c35;
}
nav .collapsable[data-collapsable=true] {
  flex-flow: column;
}
nav .collapsable[data-collapsable=true] .items {
  display: flex;
  position: absolute;
  flex-flow: column;
  align-items: stretch;
  gap: 0.5rem;
  height: 0;
  overflow: hidden;
  transition: 0.2s all cubic-bezier(0.52, 0.22, 0.25, 0.81);
  pointer-events: none;
}
nav .collapsable[data-collapsable=true] .items > a {
  padding: 0 0.45rem;
}
nav .collapsable[data-collapsable=true][data-collapsed=true] .items {
  opacity: 0;
}
nav .collapsable[data-collapsable=true][data-collapsed=false] .items {
  opacity: 1;
  pointer-events: auto;
  margin: 0.75rem 2rem;
  border-top-right-radius: 0.3rem;
  height: 5rem;
}
nav .collapsable[data-collapsable=true][data-collapsed=false] .burger > img {
  transform: rotateZ(90deg);
}
nav .collapsable:not([data-collapsable]), nav .collapsable[data-collapsable=false] {
  flex-flow: row;
}
nav .collapsable:not([data-collapsable]) .burger, nav .collapsable[data-collapsable=false] .burger {
  opacity: 0;
}
nav .collapsable:not([data-collapsable]) .burger img, nav .collapsable[data-collapsable=false] .burger img {
  margin: 0;
}
nav .collapsable:not([data-collapsable]) .items, nav .collapsable[data-collapsable=false] .items {
  opacity: 0;
  padding: 0 0.5rem;
}
nav .collapsable:not([data-collapsable]) .items > a, nav .collapsable[data-collapsable=false] .items > a {
  padding: 0.05rem 0.25rem;
}
nav .collapsable[data-collapsable=false] .items {
  opacity: 1;
  animation: 1.5s cubic-bezier(0.65, 0.23, 0.21, 0.88) popout;
}

.dropdown {
  max-height: 2rem;
}
.dropdown > img {
  max-height: inherit !important;
}
.dropdown .linkIcon {
  display: none;
}
.dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  flex-flow: row-reverse;
  transition: 0.2s all ease-in;
  position: absolute;
  top: 3.5rem;
  right: 0;
  transform: translateX(-18%);
  background-color: #006a5d;
  border-radius: 0.2rem;
  padding: 0.15rem 0.3rem;
  gap: 0.2rem;
}
.dropdown .dropdown-menu > a {
  display: flex;
  flex-flow: column;
  font-size: 0.6rem;
  color: #FFFFFF;
  text-decoration: none;
  align-items: center;
  transition: 0.2s all cubic-bezier(0.52, 0.22, 0.25, 0.81);
  border-radius: 0.2rem;
}
.dropdown .dropdown-menu > a:hover {
  transform: scaleX(105%);
  background-color: #008879;
  color: #C70039;
}
.dropdown:hover {
  opacity: 1;
}
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  display: flex;
  margin-top: -1rem;
}

/*     OTHERS         */
html, body {
  --bs-text-opacity: 1;
  color: #FFFFFF !important;
  background-color: #17827d;
}
html *, body * {
  font-family: "JetBrainsMono", monospace !important;
}

html {
  --thumb-color: #114228;
  --track-color: #010E23;
  overflow-y: auto;
  overflow-x: hidden !important;
  scrollbar-color: var(--thumb-color) var(--track-color);
  scrollbar-width: thin;
  -ms-overflow-style: none;
  font-size: 1rem;
  scroll-padding-top: 3.7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
  background-color: var(--track-color);
}
html::-webkit-scrollbar-thumb {
  background-color: var(--thumb-color);
  border-radius: 0.5rem;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
}

.bookmark {
  position: sticky;
  display: inline-block;
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  left: 90%;
  border-right: #C70039 0.1rem solid;
  padding-right: 0.1rem;
}

#work_experience, #knowledge, #knowledge_chart, #projects, #education {
  width: 100%;
}

#knowledge_chart {
  height: 18rem;
}

#wrapper-content > div {
  animation: 0.95s cubic-bezier(0.65, 0.23, 0.21, 0.88) popout;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.row {
  flex-flow: row;
}

.justify-content-center {
  justify-content: center;
}

.exp_wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.exp_wrapper .title {
  display: flex;
  flex: 1 0 45%;
  text-decoration: underline;
  align-items: center;
  color: white;
}
.exp_wrapper .title img {
  max-height: 1.1rem;
  margin: 0 0.2rem;
}
.exp_wrapper .title sub {
  margin-left: 0.2rem;
  font-size: 0.6rem;
  align-self: end;
}
.exp_wrapper .timeframe {
  flex: 1 0 55%;
  text-align: right;
}
.exp_wrapper .description {
  width: 100%;
  font-size: 0.9rem;
  padding-left: 0.3rem;
  color: #ebebeb;
}

hr {
  margin: 2rem 0;
  width: 30%;
  border-color: #051b1a;
}

a[href]:not(.bookmark) {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 0.1rem;
  text-shadow: 0.02rem 0.02rem 0.02rem #bb083a;
}
a[href]:not(.bookmark):hover {
  color: #f0f0f0;
  text-decoration: underline;
}

img.linkIcon {
  position: relative;
  bottom: -0.22rem;
  max-height: 0.95rem;
}

.expiration-time {
  display: flex;
  flex-flow: row;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.expiration-time a {
  margin: 0 0.2rem;
  padding: 0.25rem 0.33rem;
  background-color: #005047;
  line-height: 0.8rem;
  border-radius: 0.25rem;
  transition: background-color 0.25s cubic-bezier(0.65, 0.23, 0.21, 0.88), transform 0.5s ease;
  text-align: center;
  align-content: center;
}
.expiration-time a:hover {
  background-color: #006559;
}

.error-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
  text-align: center;
  flex-flow: column;
  margin: 1% 0;
  font-size: x-large;
}
.error-wrapper .text {
  font-family: "JetBrainsMono_Italic", JetBrainsMono-Italic, cursive !important;
  margin: 1rem 0;
}
.error-wrapper .error-img {
  height: 60%;
}
.error-wrapper .error-img img {
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
}

[copyValue] img {
  pointer-events: none;
}

.stats_chart {
  height: 15rem;
  width: 33%;
}

#statistics {
  display: flex;
  flex-flow: column;
  height: 19rem;
  width: 100%;
  padding: 1rem;
  justify-content: center;
  background-color: rgba(17, 96, 92, 0.92);
  border: 0.2rem solid #0d4643;
  border-radius: 0.35rem;
  gap: 4rem;
}
#statistics .title {
  margin: 0 0 -0.5rem;
  padding: 0.5rem 0 0 -0.5rem;
}

#stats_container {
  display: flex;
  flex-flow: row;
  width: 100%;
  height: 100%;
}

@keyframes bubble {
  0% {
    transform: translateY(0%);
    opacity: 0.06;
  }
  100% {
    transform: translateY(-120vh);
  }
}
@keyframes sideWays {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: 12.5rem;
  }
}
.bubbley {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 100%;
  position: absolute;
  background-color: white;
  bottom: -1.875rem;
  opacity: 0.2;
  animation: bubble 15s ease-in-out infinite, sideWays 4s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.bubbley--1 {
  width: 1.875rem;
  height: 1.875rem;
  left: 10%;
  animation-delay: 0.5s;
  animation-duration: 16s;
  opacity: 0.2;
  bottom: -1.875rem;
}
.bubbley--2 {
  width: 0.9375rem;
  height: 0.9375rem;
  left: 40%;
  animation-delay: 1s;
  animation-duration: 10s;
  opacity: 0.1;
  bottom: -1.875rem;
}
.bubbley--3 {
  width: 0.625rem;
  height: 0.625rem;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 20s;
  opacity: 0.3;
  bottom: -1.875rem;
}
.bubbley--4 {
  width: 1.5625rem;
  height: 1.5625rem;
  left: 40%;
  animation-delay: 8s;
  animation-duration: 17s;
  opacity: 0.2;
  bottom: -1.875rem;
}
.bubbley--5 {
  width: 1.875rem;
  height: 1.875rem;
  left: 60%;
  animation-delay: 10s;
  animation-duration: 15s;
  opacity: 0.1;
  bottom: -1.875rem;
}
.bubbley--6 {
  width: 0.625rem;
  height: 0.625rem;
  left: 80%;
  animation-delay: 3s;
  animation-duration: 30s;
  opacity: 0.4;
  bottom: -1.875rem;
}
.bubbley--7 {
  width: 0.9375rem;
  height: 0.9375rem;
  left: 90%;
  animation-delay: -7s;
  animation-duration: 25s;
  opacity: 0.3;
  bottom: -1.875rem;
}
.bubbley--9 {
  width: 1.25rem;
  height: 1.25rem;
  left: 50%;
  animation-delay: -5s;
  animation-duration: 19s;
  opacity: 0.2;
  bottom: 1.875rem;
}
.bubbley--10 {
  width: 2.5rem;
  height: 2.5rem;
  left: 30%;
  animation-delay: -21s;
  animation-duration: 16s;
  opacity: 0.3;
  bottom: 1.875rem;
}
.bubbley--11 {
  width: 1.875rem;
  height: 1.875rem;
  left: 60%;
  animation-delay: -13.75s;
  animation-duration: 20s;
  opacity: 0.3;
  bottom: 1.875rem;
}
.bubbley--12 {
  width: 1.5625rem;
  height: 1.5625rem;
  left: 90%;
  animation-delay: -10.5s;
  animation-duration: 19s;
  opacity: 0.3;
  bottom: 1.875rem;
}

html, body {
  background-image: linear-gradient(0deg, #182848, #2980b9);
}

#sea-effects {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

#alerts {
  position: absolute;
  display: flex;
  flex-flow: column;
  z-index: 10;
  top: 15%;
  width: 100%;
  pointer-events: none;
}

.alert {
  position: relative;
  pointer-events: all;
  margin-bottom: 0.5rem;
  width: 16rem;
  height: auto;
  min-width: 16rem;
  padding: 0.15rem;
  border-radius: 0.3rem;
  background-color: #1b9891;
  border-color: #003c35;
  cursor: pointer;
  animation: green_glow 5s infinite;
}
.alert span {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  transition: all 60ms ease-in;
  border-radius: 0.3rem;
}
.alert .notification-info {
  text-align: end;
  padding-right: 0.5rem;
}
.alert .content {
  padding: 0;
  margin: 0;
}
.alert input[type=checkbox]:not(:checked) ~ .notification-info {
  opacity: 0;
  height: 0;
}
.alert input[type=checkbox]:checked ~ .content {
  opacity: 0;
  height: 0;
}
~ .alert input[type=checkbox]:checked {
  left: 1%;
  transform: translateX(1%);
}
.alert:has(input:checked) {
  left: -10vw;
  transform: translateX(-10vw);
}
.alert input[type=checkbox] {
  display: none;
}
.alert:not(:has(.content)) {
  display: none !important;
}
.alert .error {
  background-color: #F50B4D;
  border: 1px solid #EDD;
}
.alert .info {
  background-color: #bbab31;
}

@media only screen and (max-device-width: 768px), only screen and (max-width: 768px) {
  .title {
    font-size: 3rem !important;
  }
  .index-box .t-form {
    max-width: 80% !important;
    width: 100% !important;
    padding: 0 1rem !important;
  }
  .index-box .t-form label {
    font-size: 1.8rem !important;
  }
  .index-box .t-form input {
    font-size: 1.65rem !important;
  }
  .index-box .results {
    max-width: unset !important;
  }
}
.turtle-box {
  position: absolute;
  top: 20%;
  right: 2%;
  opacity: 80%;
}

.index-box {
  display: flex;
  position: relative;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.index-box .title {
  font-family: "Syne Mono", monospace !important;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 4.44rem;
}
.index-box .t-form {
  background-color: #00796B;
  border: 0.1rem solid #007466;
  border-radius: 0.33rem;
  align-self: center;
  max-width: 15rem;
  opacity: 0.97;
}
.index-box .t-form input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  outline: none;
}
.index-box .results {
  display: flex;
  margin: 1rem 5rem 0;
  line-break: anywhere;
  align-self: center;
  gap: 0.5rem;
  max-width: 50%;
}
.index-box .results .result-table {
  flex: 1 1 auto;
}
.index-box .result-table {
  padding: 0.13rem;
  background-color: #14716c;
  border: 0.2rem solid #0d4643;
  border-radius: 0.33rem;
  min-width: fit-content;
}
.index-box .result-table div {
  color: #d6d6d6;
  overflow: hidden;
  line-break: anywhere;
  line-height: 1rem;
  max-height: 2rem;
}
.index-box .result-table .copy-wrapper {
  position: relative;
  margin: 0 0 0 0.3rem;
  width: 1.44rem;
  user-select: none;
}
.index-box .result-table .copy-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: all 100ms ease-in;
}
.index-box .result-table .copy-wrapper:hover img:first-child {
  transform: translate(-50%, -50%) scale(115%);
}
.index-box .result-table .copy-wrapper img:last-child {
  opacity: 0;
  scale: 0;
}
.index-box .result-table .copy-wrapper.success img:first-child {
  transform: translate(-50%, -50%) scale(0);
}
.index-box .result-table .copy-wrapper.success img:last-child {
  opacity: 1;
  scale: 100%;
}
.index-box .result-table table {
  width: 100%;
  border-collapse: collapse;
}
.index-box .result-table table > tbody > tr {
  border-top: 0.1rem solid #0d4643;
}
.index-box .result-table table > tbody > tr th, .index-box .result-table table > tbody > tr td {
  min-width: fit-content;
  text-align: center;
  padding: 0.15rem 0.5rem;
  margin: 0;
}
.index-box .result-table table > tbody > tr th {
  text-wrap: pretty;
}
.index-box .result-table table > tbody > tr td {
  display: flex;
  max-height: 35vw;
  overflow: hidden;
  justify-content: center;
}
.index-box .result-table table > tbody > tr td a {
  width: fit-content;
  overflow: hidden;
  overflow-wrap: anywhere;
  align-self: center;
}

.flex-col {
  flex-flow: column;
}

.t-form {
  display: flex;
  align-content: center;
  padding: 0.55rem 0;
  animation: green_glow 5s infinite;
}
.t-form input {
  color: inherit;
  border: unset;
  transition: all 60ms ease-in;
  padding: 0.2rem;
}
.t-form label {
  display: flex;
  flex-flow: column;
  padding: 0.7rem 0;
  width: 100%;
}
.t-form label[for=alias] {
  padding: 0;
}
.t-form input[type=text], .t-form input[type=date], .t-form input[type=datetime-local],
.t-form input[type=url], .t-form input[type=password], .t-form [for=searchable] > a[href] {
  font-size: 1rem;
  background-color: #006559;
  align-content: center;
  padding: 0 1rem;
}
.t-form input[type=text]:focus, .t-form input[type=date]:focus, .t-form input[type=datetime-local]:focus,
.t-form input[type=url]:focus, .t-form input[type=password]:focus, .t-form [for=searchable] > a[href]:focus {
  outline: 0.1rem solid #005a50;
}
.t-form input[type=text]:hover, .t-form input[type=date]:hover, .t-form input[type=datetime-local]:hover,
.t-form input[type=url]:hover, .t-form input[type=password]:hover, .t-form [for=searchable] > a[href]:hover {
  background-color: #005047;
}
.t-form input[type=text]::-webkit-datetime-edit-day-field:focus, .t-form input[type=text]::-webkit-datetime-edit-month-field:focus, .t-form input[type=text]::-webkit-datetime-edit-year-field:focus, .t-form input[type=text]::-webkit-datetime-edit-hour-field:focus, .t-form input[type=text]::-webkit-datetime-edit-minute-field:focus, .t-form input[type=date]::-webkit-datetime-edit-day-field:focus, .t-form input[type=date]::-webkit-datetime-edit-month-field:focus, .t-form input[type=date]::-webkit-datetime-edit-year-field:focus, .t-form input[type=date]::-webkit-datetime-edit-hour-field:focus, .t-form input[type=date]::-webkit-datetime-edit-minute-field:focus, .t-form input[type=datetime-local]::-webkit-datetime-edit-day-field:focus, .t-form input[type=datetime-local]::-webkit-datetime-edit-month-field:focus, .t-form input[type=datetime-local]::-webkit-datetime-edit-year-field:focus, .t-form input[type=datetime-local]::-webkit-datetime-edit-hour-field:focus, .t-form input[type=datetime-local]::-webkit-datetime-edit-minute-field:focus,
.t-form input[type=url]::-webkit-datetime-edit-day-field:focus,
.t-form input[type=url]::-webkit-datetime-edit-month-field:focus,
.t-form input[type=url]::-webkit-datetime-edit-year-field:focus,
.t-form input[type=url]::-webkit-datetime-edit-hour-field:focus,
.t-form input[type=url]::-webkit-datetime-edit-minute-field:focus, .t-form input[type=password]::-webkit-datetime-edit-day-field:focus, .t-form input[type=password]::-webkit-datetime-edit-month-field:focus, .t-form input[type=password]::-webkit-datetime-edit-year-field:focus, .t-form input[type=password]::-webkit-datetime-edit-hour-field:focus, .t-form input[type=password]::-webkit-datetime-edit-minute-field:focus, .t-form [for=searchable] > a[href]::-webkit-datetime-edit-day-field:focus, .t-form [for=searchable] > a[href]::-webkit-datetime-edit-month-field:focus, .t-form [for=searchable] > a[href]::-webkit-datetime-edit-year-field:focus, .t-form [for=searchable] > a[href]::-webkit-datetime-edit-hour-field:focus, .t-form [for=searchable] > a[href]::-webkit-datetime-edit-minute-field:focus {
  background-color: #006559;
  color: white;
}
.t-form input[type=text]:-webkit-autofill, .t-form input[type=date]:-webkit-autofill, .t-form input[type=datetime-local]:-webkit-autofill,
.t-form input[type=url]:-webkit-autofill, .t-form input[type=password]:-webkit-autofill, .t-form [for=searchable] > a[href]:-webkit-autofill {
  -webkit-box-shadow: 0 0 3.125rem #002d27 inset !important;
  background-color: transparent !important;
  background-clip: text;
  -webkit-text-fill-color: #FFFFFF !important;
}
.t-form input[type=submit] {
  background-color: #146d68;
  font-size: 1.1rem;
  align-self: center;
  width: 50%;
  border-radius: 0.15rem;
  margin: 0.5rem 0;
}
.t-form input[type=submit]:hover {
  background-color: #105c57;
}
.t-form sup {
  color: #ebebeb;
  font-size: 0.7rem;
}

.tools {
  position: fixed;
  bottom: 0.75%;
  right: 0.75%;
  z-index: 2;
}
.tools input[type=image] {
  height: 2rem;
  transition: all 40ms ease-out;
  filter: blur(0.075rem);
}
.tools input[type=image]:hover {
  transform: scale(1.35) rotateZ(-45deg);
  filter: unset;
}
.tools .broom:hover {
  animation: sweep 2s infinite;
}

@keyframes sweep {
  0% {
    transform: rotateZ(-15deg);
  }
  50% {
    transform: rotateZ(-55deg);
  }
  100% {
    transform: rotateZ(-15deg);
  }
}
@keyframes green_glow {
  0% {
    box-shadow: 0 0 0.55rem 0.05rem #25ccc3;
  }
  50% {
    box-shadow: -0.25 -0.25 1.55rem 0.5rem #35dbd2;
  }
  100% {
    box-shadow: 0 0 0.55rem 0.05rem #25ccc3;
  }
}
#wrapper-content {
  position: relative;
  z-index: 5;
}

.mobile {
  display: none;
}
