.uitk-button {
  display: block;
  background-color: #454545;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  padding: 8px 32px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.uitk-button:hover {
  background-color: #5f5f5f;
}
.uitk-button:active {
  background-color: #202020;
}

.uitk-button--rounded {
  border-radius: 24px;
}

.uitk-button--outlined {
  background: none;
  border: 1px solid #454545;
  color: #454545;
}
.uitk-button--outlined:hover {
  background-color: #454545;
  color: #ffffff;
}
.uitk-button--outlined:active {
  background-color: #202020;
  border-color: #202020;
}

.uitk-textbox, .uitk-number-picker__input, .uitk-searchbar__textbox {
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #ffffff;
  color: #525252;
  padding: 12px 16px;
  font-size: 16px;
  outline: none;
  transition: all 0.2s ease;
  min-height: 32px;
}
.uitk-textbox:focus, .uitk-number-picker__input:focus, .uitk-searchbar__textbox:focus {
  border-color: #7b7b7b;
}

.uitk-textbox--no-outline {
  border: none;
}

.uitk-searchbar {
  display: flex;
}

.uitk-searchbar__button {
  display: block;
  min-height: 32px;
  min-width: 32px;
  border: 1px solid #7B7B7B;
  background-color: #888888;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uitk-searchbar__button svg {
  height: 18px;
}
.uitk-searchbar__button:hover {
  background-color: #6e6e6e;
}
.uitk-searchbar__button:active {
  background-color: #444444;
  border-color: #444444;
}

.uitk-searchbar__textbox {
  border-radius: 8px;
  padding: 12px 16px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right: none;
}

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

.uitk-dropdown {
  position: relative;
}
.uitk-dropdown select {
  appearance: none;
  min-height: 32px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #ffffff;
  color: #525252;
  padding: 12px 16px;
  outline: none;
  min-width: 256px;
  font-size: 16px;
  width: 100%;
}
.uitk-dropdown::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 16px;
  top: 44%;
  height: 0px;
  border-top: 5px solid #525252;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  pointer-events: none;
}

.uitk-number-picker {
  display: flex;
}

.uitk-number-picker__input {
  padding: 4px 16px;
  border-radius: 8px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right: none;
  width: 72px;
}

.uitk-number-picker__buttons {
  display: flex;
  flex-direction: column;
}

.uitk-number-picker__buttons__incr, .uitk-number-picker__buttons__decr {
  width: 48px;
  height: 24px;
  background-color: #888888;
  color: #ffffff;
  border: 1px solid #7B7B7B;
  transition: all 0.2s ease;
}
.uitk-number-picker__buttons__incr svg, .uitk-number-picker__buttons__decr svg {
  height: 24px;
}
.uitk-number-picker__buttons__incr:hover, .uitk-number-picker__buttons__decr:hover {
  background-color: #6e6e6e;
}
.uitk-number-picker__buttons__incr:active, .uitk-number-picker__buttons__decr:active {
  background-color: #444444;
  border-color: #444444;
}

.uitk-number-picker__buttons__incr {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 0px;
  border-bottom: none;
}

.uitk-number-picker__buttons__decr {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 8px;
}

.uitk-checkbox {
  display: flex;
  align-items: center;
}

.uitk-checkbox__label {
  margin-left: 8px;
  font-size: 16px;
  color: #525252;
}

.uitk-checkbox input[type=checkbox] {
  appearance: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  width: 24px;
  height: 24px;
}

.uitk-checkbox__tick {
  display: none;
}
.uitk-checkbox__tick svg {
  fill: #BE7511;
}

.uitk-checkbox input[type=checkbox]:checked + .uitk-checkbox__tick {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.uitk-radio-button {
  display: flex;
  align-items: center;
}

.uitk-radio-button input[type=radio] {
  appearance: none;
  border: 1px solid #cccccc;
  border-radius: 24px;
  width: 24px;
  height: 24px;
}

.uitk-radio-button__label {
  margin-left: 8px;
  font-size: 16px;
  color: #525252;
}

.uitk-radio-button input[type=radio]:checked + .uitk-radio-button__tick {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
  background-color: #BE7511;
}

.uitk-product-card {
  background-color: #ffffff;
  color: #525252;
  border-radius: 8px;
  border: 1px solid #cccccc;
  width: 260px;
}

.uitk-product-card__img {
  background-size: cover;
  background-position: center;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  height: 260px;
}

.uitk-product-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 32px 24px;
}

.uitk-product-card__title {
  margin-bottom: 8px;
  font-size: 18px;
}

.uitk-product-card__price {
  color: #848484;
  font-size: 18px;
}

.uitk-product-card__button {
  margin-top: 16px;
}

.uitk-card {
  padding: 32px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  color: #525252;
  border-radius: 16px;
}

.uitk-accordion {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-top: 1px solid #cccccc;
  transition: all 0.5s;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.uitk-accordion__item-header {
  padding: 16px;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.uitk-accordion__item {
  flex-basis: 0;
  overflow: hidden;
  transition: flex 0.5s ease, padding 0.5s ease;
  background: #ffffff;
  padding: 0 16px 0 16px;
  color: #000000;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: none;
}

.uitk-accordion input {
  display: none;
}

.uitk-accordion input:checked + .uitk-accordion__item {
  flex: 1;
  padding: 16px;
  border-bottom: 1px solid #cccccc;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

body, html {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

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

.dashboard-footer, .dashboard-header, .wrapper {
  padding-left: 80px;
  padding-right: 80px;
}

.wrapper {
  padding-top: 128px;
  padding-bottom: 128px;
}

body {
  font-family: "neue-haas-grotesk-display", sans-serif;
}

label {
  color: #888888;
}
label + input[type=password], label + input[type=text], label + input[type=tel], label + input[type=email], label + textarea {
  margin-top: 4px;
}

a {
  color: #3480C1;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}

.card, .uptime-card {
  padding: 32px;
  border: 1px solid #eee;
  flex: auto;
}

.uptime-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 18px;
  gap: 40px;
}
.uptime-card__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
}
.uptime-card__title__status {
  height: 9.6px;
  width: 9.6px;
  background: #cccccc;
  border-radius: 999999px;
  margin-right: 9.6px;
}
.uptime-card__title__status--up {
  background: #52ae52;
}
.uptime-card__title__status--down {
  background: #e16969;
}
.uptime-card__title__status--ping_error {
  background: #ffc45a;
}
.uptime-card__ping {
  display: flex;
  align-items: center;
}
.uptime-card__last-pinged {
  margin-left: auto;
}

.dashboard-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.dashboard-header__logo {
  height: 42px;
  width: auto;
}
.dashboard-header__title {
  font-weight: 300;
  font-size: 24px;
  margin-left: auto;
}

.dashboard-footer {
  margin-top: auto;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.dashboard-footer__copyright {
  color: #888888;
}
.dashboard-footer__logout {
  margin-left: auto;
}

.dashboard-cards {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.dashboard-title {
  margin-bottom: 80px;
  font-weight: 400;
}

.dashboard-refresh-all {
  margin-top: 80px;
}

.login-form {
  display: flex;
  flex-direction: column;
  max-width: 320px;
}
.login-form input[type=text] {
  margin-bottom: 32px;
}
.login-form input[type=password] {
  margin-bottom: 40px;
}

.login-title {
  margin-bottom: 80px;
  font-weight: 400;
}

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