﻿.button {
  background-color:#007dc5;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 12px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.428571429;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  border: 1px solid #007dc5;
  border-radius: 4px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: background 0.25s ease 0s, color 0.25s ease 0s;
    transition: background 0.25s ease 0s, color 0.25s ease 0s;
}
.button:hover {
    background-color: #1B1B1B;
    border: 1px solid #1B1B1B;
    color: #FFFFFF;

}

.btn-full {
    width:100%;
}
.btn-dist {
    width:calc( 100% - 10px);
    margin-right:10px;
}


.button-white {
    background-color: #ffffff;
    color: #007dc5;
    text-decoration: none;
    display: inline-block;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.428571429;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    border: 1px solid #007dc5;
    border-radius: 4px;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: background 0.25s ease 0s, color 0.25s ease 0s;
    transition: background 0.25s ease 0s, color 0.25s ease 0s;
}

    .button-white:hover {
        background-color: #1B1B1B;
        border: 1px solid #1B1B1B;
        color: #FFFFFF;
    }