/* shortcode page */
.button-shortcode{
    display: inline-flex;
    width: 150px;
    padding-bottom: 0px !important;
    color: white !important;
    background-color: #3f51b5 !important;
    text-decoration: none;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    vertical-align: inherit !important;
  }
.button{
    position: relative;
    overflow: hidden;
    cursor: pointer;
} 
.button a{
    position: relative;
    transition: all .45s ease-Out;
}
.underline{
    width: 100%;
    height: 2.5px;
    margin-top: 15px;
    align-self: flex-end;
    left: -200px;
    background: #BFC0C0;
    position: absolute;
    transition: all .3s ease-Out;
    bottom: 0;
}
.button:hover .underline{
    left: 0;
}