@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
    height: 100%;
}

body {
    height: 100%;
    min-height: 100%;
}

a, .btn-link {
    color: #0366d6;
}

button.maga {
    border-radius: 10px;
    padding: 12px 24px;
    min-width: 150px;
    font-size: 1rem;
    color: black;
    box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
    border: solid 3px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #3C3B6E, #B22234);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #fff inset;
}

    button.maga:hover {
        box-shadow: none;
        color: white;
    }

h2 {
    font-size: 1.5em;
}

#Login {
    max-width: 500px;
    margin: 0 auto;
}
    #Login label {
        width: 75px;
    }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.profile_link {
    color: white;
    margin: 8px;
    cursor: pointer;
    display: block;
    padding: 8px;
    overflow: hidden;
}

    .profile_link:hover {
        background: rgba(255,255,255,0.3);
        text-decoration: none;
        color: white;
        border-radius: 4px;
    }

.spinner_wrapper {
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(255,255,255,.3);
}

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    position: absolute;
    top: 50%;
    left: 45%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.wrapper {
    min-height: 100%;
    padding: 10px;
    flex: 1;
}
    .wrapper.flag-bg {
        background-image: url(/images/flag-bg.jpg);
        background-size: cover;
    }

    .wrapper .content {
        position: relative;
        padding: 12px;
        border-radius: 0 0 10px 10px;
        background: rgba(255,255,255,.9);
    }

.header-title-banner {
    width: 100%;
    /*position: absolute;*/
    top: 0;
    left: 0;
    background-image: url(/images/top-banner-image-with-trump-face.jpg);
    background-size: cover;
    height: 150px;
    background-position: center;
}

.MMMLogo {
    max-width: 90%;
}

.solid {
    background: white;
    margin: 0 auto;
    display: block;
    padding: 10px;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
