/*
---

name: Buttons

provides: [CSS.Buttons]

...
*/
button,
a.button {
  background-color: #178ABB;
  border: 1px solid #178ABB;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #FFF;
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.3em;
  font-weight: bold;
  height: 24px;
  line-height: 1;
  margin: 0;
  margin-right: 9px;
  padding: 0 10px 0 9px;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 150ms linear;
}
button:hover, button:focus,
a.button:hover,
a.button:focus {
  background-color: #4DBCE9;
  text-decoration: none;
}

button:active,
a.button:active {
  background-color: #BADCEB;
  border-color: #BADCEB;
  text-decoration: none;
}

.button.style2 {
  background-color: #95AA19;
  border: 1px solid #95AA19;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #FFF;
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  border-color: #93A817;
  font-size: 1.6em;
  height: 36px;
  padding: 0 12px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  line-height: 36px;
}
.button.style2:hover, .button.style2:focus {
  background-color: #CEE44E;
  text-decoration: none;
}
.button.style2.addnewitembtn {
  font-size: 12px;
  height: fit-content;
  line-height: inherit;
}
.button.style2.cancelAddItem {
  font-size: 14px;
}

button.style2 {
  background-color: #95AA19;
  border: 1px solid #95AA19;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #FFF;
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  border-color: #93A817;
  font-size: 1.6em;
  height: 36px;
  padding: 0 12px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  line-height: 36px;
}
button.style2:not([disabled]):hover, button.style2:not([disabled]):focus {
  background-color: #CEE44E;
  text-decoration: none;
}

button.style2:active,
.button.style2:active {
  background-color: #E6F1A6;
  border-color: #C9D38B;
  text-decoration: none;
}

button.style3,
.button.style3 {
  width: 100%;
  border: 1px solid #f2f2f2;
  background-color: #ffffff;
  color: #222222;
  transition: color 0ms,background-color .3s ease;
  text-transform: none;
}
button.style3:hover,
.button.style3:hover {
  background-color: #f3f3f3;
}

button[disabled] {
  cursor: default;
  opacity: 0.5;
}

button.text,
button.returnTo {
  background: 0;
  border: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #178ABB;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: normal;
  height: 20px;
  line-height: 1.4286;
  margin-top: 2px;
  padding: 0;
  text-align: left;
  text-shadow: none;
}
button.text:hover, button.text:focus,
button.returnTo:hover,
button.returnTo:focus {
  text-decoration: underline;
}
button.text.cancelAddItem,
button.returnTo.cancelAddItem {
  font-size: 14px;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.reset-button {
  margin: 0 0 0 9px;
  border: 0;
  border-radius: 0;
  padding: 0 0 0 9px;
  height: auto;
  font-weight: normal;
  font-size: 1em;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  background-color: transparent;
}
.reset-button:hover {
  text-decoration: underline;
  background-color: transparent;
}

.descriptionButton,
a.button.mobile {
  display: none;
}

.differentAddress {
  margin-left: 1.72414%;
}

.field button.alignLeft {
  float: left;
}
.field button.alignRight {
  float: right;
}
.field.buttons:after {
  clear: both;
  content: "";
  display: table;
}
.field.buttons p {
  clear: none;
  display: inline;
  margin: 4px 3px 0 0;
  padding: 0;
}
.field.buttons.alignLeft, .field.buttons.alignRight {
  margin-left: 0;
  padding-left: 8px;
}
.field.buttons.alignLeft.noPad, .field.buttons.alignRight.noPad {
  padding: 0;
}
.field.buttons.alignRight > * {
  float: right;
  margin-right: 0;
}
.field.buttons.alignRight.alignRightJustButtons > * {
  float: none;
}
.field.buttons.alignRight.alignRightJustButtons > button, .field.buttons.alignRight.alignRightJustButtons > .button {
  float: right;
  margin-right: 0;
}
.field.buttons.payment-failure-options {
  padding-top: 20px;
  padding-left: 40px;
}
.field.buttons.payment-failure-options .button.style2 {
  padding: 0 25px;
}
.field.buttons.payment-failure-options .text-content {
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4286;
}
