html * {
    font-size: 100%;
    line-height: 20px;
    box-sizing: border-box;
}

.agent-page input {
    display: block;
    width: 524px;
    height: auto;
    padding: 5px 12px;
    font-size: 13px;
    color: #222222;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.agent-page input:focus {
    border-color: #0096cc;
    transition: border-color 0.2s linear 0s;
    outline: none;
}

.agent-page input.invalid {
    border-color: #db3d44;
}

.agent-page button {
    display: inline-block;
    min-width: 80px;
    height: auto;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 5px 12px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.agent-page button.btn-primary {
    color: #ffffff;
    background-color: #0096cc;
    background-image: linear-gradient(to bottom, #00a7e6 0%, #0096cc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00a7e6', endColorstr='#ff0096cc', GradientType=0);
    border-color: #0095ce;
}

.agent-page a {
    background-color: transparent;
    color: #0096cc;
}

.agent-page a:hover, .agent-page a:focus {
    outline: 0;
    color: #db3d44;
    text-decoration: underline;
}

.agent-page .hr {
    margin-top: 12px;
    margin-bottom: 12px;
    border: 0;
    border-top: 1px solid #ddd;
}

/*** Container ***/
.agent-page .page-content {
    padding: 16px 20px 40px 30px;
    background: none;
    font-size: 13px;
    color: #333;
}

/*** Header ***/
.agent-page .page-header {
    font-family: "Interstate-Light", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 24px;
    line-height: 48px;
    margin-bottom: 12px;
}
.agent-page .page-message {
    display: flex;
}
.agent-page .page-message__content {
    flex: 1 1 auto;
}
.agent-page .page-message__icon {
    flex: 0 0 auto;
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-right: 12px;
}
.agent-page .page-message__icon.warning {
    background: url('../images/icons/icon_warning_48.png') no-repeat;
}

/*** List ***/
.agent-page .list {
    list-style: decimal;
    padding-left: 20px;
    font-size: 18px;
}
.agent-page .list__item {
    margin-bottom: 32px;
}
.agent-page .list__title {
    margin-bottom: 8px;
}
.agent-page .list__desc {
    font-size: 13px;
    margin-bottom: 4px;
}

/*** Note ***/
.agent-page .note {
    font-size: 13px;
    margin-top: 8px;
}
.agent-page .note > * {
    color: #777;
}
.agent-page .note > em {
    font-weight: normal;
    padding-right: 0;
}

/*** Help Desk ***/
.agent-page .help {
    font-size: 13px;
}
.agent-page .help > * {
    vertical-align: middle;
}
.agent-page .help__icon {
    font-size: 16px;
    margin-right: 4px;
}
.agent-page .help__title {
    display: inline-block;
}