html,
body,
div,
span,
applet,
object,
iframe,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
    font-family: "Roboto", "Arial", sans-serif;
}

body {
    -webkit-text-size-adjust: none;
}

input,
textarea,
select {
    color: #39393c;
    background-color: #fff;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

/*#region Buttons */

.Buttons {
    margin-top: 20px;
}

.Buttons a {
    margin: 4px 2px 4px 0;
}

.Button1 {
    display: inline-block;
    padding: 15px 25px;
    border: solid 1px #1a99d6;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    background-color: #1a99d6;
    font-size: 11pt;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    -webkit-transition: background 0.3s ease-in-out, border 0.3s ease-in-out, color 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out, border 0.3s ease-in-out, color 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out, border 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out, color 0.3s ease-in-out;
}

.Button1.Small {
    padding: 12px 20px;
    font-size: 11pt;
}

.Button1:hover,
.Button1.Secondary1:hover,
.Button1:focus,
.Button1.Secondary1:focus {
    color: #fff !important;
    border-color: #0a83be;
    background-color: #0a83be;
}

.Button1.Disabled,
.Button1.Disabled:hover {
    border: solid 1px #424242;
    background-color: #858585;
    color: #cacaca !important;
    cursor: default;
    line-height: 20px;
}

.Button1.Secondary1 {
    border: solid 1px #1a99d6;
    color: #1a99d6;
    background-color: #fff;
}

/*#endregion*/

/*#region Utilities */

.Clear {
    clear: both;
}

.Hidden {
    display: none;
}

/*#endregion*/

.SingleSignOnSection {
    margin-top: 20px;
}

.SingleSignOnSection .Button1.SingleSignOnButton {
    display: inline-flex;
    padding: 12px 15px;
    align-items: center;
    justify-content: center;
    vertical-align: top;
}

.SingleSignOnSection .Button1.SingleSignOnButton img {
    height: 14px;
    object-fit: contain;
}

.SingleSignOnSection .Button1 .SingleSignOnLogoSeparator {
    display: inline-block;
    margin: -12px 8px;
    height: 24px;
    border-right: solid 1px rgba(255, 255, 255, 0.3);
}

.RegistrationFlow {
    margin-bottom: 20px;
    padding-top: 5px;
}

.RegistrationFlowChoice {
    display: inline-block;
    margin: 10px 5px 0 0;
}

.RegistrationFlowChoice * {
    cursor: pointer;
}

.InputWithMask {
    opacity: 0 !important;
    position: absolute;
}

.CheckboxLabelMask {
    display: flex;
    align-items: center;
}

.CheckboxMask {
    display: inline-block;
    position: relative;
    margin: 0 8px 0 0;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    width: 14px;
    height: 14px;
    vertical-align: bottom;
    text-align: center;
    background: #ffffff;
}

.InputWithMask:checked ~ label .CheckboxMask {
    border-color: #1a99d6;
    color: #ffffff;
    background-color: #1a99d6;
}

.InputWithMask:checked ~ label .CheckboxMask:after {
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 4px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    width: 3px;
    height: 8px;
    content: "";
    transform: rotate(45deg);
}

.InputWithMask:focus ~ label .CheckboxMask {
    border: 1px solid #1a99d6;
    box-shadow: 0 0 0 2px rgba(26, 153, 214, 0.5);
}

.RadioMask {
    display: inline-block;
    margin: 0 6px 0 0;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    vertical-align: bottom;
    text-align: center;
    background: #ffffff;
}

.InputWithMask:checked ~ label .RadioMask {
    border-color: #1a99d6;
    color: #ffffff;
    background-color: #1a99d6;
}

.InputWithMask:checked ~ label .RadioMask:after {
    display: block;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: #ffffff;
    content: "";
    transform: scale(0.45);
}

.InputWithMask:checked:disabled ~ label .RadioMask {
    border-color: #e0e0e0;
    color: #8c8c8c;
    background-color: transparent;
}

.InputWithMask:checked:disabled ~ label .RadioMask:after {
    background: #8c8c8c;
}

.InputWithMask:focus ~ label .RadioMask {
    border: 1px solid #1a99d6;
    box-shadow: 0 0 0 2px rgba(26, 153, 214, 0.5);
}
