/* General Styling */
:root {
  --primary-color: #032bca;
  --secondary-color: #2f3640;
  --text-color: #f5f6fa;
  --background-color: #f5f6fa;
  --card-background: #2c3440;
  --container-width: 1100px;
}
.dismiss {
  display: none;
}
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;
}

.main_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  height: 100%;
  width: 100%;
}
.main_bar_ {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.search_bar {
  margin-top: 3%;
  margin-bottom: 1%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #032bca;
  border-bottom: 1px solid #032bca;

  height: 7%;
  width: 90%;
}
.sub_title_app_details {
  color: var(--secondary-color);
  text-align: center;
  width: 90%;
  height: 35%;
  font-size: 10px;
}
.platforms {
  margin-top: 3%;
  margin-bottom: 2%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

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

.platform_container_active {
  margin-right: 10px;
  padding-left: 15px;
  color: var(--text-color);
  background-color: var(--primary-color);
  width: 20%;
  height: 50%;
  border-radius: 2px;
  cursor: pointer;
}
.card_software {
  margin-top: 1%;
  margin-right: 10px;
  margin-bottom: 3px;
  border-radius: 3px;
  background-color: #00000006;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.dowanlod_software {
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 3px;
  margin-top: 3px;
  color: #b2bec3;
  padding-right: 9px;
  padding-left: 9px;
  padding-top: 2px;
  padding-bottom: 3px;
  background-color: var(--card-background);
}
.software_image {
  object-fit: scale-down;
  height: 50%;
  width: 70%;
}

.search_bar_input {
  border: 0;
  height: 90%;
  width: 90%;
  background-color: transparent;
}
.search_bar_input :focus {
  border: 0;

  height: 90%;
  width: 90%;
}
.software_list {


  height: 74%;
  width: 100%;
  margin-bottom: 1%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-family: sans-serif;
  overflow-y: auto;

  justify-content: center;
}
.loading_software_list {


  height: 74%;
  width: 100%;
  margin-bottom: 1%;
  display: flex;
flex-direction: row;
  justify-content: center;
  align-items: center;
}
.loading_software_list span{

color: #032bca;
  margin-right: 2px;
  animation-name: spin;
  animation-duration: 280ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.side_bar {
  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: column;
  justify-content: center;
  align-items: flex-start;
  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;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  from {
    transform: scale(0.2);
  }

  to {
    transaform: scale(1);
  }
}
