.btn {
    display: inline-block;
    border-radius: .25rem;
    background: #fff;
    border: 1px solid;
    border-color: #ccc;
    font-size: 16px;
    outline: none;
    color: #2c2e5e;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    padding: .375rem .75rem;
    user-select: none;
}

.btn:hover {
    cursor: pointer;
    background: #d8d7d7;
}

.btn_width_full {
  display: block;
}

.btn_theme_apply {
    background: #28c76f;
    color: #fff;
    border-color: #28c76f;
}

.btn_theme_apply:hover {
    background: #33d67c;
    border-color: #33d67c;
    color: #fff;
}

.btn_theme_danger {
    background: #ea5455;
    color: #fff;
    border: 0;
    border-radius: .25rem;
}

.btn_theme_danger:hover {
    background: #ed6b6c;
    border-color: #ed6b6c;
    color: #fff;
}

.btn_theme_info {
    background: #06a0b3;
    border-color: #06a0b3;
    color: #fff;
}

.btn_theme_info:hover {
  background: #06a0b3bf;
  border-color: #06a0b3bf;
}

.btn_theme_modal {
  border: 0;
  background: transparent;
}

.btn_theme_modal:hover {
  border: 0;
  background: transparent;
}

.btn_theme_action {
  color: #fff;
  background: #7367f0;
  border-color: #7367f0;
}

.btn_theme_action:hover {
  background: #887ef2;
  border-color: #887ef2;
}

.btn__icon {
    display: inline;
    transform: none !important;
}

.btn_theme_icon {
    padding: .375rem;
    vertical-align: middle;
}

.btn_width_full {
    display: inline-block;
    width: 100%;
}

.btn_theme_dashed {
    font-size: 80%;
    color: black;
    border: 0;
    cursor: pointer;
    border-bottom: 1px dashed black;
    background: transparent;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}


.btn_theme_transparent {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.btn_theme_transparent:hover {
  background: transparent;
  border: 0;
}

.btn_theme_dashed:hover {
    background: transparent;
    cursor: pointer;
    font-weight: bold;
}

.btn_theme_dashed:focus, .btn_theme_dashed:active {
    outline: none;
}

.btn_size_big {
    font-size: 22px;
}

.btn_size_small {
    font-size: 10px;
}
