/* Put any custom CSS rules here */
/* Costume-Con 44 Theme */

/* Rounded corners */
button,
input,
select,
textarea,
.card,
.panel {
    border-radius: 6px;
}

/* Buttons */
button,
.btn,
.button {
    background: #B08D57;
    color: #ffffff;
    border: none;
    transition: background .25s ease;
}

button:hover,
.btn:hover,
.button:hover {
    background: #8F6F3F;
}

/* Links */
a {
    color: #234A5C;
}

a:hover {
    color: #3A6E86;
}

/* Form fields */
input,
select,
textarea {
    border: 1px solid #D8D8D8;
    transition: border-color .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #234A5C;
    box-shadow: 0 0 6px rgba(35,74,92,.20);
    outline: none;
}

/* Cards or ticket boxes */
.card,
.panel {
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* Section headings */
h1, h2, h3 {
    color: #234A5C;
}