.m-button{
    display: flex;

    padding: 12px 12px;
    cursor: pointer;
    user-select: none;
    transition: all 150ms linear;
    text-align: center;
    white-space: nowrap;
    text-decoration: none !important;
    text-transform: none;
    text-transform: capitalize;
    color: #fff;
    border: 0 none;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.3;
    appearance: none;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }
 .m-button.small{
    font-size: .8rem !important;
    padding: 6px 6px;
 }
 .m-button.fullsize {
    width: 100%;
 }
 .m-button.transparent{
    background: rgba(255, 255, 255, 0.062);
 }
 .m-button.transparent:hover{
    background: rgb(240, 245, 255);
    color: cornflowerblue;
 }
.m-button.blue:hover{
    background-color: rgb(139, 179, 255);
}
.m-button.blue{
    color: #fff;
    background-color: cornflowerblue;
}
.m-button.yellow:hover{
    background: #ffc517;
}
.m-button.yellow{
    color: #000;
    background: #ffda6a;
}
.m-button.green:hover{
    background: #198754;
}
.m-button.green{
    color: #fff;
    background: #2db475;
}


.m-button.dropdown {
    position: relative;
    display: inline-block;
  }
 .dropdown-content {
    display: none;
    right: 0;
    position: absolute;
    background-color: cornflowerblue;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 10px 0 10px 10px;
    z-index: 99;
    top: calc(100% - .5rem);
    overflow: hidden;
  }
  .dropdown-content .dropdown-item{
    display: block;
    padding: .8rem .9rem;
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }

  .dropdown-content .dropdown-item:first-child{
    border-radius: 10px 0 0 0;
  }
  .dropdown-content .dropdown-item:last-child{
    border-radius: 0 0 10px 10px;
  }
  .dropdown-content .dropdown-item:hover{
    background-color:  rgb(139, 179, 255);
  }

  .m-button.dropdown:hover .dropdown-content {
    display: block;
  }