br {
    clear: both;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 16px;
    line-height: 1.42857;
}

.container-item {
    margin: 0;
    padding: 0 1em 1em 0;
}

.left {
    float: left;
}

.right {
    float: right;
}

.width-half {
    flex-basis: 49%;
}

.width-third {
    flex-basis: 32%;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.row {
    margin: .25em;
    padding: .25em;
}

.row:hover {
    border: solid 1px gray;
}

.margin-quarter-em {
    margin: .25em !important;
}

.well {
    border: solid 1px black;
    margin: 0 .5em .5em 0;
    padding: 1em;
    border-radius: 4px;
    background-color: #eee
}

h1, h2, h3, h4 {
    color:rgb(47, 79, 79);
}

.well h2 {
    margin-top: 0;
}

.well button {
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
}

.warning {
    color: red;
}

.form-label {
    font-weight: bold;
}

.form-field {
    display: inline-block;
    border-radius: 4px;
    margin: 0;
    padding: .25em;
    font-size: 16px;
}

.hidden {
    display: none;
}

.btn-small {
    font-size: 12px;
}

@media only screen and (max-width:1024px) {

    .width-half {
        flex-basis: 100%;
    }

    .width-third {
        flex-basis: 100%;
    }

    [name="delete-btn"] {
        margin: 1em;
    }
}

/* Modal confirm */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: solid 1px black;
    font-size: 16px;
    line-height: 1.42857;
    font-family: 'Source Sans Pro',sans-serif;
}

.margin-top-half-em {
    margin-top: .5em;
}

/* Animated spinner */

.spinner,
.spinner div {
  box-sizing: border-box;
}
.spinner {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
}
.spinner div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.spinner div:nth-child(1) {
  animation-delay: -0.45s;
}
.spinner div:nth-child(2) {
  animation-delay: -0.3s;
}
.spinner div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

