#tcf-setting-screen {
  .tcf-title-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }

  .tcf-collapsible {
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dedede;

    &.active, 
    &:hover {
      background-color: #326294;
    }
  }
  
  .tcf-collap-body {
    padding: 0 18px;
    background-color: white;
    overflow: hidden;
    display: none;

    &.active {
      display: block;
    }
  }
}
