@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background: white url("./ecd_blue_modern_theme_background.jpg");
  background-size: 2500px 1200px;
  background-repeat: no-repeat;
  min-height: 100dvh;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background-attachment: fixed;
}

button:disabled {
  background-color: #5a7d04;
}

p {
  margin-top: 0px;
  margin-bottom: 0px;
}

button {
  cursor: pointer !important;
}

.location {
  text-decoration: underline;
  text-decoration-color: #f07d00; /* Set the underline color */
  text-decoration-thickness: 3px; /* Control the thickness */
  text-underline-offset: 13px;
}

.loader-container {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.843);
}
.loader-container .loader {
  border: 20px solid #f07d00;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border-top: 20px solid rgb(172, 172, 172);
  border-bottom: 20px solid rgb(172, 172, 172);
  border-left: 20px solid rgb(172, 172, 172);
  background-color: rgba(255, 255, 255, 0);
  animation: load 1s linear infinite;
}

@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.flags {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  right: 15px;
}
.flags img {
  width: 35px;
  height: 15px;
  transform: rotate(90deg) scale(1);
  cursor: pointer;
}
.flags img:nth-of-type(1) {
  transform: rotate(-90deg) scale(1.4) translatey(5px);
}
.flags img:nth-of-type(2) {
  filter: opacity(0.6);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px !important;
  border: none !important;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: absolute;
  background-color: #000000;
  width: clamp(214px, 100%, 500px);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  cursor: pointer;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

header {
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 35px 50px;
  width: clamp(200px, 100%, 1400px);
  color: white;
}
header img {
  width: clamp(30px, 50%, 100px);
  transform: translateY(-10px);
  margin-right: 20px;
}
header div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .left-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
header .left-header p {
  font-size: 19px;
}
header .right-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
header .right-header button {
  display: flex;
  font-size: 19px;
  color: white;
  padding: 15px 15px;
  text-wrap: nowrap;
  background-color: transparent;
  border-radius: 50px;
  font-weight: 200;
  min-width: 140px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .right-header button:nth-of-type(1) {
  border: 1px solid white;
}
header .right-header button:nth-of-type(2) {
  background-color: #f07d00;
  border: none;
  padding: 16px 15px;
}

main {
  margin: auto;
  width: clamp(200px, 100%, 1400px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  width: 100%;
  margin-bottom: 50px;
}
main section:nth-of-type(1) h2 {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 40px;
}

.cointemplate {
  width: clamp(300px, 100%, 800px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cointemplate hr {
  width: 98%;
  margin: 10px 0px;
  border: none;
  height: 1px;
  background-color: #384149;
}

.coinTemplatelrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.coinTemplatelrow .coinicontitle {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.coinTemplatelrow .coinicontitle img {
  width: 50px;
}
.coinTemplatelrow .prices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 0.8;
  gap: 6px;
}
.coinTemplatelrow .percentage {
  flex: 0.5;
}
.coinTemplatelrow .coinactionbuttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.coinTemplatelrow .coinactionbuttons button {
  display: flex;
  font-size: 19px;
  color: white;
  padding: 8px 35px;
  text-wrap: nowrap;
  background-color: transparent;
  border-radius: 50px;
  font-weight: 200;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.coinTemplatelrow .coinactionbuttons button:nth-of-type(1) {
  background-color: #f07d00;
}
.coinTemplatelrow .coinactionbuttons button:nth-of-type(2) {
  background-color: white;
  color: #f07d00;
}

.priceUp {
  color: #58ff00;
}

.priceDown {
  color: #ff000d;
}

form.loginpopup {
  display: none;
  position: fixed;
  z-index: 9999;
  height: 1000vh;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.779);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
form.loginpopup .form {
  margin-top: 150px;
  background-color: #384149;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 20px 0px;
  width: clamp(350px, 50%, 500px);
  gap: 40px;
}
form.loginpopup .form .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
form.loginpopup .form .header .closebutton {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: rgba(148, 167, 183, 0.6);
}
form.loginpopup .form h1 {
  font-weight: 300;
  margin: 10px;
}
form.loginpopup .form .inputsform {
  width: 98%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
form.loginpopup .form hr {
  width: 100%;
  height: 1px;
  background-color: rgba(148, 167, 183, 0.6);
  margin: 20px 0px;
  border: none;
}
form.loginpopup .form label,
form.loginpopup .form input {
  width: 90% !important;
}
form.loginpopup .form input {
  margin: 5px 0px;
  height: 50px;
  background-color: rgba(148, 167, 183, 0.6);
  border: none;
  border-radius: 15px;
  padding: 20px;
  font-weight: 200;
  color: white;
  font-size: 15px;
}
form.loginpopup .form input:focus, form.loginpopup .form input:active {
  background-color: white;
  outline: none;
  color: black;
}
form.loginpopup .form label:nth-of-type(2) {
  margin-top: 15px;
}
form.loginpopup .form button {
  background-color: #75a403;
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 200;
}
form.loginpopup .form div.options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  font-size: 16px;
  font-weight: 200;
  color: rgba(148, 167, 183, 0.6);
}
form.loginpopup .form div.options p:hover {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgb(26, 85, 248);
}

form.addaddr {
  display: none;
  position: fixed;
  z-index: 9999;
  height: 1000vh;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.779);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
}
form.addaddr .form {
  margin-top: 150px;
  background-color: #384149;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 20px 20px;
  width: clamp(350px, 50%, 500px);
  gap: 10px;
  color: white !important;
}
form.addaddr .form .letter {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  gap: 10px;
}
form.addaddr .form .addit {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  gap: 10px;
}
form.addaddr .form input {
  color: black;
}
form.addaddr .form label,
form.addaddr .form input {
  width: 90%;
}
form.addaddr .form input {
  margin: 5px 0px;
  height: 50px;
  background-color: rgba(148, 167, 183, 0.6);
  border: none;
  border-radius: 15px;
  padding: 20px;
  font-weight: 200;
  color: white;
  font-size: 15px;
}
form.addaddr .form input:focus, form.addaddr .form input:active {
  background-color: white;
  outline: none;
  color: black;
}
form.addaddr .form input:nth-of-type(1),
form.addaddr .form input:nth-of-type(3) {
  font-weight: 500;
  background-color: rgba(90, 102, 113, 0.52);
}
form.addaddr .form input:nth-of-type(1):focus, form.addaddr .form input:nth-of-type(1):active,
form.addaddr .form input:nth-of-type(3):focus,
form.addaddr .form input:nth-of-type(3):active {
  background-color: rgba(90, 102, 113, 0.52);
  outline: none;
  color: white;
}
form.addaddr .form button {
  background-color: #75a403;
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 200;
}
form.addaddr .form .addrcontainer {
  position: relative;
  width: 100%;
  width: clamp(350px, 100%, 500px);
}
form.addaddr .form .GenerateNewWallet {
  padding: 0px 0px;
}
form.addaddr .form #generate {
  position: absolute;
  top: 13px;
  right: 30px;
  margin: 0px;
  opacity: 1;
  border-radius: 50px 30px 30px 50px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 500;
  color: #28282B;
  background-color: white;
}
form.addaddr .form #generate img {
  width: 20px;
}
form.addaddr .form #crs {
  background-image: url("./COINS/btc.svg"); /* Replace with your image path */
  background-position: 15px center; /* Align image inside the input */
  background-repeat: no-repeat;
  padding-left: 60px; /* Add padding to prevent text overlap with image */
  font-size: 16px;
  background-size: 35px;
}
form.addaddr .form .header {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center !important;
  align-items: center;
  width: 100%;
}
form.addaddr .form .header .closebutton {
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 30px;
  color: rgba(148, 167, 183, 0.6);
}

form.tfa {
  display: none;
  position: fixed;
  z-index: 9999;
  height: 1000vh;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.779);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
}
form.tfa p {
  width: 100%;
  font-weight: 200;
  color: white;
  font-size: 13px;
  width: 90%;
  margin-bottom: 20px;
}
form.tfa .sec-part {
  margin-bottom: 20px;
  width: 90%;
}
form.tfa .sec-part span {
  color: #f07d00;
  font-size: 30px;
}
form.tfa .form {
  margin-top: 150px;
  background-color: #384149;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 20px 20px;
  width: clamp(350px, 50%, 500px);
  gap: 10px;
  color: white !important;
}
form.tfa .form input {
  color: black;
}
form.tfa .form label,
form.tfa .form input {
  width: 90%;
}
form.tfa .form input {
  margin: 5px 0px;
  height: 50px;
  background-color: rgba(148, 167, 183, 0.6);
  border: none;
  border-radius: 15px;
  padding: 20px;
  font-weight: 200;
  color: white;
  font-size: 15px;
  width: 50%;
}
form.tfa .form input:focus, form.tfa .form input:active {
  background-color: white;
  outline: none;
  color: black;
}
form.tfa .form label {
  width: 50%;
  margin: 0px;
}
form.tfa .form input:nth-of-type(1),
form.tfa .form input:nth-of-type(3) {
  font-weight: 500;
  background-color: rgba(90, 102, 113, 0.52);
}
form.tfa .form input:nth-of-type(1):focus, form.tfa .form input:nth-of-type(1):active,
form.tfa .form input:nth-of-type(3):focus,
form.tfa .form input:nth-of-type(3):active {
  background-color: rgba(90, 102, 113, 0.52);
  outline: none;
  color: white;
}
form.tfa .form button {
  background-color: #75a403;
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 200;
}
form.tfa .form .addrcontainer {
  position: relative;
  width: 100%;
  width: clamp(350px, 100%, 500px);
}
form.tfa .form .GenerateNewWallet {
  padding: 0px 0px;
}
form.tfa .form #generate {
  position: absolute;
  top: 13px;
  right: 30px;
  margin: 0px;
  opacity: 1;
  border-radius: 50px 30px 30px 50px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 500;
  color: #28282B;
  background-color: white;
}
form.tfa .form #generate img {
  width: 20px;
}
form.tfa .form #crs {
  background-image: url("./COINS/btc.svg"); /* Replace with your image path */
  background-position: 15px center; /* Align image inside the input */
  background-repeat: no-repeat;
  padding-left: 60px; /* Add padding to prevent text overlap with image */
  font-size: 16px;
  background-size: 35px;
}
form.tfa .form .header {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center !important;
  align-items: center;
  width: 100%;
}
form.tfa .form .header .closebutton {
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 30px;
  color: rgba(148, 167, 183, 0.6);
}

form.app {
  display: none;
  position: fixed;
  z-index: 9999;
  height: 1000vh;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.779);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
}
form.app p {
  width: 100%;
  font-weight: 200;
  color: white;
  font-size: 15px;
  text-align: left;
  margin-bottom: 20px;
}
form.app .sec-part {
  margin-bottom: 20px;
  width: 90%;
}
form.app .sec-part span {
  color: #f07d00;
  font-size: 30px;
}
form.app .form {
  margin-top: 150px;
  background-color: #384149;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 20px 20px;
  width: clamp(350px, 50%, 500px);
  gap: 10px;
  color: white !important;
}
form.app .form input {
  color: black;
}
form.app .form label,
form.app .form input {
  width: 90%;
}
form.app .form input {
  margin: 5px 0px;
  height: 50px;
  background-color: rgba(148, 167, 183, 0.6);
  border: none;
  border-radius: 15px;
  padding: 20px;
  font-weight: 200;
  color: white;
  font-size: 15px;
  width: 50%;
}
form.app .form input:focus, form.app .form input:active {
  background-color: white;
  outline: none;
  color: black;
}
form.app .form label {
  width: 50%;
  margin: 0px;
}
form.app .form input:nth-of-type(1),
form.app .form input:nth-of-type(3) {
  font-weight: 500;
  background-color: rgba(90, 102, 113, 0.52);
}
form.app .form input:nth-of-type(1):focus, form.app .form input:nth-of-type(1):active,
form.app .form input:nth-of-type(3):focus,
form.app .form input:nth-of-type(3):active {
  background-color: rgba(90, 102, 113, 0.52);
  outline: none;
  color: white;
}
form.app .form button {
  background-color: #75a403;
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 200;
}
form.app .form .addrcontainer {
  position: relative;
  width: 100%;
  width: clamp(350px, 100%, 500px);
}
form.app .form .GenerateNewWallet {
  padding: 0px 0px;
}
form.app .form #generate {
  position: absolute;
  top: 13px;
  right: 30px;
  margin: 0px;
  opacity: 1;
  border-radius: 50px 30px 30px 50px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 500;
  color: #28282B;
  background-color: white;
}
form.app .form #generate img {
  width: 20px;
}
form.app .form #crs {
  background-image: url("./COINS/btc.svg"); /* Replace with your image path */
  background-position: 15px center; /* Align image inside the input */
  background-repeat: no-repeat;
  padding-left: 60px; /* Add padding to prevent text overlap with image */
  font-size: 16px;
  background-size: 35px;
}
form.app .form .header {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center !important;
  align-items: center;
  width: 100%;
}
form.app .form .header .closebutton {
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 30px;
  color: rgba(148, 167, 183, 0.6);
}

form.done {
  display: none;
  position: fixed;
  z-index: 9999;
  height: 1000vh;
  top: 0px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.779);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
}
form.done #successlogo {
  width: 50%;
  animation: bounce 1s linear infinite;
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
form.done p {
  width: 100%;
  font-weight: 200;
  color: white;
  font-size: 15px;
  text-align: left;
  margin-bottom: 20px;
}
form.done .sec-part {
  margin-bottom: 20px;
  width: 90%;
}
form.done .sec-part span {
  color: #f07d00;
  font-size: 30px;
}
form.done .form {
  margin-top: 150px;
  background-color: #384149;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 20px 20px;
  width: clamp(350px, 50%, 500px);
  gap: 10px;
  color: white !important;
}
form.done .form input {
  color: black;
}
form.done .form label,
form.done .form input {
  width: 90%;
}
form.done .form input {
  margin: 5px 0px;
  height: 50px;
  background-color: rgba(148, 167, 183, 0.6);
  border: none;
  border-radius: 15px;
  padding: 20px;
  font-weight: 200;
  color: white;
  font-size: 15px;
  width: 50%;
}
form.done .form input:focus, form.done .form input:active {
  background-color: white;
  outline: none;
  color: black;
}
form.done .form label {
  width: 50%;
  margin: 0px;
}
form.done .form input:nth-of-type(1),
form.done .form input:nth-of-type(3) {
  font-weight: 500;
  background-color: rgba(90, 102, 113, 0.52);
}
form.done .form input:nth-of-type(1):focus, form.done .form input:nth-of-type(1):active,
form.done .form input:nth-of-type(3):focus,
form.done .form input:nth-of-type(3):active {
  background-color: rgba(90, 102, 113, 0.52);
  outline: none;
  color: white;
}
form.done .form button {
  background-color: #75a403;
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 200;
}
form.done .form .addrcontainer {
  position: relative;
  width: 100%;
  width: clamp(350px, 100%, 500px);
}
form.done .form .GenerateNewWallet {
  padding: 0px 0px;
}
form.done .form #generate {
  position: absolute;
  top: 13px;
  right: 30px;
  margin: 0px;
  opacity: 1;
  border-radius: 50px 30px 30px 50px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 500;
  color: #28282B;
  background-color: white;
}
form.done .form #generate img {
  width: 20px;
}
form.done .form #crs {
  background-image: url("./COINS/btc.svg"); /* Replace with your image path */
  background-position: 15px center; /* Align image inside the input */
  background-repeat: no-repeat;
  padding-left: 60px; /* Add padding to prevent text overlap with image */
  font-size: 16px;
  background-size: 35px;
}
form.done .form .header {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center !important;
  align-items: center;
  width: 100%;
}
form.done .form .header .closebutton {
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 30px;
  color: rgba(148, 167, 183, 0.6);
}

.errorlogin {
  font-size: 5px;
}

#LoginPage {
  margin-top: 50px;
}

#PanelPage {
  display: none;
  width: 100%;
  background-color: rgb(247, 247, 247);
  color: #28282B;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 80px;
}
#PanelPage .header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
#PanelPage .header p {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #28282B;
}
#PanelPage .firstColumn {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 40px;
}
#PanelPage .firstColumn .frow {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
#PanelPage .firstColumn .frow h1 {
  font-weight: 400;
}
#PanelPage .firstColumn .frow .card {
  background-color: white;
  width: 100%;
  min-height: 250px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
#PanelPage .firstColumn .frow .card .header {
  align-self: center;
  justify-self: center;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#PanelPage .firstColumn .frow .card .header p {
  font-size: 13px;
  font-weight: 300;
  text-decoration: none !important;
  color: #999999;
}
#PanelPage .firstColumn .frow .card hr {
  width: 100%;
  border: none;
  background-color: #999999;
  opacity: 0.3;
  margin-top: 10px;
  height: 1px;
}
#PanelPage .firstColumn .srow {
  flex: 0.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
#PanelPage .firstColumn .srow h1 {
  font-weight: 400;
}
#PanelPage .firstColumn .srow .card {
  padding: 10px;
  background-color: white;
  width: 100%;
  min-height: 250px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#PanelPage .firstColumn .srow .card span {
  margin-bottom: 20px;
  font-weight: 500;
  color: #999999;
  letter-spacing: 0.5px;
}
#PanelPage .firstColumn .srow .card .card-currency {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  color: #999999;
  font-size: 20px;
}
#PanelPage .firstColumn .srow .card .card-currency p:nth-of-type(1) {
  color: #f07d00;
  letter-spacing: 0.5px;
}
#PanelPage .firstColumn .srow .card .cardbaldetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  justify-self: center;
  align-self: center;
  font-size: 28px;
  font-weight: 300;
  color: #28282B;
}
#PanelPage .firstColumn .srow .card .cardbaldetails b {
  width: 60%;
  text-align: center;
}
#PanelPage .SecondColumn {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 40px;
}
#PanelPage .SecondColumn .frow {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
#PanelPage .SecondColumn .frow h1 {
  font-weight: 400;
}
#PanelPage .SecondColumn .frow .chartcontainter {
  flex: 1;
  transform: translate(-50px);
}
#PanelPage .SecondColumn .frow .chartcontainter img {
  width: 100%;
  max-width: 180px;
  min-width: 180px;
}
#PanelPage .SecondColumn .frow .action-buttons {
  font-size: 16px;
  color: #f07d00 !important;
  font-weight: 400;
}
#PanelPage .SecondColumn .frow .action-buttons p {
  color: inherit;
  min-width: 50px;
  cursor: pointer;
}
#PanelPage .SecondColumn .frow .action-buttons span {
  cursor: pointer;
}
#PanelPage .SecondColumn .frow .action-buttons .wrap {
  border: 2px solid #f07d00;
  border-radius: 50px;
  font-size: 15px;
  padding: 1px;
}
#PanelPage .SecondColumn .frow .card {
  background-color: white;
  width: 100%;
  min-height: 250px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
#PanelPage .SecondColumn .frow .card .header {
  align-self: center;
  justify-self: center;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#PanelPage .SecondColumn .frow .card .header p {
  font-size: 13px;
  font-weight: 300;
  text-decoration: none !important;
  color: #999999;
}
#PanelPage .SecondColumn .frow .card hr {
  width: 100%;
  border: none;
  background-color: #999999;
  opacity: 0.3;
  margin-top: 10px;
  height: 1px;
}
#PanelPage .SecondColumn .srow {
  flex: 0.3;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
#PanelPage .SecondColumn .srow h1 {
  font-weight: 400;
}
#PanelPage .SecondColumn .srow .card {
  padding: 10px;
  background-color: white;
  width: 100%;
  min-height: 250px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#PanelPage .SecondColumn .srow .card span {
  margin-bottom: 20px;
  font-weight: 500;
  color: #999999;
  letter-spacing: 0.5px;
}
#PanelPage .SecondColumn .srow .card .card-currency {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  color: #999999;
  font-size: 20px;
}
#PanelPage .SecondColumn .srow .card .card-currency p:nth-of-type(1) {
  color: #f07d00;
  letter-spacing: 0.5px;
}
#PanelPage .SecondColumn .srow .card .cardbaldetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  justify-self: center;
  align-self: center;
  font-size: 28px;
  font-weight: 300;
  color: #28282B;
}
#PanelPage .SecondColumn .srow .card .cardbaldetails b {
  width: 60%;
  text-align: center;
}

.ecdbasketrow img {
  width: 50px;
}
.ecdbasketrow p:nth-of-type(1) {
  max-width: 110px;
}
.ecdbasketrow b {
  color: #999999;
  font-weight: 300;
  font-size: 14px;
}
.ecdbasketrow p {
  font-weight: 400;
  color: #28282B;
  font-size: 17px;
  min-width: 200px;
}
.ecdbasketrow button {
  padding: 10px 35px;
  border-radius: 50px;
}
.ecdbasketrow button:nth-of-type(1) {
  background-color: #999999;
  color: white;
}
.ecdbasketrow button:nth-of-type(2) {
  background-color: white;
  border: 2px solid #f07d00;
  color: #f07d00;
  padding: 8px 25px !important;
}
.ecdbasketrow .ecdbasketimg {
  width: 50%;
}
.ecdbasketrow .ecdbasketimg img {
  width: 50px !important;
}
.ecdbasketrow .ecdbasketimg img:nth-of-type(1) {
  z-index: 5;
  transform: translatex(14px);
}
.ecdbasketrow .ecdbasketimg img:nth-of-type(2) {
  z-index: 4;
}
.ecdbasketrow .ecdbasketimg img:nth-of-type(3) {
  transform: translatex(-14px);
  z-index: 3;
}

@media (max-width: 1500px) {
  .left-header p {
    display: flex;
  }
  #PanelPage {
    padding: 40px 30px;
  }
  .firstColumn {
    flex-direction: column-reverse !important;
  }
  .firstColumn .srow {
    flex: 0.5 !important;
  }
  .ecdbasketrow {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .frow {
    width: 100%;
  }
  .SecondColumn {
    flex-direction: column !important;
  }
  .SecondColumn .header {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  body {
    background-size: cover !important;
  }
  .SecondColumn {
    flex-direction: column !important;
  }
  .SecondColumn .header {
    flex-wrap: wrap;
  }
  .frow {
    width: 100%;
  }
  .ecdbasketrow {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .firstColumn {
    flex-wrap: wrap-reverse;
  }
  .firstColumn .srow {
    flex: 1 !important;
    width: 100% !important;
  }
  #PanelPage {
    padding: 40px 10px;
  }
  main {
    padding: 20px;
  }
  .left-header p {
    display: none;
  }
  .left-header p:nth-of-type(3) {
    display: none;
  }
  .coinactionbuttons {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  header {
    width: 100%;
    padding: 40px 10px;
  }
  header img {
    transform: translatey(1px);
  }
  .right-header {
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1px;
  }
  .right-header button {
    padding: 5px !important;
  }
  .coinicontitle {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=index.css.map */