﻿/* NORMALIZATION */

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body,
form,
iframe,
fieldset,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    border: 0;
    padding: 0;
}

iframe,
form,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
main {
    display: block;
}

img {
    width: 100%;
    border: 0;
    -ms-interpolation-mode: bicubic;
}

table,
td,
th {
    margin :0;
    border: 0;
    padding: 0;
    border-spacing: 0;
    border-collapse: collapse;
    empty-cells: show;
    text-align: left;
}

input,
button,
select,
textarea {
    font-size: 1em;
    margin: 0;
}

input,
select,
textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

button {
    overflow: visible;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    resize: vertical;
    overflow: auto;
    vertical-align: top;
}

option,
select[multiple] {
    background-color: #FFFFFF;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;
    padding: 0 !important;
    border-width: 0 !important;
    border-color: transparent !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    vertical-align: middle;
}

input[type="search"] {
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

a:focus {
    outline: thin dotted;
}

a:active,
a:hover {
    outline: 0;
}

b,
strong {
    font-weight: bold;
}

i,
em {
    font-style: italic;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

hr {
    display: block;
    height: 1px;
    border-width: 0;
    border-top: 1px solid #CCCCCC;
    margin: 0;
    padding: 0;
}

/* HELPER NON-SEMANTIC CLASSES */
.margin-top-15 {
    margin-top: 15px;
}

.margin-top-60 {
    margin-top: 60px !important;
}

/* HNSC: Page busy */
.tpt_pageBusy,
.tpt_pageBusy input,
.tpt_pageBusy button,
.tpt_pageBusy a {
    cursor: wait;
}

/* HNSC: Sizes */
.autoResize {
    max-width: 100%;
    max-height: 100%;
}

/* HNSC: Clears */
.clearer,
.autoClearer:after {
    clear: both;
}

.autoClearer:before,
.autoClearer:after {
    content: " ";
    display: table;
}

/* HNSC: Box Model */
.dBlock {display: block;}
.dInline {display: inline;}
.dInblock {display: inline-block;}
.dNone {display: none;}

/* HNSC: Text Align */
.taRight {text-align: right;}
.taCenter {text-align: center;}
.taLeft {text-align: left;}
.justify {text-align: justify;}

/* HNSC: Text Colors */
.tBlack {color: #000000;}
.tWhite {color: #FFFFFF;}
.tGrey {color: #808080;}

/* HNSC: Text Font Family */
.serif {font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, Times, 'Times New Roman', serif;}
.sansSerif {font-family: Helvetica, Arial, sans-serif;}

/* HNSC: Font Weight */
.bold {font-weight: bold;}

/* HNSC: Font Style */
.italic {font-style: italic;}
.oblique {font-style: oblique;}

/* HNSC: Text Decoration */
.overline {text-decoration: overline;}
.underline {text-decoration: underline;}
.lineThrough {text-decoration: line-through;}
.tdNone {text-decoration: none;}

/* HNSC: State */
.pointer {cursor: pointer;}

/* COMMON PATTERNS */

/* CP: Lists */
.cleanList,
.cleanList > li {
    display: block;
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* CP: Boxes */
.halfContainer {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

@media all and (max-width: 768px) {
    .halfContainer {
        width: auto;
    }
}

/* CP: Tables */
.tableList {
    display: table;
    width: 100%;
    line-height: 1.5em;
    table-layout: fixed;
}

.tableList th {
    display: table-cell;
    padding: 1.25em .75em;
    background-color: transparent;
    font-weight: normal;
    font-weight: 500;
    border-bottom: 1px solid #E2E2E2;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    border-collapse: collapse;
}

.tableList td {
    display: table-cell;
    padding: .75em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}
.tableList tbody tr:last-child td {
    border-bottom: none;
}
.tableList td a {
    color: #919191;
}

/* CP: T: Tables with Alternate Rows Color * /
.tableList.tableListAlternateRows tr:nth-child(2n) td {
    background-color: #F8F8F8;
    background-color: rgba(0, 0, 0, 0.025);
}

/* CP: T: Tables Cells with problematic contents */
.tableListCellLimited {
    max-width: 200px;
}

@media all and (max-width: 600px) {
    .tableList th,
    .tableList td:empty {
        display: none;
    }

    .tableList,
    .tableList thead,
    .tableList tbody,
    .tableList tr,
    .tableList td {
        display: block;
    }

    .tableList thead,
    .tableList tbody,
    .tableList tr,
    .tableList td,
    .tableListCellLimited {
        width: auto;
        max-width: none;
    }

    .tableList td {
        border-bottom: none !important;
        padding-left: 0;
        padding-right: 0;
    }
    .tableList td:empty {
        display: none;
    }
    .tableList td:before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        color: #999;
        line-height: 1;
        margin-top: -.75em;
    }
    .tableList td.cellTitle:before {
        content: '';
        margin-top: 0;
    }
    .cellTitle {
        font-size: 1.2em;
        font-weight: 700;
    }
    .tableList tbody tr {
        border-bottom: 1px solid #ccc;
    }
    .tableList tbody tr:last-child {
        border-bottom: none;
    }
}

/* BUTTONS */

/* B: General Format */
.genericButton,
.saveButton,
.submitButton,
.nextButton,
.gotoButton,
.redirectUrlButton,
.previousButton,
.homeButton,
.cancelButton,
.clearButton {
    display: inline-block;
    padding: 11px 1.5em;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    min-width: 120px;
    border-width: 2px;
    border-style: solid;
    cursor: pointer;
    /*height: 43px;*/
    font-size: 14px;
}
.body_Firefox .genericButton,
.body_Firefox .saveButton,
.body_Firefox .submitButton,
.body_Firefox .nextButton,
.body_Firefox .gotoButton,
.body_Firefox .redirectUrlButton,
.body_Firefox .previousButton,
.body_Firefox .homeButton,
.body_Firefox .cancelButton,
.body_Firefox .clearButton {
    padding: .65em 1.5em;
}

/* B: Inactive states */
.saveButton, .saveButton:link, .saveButton:visited,
.submitButton, .submitButton:link, .submitButton:visited,
.nextButton, .nextButton:link, .nextButton:visited,
.gotoButton, .gotoButton:link, .gotoButton:visited,
.redirectUrlButton, .redirectUrlButton:link, .redirectUrlButton:visited {
    background-color: #031E3A;
    color: #FFFFFF;
    border-color: #031E3A;
}

.previousButton, .previousButton:link, .previousButton:visited,
.homeButton, .homeButton:link, .homeButton:visited,
.cancelButton, .cancelButton:link, .cancelButton:visited,
.clearButton, .clearButton:link, .clearButton:visited
 {
    background-color: #B6B6B6;
    color: #fff;
    border-color: #B6B6B6;
}

/* B: Active states */
.saveButton:hover, .saveButton:focus, .saveButton:active,
.submitButton:hover, .submitButton:focus, .submitButton:active,
.nextButton:hover, .nextButton:focus, .nextButton:active,
.gotoButton:hover, .gotoButton:focus, .gotoButton:active,
.redirectUrlButton:hover, .redirectUrlButton:focus, .redirectUrlButton:active {
    background-color: #474747;
    color: #fff;
    border-color: #474747;
    outline-width: 0;
    text-decoration: none;
}

.previousButton:hover, .previousButton:focus, .previousButton:active,
.homeButton:hover, .homeButton:focus, .homeButton:active,
.cancelButton:hover, .cancelButton:focus, .cancelButton:active,
.clearButton:hover, .clearButton:focus, .clearButton:active {
    background-color: #919191;
    color: #fff;
    border-color: #919191;
    outline-width: 0;
    text-decoration: none;
}

/* B: Other buttons */
.uploadedFile {
    display: block;
    padding-top: 2px;
}

.removeFile {
    background-color: #E9E9E9;
    color: #5E6D81;
    border: 2px solid #E9E9E9;
    cursor: pointer;
    padding: 3px 4px;
    text-decoration: none;
    background-image: none;
    border-width: 0;
    border-radius: 2px;
}

.removeFile:hover, .removeFile:focus, .removeFile:active {
    background-color: #FFFFFF;
    color: #5E6D81;
    border: 2px solid #5E6D81;
    text-decoration: none;
}

.removeFile input {
    display: inline !important;
}

.smallButton {
    text-transform: none;
    padding: 0 0.5em;
    line-height: 1.5;
    min-width: 0;
    min-height: inherit;
    color: #fff !important;
    font-size: 14px;
    height: inherit;
}

/* TEMPLATE PSEUDO-MODULES */

/* TPM: Social Share and Registration Icons */
.icon14,
.icon16,
.icon32 {
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 0;
    vertical-align: middle;
    padding: 0 0 14px 14px;
    background-position: left top;
    background-repeat: no-repeat;
}

.icon16 {
    padding: 0 0 16px 16px;
}

.icon32 {
    padding: 0 0 32px 32px;
}

.iconRss14 {background-image: url('../images/ico_rss_14.png');}

.iconFacebook {background-image: url('../images/social-login--facebook.svg');}
.iconLinkedin {background-image: url('../images/ico_alt1_linkedin.svg');}
.iconTwitter {background-image: url('../images/social-share--twitter.svg');}
.iconGoogleplus {background-image: url('../images/ico_alt1_google-plus.svg');}
.iconViadeo {background-image: url('../images/ico_alt1_viadeo.svg');}
.iconXing {background-image: url('../images/ico_alt1_xing.svg');}
.iconDropbox {background-image: url('../images/ico_alt1_dropbox.svg');}
.iconGoogledrive {background-image: url('../images/ico_alt1_google-drive.svg');}
.iconEmail16 {background-image: url('../images/social-share--email.svg');}

.iconFacebook32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/social-share--facebook.png');}
.iconLinkedin32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/ico_linkedin_32.png');}
.iconTwitter32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/social-share--twitter.png');}
.iconGoogleplus32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/ico_googleplus_32.png');}
.iconViadeo32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/ico_viadeo_32.png');}
.iconXing32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/ico_xing_32.png');}
.iconDropbox32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/ico_dropbox_32.png');}
.iconGoogledrive32 {background-image: url('https://careers.ralphlauren.com/portal/4/images/ico_googledrive_32.png');}
.iconEmail32 {background-image: url('../images/social-share--email.svg');}

@media all and (min-width: 1px) {
    .icon14 {
        background-size: 14px 14px;
    }

    .icon16 {
        background-size: 16px 16px;
    }

    .icon32 {
        background-size: 32px 32px;
    }
}

/* TPM: Social Share Toggle */
.tpt_socialShareContainer {
    display: inline-block;
    position: relative;
}

.tpt_socialShareButton {
    /*padding: 0 0em 0 2.5em;*/
    background-image: url('../images/iconShare_c2.svg');
    background-repeat: no-repeat;
    background-position: 0.5em center;
    background-size: 1.3em;
    text-transform: none;
    padding-left: 2em;
}

.tpt_socialShareButton, .tpt_socialShareButton:link, .tpt_socialShareButton:visited {
    background-color: #FFFFFF;
    color: #5E6D81;
    border-width: 2px 0 2px 0;
    border-color: transparent transparent #FFFFFF transparent;
    outline-width: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.tpt_socialShareButton:hover, .tpt_socialShareButton:focus, .tpt_socialShareButton:active {
    background-color: #FFFFFF;
    color: #5E6D81;
    border-color: transparent transparent #5E6D81 transparent;
    outline-width: 0;
    text-decoration: none;
}

.tpt_socialShareIcon {
    margin-right: 0.5em;
}

.tpt_socialShareIcon:last-child {
    margin-right: 0;
}

.tpt_socialShareIcon:hover, .tpt_socialShareIcon:focus, .tpt_socialShareIcon:active {
    outline: 1px solid #FFFFFF;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.tpt_socialShareBar {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    vertical-align: middle;
    margin: 0;
    padding: 0.5em;
    background-color: #FAFAFA;
    border-bottom: 2px solid #E9E9E9;
    white-space: nowrap;
}

.tpt_socialShareContainerActive > .tpt_socialShareButton {
    background-image: url('../images/circleCross_c2.svg');
    background-color: #E9E9E9;
    border-color: transparent transparent #E9E9E9 transparent;
}

.tpt_socialShareContainerActive > .tpt_socialShareButton:hover,
.tpt_socialShareContainerActive > .tpt_socialShareButton:focus,
.tpt_socialShareContainerActive > .tpt_socialShareButton:active {
    background-color: #FAFAFA;
}

.tpt_socialShareContainerActive > .tpt_socialShareBar {
    display: inline-block;
    bottom: 100%;
}

@media all and (min-width: 1px) {
    .tpt_socialShareBar {
        display: inline-block;
        opacity: 0;
        -webkit-transform: scale(0) translateX(100%) rotateX(90deg) rotateY(45deg);
        -ms-transform: scale(0) translateX(100%);
        transform: scale(0) translateX(100%) rotateX(90deg) rotateY(45deg);
        transition-property: opacity, transform, bottom;
        transition-duration: 0.3s;
        transition-timing-function: ease;
    }

    .tpt_socialShareContainerActive > .tpt_socialShareBar {
        opacity: 1;
        -webkit-transform: scale(1) translateX(0) rotateX(0deg) rotateY(0deg);
        -ms-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0) rotateX(0deg) rotateY(0deg);
        transition-property: opacity, transform, bottom;
        transition-duration: 0.3s;
        transition-timing-function: ease;
    }
}

@media all and (max-width: 600px) {
    .tpt_socialShareBar {
        right: -50%;
        margin: 0 -50% 0 0;
        text-align: center;
    }
}

/* TPM: Wizard Defaults */

.formfieldSpec,
.datasetfieldSpec {
    min-height: 6em;
    padding-bottom: 1em;
}

.fieldSpec {
    padding-bottom: 2em;
}

.fieldLabel,
.formfieldLabel,
.datasetfieldLabel,
.fieldSpec > label,
.formfieldSpec > label,
.datasetfieldSpec > label,
.fieldSpec > div:first-child,
.formfieldSpec > div:first-child,
.datasetfieldSpec > div:first-child {
    line-height: 1.2;
    display: block;
    vertical-align: middle;;
}

.fieldSpec iframe,
.formfieldSpec iframe,
.datasetfieldSpec iframe {
    max-width: 100%;
}

.tpt_wizard input,
.tpt_wizard select,
.tpt_wizard textarea {
    width: 100%;
}

/* TPM: Wizard Particular Fields Defaults */
.tpt_wizard .FormHeader {
    margin: 1em 0;
}

.tpt_wizard textarea.ParagraphWithFormat {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    width: calc(100% - 2em - 2px);
}

.CheckBoxListFormField:before,
.CheckBoxListFormField:after,
.RadioButtonListFormField:before,
.RadioButtonListFormField:after {
    content: " ";
    display: table;
}

.CheckBoxListFormField:after,
.RadioButtonListFormField:after {
    clear: both;
}

.CheckBoxListFormField label,
.RadioButtonListFormField label {
    display: block;
    padding: 0.25em 0;
    cursor: pointer;
}

.CheckBoxListFormField input,
.RadioButtonListFormField input {
    margin-right: 0.25em;
    vertical-align: middle;
}

.CheckBoxListFormField input + label,
.RadioButtonListFormField input + label {
    display: inline-block;
}

/* TPM: WPFD: Table Fields */
.removeDatasetRow, .removeDatasetRow:link,
a[id^="addRowFor"], a[id^="addRowFor"]:link {
    display: inline-block;
    clear: both;
    padding: 0.5em 0.5em 0.5em 1.5em;
    vertical-align: middle;
    color: #031E3A;
    font-size: 0.875em;
    background-position: left center;
    background-size: 1em 1em;
    background-repeat: no-repeat;
    margin: 0.25em 0;
}

.removeDatasetRow {
    background-image: url('../images/circleMinus.svg');
    margin: 0.5em 0 0.25em 0;
}

a[id^="addRowFor"] {
    background-image: url('../images/circlePlus.svg');
}

.removeDatasetRow:hover, .removeDatasetRow:focus, .removeDatasetRow:active {
    color: #FF0000;
}

a[id^="addRowFor"]:hover, a[id^="addRowFor"]:focus, .removeDatasetRow:active {
    color: #008000;
}

.removeDatasetRow ~ div {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition-property: opacity, transform;
    transition-duration: 0.5s, 0.5s;
}

.removeDatasetRow:hover ~ div,
.removeDatasetRow:focus ~ div {
    opacity: 0.6;
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    transition-property: opacity, transform;
    transition-duration: 0.5s, 0.5s;
}

/* TPM: Wizard FilePickers Defaults */
.FileField .dropbox-dropin-btn,
.FileField .drivePickerButton {
    vertical-align: top;
    margin-top: 4px;
    margin-right: 4px;
}

.FileField .drivePickerButton {
    background-color: #F5F5F5;
    background-image: url("../images/ico-google-drive-color.svg");
    background-image: url("../images/ico-google-drive-color.svg"), linear-gradient(to bottom, #FCFCFC 0%, #F5F5F5 100%);
    background-size: 15px 15px, auto auto;
    background-position: 5px 3px;
    background-position: 5px 3px, left top;
    background-repeat: no-repeat;
    background-repeat: no-repeat, repeat;
    border-color: #EBEBEB #EBEBEB #D4D4D4 #EBEBEB;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    color: #636363;
    display: inline-block;
    font-family: 'Lucida Grande', 'Segoe UI', 'Tahoma', 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    height: 22px;
    padding: 2px 7px 4px 3px;
    text-decoration: none;
    text-indent: 22px;
    cursor: pointer;
}

.FileField .drivePickerButton:hover {
    background-color: #FDFDFD;
    background-image: url("../images/ico-google-drive-color.svg");
    background-image: url("../images/ico-google-drive-color.svg"), linear-gradient(to bottom, #FDFDFD 0%, #F5F5F5 100%);
    border-color: #DEDEDE #DEDEDE #CACACA #DEDEDE;
}

.FileField .drivePickerButton:active {
    border-color: #D1D1D1;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
}

/* TPM: Job Template Widget */

.jobTemplateWidgetContainer select {
    margin-bottom: 1em;
}

#jobTemplateWidgetDescription {
    display: block;
    margin-top: 1em;
    font-weight: normal;
}

/* TPM: Two-Column Wizards */
.wiz_2Columns:after {
    clear: both;
}

.wiz_2Columns:before,
.wiz_2Columns:after {
    content: " ";
    display: table;
}

.wiz_2Columns .fieldSpec {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 50%;
}

.wiz_2Columns .fieldSpecPadder,
.wiz_2Columns .Separator {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.wiz_2Columns .Section,
.wiz_2Columns .Separator {
    clear: both;
    float: none;
    width: auto;
}

.wiz_2Columns .Section {
    margin: 20px 0px;
}

@media all and (max-width: 600px) {
    .wiz_2Columns .fieldSpec {
        float: none;
        width: auto;
    }

    .wiz_2Columns .fieldSpecPadder,
    .wiz_2Columns .Separator {
        padding-left: 0;
        padding-right: 0;
    }
}

/* TPM: Two-Column Wizards Auto Clear */
.wiz_2ColumnsAuto .fieldSpec:nth-child(2n + 1) {
    clear: both;
}

/* TPM: Wizard Field Helpers */

/* TPM: WFH: Remove default field size */
.wiz_noDefaultSize {
    min-height: 0;
    padding-bottom: 0;
}

/* TPM: WFH: Remove default field size */
.wiz_fieldFullColumn.fieldSpec {
    float: none!important;
    clear: both!important;
    width: 100%!important;
}

/* TPM: WFH: Wizard Button Bar */
.wiz_buttonBar.fieldSpec {
    min-height: 0;
    padding-top: 1em;
    padding-bottom: 0.5em;
    clear: both;
    float: none;
    display: block;
    margin: 0;
    vertical-align: middle;
    width: auto;
    text-align: center;
}

.wiz_buttonBar.fieldSpec:after {
    clear: both;
}

.wiz_buttonBar.fieldSpec:before,
.wiz_buttonBar.fieldSpec:after {
    content: " ";
    display: table;
}

.wiz_buttonBar.fieldSpec button {
    margin-left: 0.5em;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
}

.wiz_buttonBar.wiz_buttonBarLeft.fieldSpec {
    text-align: left;
}

.wiz_buttonBar.wiz_buttonBarRight.fieldSpec {
    text-align: right;
}

.wiz_buttonBar.wiz_buttonBarRight.fieldSpec button {
    margin-left: 1em;
    margin-right: 0;
}

.wiz_buttonBar.wiz_buttonBarLeft.fieldSpec button {
    margin-left: 0;
    margin-right: 1em;
}

.wiz_buttonBar.wiz_buttonBarInheritMargin.fieldSpec button {
    margin-left: inherit;
    margin-right: inherit;
}

/* TPM: WFH: Wizard Button Bar Reverse Button Order */
.wiz_buttonBarReverse.fieldSpec {
    direction: rtl;
}

@media all and (max-width: 400px) {
    .wiz_buttonBar.fieldSpec button,
    .wiz_buttonBar.wiz_buttonBarRight.fieldSpec button,
    .wiz_buttonBar.wiz_buttonBarLeft.fieldSpec button,
    .wiz_buttonBar.wiz_buttonBarInheritMargin.fieldSpec button {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0.5em;
        display: block;
        width: 100%;
    }

    .wiz_buttonBar.wiz_buttonBarInheritMargin.fieldSpec button {
        margin-left: inherit;
        margin-right: inherit;
        margin-bottom: 0;
        display: inline-block;
        width: auto;
    }
}

/* TPM: WFH: Wizard Field Hiding */
.wiz_hidden,
.wiz_hidden.fieldSpec,
.wiz_hidden.formfieldSpec,
.wiz_hidden.datasetfieldSpec {
    display: none;
}

/* TPM: WFH: Wizard Field Label and/or Description Removal */
.wiz_noLabel .labelText,
.wiz_noDescription .description {
    display: none;
}

/* TPM: WFH: Wizard Field Absolute Left Checkbox */
.wiz_forcedLeftCheckbox .fieldSpecPadder {
    position: relative;
    padding-left: 18px;
}

.wiz_forcedLeftCheckbox input {
    position: absolute;
    top: 0;
    left: 0;
}

/* TPM: WFH: Wizard Field Multiple Inputs In Columns */
.wiz_collectionInColumns2 a,
.wiz_collectionInColumns3 a,
.wiz_collectionInColumns4 a {
    display: block;
    clear: both;
}

.wiz_collectionInColumns2 label,
.wiz_collectionInColumns3 label,
.wiz_collectionInColumns4 label {
    float: left;
    padding-right: 0.25em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
}

.wiz_collectionInColumns2 label {
    width: 50%;
}

.wiz_collectionInColumns3 label {
    width: 33.3%;
}

.wiz_collectionInColumns4 label {
    width: 25%;
}

/* TPM: WFH: Wizard Field Multiple Inputs Boxed */
.wiz_boxedOptions div.wiz_boxedOptions,
.wiz_boxedOptions.RadioButtonListFormField .description + div {
    border: 1px solid #CCCCCC;
    overflow-y: auto;
    max-height: 9.5em;
}

.wiz_boxedOptions input {
    margin-right: 0.333em;
}

.wiz_boxedOptions a,
.wiz_boxedOptions label {
    display: block;
    padding: 0.333em;
}

.wiz_boxedOptions a:hover,
.wiz_boxedOptions label:hover {
    background-color: #F0F0F0;
}

/* TPM: Search Form */
.searchForm {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.searchBox {
    padding: 0;
}
.twoCols .searchBox {
    padding: 0;
    display: inline-block;
    width: 49%;
    float: left;
    margin-right: 1%;
}

.searchForm fieldset.mainCol {
    flex-grow: 2;
    margin-bottom: 2em;
}
.searchForm fieldset.sideCol {
    flex-grow: 1;
    max-width: 250px;
    padding-left: 20px;
    margin-bottom: 2em;
}

.searchBoxLabel {
    padding-top: 0.75em;
    padding-right: 1.5em;
    line-height: 1.5em;
    color: #606060;
    display: none !important;
}

.searchBoxFieldContainer {
    line-height: 1.5;
    vertical-align: top;
    width: 100%
}

.searchBoxFieldContainer label {
    vertical-align: middle;
}

.searchButtonBox {
    text-align: right;
    width: 245px;
    margin-top: 15px;
}

.searchButtonBox .saveButton,
.searchButtonBox .genericButton {
    box-sizing: border-box;
}

.searchButtonBox .genericButton,
.searchButtonBox .genericButton:link,
.searchButtonBox .genericButton:visited {
    border-color: transparent;
    text-decoration: none;
}

.searchButtonBox .genericButton:hover,
.searchButtonBox .genericButton:focus,
.searchButtonBox .genericButton:active {
    border-color: #e9e9e9;
    background-color: #e9e9e9;
}

.searchSortBox {
    clear: left;
    float: left;
}

@media all and (max-width: 768px) {
    .searchBoxLabel {
        float: none;
        padding-top: 0;
    }

    .searchBoxLabel,
    .searchBoxFieldContainer {
        display: block;
        width: auto;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
}

@media all and (max-width: 600px) {
    .searchBox {
        float: none;
        width: 100%;
    }

    .searchBoxLabel,
    .searchBoxFieldContainer {
        padding-left: 0;
        padding-right: 0;
    }

    .searchButtonBox {
        float: none;
        text-align: right;
    }
}

/* TPM: Search Agents Form */
.searchAgentFields {
    padding-bottom: 1em;
}

.searchAgentFields br {
    display: none;
}

.searchAgentFields label {
    line-height: 2;
    display: block;
    vertical-align: middle;
}

.searchAgentFields > label ~ label {
    margin-top: 1em;
}

/* TPM: General Form Sizes */
.formSizes1 input,
.formSizes1 textarea,
.formSizes1 select {
    width: 100%;
    padding: 0.65em 1em;
    border-width: 1px;
    border-style: solid;
    outline-width: 0;
    font-size: 16px;
    height: 43px;
}

/* iPhones zoom fix */
@media all and (max-width: 767px) {
    .formSizes1 input,
    .formSizes1 textarea,
    .formSizes1 select {
        font-size: 16px;
    }
}

select {
    padding-right: 25px !important;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
    background-image: url(../images/arrowSelect.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    background-size: 10px;
}
select[multiple] {
    background-image: none;
}
select::-ms-expand {
    display: none;
}
/* select2 */
.select2-default {
    color: #041E3A !important;
}
.select2-container .select2-choice {
    height: 43px !important;
    padding: 0 0 0 8px;
    border: 1px solid #e0e0e0 !important;
    line-height: 43px !important;
    color: #041E3A !important;
    text-decoration: none;
    border-radius: 0 !important;
    background-color: #fff !important;
    background-image: none !important;
    filter: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: -webkit-focus-ring-color auto 5px !important;
    outline-color: transparent !important;

    -webkit-box-shadow: inset 0 0 5px #F7F7F7, 0 0 5px rgba(0, 0, 0, 0.05) !important;
            box-shadow: inset 0 0 5px #F7F7F7, 0 0 5px rgba(0, 0, 0, 0.05) !important;
}
.select2-container .select2-choice .select2-arrow {
    width: 24px !important;
    border-left: none !important;
    background-clip: padding-box;
    background: transparent !important;
    background-image: url(../images/arrowSelect.svg) !important;
    filter: none !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 10px) center !important;
    background-size: 10px !important;
}
.select2-container .select2-choice .select2-arrow b {
    display: none !important;
}
.select2-search input,
.select2-results {
    font-family: 'Montserrat', sans-serif !important;
}
.select2-drop-active {
    border: 1px solid #e0e0e0 !important;
    border-top: none;
    box-shadow: inset 0 0 5px #F7F7F7, 0 2px 2px #ccc !important;
}
.select2-container .select2-choice abbr {
    top: 14px;
}

.formSizes1 select[multiple],
.formSizes1 textarea {
    height: auto;
    min-height: 5em;
}

.formSizes1 input[type="file"] {
    padding: 0;
    width: 100%;
    height: 43px;
    line-height: 1.5em;
    vertical-align: middle;
    overflow: hidden;
    font-size: 15px;
}

.formSizes1 input[type="file"]::-ms-value {
    border-width: 0;
}

.formSizes1 input[type="file"]::-ms-browse {
    border-width: 0;
    border-radius: 0;
}

.formSizes1 input[type="file"]::-webkit-file-upload-button {
    border-width: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0 0.5em;
    line-height: calc(3em - 2px);
}

.formSizes1 select.dayInput,
.formSizes1 select[id*="day"],
.formSizes1 select[name*="day"],
.formSizes1 select.monthInput,
.formSizes1 select[id*="month"],
.formSizes1 select[name*="month"] {
    width: 30%;
}

.formSizes1 select.yearInput,
.formSizes1 select[id*="year"],
.formSizes1 select[name*="year"] {
    width: 40%;
}

/* TPM: General Form Colors */
/* TPM: GFC: Form Colors 1 */
.formColors1 input,
.formColors1 textarea,
.formColors1 select {
    border-color: #E2E2E2;
    background-color: #FFFFFF;
}

.formColors1 select option {
    background-color: #FFFFFF;
}

.formColors1 .hasErrors input,
.formColors1 .hasErrors textarea,
.formColors1 .hasErrors select {
    border-color: #EE8080;
    box-shadow: 0 0 3px rgba(221, 0, 0, 0.05);
}

.formColors1 input:focus,
.formColors1 textarea:focus,
.formColors1 select:focus,
.formColors1 .hasErrors input:focus,
.formColors1 .hasErrors textarea:focus,
.formColors1 .hasErrors select:focus {
    border-color: #CCCCCC;
    background-color: #FEFEFE;
    box-shadow: inset 0 0 5px #FFFFFF, 0 0 5px rgba(0, 0, 0, 0.05);
}

.formColors1 input[type="file"]::-ms-value {
    background-color: transparent;
}

.formColors1 input[type="file"]::-ms-browse {
    background-color: #E9E9E9;
}

.formColors1 input[type="file"]::-webkit-file-upload-button {
    background-color: #E9E9E9;
}

.formColors1 .requiredMark,
.formColors1 span.requiredField,
.formColors1 span.formrequiredField,
.formColors1 span.datasetrequiredField {
    color: #DD0000;
}

/* TPM: GFC: Form Colors 2 */
.formColors2 input,
.formColors2 textarea,
.formColors2 select {
    color: #999999;
    border-color: #E2E2E2;
    background-color: #F7F7F7;
}

.formColors2 select option {
    background-color: #F7F7F7;
}

.formColors2 .hasErrors input,
.formColors2 .hasErrors textarea,
.formColors2 .hasErrors select {
    border-color: #EE8080;
    box-shadow: 0 0 3px rgba(221, 0, 0, 0.05);
}

.formColors2 input:focus,
.formColors2 textarea:focus,
.formColors2 select:focus,
.formColors2 .hasErrors input:focus,
.formColors2 .hasErrors textarea:focus,
.formColors2 .hasErrors select:focus {
    border-color: #CCCCCC;
    background-color: #F7F7F7;
    box-shadow: inset 0 0 5px #F7F7F7, 0 0 5px rgba(0, 0, 0, 0.05);
}

.formColors2 input[type="file"]::-ms-value {
    background-color: transparent;
}

.formColors2 input[type="file"]::-ms-browse {
    background-color: #E9E9E9;
}

.formColors2 input[type="file"]::-webkit-file-upload-button {
    background-color: #E9E9E9;
}

.formColors2 .requiredMark,
.formColors2 span.requiredField,
.formColors2 span.formrequiredField,
.formColors2 span.datasetrequiredField {
    color: #DD0000;
}

/* TPM: Fields Form Items */
.fieldBox {
    vertical-align: middle;
    margin-bottom: 0.5em;
}

.fieldBoxLabel {
    line-height: 2;
    display: block;
    vertical-align: middle;
}

/* TPM: Fields Form Items 3 columns */
.fieldBox3ColumnsInline .fieldBox {
    width: 30%;
    margin-right: 5%;
    float: left;
}

.fieldBox3ColumnsInline .fieldBox:last-child {
    margin-right: 0;
}

.fieldBox3ColumnsInline .fieldBoxLabel {
    min-height: 2em;
}

.fieldBox3ColumnsInlineButtonContainer {
    display: block;
    padding-top: 2em;
}

.fieldBox3ColumnsInlineButtonContainer > button {
    height: 3em;
    line-height: 1;

}

/* TPM: Fields Printing */
.fieldSet {
    margin-bottom: 0.5em;
    line-height: 1.5;
}

.fieldSetLabel {
    display: inline;
    font-weight: 600;
    vertical-align: top;
}

.fieldSetValue {
    display: inline-block;
    vertical-align: top;
    word-break: break-word;
}

.jobDetailPage .align-element .fieldSetValue {
    display: block;
}

.fieldSetValueSet {
    margin-bottom: 0.75em
}

.fieldSetValueSecondaryData {
    color: #606060;
}

.fieldSet.fullWidth .fieldSetLabel,
.fieldSet.fullWidth .fieldSetValue {
    display: block;
    width: 100%;
}

@media all and (max-width: 480px) {
    .fieldSetLabel {
        display: block;
        vertical-align: middle;
    }

    .fieldSetValue {
        display: block;
        vertical-align: middle;
    }
}

/* TPM: Fields Set 2 Columns */

.fieldSetContainer2Columns:after {
    clear: both;
}

.fieldSetContainer2Columns:before,
.fieldSetContainer2Columns:after {
    content: " ";
    display: table;
}

.fieldSetContainer2Columns .fieldSet {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 50%;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.fieldSetContainer2Columns .fieldSet:nth-child(2n + 1) {
    clear: both;
}

@media all and (max-width: 768px) {
    .fieldSetContainer2Columns .fieldSet {
        float: none;
        width: auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* TPM: Details */
.profilePictureContainer {
    max-width: 120px;
    margin-bottom: 2em;
}

.profilePicture {
    margin: 0;
}

.jobDetailDetails {
    position: relative;
}

.jobDetailDescription {
    line-height: 1.5;
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #E2E2E2;
    clear: both;
}

.jobDetailDetailsApplyButton {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media all and (max-width: 600px) {
    .jobDetailDetailsApplyButton {
        position: static;
    }
}

/* TPM: Pagination */
.paginationItem {
    display: inline-block;
    margin-left: 0.25em;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 1em;
    background-color: transparent;
    color: #808080;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: transparent;
    position: relative;
    top: -1px;
}

.paginationItem:hover,
.paginationItem:focus,
.paginationItem:active {
    background-color: #FAFAFA;
    text-decoration: none;
    border-color: #DB2623;
}

.currentPageLink,
.currentPageLink:link,
.currentPageLink:visited,
.currentPageLink:hover,
.currentPageLink:focus,
.currentPageLink:active {
    cursor: default;
    color: #031E3A;
    border-color: #DB2623;
}

.listPagination {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
    float: right;
    text-align: right;
}

/* TPM: Registration Steps */
.registrationSteps {
    display: block;
    list-style-type: none;
    margin: 1em 0;
    padding: 0;
    width: 100%;
    margin-bottom: 40px;
}

.registrationStepItem {
    display: inline-block;
    list-style-type: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    padding: 0.5em 0 32px 0;
    color: #808080;
    background-image: url('../images/regStepRemaining_48_1024.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 600px;
}

.regStepFilled {
    color: #606060;
    background-image: url('../images/regStepFilled_48_1024.svg');
}

.regStepCurrent {
    color: #202020;
    background-image: url('../images/regStepCurrent_48_1024.svg');
}

.registrationMaxSteps1 .registrationStepItem {
    width: 100%;
    margin: 0;
}

.registrationMaxSteps2 .registrationStepItem {
    width: 48.5%;
    margin: 0 0.5%;
}

.registrationMaxSteps3 .registrationStepItem {
    width: 31.5%;
    margin: 0 0.5%;
}

.registrationMaxSteps4 .registrationStepItem {
    width: 23.5%;
    margin: 0 0.5%;
}

.registrationMaxSteps5 .registrationStepItem {
    width: 19%;
    margin: 0 0.5%;
}

@media all and (max-width: 600px) {
    .registrationStepItem {
        display: none;
    }

    .registrationSteps .regStepCurrent {
        display: block;
        float: none;
        width: auto;
        margin: 0;
    }
}

/* TPM: Attachment Preview */
.attachmentItem {
    padding: 0 0 0 0.5em;
    margin-bottom: 1em;
    line-height: 2.5;
}

.attachmentItemTitle {
    word-break: break-word;
}

.attachmentItemData {
    color: #808080;
}

.attachmentItemControlsItem {
    display: inline-block;
    margin-left: 10px;
    font-size: 18px !important;
    color: #041E3A !important;
    background-repeat: no-repeat;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 18px 18px 0 0;
    background-size: 18px;
}

.attachmentItemControlsItemDownload {
    background-image: url('../images/iconDownload.svg');
}

.attachmentItemControlsItemPreview {
    background-image: url('../images/iconView.svg');
    background-size: 24px 20px;
    width: 24px;
    padding: 0 0 20px 24px;
}

.attachmentItemControlsItemNewWindow {
    background-image: url('../images/iconOpen.svg');
}

.attachmentItemControlsDelete {
    background-image: url('../images/iconDelete.svg');
}

.tpt_filePreview {
    display: block;
    transition-property: height, opacity, margin, padding, box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    overflow: hidden;
    height: 0;
    opacity: 0;
    margin: 0 0.5em;
    padding: 0 10px;
    border-radius: 2px;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.8);
}

.tpt_filePreview.fileShow {
    display: block;
    opacity: 1;
    margin: 20px 0 0;
    border: 1px solid #CCCCCC;
    height: 524px;
    padding: 10px 20px 20px;
    background: #FFFFFF;
    transition-property: height, opacity, margin, padding, box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    overflow: hidden;
}

.filePreviewBar {
    text-align: right;
    height: 35px;
    line-height: 25px;
}

.tpt_filePreview iframe {
    width: 100%;
    height: 454px;
}

@media all and (max-width: 600px) {
    .attachmentItem {
        padding: 0.5em 0;
    }
}

/* TPM: Upload Resume Methods */
.uploadResumeItemsContainer {
    margin-bottom: 1em;
}

.uploadResumeField {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin: 0;
    border-width: 0;
    padding: 0;
    width: 25%;
}

.tpt_resumePasteField .tpt_resumePaste {
    min-height: 10em;
    resize: vertical;
}

.uploadResumeFieldTrigger,
.uploadResumeFieldTrigger:link,
.uploadResumeFieldTrigger:visited {
    display: block;
    margin: 0;
    padding: 88px 0.5em 1.5em 0.5em;
    color: #5E6D81;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    outline-width: 0;
    background-size: 64px 64px;
    background-repeat: no-repeat;
    background-position: center 14px;
    transition-duration: 0.4s;
    transition-property: background-color;
    transition-timing-function: ease;
}

.uploadResumeFieldTrigger:focus,
.uploadResumeFieldTrigger:hover,
.uploadResumeFieldTrigger:active {
    color: #404040;
    outline-width: 0;
    text-decoration: none;
    background-color: #F0F0F0;
    transition-duration: 0.1s;
    transition-property: background-color;
    transition-timing-function: ease;
}

.uploadResumeFieldTriggerFacebook {background-image: url('../images/ico_alt1_facebook.svg');}
.uploadResumeFieldTriggerLinkedin {background-image: url('../images/ico_alt1_linkedin.svg');}
.uploadResumeFieldTriggerGoogleplus {background-image: url('../images/ico_alt1_google-plus.svg');}
.uploadResumeFieldTriggerViadeo {background-image: url('../images/ico_alt1_viadeo.svg');}
.uploadResumeFieldTriggerXing {background-image: url('../images/ico_alt1_xing.svg');}
.uploadResumeFieldTriggerDropbox {background-image: url('../images/ico_alt1_dropbox.svg');}
.uploadResumeFieldTriggerGoogledrive {background-image: url('../images/ico_alt1_google-drive.svg');}
.uploadResumeFieldTriggerUploadResumeFile {background-image: url('../images/ico_alt1_uploadResumeFile_64.png');}
.uploadResumeFieldTriggerUploadResumePaste {background-image: url('../images/ico_alt1_uploadResumePaste_64.png');}
.uploadResumeFieldTriggerUploadResumeLater {background-image: url('../images/ico_alt1_uploadResumeLater_64.png');}

@media all and (min-width: 1px) {
    .uploadResumeFieldTriggerFacebook {background-image: url('../images/ico_alt1_facebook.svg');}
    .uploadResumeFieldTriggerLinkedin {background-image: url('../images/ico_alt1_linkedin.svg');}
    .uploadResumeFieldTriggerGoogleplus {background-image: url('../images/ico_alt1_google-plus.svg');}
    .uploadResumeFieldTriggerViadeo {background-image: url('../images/ico_alt1_viadeo.svg');}
    .uploadResumeFieldTriggerXing {background-image: url('../images/ico_alt1_xing.svg');}
    .uploadResumeFieldTriggerDropbox {background-image: url('../images/ico_alt1_dropbox.svg');}
    .uploadResumeFieldTriggerGoogledrive {background-image: url('../images/ico_alt1_google-drive.svg');}
    .uploadResumeFieldTriggerUploadResumeFile {background-image: url('../images/ico_alt1_uploadResumeFile_140.png');}
    .uploadResumeFieldTriggerUploadResumePaste {background-image: url('../images/ico_alt1_uploadResumePaste_140.png');}
    .uploadResumeFieldTriggerUploadResumeLater {background-image: url('../images/ico_alt1_uploadResumeLater_140.png');}
}

.uploadResumeFieldContainer {
    clear: both;
    display: none;
    padding: 1em 0;
    text-align: center;
}

.tpt_uploadResumeNextButton.tpt_uploadResumeNextButtonInactive {
    display: none;
}

.tpt_uploadResumeError {
    text-align: center;
}

.tpt_uploadResumeLoginLegend {
    text-align: center;
    margin: 1em 0;
    padding-top: 1em;
    border-top: 1px solid transparent;
    text-transform: uppercase;
}
.tpt_uploadResumeLoginLegend span{
    display: block;
    text-transform: none;
    padding-top: .75em;
}

.tpt_uploadResumeLoginLegend.open {
    text-align: center;
    margin: 1em 0;
    padding-top: 1em;
    border-top-color: #E2E2E2;
}

/* TPM: Errors from template */
.errorText {
    color: #DD0000;
    clear: both;
}

/* TPM: Errors from wizard */
.errorMessage,
.warningMessage,
.duplicateWarningMessage {
    color: #DD0000;
    clear: both;
    font-size: .8em;
}

/* TPM: List Sorting */
.listSortItem {
    border-bottom: 1px solid transparent;
    position: relative;
    bottom: -1px;
}

.tpt_listSortableItem {
    display: inline-block;
    padding: 0 0.5em 0 1.5em;
    cursor: pointer;
    color: #808080;
    background-color: transparent;
    background-position: 0.25em center;
    background-repeat: no-repeat;
}

.listSortableItem_ASC,
.tpt_listSortableItem:hover, .tpt_listSortableItem:focus, .tpt_listSortableItem:active {
    background-image: url('../images/arrowLongUp.svg');
    background-size: 1em;
}

.listSortableItem_DESC,
.listSortableItem_ASC:hover, .listSortableItem_ASC:focus, .listSortableItem_ASC:active {
    background-image: url('../images/arrowLongDown.svg');
    background-size: 1em;
}

.tpt_listSortableItem:hover, .tpt_listSortableItem:focus, .tpt_listSortableItem:active {
    background-color: #FAFAFA;
    border-bottom-color: #031E3A;
}

.tpt_listSortableItem.listSortableItemActive {
    color: #031E3A;
    border-bottom-color: #031E3A;
}

/* TPM: List Sorting for tableList */
.tableListContainer {
    padding: 10px;
    border: 1px solid #ccc;
}
.tableList .listSortItem {
    border-bottom: 1px solid #ccc;
    position: static;
    bottom: auto;
}

.tableList .tpt_listSortableItem {
    padding-right: 1em;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: right center;
}

.tableList .listSortableItem_ASC,
.tableList .tpt_listSortableItem:hover, .tableList .tpt_listSortableItem:focus, .tableList .tpt_listSortableItem:active {
    background-image: url('../images/arrowLongUp.svg');
    background-size: 1em;
}

.tableList .listSortableItem_DESC,
.tableList .listSortableItem_ASC:hover, .tableList .listSortableItem_ASC:focus, .tableList .listSortableItem_ASC:active {
    background-image: url('../images/arrowLongDown.svg');
    background-size: 1em;
}

.tableList .tpt_listSortableItem:hover, .tableList .tpt_listSortableItem:focus, .tableList .tpt_listSortableItem:active {
    background-color: #FAFAFA;
    border-bottom-color: #031E3A;
    color: #031E3A;
}

.tableList .tpt_listSortableItem.listSortableItemActive {
    color: #031E3A;
    border-bottom-color: #031E3A;
}

.listControls {
    line-height: 2.5;
    vertical-align: middle;
    font-size: 0.9em;
    color: #808080;
    overflow: visible;
}

.listControlsBottom {
    border-top: 1px solid #E2E2E2;
    border-bottom-width: 0;
}

/* TPM: List Result Single Column */
.listSingleColumn {
    display: block;
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.listSingleColumnItem {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 1em 0;
    clear: both;
    border-bottom: 1px solid #EFEFEF;
    color: #404040;
}

.listSingleColumnItem:last-child {
    border-bottom-width: 0;
}

.listSingleColumnItemTitle {
    font-size: 1.5em;
    font-weight: normal;
    padding-bottom: 0.75em;
    text-transform: uppercase;
}

.listSingleColumnItemMiscData {
    color: #808080;
    font-size: 0.9em;
    text-transform: uppercase;
}

.listSingleColumnItemMiscDataItem {
    margin-right: 0.5em;
}

.listSingleColumnItemDescription {
    padding: 0.5em 0 1em 0;
    line-height: 1.5;
}

/* TPM: List Result Multiple Columns */
.listMultipleColumns th {
    background-color: #FCFCFC;
    font-weight: 700;
    color: #474747;
}

.listButtonBar {
    text-align: right;
}

.listApplyButton {
    /*padding: 0 0.5em 0 2.5em;*/
    background-image: url('../images/circlePlus.svg');
    background-repeat: no-repeat;
    background-position: 0.5em center;
    background-size: 1.5em;
    text-transform: none;
    min-width: 0;
    padding-left: 2.3em !important;
}

.listApplyButton, .listApplyButton:link, .listApplyButton:visited {
    border-width: 2px 0 2px 0;
    border-color: transparent;
    color: #031E3A;
    outline-width: 0;
    text-decoration: none;
}

.listApplyButton:hover, .listApplyButton:focus, .listApplyButton:active {
    border-color: transparent transparent #031E3A transparent;
    outline-width: 0;
    text-decoration: none;
}

.listAlreadyAppliedButton {
    border-color: transparent;
    padding: 0 0.5em;
    text-transform: none;
    min-width: 0;
}

/* TPM: Dashlets */
.dashlets {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
}
.dashletItem {
    margin: 0 0 3em;
    padding: 0;
    width: 48.5%;
}

@media all and (max-width: 768px) {
    .dashletItem {
        float: none;
        width: 100%;
    }
}

.dashletItemHeader a {
    font-weight: normal;
    font-weight: 400;
    vertical-align: middle;
    padding: 10px 5px;
    display: block;
    font-size: 28px;
    color: #041E3A !important;
    text-transform: uppercase;
}
.dashletItemHeader a:hover {
    text-decoration: none;
}
.dashletItemHeader a:after {
    content: 'View all';
    font-size: 16px;
    color: #BD9E72;
    letter-spacing: 0;
    line-height: 26px;
    display: inline-block;
    float: right;
    padding-top: 5px;
}
.dashletItemHeader a:hover:after {
    font-weight: 700;
}

.dashletItemBody {
    padding: 10px;
    border: 1px solid #ccc;
}

.dashletDataContainer.awaitingContent {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
}

.dashletDataContainer {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 1s;
}

.dashletTableRow td {
    padding: 10px;
    border-bottom: 1px solid #EEEEEE;
    color: #041E3A;
    font-size: 16px;
}
.dashletTableRow:last-child td {
    border-bottom: none;
}

.dashletTableRow > td > a {
    color: #919191;
}

.dashletTableRow:hover td,
.dashletTableRow:focus td,
.dashletTableRow:active td {
    background-color: #f8f8f8;
}

.dashletMoreLinkContainer {
    text-align: right;
    padding: 0.5em;
    background-color: #F0F0F0;
}

/*Start select2 upgrade parsing*/
.select2-container .select2-selection--multiple{display:flex;}
.select2-container .select2-search--inline .select2-search__field{width:100% !important; margin-top: 1px;}
.select2-container .select2-selection--multiple .select2-selection__rendered{padding:0px;}
.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:inherit;}
.select2-container--default .select2-selection--multiple{border-radius: 0px;}
.select2-container--default .select2-selection--single .select2-selection__arrow b {display: none;}
.select2-dropdown {
    border: 1px solid #e0e0e0 !important;
    border-top: none;
    box-shadow: inset 0 0 5px #F7F7F7, 0 2px 2px #ccc !important;
}
.select2-container--default .select2-selection--single {
    height: 43px !important;
    padding: 0 0 0 8px;
    border: 1px solid #e0e0e0 !important;
    line-height: 43px !important;
    color: #041E3A !important;
    text-decoration: none;
    border-radius: 0 !important;
    background-color: #fff !important;
    background-image: none !important;
    filter: none !important;
    font-family: 'GothamBook', sans-serif !important;
    font-size: 16px !important;
}
.select2-container--open .select2-selection {
    border: 1px solid #5897fb;
    outline: -webkit-focus-ring-color auto 5px !important;
    outline-color: transparent !important;

    -webkit-box-shadow: inset 0 0 5px #F7F7F7, 0 0 5px rgba(0, 0, 0, 0.05) !important;
            box-shadow: inset 0 0 5px #F7F7F7, 0 0 5px rgba(0, 0, 0, 0.05) !important;
}
.select2-selection__arrow {
    width: 24px !important;
    border-left: none !important;
    background-clip: padding-box;
    background: transparent !important;
    background-image: url(../images/arrowSelect.svg) !important;
    filter: none !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 10px) center !important;
    background-size: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #041E3A !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 24px !important;
    border-left: none !important;
    background-clip: padding-box;
    background: transparent !important;
    background-image: url(../images/arrowSelect.svg) !important;
    filter: none !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 10px) center !important;
    background-size: 10px !important;
    top: 8px !important;
}
/*End select2 upgrade parsing*/
