
body {
    background-color: #f5f0d7;
}

.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn-custom {
    background-color: #522c05;
    color: #fff;
}

.btn-custom:hover, .btn-custom:focus {
    background-color: #654526;
    color: #fff;
}

.bold {
    font-weight: bold;
}

.error {
    border: solid 1px red;
}

.message {
    font-weight: bold;
    color: red;
    margin-top: 5px;
    padding-left: 5px;
}

.notification p {
    margin-bottom: 0px;
}

textarea {
    display: block;
    width: 100%;
    height: 200px;
    padding: 12px 6px;
}

.caps {
    text-transform: capitalize;
}

/*==================================
Form
==================================*/
form div {
    margin-bottom: 20px;
}

form .row {
    margin-bottom: 0px;
}

label {
    padding-left: 5px;
    font-weight: bold;
}

div.radiocheckbox {
    margin-right: 10px;
    display: inline-block;
}

label.radiocheckbox {
    display: block;
}

.radiocheckboxgroup {
    margin-bottom: 0px;
}

#file {
    display: block;
}

/*==========================================
Waiting Animation
==========================================*/
#loader {
    width: 50%;
    text-align: left;
}

.waiting {
    font-size: 20px;
    text-align: left;
    margin-left: 20px;
}
  
.waiting:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026"; /* ascii code for the ellipsis character */
    width: 0px;
}
  
@keyframes ellipsis {
    to {
      width: 1.25em;    
    }
}
  
@-webkit-keyframes ellipsis {
    to {
      width: 1.25em;    
    }
}