.fases{
    display:flex;
    flex-direction: row;
}
.fase1 {
   /* height: 150px;*/
    margin:2px;
    display: flex;
    flex-direction: column;
 /*   background-color: red;*/
    width: 50%;
}
.fase2{
    /*height: 150px;*/
    display: flex;
    flex-direction: column;
   /* background-color: red; */
    width: 50%;
}

.containerPotencias{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center; 
    justify-content: center;
}

.potencias{
    display: flex;
    flex-direction: column;
    width: 245px; 
    background-color: #ccc;
    margin: 10px;
    justify-content: center;
    border-radius: 5px;
    
 /* align-items: center; */
}
.potTitulo{
    display: flex;
    justify-content: center;
}


.dotGreen {
  height: 25px;
  width: 25px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
}
.dotRed {
  height: 25px;
  width: 25px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}
.dotRedDark {
  height: 25px;
  width: 25px;
  background-color: #900C3F;
  border-radius: 50%;
  display: inline-block;
}
.dotYellow {
  height: 25px;
  width: 25px;
  background-color: yellow;
  border-radius: 50%;
  display: inline-block;
}
.dot {
  height: 25px;
  width: 25px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}