/* #####################################################################################################
   Button styles
   ##################################################################################################### */

/*--- standard variables ---*/
/*--- switch themes ---*/
/* #####################################################################################################
   This stylesheet is used for theme specific variables

   1 Munnichs

   ##################################################################################################### */
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.bttn {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0 2em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  font-weight: 600;
  border: 3px solid black;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

  background: white;
  color: black;
  height: 50px;
  line-height: 46px;
  font-size: 16px;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.bttn:hover {
  background: white;
  color: black;
  opacity: 1;
}
button.focus,
input[type="button"].focus,
input[type="reset"].focus,
input[type="submit"].focus,
.bttn.focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.bttn:focus {
  box-shadow: 0 0 0 1px white;
}
button.active,
input[type="button"].active,
input[type="reset"].active,
input[type="submit"].active,
.bttn.active,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
.bttn:active {
  background: #e6e6e6;
}
@media only screen and (max-width: 767px) {
  button + button,
  button + input[type="button"],
  button + input[type="reset"],
  button + input[type="submit"],
  button + .bttn,
  input[type="button"] + button,
  input[type="button"] + input[type="button"],
  input[type="button"] + input[type="reset"],
  input[type="button"] + input[type="submit"],
  input[type="button"] + .bttn,
  input[type="reset"] + button,
  input[type="reset"] + input[type="button"],
  input[type="reset"] + input[type="reset"],
  input[type="reset"] + input[type="submit"],
  input[type="reset"] + .bttn,
  input[type="submit"] + button,
  input[type="submit"] + input[type="button"],
  input[type="submit"] + input[type="reset"],
  input[type="submit"] + input[type="submit"],
  input[type="submit"] + .bttn,
  .bttn + button,
  .bttn + input[type="button"],
  .bttn + input[type="reset"],
  .bttn + input[type="submit"],
  .bttn + .bttn {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  button + button,
  button + input[type="button"],
  button + input[type="reset"],
  button + input[type="submit"],
  button + .bttn,
  input[type="button"] + button,
  input[type="button"] + input[type="button"],
  input[type="button"] + input[type="reset"],
  input[type="button"] + input[type="submit"],
  input[type="button"] + .bttn,
  input[type="reset"] + button,
  input[type="reset"] + input[type="button"],
  input[type="reset"] + input[type="reset"],
  input[type="reset"] + input[type="submit"],
  input[type="reset"] + .bttn,
  input[type="submit"] + button,
  input[type="submit"] + input[type="button"],
  input[type="submit"] + input[type="reset"],
  input[type="submit"] + input[type="submit"],
  input[type="submit"] + .bttn,
  .bttn + button,
  .bttn + input[type="button"],
  .bttn + input[type="reset"],
  .bttn + input[type="submit"],
  .bttn + .bttn {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  button,
  input[type="button"],
  input[type="reset"],
  input[type="submit"],
  .bttn {
    border: 3px solid black;
  }
}
@media only screen and (min-width: 768px) {
  button,
  input[type="button"],
  input[type="reset"],
  input[type="submit"],
  .bttn {
    display: inline-block;
    width: auto;
    height: 60px;
    line-height: 56px;
    font-size: 14px;
  }
}
button .add.icon:hover,
input[type="button"] .add.icon:hover,
input[type="reset"] .add.icon:hover,
input[type="submit"] .add.icon:hover,
.bttn .add.icon:hover {
  color: white !important;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.bttn:hover {
  background: #bc9f75;
  border: 3px solid #bc9f75;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
button.disabled,
input[type="button"].disabled,
input[type="reset"].disabled,
input[type="submit"].disabled,
.bttn.disabled,
button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled,
.bttn:disabled {
  cursor: not-allowed;
  pointer-events: none;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
button.active,
input[type="button"].active,
input[type="reset"].active,
input[type="submit"].active,
.bttn.active,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
.bttn:active {
  cursor: pointer;
}
button.focus,
input[type="button"].focus,
input[type="reset"].focus,
input[type="submit"].focus,
.bttn.focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.bttn:focus {
  outline: 0;
}
button.default,
input[type="button"].default,
input[type="reset"].default,
input[type="submit"].default,
.bttn.default {
  border-color: black;
  background: transparent;
  color: black;
  height: 60px;
  line-height: 56px;
  font-size: 14px;
}
button.default:hover,
input[type="button"].default:hover,
input[type="reset"].default:hover,
input[type="submit"].default:hover,
.bttn.default:hover {
  background: rgba(26, 26, 26, 0);
  color: black;
  opacity: 1;
}
button.default.focus,
input[type="button"].default.focus,
input[type="reset"].default.focus,
input[type="submit"].default.focus,
.bttn.default.focus,
button.default:focus,
input[type="button"].default:focus,
input[type="reset"].default:focus,
input[type="submit"].default:focus,
.bttn.default:focus {
  box-shadow: 0 0 0 1px rgba(64, 64, 64, 0);
}
button.default.active,
input[type="button"].default.active,
input[type="reset"].default.active,
input[type="submit"].default.active,
.bttn.default.active,
button.default:active,
input[type="button"].default:active,
input[type="reset"].default:active,
input[type="submit"].default:active,
.bttn.default:active {
  background: transparent;
}
button.default:active,
input[type="button"].default:active,
input[type="reset"].default:active,
input[type="submit"].default:active,
.bttn.default:active {
  border-color: black;
}
button.link,
input[type="button"].link,
input[type="reset"].link,
input[type="submit"].link,
.bttn.link {
  background: transparent;
  color: black;
  height: 60px;
  line-height: 56px;
  font-size: 14px;
  border: 0 none;
}
button.link:hover,
input[type="button"].link:hover,
input[type="reset"].link:hover,
input[type="submit"].link:hover,
.bttn.link:hover {
  background: rgba(26, 26, 26, 0);
  color: black;
  opacity: 1;
}
button.link.focus,
input[type="button"].link.focus,
input[type="reset"].link.focus,
input[type="submit"].link.focus,
.bttn.link.focus,
button.link:focus,
input[type="button"].link:focus,
input[type="reset"].link:focus,
input[type="submit"].link:focus,
.bttn.link:focus {
  box-shadow: 0 0 0 1px rgba(64, 64, 64, 0);
}
button.link.active,
input[type="button"].link.active,
input[type="reset"].link.active,
input[type="submit"].link.active,
.bttn.link.active,
button.link:active,
input[type="button"].link:active,
input[type="reset"].link:active,
input[type="submit"].link:active,
.bttn.link:active {
  background: transparent;
}
button.link,
input[type="button"].link,
input[type="reset"].link,
input[type="submit"].link,
.bttn.link,
button.link.small,
input[type="button"].link.small,
input[type="reset"].link.small,
input[type="submit"].link.small,
.bttn.link.small,
button.link.large,
input[type="button"].link.large,
input[type="reset"].link.large,
input[type="submit"].link.large,
.bttn.link.large {
  padding: 0;
}
button.link:hover,
input[type="button"].link:hover,
input[type="reset"].link:hover,
input[type="submit"].link:hover,
.bttn.link:hover {
  text-decoration: underline;
}
button.prev:before,
input[type="button"].prev:before,
input[type="reset"].prev:before,
input[type="submit"].prev:before,
.bttn.prev:before {
  position: absolute;
  top: 13px;
  left: 20px;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

  content: "\f053";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
button.prev:hover:before,
input[type="button"].prev:hover:before,
input[type="reset"].prev:hover:before,
input[type="submit"].prev:hover:before,
.bttn.prev:hover:before {
  left: 10px;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
button.next:before,
input[type="button"].next:before,
input[type="reset"].next:before,
input[type="submit"].next:before,
.bttn.next:before {
  position: absolute;
  top: 13px;
  right: 20px;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

  content: "\f054";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
button.next:hover:before,
input[type="button"].next:hover:before,
input[type="reset"].next:hover:before,
input[type="submit"].next:hover:before,
.bttn.next:hover:before {
  right: 10px;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
button.block,
input[type="button"].block,
input[type="reset"].block,
input[type="submit"].block,
.bttn.block {
  display: block;
}
button.full,
input[type="button"].full,
input[type="reset"].full,
input[type="submit"].full,
.bttn.full {
  margin: 0;
  width: 100%;
}
button.divider,
input[type="button"].divider,
input[type="reset"].divider,
input[type="submit"].divider,
.bttn.divider {
  margin: 0;
  width: 100%;
  display: block;
  cursor: default;
  position: relative;
  border: none;
  background: transparent;
  color: black;
  height: 40px;
  line-height: 36px;
  font-size: 16px;
}
button.divider:hover,
input[type="button"].divider:hover,
input[type="reset"].divider:hover,
input[type="submit"].divider:hover,
.bttn.divider:hover {
  background: rgba(26, 26, 26, 0);
  color: black;
  opacity: 1;
}
button.divider.focus,
input[type="button"].divider.focus,
input[type="reset"].divider.focus,
input[type="submit"].divider.focus,
.bttn.divider.focus,
button.divider:focus,
input[type="button"].divider:focus,
input[type="reset"].divider:focus,
input[type="submit"].divider:focus,
.bttn.divider:focus {
  box-shadow: 0 0 0 1px rgba(64, 64, 64, 0);
}
button.divider.active,
input[type="button"].divider.active,
input[type="reset"].divider.active,
input[type="submit"].divider.active,
.bttn.divider.active,
button.divider:active,
input[type="button"].divider:active,
input[type="reset"].divider:active,
input[type="submit"].divider:active,
.bttn.divider:active {
  background: transparent;
}
button.divider:before,
input[type="button"].divider:before,
input[type="reset"].divider:before,
input[type="submit"].divider:before,
.bttn.divider:before {
  content: "";
  width: 100%;
  height: 1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 0;
}
button.divider:after,
input[type="button"].divider:after,
input[type="reset"].divider:after,
input[type="submit"].divider:after,
.bttn.divider:after {
  content: attr(data-divider-text);
  width: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -35px;
  padding: 0 10px;
  background: white;
}
button.icon:hover,
input[type="button"].icon:hover,
input[type="reset"].icon:hover,
input[type="submit"].icon:hover,
.bttn.icon:hover {
  text-decoration: none;
  color: #bc9f75;
}
button.icon:before,
input[type="button"].icon:before,
input[type="reset"].icon:before,
input[type="submit"].icon:before,
.bttn.icon:before {
  margin-right: 1em;
  content: '';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
@media only screen and (max-width: 767px) {
  
}
button.icon.icon-right:before,
input[type="button"].icon.icon-right:before,
input[type="reset"].icon.icon-right:before,
input[type="submit"].icon.icon-right:before,
.bttn.icon.icon-right:before {
  float: right;
  height: inherit;
  line-height: inherit;
  margin-right: 0;
  margin-left: 1em;
}
button.icon.add:before,
input[type="button"].icon.add:before,
input[type="reset"].icon.add:before,
input[type="submit"].icon.add:before,
.bttn.icon.add:before {
  content: "\f067";
}
button.icon.edit:before,
input[type="button"].icon.edit:before,
input[type="reset"].icon.edit:before,
input[type="submit"].icon.edit:before,
.bttn.icon.edit:before {
  content: "\f040";
}
button.icon.delete:before,
input[type="button"].icon.delete:before,
input[type="reset"].icon.delete:before,
input[type="submit"].icon.delete:before,
.bttn.icon.delete:before {
  content: "\f1f8";
}
button.icon.search:before,
input[type="button"].icon.search:before,
input[type="reset"].icon.search:before,
input[type="submit"].icon.search:before,
.bttn.icon.search:before {
  content: "\f002";
}
button.icon.mail:before,
input[type="button"].icon.mail:before,
input[type="reset"].icon.mail:before,
input[type="submit"].icon.mail:before,
.bttn.icon.mail:before {
  content: "\f003";
}
button.icon.phone:before,
input[type="button"].icon.phone:before,
input[type="reset"].icon.phone:before,
input[type="submit"].icon.phone:before,
.bttn.icon.phone:before {
  content: "\f095";
}
button.icon.arrow-left:before,
input[type="button"].icon.arrow-left:before,
input[type="reset"].icon.arrow-left:before,
input[type="submit"].icon.arrow-left:before,
.bttn.icon.arrow-left:before {
  content: "\f053";
}
button.icon.arrow-right:before,
input[type="button"].icon.arrow-right:before,
input[type="reset"].icon.arrow-right:before,
input[type="submit"].icon.arrow-right:before,
.bttn.icon.arrow-right:before {
  content: "\f054";
}
button.icon.arrow-top:before,
input[type="button"].icon.arrow-top:before,
input[type="reset"].icon.arrow-top:before,
input[type="submit"].icon.arrow-top:before,
.bttn.icon.arrow-top:before {
  content: "\f077";
}
button.icon.arrow-bottom:before,
input[type="button"].icon.arrow-bottom:before,
input[type="reset"].icon.arrow-bottom:before,
input[type="submit"].icon.arrow-bottom:before,
.bttn.icon.arrow-bottom:before {
  content: "\f078";
}
button.icon.geo:before,
input[type="button"].icon.geo:before,
input[type="reset"].icon.geo:before,
input[type="submit"].icon.geo:before,
.bttn.icon.geo:before {
  content: "\f041";
}
button.icon.approve:before,
input[type="button"].icon.approve:before,
input[type="reset"].icon.approve:before,
input[type="submit"].icon.approve:before,
.bttn.icon.approve:before {
  content: "\f00c";
}
button.icon.star:before,
input[type="button"].icon.star:before,
input[type="reset"].icon.star:before,
input[type="submit"].icon.star:before,
.bttn.icon.star:before {
  content: "\f006";
}
button.icon.star:hover:before,
input[type="button"].icon.star:hover:before,
input[type="reset"].icon.star:hover:before,
input[type="submit"].icon.star:hover:before,
.bttn.icon.star:hover:before,
button.icon.star-0:before,
input[type="button"].icon.star-0:before,
input[type="reset"].icon.star-0:before,
input[type="submit"].icon.star-0:before,
.bttn.icon.star-0:before {
  content: "\f005";
}
button.icon.home:before,
input[type="button"].icon.home:before,
input[type="reset"].icon.home:before,
input[type="submit"].icon.home:before,
.bttn.icon.home:before {
  content: "\f015";
}
button.icon.shopping-cart:before,
input[type="button"].icon.shopping-cart:before,
input[type="reset"].icon.shopping-cart:before,
input[type="submit"].icon.shopping-cart:before,
.bttn.icon.shopping-cart:before {
  content: "\f07a";
}
button.icon.shopping-bag:before,
input[type="button"].icon.shopping-bag:before,
input[type="reset"].icon.shopping-bag:before,
input[type="submit"].icon.shopping-bag:before,
.bttn.icon.shopping-bag:before {
  content: "\f290";
}
@media only screen and (min-width: 400px) {
  button.floatLeft:not(.large),
  input[type="button"].floatLeft:not(.large),
  input[type="reset"].floatLeft:not(.large),
  input[type="submit"].floatLeft:not(.large),
  .bttn.floatLeft:not(.large),
  button.floatRight:not(.large),
  input[type="button"].floatRight:not(.large),
  input[type="reset"].floatRight:not(.large),
  input[type="submit"].floatRight:not(.large),
  .bttn.floatRight:not(.large) {
    width: auto;
  }
  button.floatLeft:not(.large).icon:before,
  input[type="button"].floatLeft:not(.large).icon:before,
  input[type="reset"].floatLeft:not(.large).icon:before,
  input[type="submit"].floatLeft:not(.large).icon:before,
  .bttn.floatLeft:not(.large).icon:before,
  button.floatRight:not(.large).icon:before,
  input[type="button"].floatRight:not(.large).icon:before,
  input[type="reset"].floatRight:not(.large).icon:before,
  input[type="submit"].floatRight:not(.large).icon:before,
  .bttn.floatRight:not(.large).icon:before {
    display: inline-block;
  }
}
@media only screen and (min-width: 600px) {
  button.floatLeft.large,
  input[type="button"].floatLeft.large,
  input[type="reset"].floatLeft.large,
  input[type="submit"].floatLeft.large,
  .bttn.floatLeft.large,
  button.floatRight.large,
  input[type="button"].floatRight.large,
  input[type="reset"].floatRight.large,
  input[type="submit"].floatRight.large,
  .bttn.floatRight.large {
    width: auto;
  }
  button.floatLeft.large.icon:before,
  input[type="button"].floatLeft.large.icon:before,
  input[type="reset"].floatLeft.large.icon:before,
  input[type="submit"].floatLeft.large.icon:before,
  .bttn.floatLeft.large.icon:before,
  button.floatRight.large.icon:before,
  input[type="button"].floatRight.large.icon:before,
  input[type="reset"].floatRight.large.icon:before,
  input[type="submit"].floatRight.large.icon:before,
  .bttn.floatRight.large.icon:before {
    display: inline-block;
  }
}
button.borderFade:before,
input[type="button"].borderFade:before,
input[type="reset"].borderFade:before,
input[type="submit"].borderFade:before,
.bttn.borderFade:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: black;
  border-bottom-color: black;
  transform: scale(0.1, 1);
}
button.borderFade:after,
input[type="button"].borderFade:after,
input[type="reset"].borderFade:after,
input[type="submit"].borderFade:after,
.bttn.borderFade:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: black;
}
button.borderFade:hover,
input[type="button"].borderFade:hover,
input[type="reset"].borderFade:hover,
input[type="submit"].borderFade:hover,
.bttn.borderFade:hover {
  color: black;
}
button.borderFade:hover:before,
input[type="button"].borderFade:hover:before,
input[type="reset"].borderFade:hover:before,
input[type="submit"].borderFade:hover:before,
.bttn.borderFade:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}
button.borderFade:hover:after,
input[type="button"].borderFade:hover:after,
input[type="reset"].borderFade:hover:after,
input[type="submit"].borderFade:hover:after,
.bttn.borderFade:hover:after {
  opacity: 0;
  transform: scale(0.1, 1);
}
@media only screen and (min-width: 768px) {
  button.small,
  input[type="button"].small,
  input[type="reset"].small,
  input[type="submit"].small,
  .bttn.small {
    padding: 0 0.5em;
    height: 40px;
    line-height: 36px;
    font-size: 12px;
  }
}
button.large,
input[type="button"].large,
input[type="reset"].large,
input[type="submit"].large,
.bttn.large {
  padding: 0 1.5em;
  height: 60px;
  line-height: 56px;
  font-size: 16px;
}
button.primary,
input[type="button"].primary,
input[type="reset"].primary,
input[type="submit"].primary,
.bttn.primary {
  background: #c61c40;
  color: white;
}
button.primary:hover,
input[type="button"].primary:hover,
input[type="reset"].primary:hover,
input[type="submit"].primary:hover,
.bttn.primary:hover {
  background: #e23358;
  color: #f2f2f2;
  opacity: 1;
}
button.info,
input[type="button"].info,
input[type="reset"].info,
input[type="submit"].info,
.bttn.info {
  background: #5bc0de;
  color: white;
}
button.info:hover,
input[type="button"].info:hover,
input[type="reset"].info:hover,
input[type="submit"].info:hover,
.bttn.info:hover {
  background: #85d0e7;
  color: #f2f2f2;
  opacity: 1;
}
button.warning,
input[type="button"].warning,
input[type="reset"].warning,
input[type="submit"].warning,
.bttn.warning {
  background: #f0ad4e;
  color: white;
}
button.warning:hover,
input[type="button"].warning:hover,
input[type="reset"].warning:hover,
input[type="submit"].warning:hover,
.bttn.warning:hover {
  background: #f4c37d;
  color: #f2f2f2;
  opacity: 1;
}
button.success,
input[type="button"].success,
input[type="reset"].success,
input[type="submit"].success,
.bttn.success {
  background: #5cb85c;
  color: white;
}
button.success:hover,
input[type="button"].success:hover,
input[type="reset"].success:hover,
input[type="submit"].success:hover,
.bttn.success:hover {
  background: #80c780;
  color: #f2f2f2;
  opacity: 1;
}
button.danger,
input[type="button"].danger,
input[type="reset"].danger,
input[type="submit"].danger,
.bttn.danger {
  background: #e6575a;
  color: white;
}
button.danger:hover,
input[type="button"].danger:hover,
input[type="reset"].danger:hover,
input[type="submit"].danger:hover,
.bttn.danger:hover {
  background: #ed8386;
  color: #f2f2f2;
  opacity: 1;
}
button.primary-hover:hover,
input[type="button"].primary-hover:hover,
input[type="reset"].primary-hover:hover,
input[type="submit"].primary-hover:hover,
.bttn.primary-hover:hover {
  background: #f8f8f8;
  color: white;
  opacity: 1;
}
button.info-hover:hover,
input[type="button"].info-hover:hover,
input[type="reset"].info-hover:hover,
input[type="submit"].info-hover:hover,
.bttn.info-hover:hover {
  background: #5bc0de;
  color: white;
  opacity: 1;
}
button.warning-hover:hover,
input[type="button"].warning-hover:hover,
input[type="reset"].warning-hover:hover,
input[type="submit"].warning-hover:hover,
.bttn.warning-hover:hover {
  background: #f0ad4e;
  color: white;
  opacity: 1;
}
button.success-hover:hover,
input[type="button"].success-hover:hover,
input[type="reset"].success-hover:hover,
input[type="submit"].success-hover:hover,
.bttn.success-hover:hover {
  background: #5cb85c;
  color: white;
  opacity: 1;
}
button.danger-hover:hover,
input[type="button"].danger-hover:hover,
input[type="reset"].danger-hover:hover,
input[type="submit"].danger-hover:hover,
.bttn.danger-hover:hover {
  background: #e6575a;
  color: white;
  opacity: 1;
}
button.outline,
input[type="button"].outline,
input[type="reset"].outline,
input[type="submit"].outline,
.bttn.outline {
  background: transparent;
  color: black;
  height: 60px;
  line-height: 56px;
  font-size: 14px;
  border-color: black;
}
button.outline:hover,
input[type="button"].outline:hover,
input[type="reset"].outline:hover,
input[type="submit"].outline:hover,
.bttn.outline:hover {
  background: rgba(26, 26, 26, 0);
  color: black;
  opacity: 1;
}
button.outline:hover,
input[type="button"].outline:hover,
input[type="reset"].outline:hover,
input[type="submit"].outline:hover,
.bttn.outline:hover {
  background: rgba(26, 26, 26, 0);
  color: black;
  opacity: 1;
}
button.outline.focus,
input[type="button"].outline.focus,
input[type="reset"].outline.focus,
input[type="submit"].outline.focus,
.bttn.outline.focus,
button.outline:focus,
input[type="button"].outline:focus,
input[type="reset"].outline:focus,
input[type="submit"].outline:focus,
.bttn.outline:focus {
  box-shadow: 0 0 0 1px rgba(64, 64, 64, 0);
}
button.outline.active,
input[type="button"].outline.active,
input[type="reset"].outline.active,
input[type="submit"].outline.active,
.bttn.outline.active,
button.outline:active,
input[type="button"].outline:active,
input[type="reset"].outline:active,
input[type="submit"].outline:active,
.bttn.outline:active {
  background: transparent;
}
button.outline.large,
input[type="button"].outline.large,
input[type="reset"].outline.large,
input[type="submit"].outline.large,
.bttn.outline.large {
  padding: 0 1.5em;
  height: 40px;
  line-height: 36px;
  font-size: 16px;
}
button.outline:hover,
input[type="button"].outline:hover,
input[type="reset"].outline:hover,
input[type="submit"].outline:hover,
.bttn.outline:hover {
  border-color: black;
}
button.primary.outline,
input[type="button"].primary.outline,
input[type="reset"].primary.outline,
input[type="submit"].primary.outline,
.bttn.primary.outline {
  border-color: #f8f8f8;
  background: transparent;
  color: #f8f8f8;
}
button.primary.outline:hover,
input[type="button"].primary.outline:hover,
input[type="reset"].primary.outline:hover,
input[type="submit"].primary.outline:hover,
.bttn.primary.outline:hover {
  background: rgba(26, 26, 26, 0);
  color: #ebebeb;
  opacity: 1;
}
button.primary.outline:hover,
input[type="button"].primary.outline:hover,
input[type="reset"].primary.outline:hover,
input[type="submit"].primary.outline:hover,
.bttn.primary.outline:hover {
  background: #f8f8f8;
  color: white;
  opacity: 1;
}
button.info.outline,
input[type="button"].info.outline,
input[type="reset"].info.outline,
input[type="submit"].info.outline,
.bttn.info.outline {
  border-color: #5bc0de;
  background: transparent;
  color: #5bc0de;
}
button.info.outline:hover,
input[type="button"].info.outline:hover,
input[type="reset"].info.outline:hover,
input[type="submit"].info.outline:hover,
.bttn.info.outline:hover {
  background: rgba(26, 26, 26, 0);
  color: #46b8da;
  opacity: 1;
}
button.info.outline:hover,
input[type="button"].info.outline:hover,
input[type="reset"].info.outline:hover,
input[type="submit"].info.outline:hover,
.bttn.info.outline:hover {
  background: #5bc0de;
  color: white;
  opacity: 1;
}
button.warning.outline,
input[type="button"].warning.outline,
input[type="reset"].warning.outline,
input[type="submit"].warning.outline,
.bttn.warning.outline {
  border-color: #f0ad4e;
  background: transparent;
  color: #f0ad4e;
}
button.warning.outline:hover,
input[type="button"].warning.outline:hover,
input[type="reset"].warning.outline:hover,
input[type="submit"].warning.outline:hover,
.bttn.warning.outline:hover {
  background: rgba(26, 26, 26, 0);
  color: #eea236;
  opacity: 1;
}
button.warning.outline:hover,
input[type="button"].warning.outline:hover,
input[type="reset"].warning.outline:hover,
input[type="submit"].warning.outline:hover,
.bttn.warning.outline:hover {
  background: #f0ad4e;
  color: white;
  opacity: 1;
}
button.success.outline,
input[type="button"].success.outline,
input[type="reset"].success.outline,
input[type="submit"].success.outline,
.bttn.success.outline {
  border-color: #5cb85c;
  background: transparent;
  color: #5cb85c;
}
button.success.outline:hover,
input[type="button"].success.outline:hover,
input[type="reset"].success.outline:hover,
input[type="submit"].success.outline:hover,
.bttn.success.outline:hover {
  background: rgba(26, 26, 26, 0);
  color: #4cae4c;
  opacity: 1;
}
button.success.outline:hover,
input[type="button"].success.outline:hover,
input[type="reset"].success.outline:hover,
input[type="submit"].success.outline:hover,
.bttn.success.outline:hover {
  background: #5cb85c;
  color: white;
  opacity: 1;
}
button.danger.outline,
input[type="button"].danger.outline,
input[type="reset"].danger.outline,
input[type="submit"].danger.outline,
.bttn.danger.outline {
  border-color: #e6575a;
  background: transparent;
  color: #e6575a;
}
button.danger.outline:hover,
input[type="button"].danger.outline:hover,
input[type="reset"].danger.outline:hover,
input[type="submit"].danger.outline:hover,
.bttn.danger.outline:hover {
  background: rgba(26, 26, 26, 0);
  color: #e34144;
  opacity: 1;
}
button.danger.outline:hover,
input[type="button"].danger.outline:hover,
input[type="reset"].danger.outline:hover,
input[type="submit"].danger.outline:hover,
.bttn.danger.outline:hover {
  background: #e6575a;
  color: white;
  opacity: 1;
}
button.loading,
input[type="button"].loading,
input[type="reset"].loading,
input[type="submit"].loading,
.bttn.loading {
  cursor: wait;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.buttonList {
  margin: 15px 0;
}
.buttonList li {
  margin: 5px 0;
}
.buttonList.buttonList--centered {
  text-align: center;
}
.buttonList.buttonList--centered li {
  display: inline-block;
  margin: 5px;
}
.button-group {
  margin: 10px 0;
}
.deleteButton {
  font-size: 20px;
  line-height: 20px;
  vertical-align: middle;
  color: #4c4c4c;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}
.deleteButton:hover {
  color: #e6575a;
  text-decoration: none;
}
.favorite {
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  color: #4c4c4c;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 0;
}
.favorite:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  -o-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
  width: 30px;
  height: 30px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
.favorite:hover {
  color: #bc9f75;
}
.favorite.favorite--add:before {
  background: url(../../images/favorite.png) no-repeat center center;
}
.favorite:hover:before {
  color: #bc9f75;
  background: url(../../images/favorite.png) no-repeat center center;
}
.favorite:hover:before,
.favorite:active:before {
  color: #bc9f75;
  background: url(../../images/favoriteGold.svg) no-repeat center center;
}
.favorite.favorite--delete {
  color: #bc9f75;
}
.favorite.favorite--delete:hover {
  color: black;
}
.favorite.favorite--delete:before {
  color: #bc9f75;
  background: url(../../images/favoriteGold.svg) no-repeat center center;
}
