.container {
	width: 500px;
  display: flex;
  flex-direction: column;
	background-color: rgb(206, 209, 209);
	border-radius: 5px;
	padding: 10px;
}

.collaps-container {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
  background-color: rgb(20, 53, 199);
  box-sizing: border-box;
  width: 100px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}

.collaps-container:hover {
  border: 3px solid rgb(68, 144, 245);
}

.text {
  opacity: 0;
	border-radius: 5px;
  max-height: 0;
  padding: 0 10px;
  margin-top: 10px;
  border: 1px solid rgb(187, 185, 185);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  overflow: hidden;
  transition: opacity 0.5s, max-height 0.5s, padding 0.5s;
}

.text.visible {
  opacity: 1;
  max-height: 200px;
  padding: 10px;
}




