/*!
 * Bootstrap CSS Placeholder
 * This is a minimal placeholder - will be replaced with extracted Bootstrap CSS
 */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.span1, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9, .span10, .span11, .span12 {
    padding: 0 15px;
    flex: 1;
}

.span3 { flex: 0 0 25%; max-width: 25%; }
.span4 { flex: 0 0 33.333%; max-width: 33.333%; }
.span6 { flex: 0 0 50%; max-width: 50%; }
.span8 { flex: 0 0 66.666%; max-width: 66.666%; }
.span12 { flex: 0 0 100%; max-width: 100%; }

@media (max-width: 768px) {
    .span1, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9, .span10, .span11, .span12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Bootstrap Button Base Classes */
.btn {
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.btn:focus,
.btn:active:focus {
    outline: thin dotted;
    outline-offset: -2px;
}

.btn:hover,
.btn:focus {
    color: #333;
    text-decoration: none;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

/* Basic navbar structure */
.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.navbar-inner {
    min-height: 50px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #fafafa;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
}

.navbar .container {
    width: auto;
}

/* Basic alert styles */
.alert {
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    border-radius: 4px;
}

.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
}