﻿/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #f00;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #f00;
    background-color: #fee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

.validation-summary-valid {
    display: none;
}

.required-asterisk {
    color: red;
    margin-left: 5px;
}

body {
    /*background: url('/Contents/images/bg.png') no-repeat #fff;*/
    background-size: 100% auto;
}

header .container,
footer .container,
.section-body .container {
    background-color: #FFF;
}

/* Override bootstrap */
.navbar .navbar-brand {
    padding: 9px 20px;
}

.btn-toolbar {
    margin-top: 5px;
    margin-bottom: 5px;
}

.navbar .divider-vertical {
    height: 50px;
    margin: 0 9px;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #f2f2f2;
}

.navbar-inverse .divider-vertical {
    border-right-color: #222222;
    border-left-color: #111111;
}

.glyphicon-addon {
    top: 0;
}
.glyphicon-addon img {
    width: 16px;
}

/* spinner */
.input-group-btn-vertical {
    position: relative;
    white-space: nowrap;
    width: 1%;
    vertical-align: middle;
    display: table-cell;
}
.input-group-btn-vertical > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 8px;
    margin-left: -1px;
    position: relative;
    border-radius: 0;
}
.input-group-btn-vertical > .btn:first-child {
    border-top-right-radius: 4px;
}
.input-group-btn-vertical > .btn:last-child {
    margin-top: -2px;
    border-bottom-right-radius: 4px;
}
.input-group-btn-vertical i {
    position: absolute;
    top: 0;
    left: 4px;
}
.glyphicon-success {
    color: #5CB85C;
}
.glyphicon-danger {
    color: #D9534F;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #EDEDED;
}

/* file upload */
.btn-file {
	overflow: hidden;
	position: relative;
}
.btn-file input[type=file] {
	background: white;
	cursor: inherit;
	display: block;
	filter: alpha(opacity=0);
	font-size: 999px;
	min-height: 100%;
	min-width: 100%;
	opacity: 0;
	outline: none;
	position: absolute;
	right: 0;
	text-align: right;
	top: 0;
}

@media (max-width: 767px) {
    .navbar-collapse .nav > .divider-vertical {
        display: none;
      }
}