body {
  background-color: #121212; 
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding: 20px;
  text-align: center;
  position: relative;
}

.gradient-circle {
  width: 800px; 
  height: 800px; 
  background: radial-gradient(circle, hsla(212, 100%, 48%, 1) 0%, hsla(0, 0%, 7%, 1) 62%);
  position: absolute; 
  top: 0; 
  left: 0;
  transform: translate(-56%, -59%);
  z-index: -10;
  opacity: 30%;
}

.gradient-circle_down {
  width: 800px; 
  height: 800px; 
  background: radial-gradient(circle, hsla(113, 100%, 21%, 1) 0%, hsla(0, 0%, 7%, 1) 59%);
  position: absolute; 
  left: 0;
  bottom: 0;
  transform: translate(-54%, 0%); 
  z-index: -10;
  opacity: 30%;
}
        


header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  }

p {
  margin: 0px;
  text-align: left;
  }
  
a {
  text-decoration: none;
  color: white;
  }
  
h1 {
  margin: 60px 0px;
  }
  
h2 {
  margin-top: 80px;
  }
  
.nav_link {
  margin-right: 40px;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 5px;
  }
  
.nav_link::after { 
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  background: none repeat scroll 0 0 transparent;
  height: 2px;
  width: 0;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.nav_link:hover::after { 
  width: 100%; 
  left: 0; 
}

.logo_position {
  display: flex;
  }
  
.logo_main {
  width: 36px;
  height: fit-content;
  }
  
.logo_text {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 29px;
  margin-left: 10px;
  line-height: 25px;
  }
  
.btn_main {
  font-size: 16px;
  padding: 0.6em 1em;
  border-radius: 8px;
  border: 0px;
  outline: none;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(-10deg, rgb(233, 30, 99), rgb(255, 87, 34));
  }

.container {
  border-radius: 8px;
  background-color: rgb(26, 27, 33);
  border: solid 1px #4444444f;
  }

.filter {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.sort {
  display: flex;
  flex-direction: column;
  justify-content: center;
  }

.filter label {
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.filter input {
  margin-right: 10px;
  padding: 8px;
  border: 1px solid #4444444f;
  border-radius: 6px;
  background-color: rgb(30, 30, 30);
  color: #ffffff;
  width: 72px;
}

.filter button {
    padding: 5px 10px;
    border: none;
    padding: 8px 10px;
    border: 1px solid #4444444f;
    border-radius: 6px;
    background-color: rgb(30, 30, 30);
    cursor: pointer;
    color: white;
}

.filter button:hover {
    background-color: #444444d6;
}


.col {
    background-color: rgb(30, 30, 30); 
    padding: 10px;
    border-bottom: solid 1px #4444444f;
}

.col_bg {
  background-color: #121212;
  }

.col:hover {
  transition: background-color 0.1s;
  opacity: 90%;
  background-color: rgba(62, 62, 62, 0.72);
  }

.top_b {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  }
  
  .bot_b {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: none;
  }

.row {
  display: grid;
  grid-template-columns: 60px 140px 140px 120px 80px 100px 100px 80px;
  justify-content: space-between;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  }

.table_main {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 10px;
  }
  
.table_btn {
  font-size: 12px;
  padding: 0.6em 1em;
  border: solid 1px #444444d6;
  border-radius: 6px;
  cursor: pointer;
  }

.table_btn:hover { 
  background-color: #444444d6;
  }
  
.avatar {
  width: 30px;
  border-radius: 50px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.pagination a {
    text-decoration: none;
    color: #ffffffb5;
    padding: 10px 15px;
    border: 1px solid #4444444f;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #444444d6;
    color: white;
}

.pagination .dots {
    padding: 10px 15px;
    color: #ffffffb5;
}

.pagination a.active {
      font-weight: bold;
      background-color: #4444444f;
  }
  .content {
      display: none;
  }
  .content.active {
      display: block; 
  }
  
.sort_all {
  display: flex;
  }
  
.mobile_sort {
  display: flex;
  }
  
.table_price_mobile {
  display: none;
  }
  
.text_two {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  }
  
footer {
  margin-top: 100px;
  }
  
.foot_position {
  display: flex;
  justify-content: space-between;
  }
  
.copy {
  margin: 40px;
  text-align: center;
  }
  
.title_acc {
  margin: 0px;
  text-align: left;
  font-size: 18px;
  }
  
.accordion {
    border: 1px solid #444;
    border-radius: 5px;
    margin-bottom: 10px;
}
.accordion-header {
    background-color: #1e1e1e;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-content {
    display: none;
    padding: 10px;
}
.icon {
    transition: transform 0.3s;
}
.active .icon {
    transform: rotate(90deg);
}

.tlg_btn_position {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  }
  
.tlg_btn {
  display: flex;
  border: solid 1px rgb(66, 66, 66);
  width: fit-content;
  padding: 4px;
  border-radius: 8px;
  background-color: rgb(30, 30, 30);
  }
  
.tlg_img {
  width: 30px;
  }
  
.tlg_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 10px;
  }
  
@media (max-width: 800px) {
body {
  padding: 6px;
  }
  
.table_main {
  display: none;
}

.filter {
  flex-direction: column;
}

.mobile_sort {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  }
  
.filter label {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sort_btn {
  display: flex;
  }
  
.sort {
  margin-bottom: 8px;
  }
  
.sort_all {
  margin-bottom: 12px;
}

.filter button {
  margin-right: 20px;
}

.row {
      grid-template-columns: 140px 140px;
}

.table_btn {
  margin-top: 10px;
}

.mobile_h {
  display: none;
  }
  
.price_mobile {
  display: flex;
  margin-top: 10px;
  }
  
.table_price_mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
  }
  
.gradient-circle {
  transform: translate(-70%, -64%);
}
  
.gradient-circle_down {
  transform: translate(-52%, -30%);
  }
  
.nav_mobile {
  display: none;
  }
  
.foot_position {
  display: flex;
  justify-content: center;
}

.filter input {
  padding: 4px;
  }
  
.pagination {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
}
}


