﻿$text-gray: rgb(137, 136, 133);

CosmeticListFilters {
  width: 733px;
  height: 46px;
  // do not @ me.
  margin: 0 12.5px;
  
  .search-container {
    height: 46px;
    background-color: rgba(0, 0, 0, 0.8);
    width: 433px;
    
    .icon-panel {
      height: 46px;
      width: 46px;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      
      > i {
        color: $text-gray;
        font-size: 36px;
        text-align: center;
        transform: rotateY(180deg);
      }
    }
    
    .search-field-container {
      width: 100%;
      height: 100%;
      
      > TextEntry {
        width: 100%;
        height: 100%;
        color: $text-gray;
        font-size: 18px;
        padding: 8px;
        border: none;
        border-radius: 0;
        transition: all 0.2s;
        pointer-events: all;
      }
    }
  }
}