/* General Styling */
:root {
  --primary-color: #032bca;
  --secondary-color: #2f3640;
  --text-color: #f5f6fa;
  --background-color: #f5f6fa;
  --card-background: #2c3440;
  --container-width: 1100px;
}

body {
  height: 100vh;
  width: 100vw;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: var(--background-color);
  /* color: var(--text-color); */
  line-height: 1.6;

  padding: 0;
  margin: 0;
}
.dismiss{
  display: none;
}
.main_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  height: 100%;
  width: 100%;
}
.main_bar_ {
  padding-left: 1%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  width: 74%;
}

.search_bar {
  margin-top: 1%;
  padding-right: 1%;
  padding-left: 1%;
  margin-bottom: 3%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #032bca;

  height: 7%;
  width: 90%;
}

.Headers_bar {
  margin-bottom: 3%;
  padding-right: 1%;
  padding-left: 1%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #032bca;
  width: 40%;
  height: 7%;
}

.Token_bar {
  padding-right: 1%;
  padding-left: 1%;
  margin-top: 1%;
  margin-bottom: 3%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #032bca;
  width: 40%;
  height: 7%;
}


.url_link {
  margin-top: 1px;
  margin-bottom: 1px;
  padding-left: 3px;
  padding-right: 3px;
  margin-right: 3px;
  background-color: #2f36400b;
  font-size: 14px;
}
.platforms {
  margin-top: 3%;
  margin-bottom: 1%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

  border-radius: 20px;
  height: 7%;
  width: 90%;
}
.platform_container_inactive {
  padding-left: 15px;
  margin-right: 10px;
  color: var(--secondary-color);
  background-color: transparent;
  width: 15%;
  height: 90%;
  border: 1px solid var(--primary-color);

  cursor: pointer;
}

.platform_container_active {
  margin-right: 10px;
  padding-left: 15px;
  color: var(--text-color);
  background-color: var(--primary-color);
  width: 15%;
  height: 90%;

  cursor: pointer;
}
.card_software {
  margin-right: 3px;
  margin-bottom: 3px;
  border-radius: 3px;
  background-color: #00000012;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40%;
  width: 20%;
}
.dowanlod_software {
  cursor: pointer;
  margin-bottom: 3px;
  margin-top: 3px;
  color: #b2bec3;
  padding-right: 9px;
  padding-left: 9px;
  padding-top: 2px;
  padding-bottom: 3px;
  background-color: #032bca;
}
.software_image {
  height: 50%;
  width: 70%;
}

.search_bar_input {
  border: 0;
  height: 90%;
  width: 70%;
  background-color: transparent;
}
.search_bar_input:focus {
  border: 0;
  border-radius: 0;
  height: 90%;
  width: 98%;
  background-color: transparent;
}
.software_list {
  overflow-wrap: normal;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 75%;
  width: 95%;
}
.side_bar {
  padding-left: 5px;
  border-right: 1px solid #b2bec3;
  height: 100%;
  width: 25%;
}
.side_bar_section_icon {
  height: 7%;
  width: 100%;
}
.side_bar_section {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--primary-color);
  margin-bottom: 2px;
  background-color: var(--background-color);
  height: 7%;
  width: 100%;
}
.side_bar_section_ {
margin-top: 10%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--primary-color);
  margin-bottom: 2px;
  background-color: var(--background-color);
  height: 7%;
  width: 100%;
}
.side_bar_section:hover {
  padding-left: 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--primary-color);
  margin-bottom: 2px;
  background-color: #2c344046;
  height: 7%;
  width: 97%;
}
html {
  scroll-behavior: smooth;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #000000; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 3px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 17; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  top: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
