/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,17): run-time error CSS1039: Token not allowed after unary operator: '-clr-white'
(40,17): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(48,21): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(50,22): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(56,22): run-time error CSS1039: Token not allowed after unary operator: '-clr-white'
(71,17): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(72,18): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(82,21): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(83,22): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(89,17): run-time error CSS1039: Token not allowed after unary operator: '-w-100'
(140,25): run-time error CSS1039: Token not allowed after unary operator: '-clr-white'
(152,17): run-time error CSS1039: Token not allowed after unary operator: '-clr-white'
(162,28): run-time error CSS1039: Token not allowed after unary operator: '-clr-white'
 */
:root {
    --clr-white: #fff;
    --w-100: 100%;
}
body {
    color: #fff;
    color: var(--clr-white);
    font-family: 'Open Sans', sans-serif;
    background: #511972 url(../Images/bg-sliver.gif) repeat-x top left fixed;
    letter-spacing: 1.2px;
    margin: 15px 5px 5px 5px;
}

form {
    margin: auto;
    max-width: 500px;
}

h1 {
    text-align: center;
}

.alert {
    margin: 0 auto;
    margin-top: 15px;
    max-width: 500px;
}

.align-center {
    text-align: center;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-default {
    width: 100%;
    width: var(--w-100);
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-width: var(--w-100);
    min-height: 100%;
    min-height: var(--w-100);
    font-size: 100px;
    text-align: right;
    opacity: 0;
    outline: none;
    background: #fff;
    background: var(--clr-white);
    cursor: inherit;
    display: block;
}

#my-modal {
    position: fixed;
    background: rgba(0,0,0,0.8);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    width: var(--w-100);
    height: var(--w-100);
}

    #my-modal > div {
        display: flex;
        justify-content: center;
        justify-items: center;
        align-items: center;
        height: 100%;
        width: 100%;
        width: var(--w-100);
        height: var(--w-100);
        flex-wrap: wrap;
    }

.btn {
    width: 100%;
    width: var(--w-100);
}

.footer {
    text-align: center;
}

.form-auto {
    margin: auto;
    margin-bottom: 15px;
    max-width: 500px;
}

.header {
    padding: 10px;
    text-align: center;
}

    .header img.img-responsive {
        display: inline-block;
    }

.muted {
    font-size: 10px;
}

#progressIndicator {
    background-color: #000;
    bottom: 0px;
    left: 0px;
    opacity: 0.75;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 9999;
}

    #progressIndicator div {
        height: 128px;
        left: 50%;
        margin: 0 auto;
        margin-left: -64px;
        margin-top: -64px;
        text-align: center;
        position: absolute;
        top: 50%;
        width: 128px;
    }

        #progressIndicator div h4 {
            color: #FFF !important;
            color: var(--clr-white) !important;
        }

.radios {
    width: 22px;
    height: 22px;
}

.flatButton {
    background-color: #008CBA;
    border: none;
    color: #fff;
    color: var(--clr-white);
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    border: 2px solid #fff;
    border: 2px solid var(--clr-white);
}

/* Smartphones (portrait and landscape) */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
}

/* Smartphones (landscape) */
@media only screen and (min-width : 321px) {
}

/* Smartphones (portrait) */
@media only screen and (max-width : 320px) {
}


/* iPads (portrait and landscape) */
@media only screen and (max-device-width : 991) {
}

/* iPads (landscape) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
}

/* iPads (portrait) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
}

/* iPad 3 (landscape) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
}

/* iPad 3 (portrait) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
}

/* Desktops and laptops  */
@media only screen and (min-width : 1224px) {
}

/* Large screens */
@media only screen and (min-width : 1824px) {
}

/* iPhone 4 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
}

