/*
Go to the bottom to manually set the ie styling
*/

:root {
    --primary-color: #0067b1;
    --primary-color-focus: #2e88c5;
    --secondary-color: #888a8c;
    --secondary-color-focus: #9fa1a3;
    --box-background-color: #f6f6f6;
    --box-border-color: #87CEFA;
    --primary-shadow: .5rem .75rem .75rem rgba(0, 0, 0, 0.17);
    --primary-shadow-focus: 0px 5px 40px -5px rgba(0, 0, 0, 0.4);
    --secondary-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    --secondary-shadow-focus: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
    --page-width: 60rem;
    --control-width: 25rem;
    --control-height: 2.5rem;
    --font-size: 16px;
    /*this sets 1rem too*/
    --font-control-color: #303030;
    --font-label-color: #484848;
    --font-color: #575757;
}

html {
    font-size: 16px;
}

input {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

button {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.Header {
    margin: 2rem;
    text-align: center;
}

.ContentTable {
    width: 100%;
    padding: 0 2rem 0 2rem;
    font-family: 'Open Sans';
    text-align: left;
    color: var(--font-color);
    text-align: center;
}

.Footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 auto;
    width: 60rem;
    padding: .5rem 0;
    background-color: #888a8c;
    border-radius: 1rem;
}

.FooterText {
    font-size: 0.75em;
    color: white;
}

p {
    font-size: 1rem;
    text-align: center;
    width: 60rem;
    margin: 0 auto;
}

.PageHeader {
    font-size: 2rem;
    font-weight: 500;
    line-height: 150%;
    margin: 1rem 0;
    color: var(--primary-color);
}

.DefaultNextButton,
.btn {
    background-color: var(--primary-color);
    border: .25rem solid var(--primary-color);
    color: #fff;
    padding: .75rem 0px;
    margin: 1rem 1rem 1rem 1rem;
    box-shadow: var(--primary-shadow);
    width: 20rem !Important;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: .5rem;
    transition: all 0.4s ease 0s;
}

.DefaultNextButton:hover,
.DefaultNextButton:active,
.DefaultNextButton:focus,
.btn:hover,
.btn:active,
.btn:focus {
    background-color: var(--primary-color-focus);
    border-color: var(--primary-color-focus);
    border-radius: 2rem;
    color: #fff;
    box-shadow: var(--primary-shadow-focus);
    transition: all 0.4s ease 0s;
    outline: none;
}

.btn-link {
    color: var(--primary-color);
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    font-size: 1.25rem;
}

.btn-link:active,
.btn-link:hover,
.btn-link:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    text-decoration: underline;
    transition: all 0.4s ease 0s;
    color: var(--primary-color-focus);
}

.V3StatusCenterTableClass .btn {
    font-size: 1rem;
    height: 3rem;
    width: 10rem !important;
    margin: 0;
    padding: 5px;
}

.V3SummaryButtons {
    font-size: 1rem;
    margin: 0;
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.V3SummaryButtons:hover,
.V3SummaryButtons:active,
.V3SummaryButtons:focus {
    border-color: var(--primary-color-focus) !important;
    ;
    background-color: var(--primary-color-focus) !important;
    ;
}

.V3StatusCenterLogin {
    text-align: center;
}

.V3SummaryCollapsedMenuButton {
    float: left !important;
}

.V3SummaryBadge {
    margin-left: 44px;
    background-color: #007bff;
}

.DefaultFormControlClassV3 {
    display: inline !important;
    height: 3rem;
    font-size: 1.5rem;
    width: 25rem !important;
    border-width: 0px 0px 2px 0px !important;
    border-color: #ccc;
    border-style: solid !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    margin: 1em 5px 5px 5px !important;
    padding: 1em .5em .5em .5em !important;
    line-height: 20px !important;
    background-color: #F9F9F9 !important;
}

.DefaultFormControlClassV3:focus {
    outline:none;
}

.form-control {
    width: 25rem;
    margin: auto;
}

#pnlShowMFADropdown {
    text-align: center;
    width: 60rem;
    margin: 0 auto;
}

#pnlShowMFADropdown span {
    display: block;
}

#pnlShowMFADropdown span:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* "small" in bootstrap - tablets */
@media all and (max-device-width: 992px),
all and (max-width: 992px) {
    .DefaultFormControlClassV3 {
        width: 90% !important;
    }
}

.DefaultLabelClassV3 {
    position: absolute;
    font-size: 1.5rem;
    pointer-events: none;
    transition: 0.2s ease all;
    text-align: left;
    color: var(--font-label-color);
    font-weight: normal !important;
    left: 1.5rem;
    top: -.75rem !important;
	width: 20rem;
}

.LabelClassFocus {
    position: absolute;
    font-size: 1.5rem;
    font-weight: normal !important;
    color: var(--font-label-color);
    transition: 0.2s ease all;
    text-align: left;
    left: .5rem;
    top: -1.25rem !important;
	width: 20rem;
}

.ErrorMessage {
    color: red;
    font-weight: bold;
}

.LinkClass {
    text-decoration: underline;
    cursor: pointer;
    color: #6699cc;
}

.V3MessageArea {
    border: solid 1px #DDD;
    width: 100%;
    display: block;
    margin-bottom: 1rem;
}

.V3MessageArea-Header {
    background-color: #DDD;
    font-size: 1.5rem;
    padding: .5rem 1rem;
    text-align: left;
}

.V3MessageArea-Text {
    padding: 1rem;
    text-align: left;
}

.V3MessagesHeaderClass {
    background-color: #6699cc;
    color: white;
}

.V3StatusCenterTableClass {
    border: 1px solid #6699cc;
}

.task-title {
    text-align: left;
}

.task {
    vertical-align: middle;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	
	.LabelClassFocus,
	.DefaultLabelClassV3 {
		max-width: none;
		width: 20rem;
		left: -12rem;
	}
	
	.LabelClassFocus {
		top: 2rem;
	}
	
	.DefaultLabelClassV3 {
		top: 4rem;
	}

    .ContentTable {
        /*color: var(--font-color);*/
        color: #575757;
    }

    .PageHeader {
        /*color: var(--primary-color);*/
        color: #0067b1;
    }

    .DefaultNextButton,
    .btn {
        /*background-color: var(--primary-color);*/
        /*border: .25rem solid var(--primary-color);*/
        /*box-shadow: var(--primary-shadow);*/
        background-color: #0067b1;
        border: .25rem solid #0067b1;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    }

    .DefaultNextButton:hover,
    .DefaultNextButton:active,
    .DefaultNextButton:focus,
    .btn:hover,
    .btn:active,
    .btn:focus {
        /*background-color: var(--primary-color-focus);*/
        /*border-color: var(--primary-color-focus);*/
        /*box-shadow: var(--primary-shadow-focus);*/
        background-color: #2e88c5;
        border-color: #2e88c5;
        box-shadow: #2e88c5;
    }

    .btn-link {
        /*color: var(--primary-color);*/
        color: #0067b1;
        background-color: white;
        border: none;
    }

    .btn-link:active,
    .btn-link:hover,
    .btn-link:focus {
        /*color: var(--primary-color-focus);*/
        color: #0067b1;
        background-color: white;
        border: none;
    }

    .V3SummaryButtons {
        /*border-color: var(--primary-color) !important;
        background-color: var(--primary-color) !important;*/
        border-color: #0067b1 !important;
        background-color: #0067b1 !important;
    }

    .V3SummaryButtons:hover,
    .V3SummaryButtons:active,
    .V3SummaryButtons:focus {
        /*border-color: var(--primary-color-focus) !important;
        background-color: var(--primary-color-focus) !important;*/
        border-color: #2e88c5 !important;
        background-color: #2e88c5 !important;
    }

    .LabelClassFocus,
    .LabelClassPlaceholder {
        /*color: var(--font-label-color);*/
        color: #484848;
    }
}