.Button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #000000;
  text-decoration: none;
}

.Button:focus {
}

.Button:visited {
  color: #000000;
}

.Button:active {
  color: #000000;
}

.Button:hover {
  background-color: #fff;
  color: #000000;
  text-decoration: none;
}

/*js state*/
.Button.is-active {
	color: #000000;
	font-weight: bold;
}


/*modifier*/
a.Button--profile {
  width: 210px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #000000;
}

a.Button--shop {
  width: 121px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #000000;
}

a.Button--country {
  font-weight: 300;
  padding: 15px 20px;
  font-size: 13px;
  line-height: 1;
  color:  #000000;
  display: block;
  text-align: left;
  margin: 0;

}
a.Button--country::after {
  position: absolute;
  content: '';
  height: 1px;
  background-color: #eeeeee;
  bottom: 0;
  left: 10px;
  right: 10px;
}

a.Button--country:hover {
  background-color: #eeeeee;
  color: #000000;
}

.Button--wishlist {
  font-weight: 300;
  padding: 20px 20px;
  font-size: 13px;
  line-height: 1;
  color:  #000000;
  display: block;
  text-align: left;
  margin: 0;
  background: #FFFFFF;
  width: 100%;
  border: 0;
}

.Button--wishlist:hover {
  background-color: #FBFCFD;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

.Button--wishlist::after {
  position: absolute;
  content: '';
  height: 1px;
  background-color: #eeeeee;
  bottom: 0;
  left: 10px;
  right: 10px;
}