/* Reusable but site specific styles */

.butt{
  display: inline-flex;
  align-items: center;
  min-height:32px;
  font-size: 1rem !important;
  padding:0 1rem;
  background-color: var(--theme);
  position: relative;
  color:white;
  font-weight: var(--strong);
  text-decoration: none;
  border:0;
  border-radius: 0.25rem;
  margin: 0.5rem 0;
  cursor: pointer;
}

.butt-icon{
  display: inline-flex;
  width:24px;
  height:100%;
  margin-right:0.5rem;
  background:url('/site/assets/images/marker_end.svg') no-repeat center;
  background-size: 34px auto;
}

.butt:hover{
  background-color: var(--dark);
}

