body{
    background: #262626;
    padding: 0;
    margin: 0;
}
.hexagonoB{
    width: 190px;
    height: 109px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hexagonoB:before,
.hexagonoB:after
{
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;    
}
.hexagonoB:before
{
    transform: rotate(60deg);
}
.hexagonoB:after
{
    transform: rotate(-60deg);
    /* translate: -12px; */
}
.hexagonoB,
.hexagonoB:before,
.hexagonoB:after
{
    /* background: transparent;
    border: 1px solid #fff; */
    background: rgba(48,141,255,0.5);
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
span{
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}
span:nth-child(1)
{
    top: -4px;
    left: -4px;
}
span:nth-child(2)
{
    top: -4px;
    right: -4px;
}
span:nth-child(3)
{
    bottom: -4px;
    left: -4px;
}
span:nth-child(4)
{
    bottom: -4px;
    right: -4px;
}
span:nth-child(5)
{    
    bottom: -60px;
    left: calc(50% - 4px);
}
span:nth-child(6)
{    
    top: -60px;
    left: calc(50% - 4px);
}

/* estrella 
https://www.youtube.com/watch?v=CxEXVhfBcCc
Create Hexagon Using Css - html css tutorial - Part 2 */