body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #2f3542;
  height: 100%;
}

.wrapper{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

button{
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

input{
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.footer{
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(to bottom, #2f3542, #313844);
  margin: 0;
  border-radius: 14px 14px 0 0;
  gap: 20px;
  color: #F2F2F2;
}

.margin0_center{
  display: flex;
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

.up_line{
  position: relative;
  display: flex;
  color: #FFFFFF;
  height: 450px;
  border-radius: 0 0 14px 14px;

  background-image: url('/pic/bacground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.up_line_block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 0 25px 0;
  width: 100%;
}

.up_line_block_1{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.up_line_block_button{
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  padding: 0 0 3px 0;
}

.up_line_block_button:hover{
  font-weight: 800;
  transition: all 0.2s;
  border-bottom: 2px solid #FFFFFF;
}

.up_line_block_2{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.up_line_block_2_1{
  display: flex;
  justify-content: center;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 700;
}

.up_line_block_2_2{
  display: flex;
  justify-content: center;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
  margin: 0 0 0 30%;
}

.up_line_block_3{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.border_bottom_logo{
  border-bottom: 1px solid #757575;
  padding: 0 20px 5px 20px;
}

.text_decoration_none{
  color: #FFFFFF;
  text-decoration: none;
}

.filter_wheel_size_0{
  display: flex;
  justify-content: center;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 700;
}

.filter_wheel_size{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.filter_wheel_size_2{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(8, 1fr);
}

.build_numbers{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}

.width_1{
  font-size: 13px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.inputs_filter_wheel_size{
  width: 100%;
  height: 34px;
  border: none;
  border-radius: 4px;
  padding: 0 10px 0 10px;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  background-color: #F7F7F7;
  box-sizing: border-box;
}

.inputs_filter_wheel_size:focus{
  background-color: #F7F7F7;
  border-radius: 4px 4px 0 0;
}

.hidden_values{
  position: absolute;
  top: -10000px;
}

.width_2{
  display: flex;
  flex-direction: row;
  margin: 4px 0 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.drop_filter_menu_numbers{
  display: none;
  width: 100%;
  max-height: 211px;
  background-color: #f1ede4;
  margin: 0 0 0 0;
  box-sizing: border-box;
  border-bottom: 1px solid #DEDEDE;
  border-left: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
  border-radius: 0 0 3px 3px;
  overflow: auto;

  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
}

.wheel_size_filter input[type="radio"] {
  display: none;
}

.wheel_size_filter label {
  float: left;
  width: 100%;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  overflow: hidden;
  padding: 7px 10px 7px 10px;
  white-space: wrap;
  transition: all 0.1s;
  color: #000000;
}

.wheel_size_filter label:hover {
  background-color: #079992;
  cursor: pointer;
  font-weight: 700;
  color: #FFFFFF;
  transition: all 0.1s;
}

.wheel_size_filter input[type="radio"]:checked+label {
  transition: all 0.1s;
  font-weight: 700;
  background-color: #079992;
  color: #FFFFFF;
}

.category_wheelsize{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.button_check_wheels{
  font-weight: 700;
  font-size: 13px;
  outline: none;
  border-radius: 4px;
  height: 34px;
  background-color: #079992;
  color: #FFFFFF;
  width: 100%;
  border: 1px solid #079992;
  transition: all 0.1s;
}

.button_check_wheels:hover{
  background-color: #057a77;
  border: 1px solid #057a77;
  cursor: pointer;
  transition: all 0.1s;
}

.button_clear_wheels{
  font-weight: 700;
  font-size: 13px;
  outline: none;
  border-radius: 4px;
  height: 34px;
  background-color: transparent;
  color: #FFFFFF;
  padding: 0 19px;
  width: 100%;
  border: 1px solid #555555;
  transition: all 0.1s;
}

.button_clear_wheels:hover{
  cursor: pointer;
  transition: all 0.1s;
  border: 3px solid #FFFFFF;
}

.crumbs_a{
  text-decoration: none;
  color: #2f3542;
}

.crumbs{
  display: flex;
  flex-direction: row;
  margin: 0 0 20px 0;
  background-color: #F7F7F7;
  padding: 20px 0 10px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  border-radius: 0 0 14px 14px;
}

.crumbs_inside{
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 13px;
}

.main_content{
  display: flex;
  flex-direction: row;
}

.content_inside{
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.content_inside_1{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  grid-column: span 1;
  height: 200px;
  background-color: #F7F7F7;
  border-radius: 8px;
  padding: 10px;
}

.content_inside_2{
  grid-column: span 3;
  height: 250px;
}

.category_list{
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}

.category_list_1{
  display: flex;
  gap: 15px;
  background-color: #F7F7F7;
  border: 1px solid #E7E7E7;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 700;
  color: #4e4e4e;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.category_list_1:hover{
  background-color: #E2E2E2;
  border: 1px solid #E2E2E2;
}

.category_list_0{
  grid-column: 1 / -1;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 700;
}

.text_dec{
  text-decoration: none;
  color: #2f3542;
}

.count_current{
  display: none;
}

.category_list_1:hover > .count_current{
  display: block;
  transition: all 0.2s;
}