/**
 * Base
 */
body {
  background-color: #f1f1f1;
}

a {
  color: #27CBC0;
}

a:focus,
a:hover {
  color: #17BBB0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2C3A49;
}

label {
  color: #6C7A89;
}


/**
 * Buttons
 */
.btn {
  border-radius: 2px;
}

.btn-secondary {
  color: #6C7A89;
}

.btn-primary {
  background-color: #27CBC0;
  border-color: #27CBC0;
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus {
  outline: inherit;
  background-color: #17BBB0;
  border-color: #17BBB0;
}


/**
 * Forms
 */
.form-control {
  border-color: #ccc;
  border-radius: 3px;
  color: #8C9AA9;
}

.form-control:focus {
  border-color: #aaa;
}


/**
 * Navbar
 */
.navbar {
  background-color: #27CBC0;
  border-radius: 0;
}

.navbar .navbar-brand {
  color: rgba(255, 255, 255, .6);
  font-weight: bold;
}

.navbar .nav-link {
  padding-right: .375em;
  padding-left: .375em;
}

.navbar .icon {
  display: inline-block;
  margin: -.375em 0 -1em;
  font-size: 1.65em;
  vertical-align: text-top;
}


/**
 * Card
 */
.card {
  overflow: hidden;
  margin-top: 1em;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.card-header {
  padding: 1.25em 1.25em;
  background-color: #fff;
}

.card-header .title {
  display: inline-block;
  margin: .3em 0;
  font-size: 1.25em;
}

.card-header .btn-go-back {
  background-color: #ECF0F1;
  margin-right: .3em;
  padding: 0 .3em;
  background-color: transparent;
  border-radius: 2px;
  color: #27CBC0;
  font-size: 1.37em;
  vertical-align: top;
}

.card-header .btn-go-back:focus,
.card-header .btn-go-back:hover {
  color: #17BBB0;
}


/** List Group */
.card .list-group-item {
  border: 0;
  border-top: 1px solid #ddd;
  border-radius: 0 !important;
  color: #27CBC0;
}

.card .list-group-item:focus,
.card .list-group-item:hover {
  color: #17BBB0;
}

.card .list-group-item:first-child {
  border: 0;
}

.card .list-group-item.empty {
  color: #BCCAD9 !important;
  text-align: center;
}

.card .list-group-item.is-file {
  color: #8C9AA9 !important;
}

.card .list-group-item.is-dir {
  font-weight: bold;
}

.card .list-group-item.is-dir .icon {
  float: right;
  color: #BCCAD9;
}


/** Sites */
.card .sites .filename {
  display: block;
  font-weight: bold;
}

.card .sites .url {
  color: #BCCAD9;
}

.card .sites .status {
  position: absolute;
  padding-right: 1.5em;
  top: 1.5em;
  right: 1.5em;
  bottom: 1.5em;
  background-color: #C5D3E2;
  border-radius: 2px;
}

.card .sites .status-success {
  background-color: #2ECC71;
}

.card .sites .status-danger {
  background-color: #E74C3C;
}

/** Modal */
.modal-header,
.modal-body,
.modal-footer {
  padding: 1.75em;
}

.modal-header {
  padding-bottom: .875em;
}

.modal-footer {
  margin-top: -1.5em;
  padding-top: .875em;
}

.modal .close {
  padding: .25em .5em;
}

.modal .nav-tabs,
.modal fieldset {
  margin-bottom: 1.5em;
}

.modal textarea {
  font-family: monospace;
}

.modal .nav-tabs .nav-link {
  border-radius: 2px 2px 0 0;
}

/** Theme Options */
.theme-option {
  float: left;
  display: inline-block;
  margin: .5%;
  padding-bottom: 9.75%;
  width: 10.1111%;
  border: 1px solid #fff;
  border-radius: 3px;
  transition: all .15s ease;
  cursor: pointer;
}

.theme-option.active,
.theme-option:hover {
  box-shadow: 0 0 0 5px rgba(0, 0, 0, .06) inset;
}

.theme-option:hover {
  position: relative;
  transform: scale(1.1);
  z-index: 9;
}

.theme-option.active {
  transform: scale(1.175);
}


.theme-option[data-value="default"] {
  background-color: #27CBC0;
}

.theme-option[data-value="emerald"] {
  background-color: #2ECC71;
}

.theme-option[data-value="peter-river"] {
  background-color: #3498DB;
}

.theme-option[data-value="sunflower"] {
  background-color: #F9BF3B;
}

.theme-option[data-value="pumpkin"] {
  background-color: #F39C12;
}

.theme-option[data-value="pomegranate"] {
  background-color: #E74C3C;
}

.theme-option[data-value="azalea"] {
  background-color: #EA4C88;
}

.theme-option[data-value="amethyst"] {
  background-color: #9B59B6;
}

.theme-option[data-value="midnight-blue"] {
  background-color: #34495E;
}


/**
 * Error page
 */
.error-page {
  margin-top: 20%;
  text-align: center;
}

.error-page .status,
.error-page .title,
.error-page .message {
  color: #8C9AA9;
}

.error-page .status {
  font-size: 7em;
  font-weight: bold;
}

.error-page .title {
  font-size: 3em;
  font-weight: bold;
}

.error-page .message {
  margin-top: 1em;
  font-size: 1.5em;
}
