/**
 * Obvious Buttons 0.1
 * https://github.com/skidding/obvious-buttons
 *
 * (c) 2014+ Ovidiu Cherecheș
 * http://skidding.mit-license.org
 */
 .btn {
  display: block;
  text-align: center;
  cursor: pointer;
  border: none;
  height: 40px;
  padding: 0 14px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
  font-size: 18px;
  line-height: 37px;
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  -moz-transition-property: background-color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: linear;
  -ms-transition-property: background-color;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: linear;
  -o-transition-property: background-color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: linear;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  background: #fafafa;
  color: #222222;
  max-width: 100px;
}
.btn i {
  line-height: 37px;
}
.btn:active,
.btn:active i {
  line-height: 40px;
}
.btn.btn-primary,
.btn.btn-info,
.btn.btn-success,
.btn.btn-warning,
.btn.btn-danger,
.btn.btn-inverse {
  -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
}
.btn:hover,
.btn:focus {
  background: #e6e6e6;
  color: #222222;
}
.btn.btn-primary {
  background: #0088cc;
  color: #fafafa;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #006da3;
  color: #fafafa;
}
.btn.btn-info {
  background: #49afcd;
  color: #fafafa;
}
.btn.btn-info:hover,
.btn.btn-info:focus {
  background: #339bba;
  color: #fafafa;
}
.btn.btn-success {
  background: #5bb75b;
  color: #fafafa;
}
.btn.btn-success:hover,
.btn.btn-success:focus {
  background: #47a247;
  color: #fafafa;
}
.btn.btn-warning {
  background: #faa732;
  color: #fafafa;
}
.btn.btn-warning:hover,
.btn.btn-warning:focus {
  background: #f9960a;
  color: #fafafa;
}
.btn.btn-danger {
  background: #da4f49;
  color: #fafafa;
}
.btn.btn-danger:hover,
.btn.btn-danger:focus {
  background: #d0312a;
  color: #fafafa;
}
.btn.btn-inverse {
  background: #363636;
  color: #fafafa;
}
.btn.btn-inverse:hover,
.btn.btn-inverse:focus {
  background: #222222;
  color: #fafafa;
}
.btn span {
  pointer-events: none;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus {
  text-decoration: none;
  outline: none;
}
.btn:active {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.btn-small {
  height: 26px;
  padding: 0 8px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.15);
  font-size: 12px;
  line-height: 28px;
}
.btn-small i {
  line-height: 28px;
}
.btn-small:active,
.btn-small:active i {
  line-height: 30px;
}
.btn-small.btn-primary,
.btn-small.btn-info,
.btn-small.btn-success,
.btn-small.btn-warning,
.btn-small.btn-danger,
.btn-small.btn-inverse {
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
}
.btn-large {
  height: 50px;
  padding: 0 18px;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.15);
  font-size: 22px;
  line-height: 46px;
}
.btn-large i {
  line-height: 46px;
}
.btn-large:active,
.btn-large:active i {
  line-height: 50px;
}
.btn-large.btn-primary,
.btn-large.btn-info,
.btn-large.btn-success,
.btn-large.btn-warning,
.btn-large.btn-danger,
.btn-large.btn-inverse {
  -webkit-box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2);
}
.btn-xlarge {
  height: 60px;
  padding: 0 22px;
  border-radius: 7px;
  -webkit-box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.15);
  font-size: 26px;
  line-height: 55px;
}
.btn-xlarge i {
  line-height: 55px;
}
.btn-xlarge:active,
.btn-xlarge:active i {
  line-height: 60px;
}
.btn-xlarge.btn-primary,
.btn-xlarge.btn-info,
.btn-xlarge.btn-success,
.btn-xlarge.btn-warning,
.btn-xlarge.btn-danger,
.btn-xlarge.btn-inverse {
  -webkit-box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.2);
}
.btn-inline {
  display: inline-block;
  vertical-align: middle;
}
/* line 9, app/assets/stylesheets/console.scss */
.float-left {
  float: left !important;
}

/* line 13, app/assets/stylesheets/console.scss */
.float-right {
  float: right !important;
}

/* line 2, ../../../.rbenv/versions/3.0.3/lib/ruby/gems/3.0.0/gems/administrate-0.17.0/app/assets/stylesheets/administrate/library/_clearfix.scss */
.clearfix::after {
  clear: both;
  content: "";
  display: block;
}

/* line 21, app/assets/stylesheets/console.scss */
.flash-server-type {
  display: flex;
  background-color: #E34865;
  color: white;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}

/* line 30, app/assets/stylesheets/console.scss */
.server-name {
  flex-grow: 1;
  text-align: center;
}

/* line 35, app/assets/stylesheets/console.scss */
.new-back-office a {
  color: white;
}

/* line 39, app/assets/stylesheets/console.scss */
.companies-switch a {
  color: white;
}

/* line 44, app/assets/stylesheets/console.scss */
.main-content__header .field-unit {
  margin-bottom: 0;
}

/* line 47, app/assets/stylesheets/console.scss */
.main-content__header .field-unit .field-unit__field {
  width: 65%;
}

/* line 53, app/assets/stylesheets/console.scss */
.custom-header-index {
  font-size: 0.9em;
  padding-left: 2rem;
  padding-bottom: 0.5rem;
}

/* line 59, app/assets/stylesheets/console.scss */
.dashboard-bloc {
  float: left !important;
  width: 500px;
}

/* line 63, app/assets/stylesheets/console.scss */
.dashboard-bloc h2 {
  margin-bottom: 0.75em;
}

/* line 67, app/assets/stylesheets/console.scss */
.dashboard-bloc dt {
  color: #7b808c;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.0357em;
  position: relative;
  text-transform: uppercase;
  clear: left;
  float: left;
  margin-bottom: 1.5em;
  margin-top: 0;
  text-align: right;
  width: calc(30% - 1rem);
}

/* line 77, app/assets/stylesheets/console.scss */
.dashboard-bloc dd {
  float: left;
  margin-bottom: 1.5em;
  margin-left: 2rem;
  width: calc(60% - 1rem);
}

/* line 85, app/assets/stylesheets/console.scss */
.not-flushed {
  margin: 1rem 2rem;
}

/* line 89, app/assets/stylesheets/console.scss */
.text-success {
  color: green;
}

/* line 93, app/assets/stylesheets/console.scss */
.text-warning {
  color: goldenrod;
}

/* line 97, app/assets/stylesheets/console.scss */
.text-danger {
  color: red;
}

/* line 101, app/assets/stylesheets/console.scss */
.field-unit--reservation-limit-field, .field-unit--has-many-return-locations-field {
  align-items: initial;
}

/* line 104, app/assets/stylesheets/console.scss */
.field-unit--reservation-limit-field .field-unit__label, .field-unit--has-many-return-locations-field .field-unit__label {
  padding-top: 4px;
}

/* line 109, app/assets/stylesheets/console.scss */
.attribute-data--shrine {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 114, app/assets/stylesheets/console.scss */
.card-wrapper {
  width: 200px;
  margin-left: 20px;
}

/* line 118, app/assets/stylesheets/console.scss */
.card-wrapper .card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

/* line 122, app/assets/stylesheets/console.scss */
.card-wrapper .card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* line 126, app/assets/stylesheets/console.scss */
.card-wrapper .card h4 {
  color: black;
  text-align: center;
}

/* line 131, app/assets/stylesheets/console.scss */
.card-wrapper .card .container {
  padding: 2px 16px;
}

/* line 137, app/assets/stylesheets/console.scss */
.app-container {
  max-width: none;
}

/* line 141, app/assets/stylesheets/console.scss */
td, th {
  padding: 0.2rem;
}

/* line 145, app/assets/stylesheets/console.scss */
.app-container {
  padding: 0.5rem;
}

/* line 149, app/assets/stylesheets/console.scss */
.attribute-label {
  width: calc(10% - 1rem);
}

/* line 153, app/assets/stylesheets/console.scss */
.main-content__header, .main-content__body {
  padding: 1rem;
}

/* line 157, app/assets/stylesheets/console.scss */
a.btn span {
  white-space: nowrap;
}

/* line 161, app/assets/stylesheets/console.scss */
.navigation {
  padding: 1em;
  padding-left: 0.2em;
}

/* line 166, app/assets/stylesheets/console.scss */
.width-auto {
  width: auto;
  display: inline;
}

/* line 171, app/assets/stylesheets/console.scss */
.position-relative {
  position: relative;
}

/* line 175, app/assets/stylesheets/console.scss */
.flag-abbr-icon {
  padding: 0.1em 0.5em;
}

/* line 179, app/assets/stylesheets/console.scss */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* line 189, app/assets/stylesheets/console.scss */
.col-sm-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16%;
  flex: 0 0 16%;
  max-width: 16%;
}

/* line 196, app/assets/stylesheets/console.scss */
.col-sm-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  max-width: 33%;
}

/* line 203, app/assets/stylesheets/console.scss */
.btn-inline {
  display: inline-block;
}

/* line 207, app/assets/stylesheets/console.scss */
table.controls {
  border-spacing: 1px;
  padding: 1px;
  margin: 1px;
}

/* line 211, app/assets/stylesheets/console.scss */
table.controls tr, table.controls td {
  padding: 1px;
  margin: 0px;
}

/* line 217, app/assets/stylesheets/console.scss */
.navigation__link {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-size: 0.9em;
  border-radius: 5px;
}

/* line 224, app/assets/stylesheets/console.scss */
.navigation__link--active {
  font-weight: bold;
  background-color: #D54959;
  color: white;
  text-decoration: none;
}

/* line 231, app/assets/stylesheets/console.scss */
.navigation__link:not(:last-of-type) {
  margin-bottom: 0.4em;
}

/* line 235, app/assets/stylesheets/console.scss */
.attribute-data {
  white-space: nowrap;
}

/* line 240, app/assets/stylesheets/console.scss */
.main-content__header .back {
  padding-right: 10px;
}

/* line 246, app/assets/stylesheets/console.scss */
.main-content__tabs a {
  text-decoration: none;
}

/* line 249, app/assets/stylesheets/console.scss */
.main-content__tabs a:focus {
  outline: none;
}

/* line 253, app/assets/stylesheets/console.scss */
.main-content__tabs a li {
  display: inline-block;
  border-radius: 0 0 10px 10px;
  border: 1px solid #E34865;
  padding: 10px;
  background-color: #E34865;
  transition: transform 100ms linear;
  text-decoration: none;
  color: #FFFFFF;
}

/* line 263, app/assets/stylesheets/console.scss */
.main-content__tabs a li.active {
  background-color: #FFFFFF;
  color: #E34865;
}

/* line 268, app/assets/stylesheets/console.scss */
.main-content__tabs a li:hover {
  transform: translateY(1px);
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
