/* 1. IMPORT SECTION */
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
/* 2. BASIC STYLES */

* {
  box-sizing: border-box;
}

html {
  background: url("https://shard.dog/v2/img/dog_pattern.png"),
    rgba(251, 249, 245);
  justify-content: center;
  align-items: center;
}
body {
  font-family: "Public Sans", "Space Grotesk", "Trebuchet MS", Helvetica,
    sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
a {
  color: #33c;
  transition: all 0.125s ease-in-out 0s;
  -moz-transition: all 0.125s ease-in-out 0s;
  -webkit-transition: all 0.125s ease-in-out 0s;
  -o-transition: all 0.125s ease-in-out 0s;
  -ms-transition: all 0.125s ease-in-out 0s;
}
a:hover {
  color: #33c;
}
a,
a:hover,
a:active,
a:focus {
  outline: 0;
  border: 0;
  text-decoration: none;
}
p {
  line-height: 1.1;
}
header {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #636773 !important;
}
header > .container {
  position: relative;
  padding: 45px 0 75px;
}
input {
  font-family: inherit;
  width: 100%;
  height: 4rem;
  font-weight: 500;
  font-size: 100%;
  line-height: inherit;
  color: #000;
  margin: 0;
  padding: 20px;
}
input[type="text"] {
  text-transform: lowercase;
}
.valid {
  border-color: green;
  color: green;
}
.invalid {
  border-color: red;
  color: red;
}

#create-wallet-btn {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background-color: #185ac4;
  padding: 10px 30px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 12px;
  transition: 1000ms;
  transform: translateY(0);
  align-items: center;
  text-align: center;
  cursor: pointer;
  margin: 10px auto 0;
  height: 45px;
  width: 300px;
}
#create-wallet-btn:hover {
  transition: 1000ms;
  padding: 10px 50px;
  transform: translateY(-0px);
  background-color: #fff;
  color: #185ac4;
  border: solid 2px #185ac4;
  width: 310px;
  height: 66px;
}
#submit-pin-button {
  font-family: "Poppins", "Century Gothic", "Trebuchet MS", Helvetica,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background-color: #185ac4;
  padding: 10px 30px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 12px;
  transition: 1000ms;
  transform: translateY(0);
  align-items: center;
  cursor: pointer;
  margin: 10px auto 0;
  text-align: center;
  width: 200px;
  height: 45px;
}
#centerCard {
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 300px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  #centerCard {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 5px;
  }
}

#or {
  margin-top: 10px;
  margin-bottom: -5px;
}

#nameCheck {
  margin-top: 10px;
}
.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(
    225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 20px;
}
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.btn {
  font-weight: 400;
  font-size: 16px;
  color: #f3ede1;
  background-color: #185ac4;
  padding: 10px 20px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 12px;
  transition: 1000ms;
  transform: translateY(0);
  align-items: center;
  text-align: center;
  cursor: pointer;
  margin: 10px auto 0;
  height: 45px;
  width: 90%;
}
.btn:hover {
  transition: 1000ms;
  padding: 10px 20px;
  transform: translateY(-0px);
  background-color: #f3ede1;
  color: #185ac4;
  border: solid 2px #185ac4;
  height: 65px;
  width: 100%;
}

.inverse-btn {
  font-weight: 400;
  font-size: 16px;
  background-color: #f3ede1;
  padding: 10px 20px;
  border: #185ac4;
  color: #185ac4;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 12px;
  transition: 1000ms;
  transform: translateY(0);
  align-items: center;
  text-align: center;
  cursor: pointer;
  margin: 10px auto 0;
  height: 45px;
  width: 90%;
}

.inverse-btn:hover {
  transition: 1000ms;
  padding: 10px 20px;
  transform: translateY(-0px);
  background-color: #185ac4;
  color: #f3ede1;
  border: solid 2px #185ac4;
  height: 65px;
  width: 100%;
}

#topBlock img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
#poap {
  width: 269px;
  transition: width 1s ease;
  box-shadow: 0 2px 6px rgba(255, 61, 0, 0.2);
}
#poapBlue {
  width: 269px;
  transition: width 1s ease;
  box-shadow: 0 2px 6px rgba(24, 90, 196, 0.9);
}
#title {
  font-family: "Space Grotesk", "Trebuchet MS", Helvetica, sans-serif;
  font-size: 24px;
  transition: font-size 1s ease;
}
#walletLinks {
  width: 100%;
  text-align: center;
}
.sharddog-login {
  font-family: "Public Sans", "Space Grotesk", "Trebuchet MS", Helvetica,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background: #23546d;
  padding: 20px 30px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 12px;
  transition: 1000ms;
  transform: translateY(0);
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
  margin: 10px auto 0;
  height: 45px;
}
.sharddog-login-text {
  position: relative;
  padding: 10px 18px;
}
.sharddog-login-text > span {
  position: relative;
  display: inline-block;
  left: -9px;
}
.sharddog-login-icon {
  position: relative;
  text-shadow: none;
  padding: 15px 11px;
}
.sharddog-login-icon > img {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  left: 2px; /*top:5px;*/
  width: 50px;
}

table,
td,
tr {
  border: 1px solid black;
}

table {
  width: 40%;
  border-collapse: collapse;
}

td {
  padding: 5px;
}

.t {
  font-weight: bold;
  white-space: nowrap;
}

#sk {
  width: 100%;
  word-break: break-all;
}

#skv {
  cursor: pointer;
}
#sp {
  display: none;
}

#skvi {
  width: 25px;
  height: 25px;
}

#footer-line {
  width: 30%;
}

ul {
  /* list style is faked with number inputs */
  list-style: none;
  padding: 0;
}

li {
  position: relative;
  min-height: 1em;
  cursor: move;
  padding: 0.5em 0.5em 0.5em 0.5em;
  background: #eee;
  border: 1px solid #ccc;
  margin: 0.25em 0;
  border-radius: 0.25em;
  max-width: 10em;
  text-align: center;
}

li input {
  /* Move these to visually fake the ol numbers */
  position: absolute;
  width: 1.75em;
  left: 0.25em;
  top: 0.25em;
  border: 0;
  text-align: center;
  background: transparent;
}

li label {
  /* visually hidden offscreen so it still benefits screen readers */
  position: absolute;
  left: -9999px;
}

/* sortable plugin styles when dragged */
.dragged {
  position: absolute;
  opacity: 0.5;
  z-index: 2000;
}

li.placeholder {
  position: relative;
  background: #185ac4;
}

.title {
  color: #1f2937;
  font-weight: bold;
  text-align: center;
}
.subtitle {
  color: #185ac4;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.buttonwallet {
  font-size: 16px;
  color: #fff;
  background-color: #185ac4;
  padding: 10px 30px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 12px;
  transition: 1000ms;
  transform: translateY(0);
  align-items: center;
  text-align: center;
  cursor: pointer;
  margin: 10px auto 0;
  height: 45px;
  width: 280px;
}
.buttonwallet.orange {
  background-color: #ff3d00;
}

.orange {
  color: #ff3d00;
}
.blue {
  color: #185ac4;
}
.info-text {
  text-align: center;
  margin-top: 20px;
}
#walletSelect {
  width: 300px;
  margin: 5px auto;
}
.walletSelect1 {
  border: 3px solid #185ac4;
  border-radius: 10px;
}

.walletSelect2 {
  margin-top: 5px;
  border: 3px solid #ff3d00;
  border-radius: 10px;
}
#newWallet {
  margin: 0 auto;
  text-align: center;
}
hr {
  background: #ff3d00;
  height: 10px;
  width: 100%;
}

h4 {
  font-weight: normal;
}
