/* fancybox fixes */
.fancybox-thumbs {
  background: transparent;
}
.fancybox-thumbs > ul > li {
  border-color: transparent;
}

/* general layout */
html {
  height: 100%;
}
body {
  background-image: url("./static/flowers.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  color: #333;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}
h1 {
  font-size: 4rem;
  font-weight: 300;
}

/* turtle images */
.elephantimage {
  position: absolute;
  top: 0;
  right: 0;
  width: 165px;
  height: 300px;
  margin: 0;
  padding: 0;
  opacity: 0.5;
  background-image: url('./static/elephant.png');
}
.elephantimage:hover {
  background-image: url('./static/elephantbaloon.png');
}
.elephantimagehidden {
  background-image: url('./static/elephantbaloon.png');
  height: 0;
  width: 0;
  display: none;
}

/* coloring for the form buttons and elements */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:disabled,
.btn-primary:disabled:focus,
.btn-primary.active,
.btn-primary.disabled {
  background-color: #facccc;
  border: 1px solid rgba(0,0,0,.15);
  color: #333;
  font-weight: 300;
}
.input-group-addon {
  background-color: #facccc;
}
.select-primary,
.select-primary:hover,
.select-primary:focus,
.select-primary:active,
.select-primary:active:focus,
.select-primary:disabled,
.select-primary:disabled:focus,
.select-primary.active,
.select-primary.disabled {
  background-color: #facccc;
  border: 1px solid rgba(0,0,0,.15);
  color: #333;
  font-weight: 300;
  height: 2.5rem;
}

/* Bootstrap wteaking and general */
.jumbotron {
  background-color: transparent;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 50px;

  background-color: rgba(230,230,230,0.75);
  border-radius: 25px;
  border: 1px black solid;
}

.form-inline {
  padding-bottom: 10px;
}
.formlabel {
  padding-right: 10px;
}
.form-control {
  margin-right: 10px;
}
.checkboxbutton {
  margin-right: 5px;
}
.thin {
  font-weight: 300;
}
.btn {
  margin-right: 5px;
}

/* modal css */
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: table;
  transition: opacity .3s ease;
}
.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.modal-container {
  max-width: 500px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
  transition: all .3s ease;
}
.modal-header h3 {
  margin-top: 0;
  font-weight: 300;
}
.modal-body {
  margin: 0;
  padding-top: 20px;
}
.modal-default-button {
  float: right;
  max-width: 100px;
}
/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */
.modal-enter {
  opacity: 0;
}
.modal-leave-active {
  opacity: 0;
}
.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
