.cn-body {
  
  text-align: start;  
}

.luchotCoteretW {
  
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
    
  & h1 {
  
    margin: 0;
  }
}

#searchBarMenu {
  
  display: flex;
  background: white;
  padding: 20px;
  text-align: start;
  text-decoration: none;
  justify-content: space-between;
  border: 1px solid var(--colorTableBorder, #A7BED9);
  border-radius: 5px;
  box-shadow: none;
  margin-bottom: 20px;
  
  & .sortList {
  
    background: var(--backgroundButton, rgb(245 245 245 / 1));
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    pointer-events: all;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgb(0 0 0 / .2);
    color: #444;
    transition: 250ms;
    
    &.ABC {
    
      transform: rotate(180deg);
    }
  }
} 

#searchItems {
  
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  
  & > div {
    
    flex: 1;  
    min-width: clamp(calc((100% / 3) - 20px), 100%, 200px);
    
    & a {
      
      display: flex;
      background: white;
      padding: 10px;
      text-align: start;
      text-decoration: none;
      justify-content: space-between;
      border: 1px solid var(--colorTableBorder, #A7BED9);
      border-radius: 5px;
      box-shadow: none;
      
      gap: 10px;
      
      &:hover {
        
        color: inherit;
        opacity: 0.8;
      }
      
      & .counter {
        
        color: black;
      }
    }
  }
  
}