.btn {
  display: inline-block;
  background: var(--color--principal);
  border-color: var(--color--principal);
  margin: 0 0 0 10px;
  font-size: 12px;
  line-height: 1;
  font-style: initial;
  border: 1px solid transparent;
  text-transform: inherit;
  padding: 5px 10px;
  text-decoration: none;
  color: #fff !important;
  border-radius: 3px;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  transition: 0.1s;
  text-align: center;
  outline: none !important;
  height: fit-content;
  width: fit-content;
}

.btn:hover {
  background: var(--color--principal--hover);
}

.btn.transparent {
  background: none;
  color: var(--color--text) !important;
}

.btn.transparent:hover {
  background: var(--color--principal);
}

.btn.purple {
  background-color: #993366;
}

.btn.purple:hover {
  background-color: #771144;
}

.btn.btn-secondary {
  background-color: #7987a1 !important;
  border-color: #7987a1 !important;
}

.btn.btn-secondary:hover {
  background-color: #64738f !important;
  border-color: #5f6d88 !important;
}

.btn.btn-success {
  background-color: #10b759 !important;
  border-color: #10b759 !important;
}

.btn.btn-success:hover {
  background-color: #0d9448 !important;
  border-color: #0c8842 !important;
}

.btn.btn-danger {
  background-color: #e23835 !important;
  border-color: #ef5350 !important;
}

.btn.btn-danger:hover {
  background-color: #ce0000 !important;
  border-color: #bd4341 !important;
}

.btn.btn-warning {
  background-color: #fb8906 !important;
  border-color: #fb8906 !important;
}

.btn.btn-warning:hover {
  background-color: #b95f0f !important;
  border-color: #8d480c !important;
}

.btn.btn-info-secondary {
  background-color: #fbbc06 !important;
  border-color: #fbbc06 !important;
}

.btn.btn-info-secondary:hover {
  background-color: #d7a103 !important;
  border-color: #aa8106 !important;
}

.btn.btn-info {
  background-color: #66d1d1 !important;
  border-color: #66d1d1 !important;
}

.btn.btn-info:hover {
  background-color: #49c8c8 !important;
  border-color: #3ba0a0 !important;
}

.btn.btn-light {
  color: #212529 !important;
  background-color: #ececec !important;
  border-color: #ececec !important;
}

.btn.btn-light:hover {
  color: #212529 !important;
  background-color: #d9d9d9 !important;
  border-color: lightgray !important;
}

.btn.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-icon i {
  color: #fff;
  margin-right: 4px;
  font-size: 18px;
}

.btn.btn-icon-solo {
  padding: 0;
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: unset !important;
  border: unset !important;
}

.btn.btn-icon-solo:hover {
  background: unset !important;
  border: unset !important;
}

.btn.btn-icon-solo i {
  font-size: 12px;
  opacity: 0.5;
}

.btn.btn-icon-solo:hover i {
  opacity: 1;
}

.buttons-icon-solo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buttons-icon-solo .btn.btn-icon-solo {
  margin-left: 4px;
}

.buttons-icon-solo .btn.btn-icon-solo:first-child {
  margin-left: 0;
}

.btn.btn-big {
  font-size: 16px;
}

.btn.btn-icon-little {
  padding: 4px 6px;
  width: auto;
  min-width: 20px;
  height: 20px;
}

.btn.btn-icon-little > i {
  font-size: 14px;
}

.btn.btn-submit {
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 8px !important;
  width: fit-content;
  margin-left: auto !important;
}

.btn.btn-little {
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 4px !important;
  width: fit-content;
  margin-left: auto !important;
}

btn-submit {
  margin-top: 10px;
  min-height: 36px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-radios {
  display: flex;
  flex-direction: row;
  height: 30px;
}

.btn-radios > .btn-radio {
  margin: 0;
  height: 30px;
}

.btn-radios > .btn-radio > input[type=radio] {
  display: none;
}

.btn-radios > .btn-radio > input[type=radio] + label {
  color: grey;
  user-select: none;
  cursor: pointer;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-radios > .btn-radio > input[type=radio]:checked + label {
  background-color: grey;
  color: #fff;
}

.btn-radios > .btn-radio > label {
  padding: 4px;
  border: 2px solid grey;
  border-width: 2px 1px;
  margin: 0;
}

.btn-radios > .btn-radio:first-child > label {
  border-left-width: 2px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-radios > .btn-radio:last-child > label {
  border-right-width: 2px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.btn.more {
  background: white;
  border: 1px solid #d6d7d7;
  position: relative;
  height: 38px;
  display: flex;
  width: 38px;
  margin-bottom: 8px;
  justify-content: center;
  align-items: center;
}

.btn.search {
  height: 36px;
  padding: 8px 16px;
}

.btn.disabled {
  pointer-events: none;
  background: #c7c7c7 !important;
}

/*# sourceMappingURL=buttons.css.map */

/*# sourceMappingURL=buttons.css.map */
