blockquote {
  margin: 2em 1em;
  font-weight: bold;
  font-size: 20px;
}

form {
  margin: 1em 0;
}

form .field {
  margin: 20px 0 30px;
}

form label {
  display: block;
}

form input,
form textarea {
  padding: 5px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
  margin: 1.5em 0;
}

blockquote {
  font-style: italic;
  text-align: center;
}

@media screen and (min-width: 700px) {
  blockquote {
    font-size: 30px;
  }
}

.centered {
  text-align: center;
}

.text-danger {
  color: #dc3545 !important;
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  will-change: transform;
  background-color: #FFF;
  /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

.swiper-pagination-bullet-active {
  background: black !important;
}

/* Enter and leave animations can use different */

/* durations and timing functions.              */

.v-enter-active {
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}

.v-leave-active {
  -webkit-transition: all 0.1s cubic-bezier(1, 0.5, 0.8, 1);
  transition: all 0.1s cubic-bezier(1, 0.5, 0.8, 1);
}

.v-enter,
.v-leave-to {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  opacity: 0;
}

html,
body {
  margin: 0px;
  padding: 0px;
  min-height: 100vh;
  min-width: 100%;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

