#components-layout-demo-responsive .logo {
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    margin: 16px;
  }
  .ant-layout.ant-layout-has-sider {
    height: 100%;
  }

  div.img {
    width: 50px;
    img {
      width: 100%;
    }
  }
  
  .columns-action {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    .action-column {
      margin: 0 20px 5px 15px;
    }
  }
  .ant-btn {
    padding: 0 10px;
    height: 30px;
  }
  
  .ant-switch {
    background: #fd572b;
  }
  .ant-switch-checked {
    background: #16d46b;
  }

  .action {
    // margin: 0 8px;

    cursor: pointer;
    &:hover {
      color: #13c2c2;
    }
  }
  ::-webkit-scrollbar {
    width: 4px;
    height: 6px;
    background-color: transparent;
}
::-webkit-scrollbar:horizontal{
  // height: 8px;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
    background-color: transparent;;
}
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color:#e8e8e8;
  opacity: .6;
}
::-webkit-scrollbar-thumb:hover{
  background-color: #d8d8d8;
}