@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #e5e5e5;
  display: flex;
  padding-top: 5rem;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

.row {
  display: flex;
  width: 600px;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.col-header {
  width: 150px;
  box-shadow: 4px 4px 9px rgba(198, 198, 198, 0.36);
  border-radius: 20px;
  padding: 0.8rem 1rem;
  color: #fff;
}

.item {
  width: 150px;
  height: 66px;
  border: 1px solid #eee;
  box-shadow: 4px 4px 9px rgba(198, 198, 198, 0.36);
  border-radius: 20px;
  background: #f7f6f7;
  padding: 0.8rem 1rem;
  color: #828282;
  text-align: center;
  cursor: move;
 

  -webkit-transition: color 0.9s linear;
  -moz-transition: color 0.9s linear;
  -ms-transition: color 0.9s linear;
  -o-transition: color 0.9s linear;
  transition: color 0.9s linear;
}

.item:active {
  cursor: move; 
}
.item:hover{

  color: aliceblue;
  background-color:lightcoral;
}


.placeholder {
  width: 150px;
  height: 66px;
}

.start {
  background: linear-gradient(90deg, #ff85e4 0%, #229efd 179.25%);
}

.progress {
  background: linear-gradient(90deg, #209cff 0%, #68e0cf 100%);
  
}

.done {
  background: linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
}

.hold{
  color: aliceblue;
  background-color:lightcoral;
}

.hide{
  display: none
}

.hovered{
  background-color: chartreuse;
  background: linear-gradient(90deg, lightgreen 0%, chartreuse 100%);
  border-radius: 20px;
}
.hovered:before{
  content: "Сюда?";
  color: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}