@font-face {
  font-family: "Poppins";
  src: url("templates/static/Poppins 2/Poppins-Thin.ttf") format("ttf");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("templates/static/Poppins 2/Poppins-Light.ttf") format("ttf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("templates/static/Poppins 2/Poppins-Regular.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("templates/static/Poppins 2/Poppins-Medium.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("templates/static/Poppins 2/Poppins-SemiBold.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("templates/static/Poppins 2/Poppins-Bold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("templates/static/Poppins 2/Poppins-Black.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
  width: 100%;
}

.p_detail {
  text-align: center;
}
body {
  overflow: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}
.logo a {
  display: flex;
  align-items: center;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 20;
  height: 100%;
  width: 78px;
  border-right: 1px solid #1f1f1f;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}
.sidebar.open {
  width: 230px;
}
.sidebar .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon {
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name {
  color: #939393;
  font-size: 15px;
  margin-left: 8px;
  font-weight: 400;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
  opacity: 1;
}
.sidebar .logo-details #btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn {
  text-align: right;
}
.sidebar i {
  color: #939393;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list {
  margin-top: 10px;
  height: 100%;
}
.sidebar li {
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip {
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 9999;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip {
  display: none;
}
.sidebar input {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #00000000;
}
.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar li a {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 7px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101d00;
}

.sidebar li a .links_name {
  color: #939393;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i {
  transition: all 0.5s ease;
}
.sidebar li a:focus i {
  transition: all 0.5s ease;
}
.sidebar li i {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile {
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.profile {
  width: 230px;
}

.sidebar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li.profile .name,
.sidebar li.profile .job {
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.sidebar li.profile .job {
  font-size: 12px;
}
.sidebar .profile #log_out {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out {
  width: 50px;
  background: none;
}

.home-section {
  transition: all 0.5s ease;
  /* height: calc(100vh - 120px); */
  overflow: auto;
  width: calc(100% - 70px);
  position: absolute;
  z-index: 1;
}

.home-section .text {
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 420px) {
  .sidebar li .tooltip {
    display: none;
  }
}
.topbar {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 20px 18px 18px 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text {
  display: flex;
  padding: 10px 10px 10px 20px;
  width: 100%;
}

.navbar-brand {
  position: absolute;
  z-index: 9999;
}

.subtitle2 {
  font-size: small;
  color: #5f5e5ee5;
}

.urgent-msg {
  display: block;
  background-color: #2cffc02a;
  color: #2cffc0;
  width: 100%;
  padding: 5px;
  text-align: center;
  border-radius: 7px;
}

.urgent-wrapper {
  display: flex;
  background-color: #2cffc000;
  width: 471px;
  justify-content: center;
  border-radius: 7px;
  padding-top: 10px;
}

.edgelogo {
  height: auto;
  width: 70px;
}

.title {
  font-size: large;
}
.title-list {
  font-size: 1.95vh;
  padding: 3px 0px 3px 0px;
}

.product-section {
  flex: 1 1 auto;
  width: 100%;
  overflow: auto !important;
  margin-top: 2px;
  height: 100vh;
  max-height: 80vh;
}

.product-detail {
  background-color: rgba(244, 42, 42, 0);
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  border: 1px solid rgba(255, 255, 255, 0.136);
  color: white;
  margin-top: 0px;
  border-radius: 10px;
  align-items: center;
  justify-content: flex-start;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.product-filters {
  background-color: rgba(255, 255, 255, 0);
  color: white;
  padding: 0px 0px 20px 0px;
}

.time-filter {
  color: rgb(255, 255, 255);
  padding: 0px 0px 2px;
  display: inline-block;
}
.bsr-filter {
  color: white;
  padding: 2px;
  display: inline-block;
}
.subcat-filter {
  color: white;
  padding: 2px;
  display: inline-block;
}

.all-filter {
  color: white;
  padding: 2px;
  display: inline-block;
}

.time-filter2 {
  color: rgb(255, 255, 255);
  padding: 0px 0px 2px;
  display: none;
}
.bsr-filter2 {
  color: white;
  padding: 2px;
  display: none;
}
.subcat-filter2 {
  color: white;
  padding: 2px;
  display: none;
}

.all-filter2 {
  color: white;
  padding: 2px;
  display: none;
}

.select {
  background: linear-gradient(
    17deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(6, 6, 10, 0) 100%
  );
  padding: 5px 20px 5px 20px;
  display: inline-block;
  color: white;
  border: rgba(255, 255, 255, 0.149) 0.5px solid;
  border-radius: 5px;
}

.selected {
  background-color: #f1f1f111;
}
.list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 7px;
}

.list-item {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.136);
  border-radius: 5px;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(255, 255, 255, 0.005) 100%
  );
  margin-bottom: 10px;
  margin-right: 35px;
  display: flex;
  align-items: center;
  transition: ease 0.3s;
  position: relative;
  justify-content: space-between;
}

.list-item.active {
  background-color: rgba(255, 255, 255, 0.001);
  cursor: pointer;
}

.notrackings_img {
  padding: 10px;
  border-radius: 5px;
  background-color: #f6f6f600;
  margin-bottom: 10px;
  max-width: 90vh;
  display: inline;
  align-items: center;
  transition: ease 0.3s;
  justify-content: start;
}

.notrackings_txt {
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(84, 255, 198, 0.486);
  margin-bottom: 10px;
  max-width: 40vh;
  display: flex;
  align-items: center;
  transition: ease 0.3s;
  justify-content: center;
  color: #2cffc0;
}

.list-item:hover {
  background-color: rgba(255, 255, 255, 0.001);
  cursor: pointer;
  border: #ffffff40 1px solid;
}
.product_img {
  width: 6.75vh;
  height: auto;
  float: left;
}

.asin,
.bsr,
.ean,
.bpb {
  display: inline-flexbox;
  background-color: #111114;
  border: 0.3px solid #363636;
  padding: 3px 15px 3px 15px;
  margin: 2px;
  border-radius: 5px;
  align-items: center;
  color: white;
}
.bsr-cont,
.asin-cont,
.bpb-cont {
  display: inline-block;
  background-color: linear-gradient(
    17deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(6, 6, 10, 0) 100%
  );
  padding: 0px 10px 0px 10px;
  border-radius: 5px;
}
.locale,
.tracktime,
.sellerid {
  display: inline-flexbox;
  background-color: rgba(255, 255, 255, 0.025);
  border: 0.5px solid #2b2b2b;
  padding: 3px 15px 3px 15px;
  border-radius: 5px;
  font-size: 13px;
  align-items: center;
  color: white;
  margin-top: 2px;
  text-align: center;
}
.locale-cont,
.sellerid-cont,
.tracktime-cont {
  display: inline-block;
  background-color: linear-gradient(
    17deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(6, 6, 10, 0) 100%
  );
  padding: 0px 10px 0px 10px;
  border-radius: 5px;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.graph {
  background-image: url("pricehistory.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.product-section::-webkit-scrollbar,
.product-detail::-webkit-scrollbar {
  display: none;
}

.ean-cont {
  background-color: linear-gradient(
    17deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(6, 6, 10, 0) 100%
  );
  padding: 0px 10px 0px 10px;
  border-radius: 5px;
  display: none;
}

.last-item {
  padding: 15px 10px;
  border-radius: 5px;
  background-color: #f6f6f600;
  margin-bottom: 10px;
  text-align: center;
  max-width: 100%;
}

.shop-section {
  display: flex;
  align-items: center;
  padding: 0px 0px 0px 0px;
}

.shop-section a {
  padding: 8px 10px 0px;
}

.shop-image {
  width: 5.65vh;
  height: 5.65vh;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0);
}
.shop-section-text {
  padding: 10px 10px 0px 18px;
  text-align: left;
  font-size: 12px;
  color: #939393;
}
.ps-0 {
  padding-left: 0px !important;
}
.left-flex,
.right-flex {
  width: 50%;
  font-size: 13px;
}

.tracking-flex {
  width: 100%;
}
#popup_delete.trash {
  padding-right: 3px;
  padding-top: 6px;
}
.subtitle {
  color: #5f5e5ee5;
  padding: 4px 0px 0px 0px;
  font-size: x-small;
}

.guides {
  height: 215px;
  width: calc(100%-50px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  font-size: 2vw;
  justify-content: center;
  align-items: center;
}

.guide-title {
  padding-top: 5px;
  font-size: 22px;
}
.guide-select-title {
  padding-top: 5px;
  font-size: 22px;
}

.container-doc {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  text-align: center;
}

.btn-doc {
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  max-width: 250px;
  transition: ease-in-out 0.3s;
}

.btn-track {
  background-color: #2be9b0;
  border: 0.5px solid #2cffc000;
  padding: 6px 7px 6px 7px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: small;
  color: #03130e;
  transition: ease-in-out 0.3s;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  margin: 100px auto;
  padding: 50px;
  border-radius: 5px;
  width: fit-content;
  height: auto;
  position: relative;
  transition: all 1s ease-in-out;
  text-align: center;
}

.popup h2 {
  margin-top: 0;
  color: #ffffff;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}
.popup .close:hover {
  color: #2cffc0;
}
.popup .content {
  max-height: 50%;
  overflow: auto;
  color: white;
}

.doc-img {
  height: 70px;
}

.affiliate {
  margin-top: 10px;
  color: white;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  font-size: 3vw;
  text-align: center;
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.container-doc2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.doc-img3 {
  height: 10vh;
}

.product-price {
  color: #2cffc0;
  font-weight: 600;
  font-size: 1.9vh;
  padding: 3px 0px 3px 0px;
}

.left-div,
.right-div {
  padding: 10px 0px 10px 0px;
}

.title-icon {
  font-size: 1.95vh;
  padding-left: 10px;
}

.bsr-input {
  background-color: #06060a;
  border: rgba(255, 255, 255, 0.149) 0.5px solid;
  border-radius: 5px;
  color: white;
  width: 90px;
  text-align: center;
  padding-top: 5.5px;
  padding-bottom: 5.5px;
}

.icon-save,
.icon-blacklist {
  float: right;
  padding: 0 10px;
  font-size: 15px !important;
}

.title-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 18px 10px 0px;
}

.detail-div {
  padding: 0px 0px 0px 10px;
}

.left-div {
  width: 100%;
}

.graph-div {
  padding: 0px 15px 18px 3px;
  margin-top: -4px;
  height: 100%;
  min-height: 250px;
}
.apexcharts-legend-text {
  color: #939393 !important;
}
.apexcharts-yaxis-label,
.apexcharts-xaxis-label {
  fill: #939393 !important;
}
.info-div {
  display: flex;
  padding: 0px 10px 8px;
  flex-flow: wrap;
}

.price-shop {
  color: #fff;
  text-decoration: none;
}
.price-shop:visited {
  color: #fff;
  text-decoration: none;
}

.selecthide {
  display: none;
}

.nickname-input,
.sellerid-input {
  background: linear-gradient(
    17deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(6, 6, 10, 0) 100%
  );
  padding: 5px 20px 5px 20px;
  display: inline-block;
  color: white;
  border: rgba(255, 255, 255, 0.149) 0.5px solid;
  border-radius: 5px;
  width: 109px;
  height: 32px;
}

.nickname-input:focus,
.sellerid-input:focus {
  outline: none;
}

.seperator-text {
  color: rgba(255, 255, 255, 0);
}

.seller-name {
  color: white;
  font-weight: 500;
  margin-bottom: 13px;
}

.trash-icon {
  position: absolute;
  right: 4px;
  top: 1px;
}
.rt-img {
  margin-right: 10px;
  margin-top: 12px;
}
.trash img:hover {
  cursor: pointer;
}

.seperator {
  width: 536px;
  height: 39px;
  background-color: rgba(255, 255, 255, 0);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  opacity: 0;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  margin-top: -1px;
  visibility: hidden;
}
.setting .dropdown-content {
  opacity: 1;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  margin-top: -1px;
  visibility: visible;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 11px;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  display: block;
}

.apexcharts-svg {
  background: transparent !important;
}

.dropbtn {
  color: #939393;
  padding: 9px 10px 9px 10px;
  border-radius: 5px;
  display: inline-flexbox;
  margin: 2px;
  font-size: 12px;
  transition: 0.3s ease;
}

.sellerid-div,
.nickname-div {
  color: white;
  display: inline-block;
}

.nickname-input,
.sellerid-input {
  color: white;
}

p.copy {
  color: white;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.pw-container {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 128, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pw-form {
  width: 40vh;
  height: 50vh;
  background: #06060a;
  display: flex;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  color: white;
  justify-content: space-evenly;
  flex-direction: column;
  max-height: 600px;
  z-index: 1;
}

.sign-text {
  padding: 5px;
  font-weight: 500;
}

.submit-btn {
  background-color: #2cffc0;
  border: none;
  padding: 5px;
}

input {
  width: 25vh;
  padding: 5px 0px 5px 0px;
  border: 1px solid #1f1f1f;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
}

input[type="submit"] {
  background-color: #2cffc0;
  color: #06060a;
  border: none;
}

.container {
  background-color: #f1f1f100;
  padding: 20px;
}

/* The message box is shown when the user clicks on the password field */
#message {
  display: none;
  background: #f1f1f100;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#message p {
  padding: 10px 35px;
  font-size: 18px;
}

.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: 0px;
  content: "&#10004;";
}

.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: 0px;
  content: "&#10006;";
}

.form-title {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.teal-effect {
  position: fixed;
  width: 648px;
  height: 648px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #2cffc011 0%,
    rgba(62 255 175 / 0%) 100%
  );
  opacity: 1;
  right: -275px;
  top: -233px;
}

.blue-effect {
  position: fixed;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #3effb80d 0%,
    rgba(62, 255, 184, 0) 100%
  );
  opacity: 1;
  left: 344px;
  top: 540px;
}

.error-home {
  width: 200px;
  height: 200px;
  background-color: white;
  position: absolute;
}

/* Settings Page */

.filtering {
  width: 500px;
  height: 500px;
  background-color: white;
  display: flex;
}

.filters-div,
.blacklist-div,
.profile-div {
  color: white;
  height: 60vh;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  width: 26%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 20px;
  font-size: 2vw;
  align-items: center;
  justify-content: space-evenly;
}

.filter-input {
  width: 9vw;
  height: 1.5525vw;
  padding: 5px 0px 5px 0px;
  border: 0.5px solid #363636;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(255, 255, 255, 0.00753921568627416) 100%
  );
  color: white;
  text-align: center;
  font-size: 1.25vh;
  cursor: pointer;
}

.filter-left,
.filter-right {
  padding: 5px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.save-btn {
  width: 15vw;
  height: 1.85vw;
  font-size: 1.35vh;
  cursor: pointer;
  border-radius: 4px;
  border: 0.5px solid #363636;
  background-color: #00000000;
  color: #939393;
  transition: ease-in-out 0.3s;
}

.save-btn:hover {
  border: 0.5px solid #ffffff;
  background-color: #ffffff08;
  color: #ffffff;
}

.dropbtn2 {
  background: linear-gradient(
    180deg,
    rgba(6, 6, 10, 1) 0%,
    rgba(255, 255, 255, 0.021053921568627416) 100%
  );
  color: #939393;
  border: 1px solid #1f1f1f;
  padding: 8px 10px 8px 10px;
  border-radius: 5px;
  display: inline-flexbox;
  font-size: smaller;
}
.intitle {
  font-size: 15px !important;
}

.graph-div #chart {
  height: calc(100vh - 500px);
}
.chart-img {
  margin-top: 5vh;
}
.chart-img div {
  display: flex;
  justify-content: center;
}
.chart-img img {
  height: 14vw;
}

@media (min-height: 580px) and (max-height: 700px) {
  .asin,
  .bsr,
  .bpb {
    font-size: 1.6vh;
  }
  .subtitle {
    font-size: 1.7vh;
  }
  .detail-div {
    font-size: 1.9vh;
  }
  .intitle {
    font-size: 2vh !important;
  }
  .dropbtn,
  .dropdown-content a {
    font-size: 1.7vh;
  }
  .title-icon {
    font-size: 2.35vh;
  }

  .graph-div #chart {
    height: calc(100vh - 490px);
  }

  .home-section {
    /* min-height: 100vh; */
    /* height: 100vh; */
  }
}
@media (min-width: 1755px) and (max-width: 1920px) {
  .subtitle {
    font-size: 1.5vh;
  }
  .title-section {
    padding: 25px 0px 10px 10px;
  }
  .graph-div #chart {
    height: calc(100vh - 520px);
  }
  .home-section {
    min-height: 100vh;
    height: 100vh;
  }
}

@media (min-width: 1923px) {
  .asin,
  .bsr,
  .bpb,
  .locale,
  .sellerid,
  .tracktime {
    font-size: 1.5vh;
  }
  .title-section {
    padding: 32px 7px 7px 32px;
  }
  .edgelogo {
    height: auto;
    width: 90px;
  }
  .product-section {
    margin-top: 0px;
  }
  .subtitle {
    font-size: 1.4vh;
  }
  .subtitle2 {
    font-size: smaller;
  }
  .detail-div {
    font-size: 1.7vh;
  }
  .intitle {
    font-size: 2vh !important;
  }
  .dropbtn,
  .dropdown-content a {
    font-size: 1.6vh;
  }
  .title-icon {
    font-size: 2.1vh;
  }
  .title {
    font-size: 2.1vh;
  }
  .seperator {
    height: 4.1vh;
  }
  .icon-save,
  .icon-blacklist {
    font-size: 2vh !important;
  }
  .graph-div #chart {
    height: 35vh;
    padding: 0px 3vh 0px 3vh;
  }
  .btn-track {
    font-size: 1.6vh;
    height: 3.9vh;
  }
  #popup_delete.trash img {
    width: 3vh;
  }
  .nickname-input,
  .sellerid-input {
    font-size: 1.6vh;
    width: 13vh;
    height: 4vh;
  }

  .product-detail {
    height: 65.5vh;
  }
  .info-div {
    padding: 0px 32px 8px;
  }

  .bsr-cont,
  .asin-cont,
  .bpb-cont {
    padding: 0px 13px 0px 13px;
  }
  .shop-section-text {
    padding: 10px 50px 0px 56px;
  }
  .asin,
  .bsr,
  .ean,
  .bpb {
    padding: 5px 10px 5px 10px;
    text-align: center;
  }
  .detail-div {
    padding: 0px 0px 0px 10px;
  }
  .list-item {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .last-item {
    font-size: 1.6vh;
  }

  .home-section {
    min-height: 100vh;
    height: 100vh;
  }
}

@media (min-width: 767px) and (max-width: 1135px) {
  .graph-div #chart {
    height: calc(100vh - 575px);
  }
  .product-detail {
    height: calc(100vh - 295px);
  }
  .home-section {
    min-height: calc(100vh - 120px);
    height: calc(100vh - 120px);
  }
}
@media (min-width: 1279px) and (max-width: 1350px) {
  .chart-img {
    margin-top: 3.4vh;
  }
  .chart-img img {
    height: 9.4vw;
  }
  .home-section {
    min-height: 100vh;
    height: 100vh;
  }
}
@media (min-width: 1351px) and (max-width: 1925px) {
  .chart-img {
    margin-top: 3.4vh;
  }
  .chart-img img {
    height: 11vw;
  }
  .home-section {
    min-height: 100vh;
    height: 100vh;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #23232300;
}

.pw-container {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 128, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pw-form {
  width: 40vh;
  height: 50vh;
  background: #06060a;
  display: flex;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  color: white;
  justify-content: space-evenly;
  flex-direction: column;
  max-height: 600px;
  z-index: 1;
  align-items: center;
}

.sign-text {
  padding: 5px;
  font-weight: 500;
}

.submit-btn {
  background-color: #2cffc0;
  border: none;
  padding: 5px;
  width: 25vh;
  padding: 5px 0px 5px 0px;
  border: 1px solid #1f1f1f;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  background-color: #06060a00;
  background-color: #2cffc0;
  color: #06060a;
  border: none;
}

.container {
  background-color: #f1f1f100;
  padding: 20px;
}

#message {
  display: none;
  background: #f1f1f100;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#message p {
  padding: 10px 35px;
  font-size: 18px;
}

.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: 0px;
  content: "&#10004;";
}

.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: 0px;
  content: "&#10006;";
}

.form-title {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.teal-effect {
  position: fixed;
  width: 648px;
  height: 648px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #2cffc011 0%,
    rgba(62 255 175 / 0%) 100%
  );
  opacity: 1;
  right: -275px;
  top: -233px;
}

.blue-effect {
  position: fixed;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #3effb80d 0%,
    rgba(62, 255, 184, 0) 100%
  );
  opacity: 1;
  left: 344px;
  top: 540px;
}

.error-home {
  width: 200px;
  height: 200px;
  background-color: white;
  position: absolute;
}

.tooltip {
  visibility: hidden;
}

.tooltip-on-hover:hover + .tooltip {
  visibility: visible;
}

@media (min-width: 4000px) and (max-width: 5000px) {
  .card-left-product {
    padding: 50px 10px !important;
  }
  .product-drp-header {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .card-bottom {
    margin-bottom: 100px;
  }
  .chart-padding {
    padding: 10rem !important;
  }
}
@media (min-height: 2000px) and (max-height: 3000px) {
  .card-left-product {
    padding: 50px 10px !important;
  }
  .product-drp-header {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .card-bottom {
    margin-bottom: 100px;
  }
  .chart-padding {
    padding: 10rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .spy-product-box {
    width: 80px !important;
    display: inline-block;
    overflow: hidden !important;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

ul.pilled {
  > li {
    display: flex;
    gap: 0.5em;
    flex-direction: row;
    align-items: center;

    &:before {
      content: '';
      display: inline-block;
      background: linear-gradient(180deg, #7FACFF 0%, #2D79FF 100%);
      border-radius: 50%;
      width: 4px;
      height: 4px;
      min-width: 4px;
    }
  }
}


*:focus-visible, .focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: -1px;
}

.focus-visible *:focus-visible {
  outline: none !important;
}
