/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 #btn-mas{
     display: none;
 }
*/
 .container2{
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 10px;
 } 

 .redes a, .icon-mas2{
     display: block;
     text-decoration: none;
     background: #cc2b2b ;
     color: #fff;
     width: 25px;
     height: 25px;
     line-height: 25px;
     text-align: center;
     border-radius: 50%;
     outline: 4px solid /*#474d4e7d*/ #f0f9007a;
     box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
     transition: all 500ms ease;
     transform: rotate(137deg);
     animation: 1s animateBorderOne ease infinite;
 }
 .redes a:hover{
     background: #fff;
     color: #cc2b2b;
 }
 .redes a{
     margin-bottom: -15px;
     opacity: 0;
     visibility: hidden;
 }
 #btn-mas:checked~ .redes a{
     margin-bottom: 10px;
     opacity: 1;
     visibility: visible;
 }
 .icon-mas2{
     cursor: pointer;
     background: #f44141;
     font-size: 14px;
 }

 @keyframes animateBorderOne {
    to {
      outline-color: #474d4e00;
      box-shadow: 0px 1px 10px rgba(0, 0, 0, 0);
    }
  }

