html{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(240, 240, 240);
}

body{
  margin: 1cm
}

.collapsible {
    color: black;
    cursor: pointer;
    padding: 13px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
  .collapsible::after{
    font-family: 'Material Icons';
    content: "keyboard_arrow_down";
    -webkit-font-feature-settings: 'liga';
    font-size: large;
    color: black;
    margin-left: 7px;
  }
  
  .active, .collapsible:hover {
    background-color: rgb(197, 197, 197);
  }
  
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  }

  .card-view{
    padding: 10px;
    background: white;
    border-radius: 10px;
    /* filter: drop-shadow(5px 5px 7px #0000004d); */
    overflow: hidden;
  }

  .image-container-task{
    width: 200px;
    height: 200px;
    filter: drop-shadow(5px 5px 10px #00000062);
    overflow: hidden;
    margin: 12px;
    border-radius: 7px;
    position: relative;
    float: left;
    cursor: pointer;
  }

  .image-bottom-text-label{
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000a8;
    color: white;
    font-weight: bold;
    padding: 6px;
    border-radius: 7px;
    text-align: center;
  }

  .image-container-task:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: background .3s linear;
  }

  #ict-white:before{
    background: rgba(255, 255, 255, 0.5);
  }
    
  #ict-yellow:before{
    background: rgba(255, 238, 0, 0.5);
  }
    
  #ict-orange:before{
    background: rgba(255, 115, 0, 0.5);
  }
    
  #ict-green:before{
    background: rgba(0, 255, 42, 0.5);
  }
    
  #ict-blue:before{
    background: rgba(0, 102, 255, 0.5);
  }  
  #ict-brown:before{
    background: rgba(83, 38, 1, 0.5);
  }
    
  #ict-black:before{
    background: rgba(0, 0, 0, 0.5);
  }
  
  #ict-transp:before{
    background: rgba(141, 141, 141, 0.678);
  }
  
  .image-container-task:hover:before {
    background: none;
  }
    
  .new-badge{
    position: absolute;
    top: 6px;
    right: 6px;
    color: white;
    background-color: #da5700;
    border-radius: 7px;
    overflow: visible;
    padding: 5px;
  }

  .psd-ai-badge{
    position: absolute;
    top: 6px;
    left: 6px;
    height: 50px;
  }
  
  .tips-flex-box{
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .tips-flex-box-col-0{
    background-color: salmon;
    margin: 5px;
    background-color: white;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.363));
    border-radius: 7px;
    width: 150px;
    height: 150px;
    overflow: hidden;
  }

  .tips-flex-box-col-1{
    flex: 3;
    margin-left: 10px;
    padding: 10px;
  }

  #collapsiable-header{
    font-weight: bold;
    font-family: inherit;
    font-size: inherit;
    margin-left: 0px;
  }        
  
  table  {border-collapse:collapse;border-spacing:0;}
  td{border-color:rgba(58, 58, 58, 0.164);border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
  overflow:hidden;padding:10px 5px;word-break:normal;}
  th{border-color:rgba(58, 58, 58, 0.294);border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
  tr{border-color:inherit;text-align:left;vertical-align:top}

  .tr-grey{
    background-color: rgba(0, 0, 0, 0.048);
  }
