html {
  height: 100%;
  box-sizing: border-box;
}

body {
    background-color: #fff;
    font-family: 'Titillium Web', sans-serif;
    color: #000;  
    position: relative;
    margin: 0;
    padding-bottom: 4rem;
    min-height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1 {
    font-weight: 200;
}

h3 {
    color: #888;
}

h4.directions {
    font-size: 12pt;
    margin-top: 15px;
    color: #8A8A8A;
}

.subtitle {
    color: #8A8A8A;
}

div.accordion {
    background-color: transparent;
    border: none;
}

div.card {
    background-color: #fff;
    overflow: hidden;
    border: none;
}

div.card-header {
    background-color: #fff;
    border: none;
}

input {
    border: none;
    font-size: 14pt;
    font-weight: 200;
    color: #2e2e2e;
    
    
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

input:focus {
    outline: none;
    font-size: 18pt;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
}

button {
    width: 100px;
    height: 40px;
    margin-top: 30px;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    border: none;

    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

button.disabled {
    background-color: #ccc;
}
button.disabled:active {
    background-color: #ccc;
}

button:focus {
    outline: none;
}

button:active {
    background-color: #333;
}

button.accordion-header {
    width: auto;
    background-color: transparent;
    color: #000;
    font-size: 16pt;
    border: none;
}

p.button {
    cursor: pointer;
}

a {
    color: #888;
}

a:hover {
    text-decoration: none;
}

iframe {
    border-radius: 10px;
    border: 10px solid #F2F2F5;
    max-width: 100%;
    max-height: 50vw;
}

#map {
    width: 100%;
    height: 400px;
    background-color: grey;
}

div.footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.5rem;
    text-align: center;
}

input.ul {
    border-bottom: black solid 1px;
}

textarea {
    border: none;
    margin-top: 20px;
    font-size: 14pt;
    font-weight: 200;
    width: 200px;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

textarea:focus {
    outline: none;
    font-size: 18pt;
}

textarea.ul {
    border-bottom: black solid 1px;
}