@charset "UTF-8";
.header {
  width: calc(100% - 30px);
  max-width: 1296px;
  background: #FFFFFF;
  box-shadow: 0px 4px 94px rgba(28, 0, 0, 0.08);
  border-radius: 8px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  top: 32px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  color: black;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}
.header_btns {
  display: flex;
  align-items: center;
}
.header_btns a:hover{color:#D80000}
.header_basquet {
  position: relative;
  margin-right: 20px;
}
.header_basquet svg{width: 30px;height: 34px}
.header_basquet span {
  width: 18px;
  height: 18px;
  background: #FF0000;
  border: 1.5px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  position: absolute;
  right: -6px;
  top: -4px;
  border-radius: 100%;
}
.header .home_form{position: relative;max-width: 500px;margin-right: 70px;}
.header .home_form button{
  position: absolute;
  z-index: 2;
  padding: 11px 16px;
  top:0;right: 0
}
.header .home_form input{padding-left: 20px;background-image: none;height: 36px;}
@media (max-width:800px){
  .header {
    padding:0 20px;
    top:20px;
  }
  .header_logo{
    width: 30px;
    overflow: hidden;
  }
  .header .home_form{display: none;}
}

.home {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.home > svg {
  margin-bottom: 60px;
}
.home p {
  font-size: 14px;
  line-height: 1.5;
  color: #7A7A7A;
  max-width: 500px;
  margin: 16px 0;
}
.home p.error {
  color:#FF0000;
}
.home p.error a{text-decoration: underline;}
.home_form {
  width: 100%;
  max-width: 636px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home_form input {
  display: block;
  color: #231F20;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
  padding: 0 20px 0 40px;
  background-color: white;
  height: 49px;
  border: 1px solid #7A7A7A;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 80px;
  background-image: url(../assets/img/lupa.svg);
  background-repeat: no-repeat;
  background-position: 14px center;
  transition: ease-in-out 0.5s;
  opacity: 0.4;
}
.home_form input:focus, .home_form input:valid {
  opacity: 1;
}
.home .selected {
  margin: 14px 0 22px;
  display: flex;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  width: 100%;
}
.home .selected_item {
  padding: 3px 8px;
  border-radius: 20px;
  background-color: #231F20;
  color: white;
  margin-left: 10px;
  cursor: pointer;
}
.home .selected.hidden {
  visibility: hidden;
}
@media (max-width:800px){
  .home{
    padding: 0 20px;
  }
  .home > svg{max-height: 200px}
}

.list_misc {
  transform-origin: top;
  position: absolute;
  transform: rotate(90deg);
  top: 25px;
  right: 100%;
}
.list_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.list_item {
  margin: 13px 0;
  background-color: white;
  padding: 24px;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  color: #231F20;
}
.list_item-top {
  position: relative;
  padding-left: 32px;
}
.list_item-top::before {
  content: "";
  height: 100%;
  width: 8px;
  background-color: #FF0000;
  border-radius: 8px;
  top: 0;
  left: 0;
  position: absolute;
}
.list_item-top .tit_patent, .list_item-top .check {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list_item-top h3 {
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: ease-in-out 0.3s;
}
.list_item-top h3 > * {font-weight: 700}
.list_item-top h3:hover{color:#FF0000}
.list_item-top strong {
  font-size: 17px;
  display: block;
  margin: 8px 0;
  font-weight: 400;
}
.list_item-top p {
  font-size: 14px;
  line-height: 1.7;
  color: #7A7A7A;
}
.list_item-top .deadline {
  margin: 0 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  background: #FFEFEF;
  border-radius: 100px;
}
.list_item-top .deadline img {
  margin-right: 5px;
}
.list_item-top input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 2px solid #A6A6A6;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
}
.list_item-top input[type=checkbox]:checked {
  background-color: #FF0000;
}
.list_item-top input[type=checkbox]:checked::after {
  content: "✓";
  color: white;
  font-size: 16px;
  position: absolute;
  left: 2px;
  top: -1px;
}
.list_item-top .remove {
  cursor: pointer;
  display: inline-flex;
  color: #A6A6A6;
  font-size: 13px;
  font-weight: 700;
  transition: ease-in 0.3s;
}
.list_item-top .remove svg {
  margin-left: 8px;
}
.list_item-top .remove:hover {
  color: #FF0000;
}
.list_item-foot {
  margin-top: 16px;
  background: #F7F7F7;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list_item-foot .fo {
  font-size: 12px;
  display: flex;
  align-items: center;
  width: 24%;
  color:#828282;
}
.list_item-foot .fo  strong{
      color: #231F20;
}
.list_item-foot .fo div{
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.list_item-foot .fo img {
  margin-right: 12px;
}
.list_content.countries {
  display: flex;
  justify-content: space-between;
}
.list_content.countries .list-col {
  width: calc(50% - 30px);
}
.list_content.countries .list-col .deadline {
  margin: 0 16px;
  display: inline-flex;
  align-items: center;
  padding: 0px;
  font-size: 12px;
  font-weight: 700;
  background-color: transparent;
  color: #CD202C;
}
.list_content.countries .list-col .deadline img {
  margin-right: 5px;
}
.list_content.countries .check-countries {
  margin: 13px 0;
  /*display: flex;
  flex-wrap: wrap;*/
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.list_content.countries .check-countries .check {
  margin: 10px 0;
  display: flex;
  align-items: center;
  width: 50%;
  width: 100%;
}
.list_content.countries .check-countries .check.full {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #A6A6A6;
}
.list_content.countries .check-countries input[type=checkbox] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 2px solid #A6A6A6;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
}
.list_content.countries .check-countries input[type=checkbox]:checked {
  background-color: #FF0000;
}
.list_content.countries .check-countries input[type=checkbox]:checked::after {
  content: "✓";
  color: white;
  font-size: 16px;
  position: absolute;
  left: 2px;
  top: -1px;
}
.button-apply-all{
  position: absolute;
  top: 0;
  right: 0;
  top: -40px;
  color:#FF0000;
  text-decoration: underline;
}

@media (max-width:800px){
  .list_top{
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .list_item{padding: 16px;}
  .list_item-top .tit_patent, .list_item-top h3{
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .list_item-top .deadline{
    margin: 10px 0;
  }
  .list_item-top input[type=checkbox]{
    position: absolute;
    top:0;right: 0;
  }
  .list_item-top strong{font-size: 14px}
  .list_top a{width: 100%;margin-top: 10px}
  button.add-to-cart{width: 100%;margin:20px 0 0;}
  .list_item-foot{
    flex-direction: column;
    padding: 10px;
  }
  .list_item-foot .fo{
    width: 100%;
    margin: 5px 0;
  }
  .list_item-top .remove{
    position: absolute;
    top:0;right: 0;
    font-size: 0;
  }

  .list_content.countries .check-countries {grid-template-columns: repeat(1,1fr)}
}

.content-buttons.thanks{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}