a {
  text-decoration: none;
  outline: none;
}
a:focus,a:hover {
  text-decoration: none;
  outline: none;
}

/* Modal */
.modal {
  z-index: 1000;
}
.modal-backdrop {
  z-index: 999;
}

/* Breadcrumb */
ol.breadcrumb {
  background: #fff;
  font-size: 12px;
  opacity: .8;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
     -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Badge */
.badge-success {
  background-color: #a3d781!important;
}
.badge-danger {
  background-color: #ffa1a1!important;
}
.badge-warning {
  background-color: #fcd588!important;
}
.badge-primary {
  background-color: #5dc3e7!important;
}
.badge-info {
  background-color: #acdef6!important;
}

/*Text*/
.text-tint-muted {
  color: #999
}
.text-tint-primary {
  color: #5dc3e7
}
.text-tint-success {
  color: #a3d781
}
.text-tint-info {
  color: #acdef6
}
.text-tint-warning {
  color: #fcd588
}
.text-tint-danger {
  color: #ffa1a1
}

/*Dropdown*/
.dropdown-menu {
  margin: 9px 0 0;
  border: 1px solid #ddd;
}
.dropdown-menu li {
  color: #999;
  border-bottom: 1px solid #F1F4F7;
  font-size: 12px;
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu>li>a {
  color: #96a5aa;
  padding: 12px 8px 12px 18px;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
  color: #808080;
  text-decoration: none;
  background-color: #f9fafc;
}
.dropdown-menu:after,.dropdown-menu:before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border: 8px dashed transparent;
  z-index: 1
}

.dropdown-menu:after,.dropdown-menu:before {
  border-bottom-style: solid;
  border-width: 0 8px 8px
}

.dropdown-menu:before {
  border-bottom-color: #ddd;
  bottom: 0
}

.dropdown-menu:after {
  border-bottom-color: #fff;
  bottom: -1px
}

.dropdown-menu:after,.dropdown-menu:before {
  right: 10px;
  top: -8px;
  pointer-events: none
}

.dropdown-menu:after {
  top: -7px
}

/* Panel */
.panel {
  margin: 20px 0;
  color: #888;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
     -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.panel .panel-header {
  border-bottom: 1px solid #e6e6e6;
  background-color: #FAFBFC;
  font-size: 16px;
  line-height: 30px;
  padding: 10px 20px;
}
.panel .panel-header .float-right {
  margin-top: -2px;
}
.sub-header {
  margin: 0 0 20px;
  padding: 10px;
  border-bottom: 1px dashed #dddddd;
}
.panel-body {
  padding: 20px 30px;
}
.block {
  margin-bottom: 20px;
}
.tabs .panel-heading {
  padding: 10px 0 0;
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .panel-body {
      padding: 20px;
  }
}

/* Tabs */
.nav-tabs {
padding: 0 10px;
  font-size: 14px;
}
.nav-tabs>li>a {
  padding: 8px 15px;
  color: #999;
}
.nav-tabs>li.active>a, 
.nav-tabs>li.active>a:focus, 
.nav-tabs>li.active>a:hover {
  color: #777;
}

/* Form */

input[type="file"] {
  padding-top: 7px;
}

input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
textarea.form-control {
  -webkit-appearance: none;
}

.form-control {
  max-width: 100%;
  margin: 1px 0;
  border-color: #dae0e8;
  border-radius: 3px;
}
.form-control:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 3px rgba(93, 195, 231,.6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 3px rgba(93, 195, 231,.6);
  border-color: #5dc3e7;
}
textarea.form-control {
  resize: none;
}
.input-group .input-form-fileup {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0;
  z-index: 99;
  opacity: 0;
  cursor: pointer;
}
select.form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888
}
select.form-control:focus {
  -webkit-box-shadow: 0 0 3px rgba(93, 195, 231,.6);
          box-shadow: 0 0 3px rgba(93, 195, 231,.6);
  color: #888
}
.input-group-addon {
  min-width: 45px;
  text-align: center;
  background-color: #ffffff;
  border-color: #dae0e8;
}
label.form-check {
  font-weight: 100;
  margin-right: 10px;
}
label.form-check input[type="checkbox"] {
  vertical-align: text-bottom;
}
.input-w-xs {
  max-width: 80px;
}
.input-w-sm {
  max-width: 200px;
}
.input-w-de {
  max-width: 300px;
}
.input-w-lg {
  max-width: 500px;
}
.help-block {
  display: block;
  margin-top: 2px; 
  margin-bottom: 0; 
  margin-left: 5px;
  color: #b1b1b1;
  line-height: 25px;
  font-size: 12px;
  font-style: italic;
}

/* Chosen */
.chosen-container-single .chosen-single {
  height: 34px;
  border: 1px solid #dae0e8;
  background: #fff;
  /* background: linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%); */
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  line-height: 34px;
}
.chosen-container-multi .chosen-choices {
  border: 1px solid #dae0e8;
  background: #fff;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  line-height: 34px;
  border-radius: 4px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5ccdde;
}
.chosen-container-active.chosen-with-drop .chosen-choices {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 7px 0 6px 5px;
  padding: 2px 20px 2px 5px;
  background: #f9f9f9;
  border: 1px solid #5ccdde;
  background-color: #5ccdde;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  border-radius: 2px;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
word-wrap: break-word;
}
.chosen-container-single .chosen-single div b {
  background-position: 0 5px;
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #5dc3e7;
  background: none;
  box-shadow: 0 1px 0 #fff inset
}
.chosen-container .chosen-drop {
  border: 1px solid #5dc3e7;
  border-top: none;
  box-shadow: none;
  clip: rect(0,0,0,0)
}
.chosen-container-single .chosen-search input[type="text"] {
  border: 1px solid #dae0e8;
  border-radius: 4px;
}
.chosen-container .chosen-results li.highlighted {
  background: none;
  background-color: #5ccdde;
  color: #fff;
}


/* Table */
.tableJ {
  font-size: 12px;
  color: #666;
}
.tableJ thead th {
  /*text-align: center;*/
}
.tableJ>tbody>tr>td, .tableJ>tbody>tr>th, 
.tableJ>tfoot>tr>td, .tableJ>tfoot>tr>th, 
.tableJ>thead>tr>td, .tableJ>thead>tr>th {
  vertical-align: text-top;    
  border-top: 1px dashed #e6e6e6;
}
.table .checkbox {
  text-align: center;
  margin: 0 auto;
}
.table .checkbox label, .table .radio label {
  padding-top: 5px;
}
.table img {
  max-width: 100%;
}
.panel>.panel-collapse>.tableJ, .panel>.tableJ, 
.panel>.table-responsive>.tableJ {
  margin: 15px auto;
}

.table-form>tbody>tr>td, .table-form>tbody>tr>th, 
.table-form>tfoot>tr>td, .table-form>tfoot>tr>th, 
.table-form>thead>tr>td, .table-form>thead>tr>th {
  border-top: none;
  /*vertical-align: middle;*/
  line-height: 35px;
}
/*.table-form tbody td:nth-child(2n+1) {
  text-align: right;
  min-width: 100px;
  font-weight: bold;
}*/
.table-form>tbody>tr>td:nth-child(2n+1) {
  text-align: right;
  min-width: 100px;
  font-weight: bold;
}
.table-form img {
  max-width: 100%;
}
img.table-img-preview {
  width: 40px;
  height: auto;
}


@media screen and (max-width: 767px){
  .table-responsive {
      border: none;
  }
}

/* Pagination */
.pagination > li > a,
.pagination > li > span  {
  font-weight: 500;
  color: #5cafde;
  /*border: none !important;*/
  border-radius: 3px !important;
  background: transparent;
  border-color: #dae0e8;
  margin: 5px;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #5cafde;
  border-color: #5cafde;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  background: transparent;
}

.pagination > li > span,
.pager > li > span:hover,
.pagination > li > span:hover {
  background: transparent;
  color: #5cafde;
  border: none;
  padding: 7px;
}

.pager > li > a,
.pager > li > span {
  border-color: #ebeef2;
}

.pager > li > a:hover,
.pagination > li > a:hover {
  background-color: #5cafde;
  border-color: #5cafde;
  color: #ffffff;
}

.pager > li.disabled > a:hover {
  border-color: #ebeef2;
}

.pagination .form-inline {
  float: left;
  margin: 5px 0;
}
.pagination .form-control {
  float: left;
  height: 32px;
  margin: 0;
  width: 50px;
  margin: 0 5px;
  text-align: center;
}
.pagination .btn {
  float: left;
  height: 32px;
  line-height: 22px;
  margin-top: 0;
}

/* Modal */
.modal-content {
  color: #888;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.3);;
     -moz-box-shadow: 0 5px 10px rgba(0,0,0,.3);;
          box-shadow: 0 5px 10px rgba(0,0,0,.3);;
}
.modal-header {
  background-color: #FAFBFC;
  padding: 12px 20px;
}
.modal-header .close {
  margin-top: 0;
}
@media (min-width: 768px) {
.modal-dialog {
  margin: 100px auto 30px;
}
}

/* Button */
.btn {
  margin: 1px 0;
  background-color: #ffffff;
  border-radius: 3px;
}
.btn.btn-square {
  border-radius: 0;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  opacity: .4;
  cursor: no-drop;
}

.btn-light {
  background-color: #eeeeee;
  border-color: #ddd;
  color: #7c7d7d;
}
.btn-light:hover,
.btn-light:focus,
.btn-light.focus,
.btn-light:active,
.btn-light:active:hover,
.btn-light:active:focus,
.btn-light.active,
.btn-light.active:hover,
.btn-light.active:focus,
.open .btn-light.dropdown-toggle,
.open .btn-light.dropdown-toggle:hover,
.open .btn-light.dropdown-toggle:focus,
.open .btn-light.dropdown-toggle.focus {
  background-color: #dddddd;
  border-color: #dddddd;
}
.btn-light.disabled,
.btn-light.disabled:hover,
.btn-light.disabled:focus,
.btn-light.disabled:active,
.btn-light.disabled.active,
.btn-light[disabled]:hover,
.btn-light[disabled]:focus,
.btn-light[disabled].focus,
.btn-light[disabled]:active,
.btn-light[disabled].active,
.btn-light[disabled]:active:focus,
.btn-light[disabled].active:focus,
fieldset[disabled] .btn-light:hover,
fieldset[disabled] .btn-light:focus,
fieldset[disabled] .btn-light.focus,
fieldset[disabled] .btn-light:active,
fieldset[disabled] .btn-light.active,
fieldset[disabled] .btn-light:active:focus,
fieldset[disabled] .btn-light.active:focus {
  background-color: #eeeeee;
  border-color: #ddd;
}
.btn-primary {
  background-color: #5dc3e7;
  border-color: #5dc3e7;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary.active:hover,
.btn-primary.active:focus,
.open .btn-primary.dropdown-toggle,
.open .btn-primary.dropdown-toggle:hover,
.open .btn-primary.dropdown-toggle:focus,
.open .btn-primary.dropdown-toggle.focus {
  background-color: #02aac4;
  border-color: #02aac4;
  color: #ffffff !important;
}

.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active,
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled].active,
.btn-primary[disabled]:active:focus,
.btn-primary[disabled].active:focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary:active:focus,
fieldset[disabled] .btn-primary.active:focus {
  background-color: #5dc3e7;
  border-color: #5dc3e7;
}

.btn-danger {
  background-color: #ffa1a1;
  border-color: #ffa1a1;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger.active,
.btn-danger.active:hover,
.btn-danger.active:focus,
.open .btn-danger.dropdown-toggle,
.open .btn-danger.dropdown-toggle:hover,
.open .btn-danger.dropdown-toggle:focus,
.open .btn-danger.dropdown-toggle.focus {
  background-color: #f47d7d;
  border-color: #f47d7d;
  color: #ffffff !important;
}

.btn-danger.disabled,
.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled:active,
.btn-danger.disabled.active,
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled].focus,
.btn-danger[disabled]:active,
.btn-danger[disabled].active,
.btn-danger[disabled]:active:focus,
.btn-danger[disabled].active:focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger.active,
fieldset[disabled] .btn-danger:active:focus,
fieldset[disabled] .btn-danger.active:focus {
  background-color: #ffa1a1;
  border-color: #ffa1a1;
}

.btn-warning {
  background-color: #fcd588;
  border-color: #fcd588;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:active:hover,
.btn-warning:active:focus,
.btn-warning.active,
.btn-warning.active:hover,
.btn-warning.active:focus,
.open .btn-warning.dropdown-toggle,
.open .btn-warning.dropdown-toggle:hover,
.open .btn-warning.dropdown-toggle:focus,
.open .btn-warning.dropdown-toggle.focus {
  background-color: #e2ac41;
  border-color: #e2ac41;
  color: #ffffff !important;
}

.btn-warning.disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled:active,
.btn-warning.disabled.active,
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled].focus,
.btn-warning[disabled]:active,
.btn-warning[disabled].active,
.btn-warning[disabled]:active:focus,
.btn-warning[disabled].active:focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning.active,
fieldset[disabled] .btn-warning:active:focus,
fieldset[disabled] .btn-warning.active:focus {
  background-color: #fcd588;
  border-color: #fcd588;
}

.btn-success {
  background-color: #a3d781;
  border-color: #a3d781;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success:active:hover,
.btn-success:active:focus,
.btn-success.active,
.btn-success.active:hover,
.btn-success.active:focus,
.open .btn-success.dropdown-toggle,
.open .btn-success.dropdown-toggle:hover,
.open .btn-success.dropdown-toggle:focus,
.open .btn-success.dropdown-toggle.focus {
  background-color: #7dc402;
  border-color: #7dc402;
  color: #ffffff !important;
}

.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled:active,
.btn-success.disabled.active,
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled].focus,
.btn-success[disabled]:active,
.btn-success[disabled].active,
.btn-success[disabled]:active:focus,
.btn-success[disabled].active:focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success.active,
fieldset[disabled] .btn-success:active:focus,
fieldset[disabled] .btn-success.active:focus {
  background-color: #a3d781;
  border-color: #a3d781;
}

.btn-info {
  background-color: #5cafde;
  border-color: #5cafde;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info:active:hover,
.btn-info:active:focus,
.btn-info.active,
.btn-info.active:hover,
.btn-info.active:focus,
.open .btn-info.dropdown-toggle,
.open .btn-info.dropdown-toggle:hover,
.open .btn-info.dropdown-toggle:focus,
.open .btn-info.dropdown-toggle.focus {
  background-color: #027dc4;
  border-color: #027dc4;
  color: #ffffff !important;
}

.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled:active,
.btn-info.disabled.active,
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled].focus,
.btn-info[disabled]:active,
.btn-info[disabled].active,
.btn-info[disabled]:active:focus,
.btn-info[disabled].active:focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info.active,
fieldset[disabled] .btn-info:active:focus,
fieldset[disabled] .btn-info.active:focus {
  background-color: #5cafde;
  border-color: #5cafde;
}

.btn-link,
.btn-link:hover,
.btn-link:focus {
  color: #5ccdde;
}


.btn-default-o {
  background-color: #fff;
  border-color: #b0bec5;
  color: #6d7477
}
.btn-default-o:hover,
.btn-default-o:focus,
.btn-default-o.focus,
.btn-default-o:active,
.btn-default-o:active:hover,
.btn-default-o:active:focus,
.btn-default-o.active,
.btn-default-o.active:hover,
.btn-default-o.active:focus,
.open .btn-default-o.dropdown-toggle,
.open .btn-default-o.dropdown-toggle:hover,
.open .btn-default-o.dropdown-toggle:focus,
.open .btn-default-o.dropdown-toggle.focus {
  color: #263238;
  border-color: #263238;
}
.btn-default-o.disabled,
.btn-default-o:hover,
.btn-default-o.disabled:focus,
.btn-default-o.disabled:active,
.btn-default-o.disabled.active,
.btn-default-o[disabled]:hover,
.btn-default-o[disabled]:focus,
.btn-default-o[disabled].focus,
.btn-default-o[disabled]:active,
.btn-default-o[disabled].active,
.btn-default-o[disabled]:active:focus,
.btn-default-o[disabled].active:focus,
fieldset[disabled] .btn-default-o:hover,
fieldset[disabled] .btn-default-o:focus,
fieldset[disabled] .btn-default-o.focus,
fieldset[disabled] .btn-default-o:active,
fieldset[disabled] .btn-default-o.active,
fieldset[disabled] .btn-default-o:active:focus,
fieldset[disabled] .btn-default-o.active:focus {
  background-color: #fff;
  border-color: #b0bec5;
  color: #6d7477
}
.btn-primary-o {
  color: #20a8d8;
  border-color: #50c8db;
}

.btn-primary-o:hover,
.btn-primary-o:focus,
.btn-primary-o.focus,
.btn-primary-o:active,
.btn-primary-o:active:hover,
.btn-primary-o:active:focus,
.btn-primary-o.active,
.btn-primary-o.active:hover,
.btn-primary-o.active:focus,
.open .btn-primary-o.dropdown-toggle,
.open .btn-primary-o.dropdown-toggle:hover,
.open .btn-primary-o.dropdown-toggle:focus,
.open .btn-primary-o.dropdown-toggle.focus {
  border-color: #039bb2;
  color: #039bb2 !important;
}

.btn-primary-o.disabled,
.btn-primary-o.disabled:hover,
.btn-primary-o.disabled:focus,
.btn-primary-o.disabled:active,
.btn-primary-o.disabled.active,
.btn-primary-o[disabled]:hover,
.btn-primary-o[disabled]:focus,
.btn-primary-o[disabled].focus,
.btn-primary-o[disabled]:active,
.btn-primary-o[disabled].active,
.btn-primary-o[disabled]:active:focus,
.btn-primary-o[disabled].active:focus,
fieldset[disabled] .btn-primary-o:hover,
fieldset[disabled] .btn-primary-o:focus,
fieldset[disabled] .btn-primary-o.focus,
fieldset[disabled] .btn-primary-o:active,
fieldset[disabled] .btn-primary-o.active,
fieldset[disabled] .btn-primary-o:active:focus,
fieldset[disabled] .btn-primary-o.active:focus {
  color: #20a8d8;
  border-color: #50c8db;
}

.btn-danger-o {
  color: #de815c;
  border-color: #de815c;
}

.btn-danger-o:hover,
.btn-danger-o:focus,
.btn-danger-o.focus,
.btn-danger-o:active,
.btn-danger-o:active:hover,
.btn-danger-o:active:focus,
.btn-danger-o.active,
.btn-danger-o.active:hover,
.btn-danger-o.active:focus,
.open .btn-danger-o.dropdown-toggle,
.open .btn-danger-o.dropdown-toggle:hover,
.open .btn-danger-o.dropdown-toggle:focus,
.open .btn-danger-o.dropdown-toggle.focus {
  border-color: #c43902;
  color: #c43902 !important;
}

.btn-danger-o.disabled,
.btn-danger-o.disabled:hover,
.btn-danger-o.disabled:focus,
.btn-danger-o.disabled:active,
.btn-danger-o.disabled.active,
.btn-danger-o[disabled]:hover,
.btn-danger-o[disabled]:focus,
.btn-danger-o[disabled].focus,
.btn-danger-o[disabled]:active,
.btn-danger-o[disabled].active,
.btn-danger-o[disabled]:active:focus,
.btn-danger-o[disabled].active:focus,
fieldset[disabled] .btn-danger-o:hover,
fieldset[disabled] .btn-danger-o:focus,
fieldset[disabled] .btn-danger-o.focus,
fieldset[disabled] .btn-danger-o:active,
fieldset[disabled] .btn-danger-o.active,
fieldset[disabled] .btn-danger-o:active:focus,
fieldset[disabled] .btn-danger-o.active:focus {
  color: #de815c;
  border-color: #de815c;
}

.btn-warning-o {
  color: #deb25c;
  border-color: #deb25c;
}

.btn-warning-o:hover,
.btn-warning-o:focus,
.btn-warning-o.focus,
.btn-warning-o:active,
.btn-warning-o:active:hover,
.btn-warning-o:active:focus,
.btn-warning-o.active,
.btn-warning-o.active:hover,
.btn-warning-o.active:focus,
.open .btn-warning-o.dropdown-toggle,
.open .btn-warning-o.dropdown-toggle:hover,
.open .btn-warning-o.dropdown-toggle:focus,
.open .btn-warning-o.dropdown-toggle.focus {
  border-color: #de9502;
  color: #de9502 !important;
}

.btn-warning-o.disabled,
.btn-warning-o.disabled:hover,
.btn-warning-o.disabled:focus,
.btn-warning-o.disabled:active,
.btn-warning-o.disabled.active,
.btn-warning-o[disabled]:hover,
.btn-warning-o[disabled]:focus,
.btn-warning-o[disabled].focus,
.btn-warning-o[disabled]:active,
.btn-warning-o[disabled].active,
.btn-warning-o[disabled]:active:focus,
.btn-warning-o[disabled].active:focus,
fieldset[disabled] .btn-warning-o:hover,
fieldset[disabled] .btn-warning-o:focus,
fieldset[disabled] .btn-warning-o.focus,
fieldset[disabled] .btn-warning-o:active,
fieldset[disabled] .btn-warning-o.active,
fieldset[disabled] .btn-warning-o:active:focus,
fieldset[disabled] .btn-warning-o.active:focus {
  color: #deb25c;
  border-color: #deb25c;
}

.btn-success-o {
  color: #7dc402;
  border-color: #7dc402;
}

.btn-success-o:hover,
.btn-success-o:focus,
.btn-success-o.focus,
.btn-success-o:active,
.btn-success-o:active:hover,
.btn-success-o:active:focus,
.btn-success-o.active,
.btn-success-o.active:hover,
.btn-success-o.active:focus,
.open .btn-success-o.dropdown-toggle,
.open .btn-success-o.dropdown-toggle:hover,
.open .btn-success-o.dropdown-toggle:focus,
.open .btn-success-o.dropdown-toggle.focus {
  border-color: #6aa00c;
  color: #6aa00c !important;
}

.btn-success-o.disabled,
.btn-success-o.disabled:hover,
.btn-success-o.disabled:focus,
.btn-success-o.disabled:active,
.btn-success-o.disabled.active,
.btn-success-o[disabled]:hover,
.btn-success-o[disabled]:focus,
.btn-success-o[disabled].focus,
.btn-success-o[disabled]:active,
.btn-success-o[disabled].active,
.btn-success-o[disabled]:active:focus,
.btn-success-o[disabled].active:focus,
fieldset[disabled] .btn-success-o:hover,
fieldset[disabled] .btn-success-o:focus,
fieldset[disabled] .btn-success-o.focus,
fieldset[disabled] .btn-success-o:active,
fieldset[disabled] .btn-success-o.active,
fieldset[disabled] .btn-success-o:active:focus,
fieldset[disabled] .btn-success-o.active:focus {
  color: #afde5c;
  border-color: #afde5c;
}

.btn-info-o {
  color: #5cafde;
  border-color: #5cafde;
}

.btn-info-o:hover,
.btn-info-o:focus,
.btn-info-o.focus,
.btn-info-o:active,
.btn-info-o:active:hover,
.btn-info-o:active:focus,
.btn-info-o.active,
.btn-info-o.active:hover,
.btn-info-o.active:focus,
.open .btn-info-o.dropdown-toggle,
.open .btn-info-o.dropdown-toggle:hover,
.open .btn-info-o.dropdown-toggle:focus,
.open .btn-info-o.dropdown-toggle.focus {
  border-color: #027dc4;
  color: #027dc4 !important;
}

.btn-info-o.disabled,
.btn-info-o.disabled:hover,
.btn-info-o.disabled:focus,
.btn-info-o.disabled:active,
.btn-info-o.disabled.active,
.btn-info-o[disabled]:hover,
.btn-info-o[disabled]:focus,
.btn-info-o[disabled].focus,
.btn-info-o[disabled]:active,
.btn-info-o[disabled].active,
.btn-info-o[disabled]:active:focus,
.btn-info-o[disabled].active:focus,
fieldset[disabled] .btn-info-o:hover,
fieldset[disabled] .btn-info-o:focus,
fieldset[disabled] .btn-info-o.focus,
fieldset[disabled] .btn-info-o:active,
fieldset[disabled] .btn-info-o.active,
fieldset[disabled] .btn-info-o:active:focus,
fieldset[disabled] .btn-info-o.active:focus {
  color: #5cafde;
  border-color: #5cafde;
}

.btn-link-o,
.btn-link-o:hover,
.btn-link-o:focus {
  color: #5ccdde;
}
