
/*=====================================================================
XControl styles
=====================================================================*/

/*---------------------------------------------------------------------
Global useful classes.
---------------------------------------------------------------------*/

.spinner {
    height:50px;
    width:50px;
    margin:10px auto;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left:6px solid rgba(0,174,239,.15);
    border-right:6px solid rgba(0,174,239,.15);
    border-bottom:6px solid rgba(0,174,239,.15);
    border-top:6px solid rgba(14, 49, 112,.8);
    border-radius:100%;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
}

/*---------------------------------------------------------------------
Common - Is control visible?
---------------------------------------------------------------------*/

/* Visible control */
.xvisible {
    display: inline-block;
}

/* Hidden control */
.xhidden {
    display: none;
}

/* Styling of control error (debug mode is ON) */
.xcontrol_error {
    font-family: courier, monospace;
    background-color: #ffd3d3;
    font-size: 13px;
    padding: 10px;
}
.xcontrol_error th,
.xcontrol_error td {
    padding: 0;
    margin: 0;
    font-size: 10px;
}

/* Styling of control warning (debug mode is OFF) */
.xcontrol_warning {
    background-color: #f0f0f0;
    padding: 10px;
}

/*---------------------------------------------------------------------
XControl - The ancestor of all controls
---------------------------------------------------------------------*/

/* XControl - Outer div */
.xcontrol {
    width: 100%;
    background-color: #dce59a;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

/* XControl - Title */
.xcontrol .xtitle {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 10px 10px 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* XControl - Content */
.xcontrol .xcontent {
    padding: 0 10px 10px 10px;
    font-size: 15px;
}

/* XControl - logo */
.xcontrol .logo {
    width: 120px;
    border: 1px solid black;
}

/*-------------------------------------------
XControl - Tables
-------------------------------------------*/

.xcontrol table {
    width: 100%;
    border-spacing: 4px;
}

.xcontrol td {
    background-color: #f5f7e1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding-left: 10px;
    height: 28px;
    line-height: 28px;
}

/*---------------------------------------------------------------------
XToggle - A control with title, static content and open/close toggle
---------------------------------------------------------------------*/

/* XToggle - Title */
.xtoggle.xopen .xtitle, .xtoggle.xclose .xtitle {
    cursor: pointer;
    padding: 10px 10px 10px 40px;
    background-image: url(../images/xcontrols_arrow_down.png);
    background-repeat: no-repeat;
    background-position: left 10px center;
}

/* XToggle - Title closed */
.xtoggle.xclose .xtitle {
    background-image: url(../images/xcontrols_arrow_right.png);
}

/* XToggle - Hide content */
.xtoggle.xclose .xcontent {
    display: none;
}

/*---------------------------------------------------------------------
XList - A list of clickable links
---------------------------------------------------------------------*/

/* Links in the list */
.xlist a {
    display: block;
    position: relative;
    text-decoration: none;
    height: 27px;
    line-height: 27px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f5f7e1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 3px;
    color: black;
    background-image: url(../images/xcontrols_link_arrow.png);
    background-repeat: no-repeat;
    background-position: right 5px center;
    text-overflow: "...";
    white-space: nowrap;
    overflow: hidden;
    padding: 0 20px 0 10px;
}

/* Links hover */
.xlist a:hover {
    background-color: white;
}

/* Limit more/less message */
.xlist .xlimit {
    /* width: 100%; */
    font-size: 15px;
    padding-left: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Plus/minus sign before toggle button */
.xlist .xlimit::before {
    content: "+  ";
    color: white;
    font-size: 32px;
    line-height: 20px;
    height: 20px;
    vertical-align: -30%;
}

/* Label more/less visible */
.xlist.xopen .xlimit {
    visibility: visible;
    position: relative;
}

/* Label more/less hidden */
.xlist.xclose .xlimit {
    visibility: hidden;
    position: absolute;
}

.xlist .matchperc {
    display: inline-block;
    width: 35px;
}

/*---------------------------------------------------------------------
XListMem - A list of clickable links with selection memory
---------------------------------------------------------------------*/

/* Links in the list */
.xlistmem .item,
.xlistselectfaveducations .item,
.xlistselectfavprofessions .item{
    display: block;
    position: relative;
    text-decoration: none;
    height: 27px;
    line-height: 27px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f0f3d7;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 3px;
    color: black;
    background-image: url(../images/xcontrols_link_arrow.png);
    background-repeat: no-repeat;
    background-position: right 5px center;
    text-overflow: "...";
    white-space: nowrap;
    overflow: hidden;
    padding: 0 20px 0 10px;
    cursor: pointer;
}

/* Links hover */
.xlistmem .item:hover,
.xlistselectfaveducations,
.xlistselectfavprofessions{
    background-color: white;
}

/* Selected link */
.xlistmem .item.selected {
    background-color: white;
    font-weight: 600;
}

/* Limit more/less message */
.xlistmem .xlimit {
    /* width: 100%; */
    font-size: 15px;
    padding-left: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Plus/minus sign before toggle button */
.xlistmem .xlimit::before {
    content: "+  ";
    color: white;
    font-size: 32px;
    line-height: 20px;
    height: 20px;
    vertical-align: -30%;
}

/* Label more/less visible */
.xlistmem.xopen .xlimit {
    visibility: visible;
    position: relative;
}

/* Label more/less hidden */
.xlistmem.xclose .xlimit {
    visibility: hidden;
    position: absolute;
}

/*---------------------------------------------------------------------
XListRs - Multifunctional recordSet list
---------------------------------------------------------------------*/

/* XListRs - Title */
.xlistrs.xopen .xtitle, .xlistrs.xclose .xtitle {
    cursor: pointer;
    padding: 10px 10px 10px 40px;
    background-image: url(../images/xcontrols_arrow_down.png);
    background-repeat: no-repeat;
    background-position: left 10px center;
}

/* XToggle - Title closed */
.xlistrs.xclose .xtitle {
    background-image: url(../images/xcontrols_arrow_right.png);
}

/* XToggle - Hide content */
.xlistrs.xclose .xcontent {
    display: none;
}

/* Links in the list */
.xlistrs .item {
    display: block;
    position: relative;
    text-decoration: none;
    height: 27px;
    line-height: 27px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f0f3d7;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 3px;
    color: black;
    background-image: url(../images/xcontrols_link_arrow.png);
    background-repeat: no-repeat;
    background-position: right 5px center;
    text-overflow: "...";
    white-space: nowrap;
    overflow: hidden;
    padding: 0 20px 0 10px;
    cursor: pointer;
}

/* Links hover */
.xlistrs .item:hover {
    background-color: white;
}

/* Selected link */
.xlistrs .item.selected {
    background-color: white;
    font-weight: 600;
}

/* Visited link */
.xlistrs .item.visited {
    color: #800080;
}

/* Empty item */
.xlistrs .item.empty {
    background-color: #cdd68f;
    background-image: none;
    cursor: default;
}
/* Style for not-favorite when favorites are enabled */
.xlistrs .item.notfavorite {
    padding-left: 32px;
    background-image: url(../images/xcontrols_link_arrow.png), url(../images/favorite_small_off.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right 5px center, 6px center;
}

/* Style for favorite when favorites are enabled */
.xlistrs .item.favorite {
    padding-left: 32px;
    background-image: url(../images/xcontrols_link_arrow.png), url(../images/favorite_small_on.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right 5px center, 6px center;
}

/* Style for match percentage */
.xlistrs .matchperc {
    display: inline-block;
    width: 35px;
}

/* Limit more/less message */
.xlistrs .xlimit, .xlistrs .xextra {
    font-size: 15px;
    padding-left: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Plus/minus sign before toggle button */
.xlistrs .xlimit::before {
    content: "-  ";
    color: white;
    font-size: 32px;
    line-height: 20px;
    height: 20px;
    vertical-align: -30%;
}
.xlistrs .xlimit.use-limit::before {
    content: "+  ";
}

/* Label more/less visible */
.xlistrs.xopen .xlimit, .xlistrs.xopen .xextra {
    visibility: visible;
    position: relative;
}

/* Label more/less hidden */
.xlistrs.xclose .xlimit, .xlistrs.xclose .xextra {
    visibility: hidden;
    position: absolute;
}

/* Count in title */
.xlistrs .xtitle span {
    font-size: 18px;
    font-weight: 600;
}

/*---------------------------------------------------------------------
XTextFav - A text with favorite selection icon
---------------------------------------------------------------------*/

/* XTextFav outer */
.xtextfav {
    position: relative;
}

/* Margin for icon */
.xtextfav .xcontent {
    margin-right: 80px;
}

/* Icon */
.xtextfav .xicon_on, .xtextfav .xicon_off {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 64px;
    height: 80px;
    padding-top: 70px;
    font-size: 11px;
    overflow: visible;
    white-space: nowrap;
    text-align: center;
    background-image: url(../images/favorite_big_on.png);
    background-repeat: no-repeat;
    background-position: center top;
    cursor: pointer;
}

/* Icon OFF */
.xtextfav .xicon_off {
    background-image: url(../images/favorite_big_off.png);
}

/*---------------------------------------------------------------------
XListFavs - A list of favorites
---------------------------------------------------------------------*/

/* Favs in the list */
.xlistfavs .fav {
    position: relative;
    display: block;
    height: 27px;
    line-height: 27px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f5f7e1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 3px;
    color: black;
    text-overflow: "...";
    white-space: nowrap;
    overflow: hidden;
    padding: 0 20px 0 30px;
    background-image: url(../images/favorite_small_on.png);
    background-repeat: no-repeat;
    background-position: left 4px center;
    cursor: pointer;
}

.xlistfavs .delete {
    position: absolute;
    right: 6px;
    top: 3px;
    width: 21px;
    height: 21px;
    background-image: url(../images/xcontrols_fav_delete.png);
    background-repeat: no-repeat;
    float: right;
    cursor: pointer;
}

.xlistfavs .empty {
    display: block;
    height: 27px;
    line-height: 27px;
    font-size: 14px;
    font-weight: 500;
    background-color: #cdd68f;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 3px;
}

/*---------------------------------------------------------------------
XInput - An text input field
---------------------------------------------------------------------*/

/* Input control */
.xinput input {
    width: 100%;
    height: 34px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: none;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 500;
}

/*-----------------------------------------
XCheckbox and descendants
-----------------------------------------*/

/* Hide normal checkbox */
.xcheckbox input[type="checkbox"] {
    display: none;
}

/* Styling of label */
.xcheckbox input[type="checkbox"] + label {
    display: block;
    background-image: url(../images/xcontrols_checkbox_n.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    height: 26px;
    line-height: 26px;
    font-weight: 500;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

/* Styling of checked label */
.xcheckbox input[type="checkbox"]:checked + label {
    background-image: url(../images/xcontrols_checkbox_s.png);
}

/* Text overflow for label */
.xcheckbox .xcontent label {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*-----------------------------------------
XRadio and descendants
-----------------------------------------*/

/* Hide normal radio */
.xradio input[type="radio"] {
    display: none;
}

/* Styling of label */
.xradio input[type="radio"] + label {
    display: block;
    background-image: url(../images/xcontrols_radio_n.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    height: 26px;
    line-height: 26px;
    font-weight: 500;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

/* Styling of checked label */
.xradio input[type="radio"]:checked + label {
    background-image: url(../images/xcontrols_radio_s.png);
}

/* Text overflow for label */
.xradio .xcontent label {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*---------------------------------------------------------------------
XVideo
---------------------------------------------------------------------*/

.xvideo video {
    width: 100%;
}

/*---------------------------------------------------------------------
XFilterProfessionSuggestions
---------------------------------------------------------------------*/

/* Style the input container */
.xfilterprofessionsuggestions .input-container {
    display: flex;
    display: -ms-flex;
    width: 100%;
}

.xfilterprofessionsuggestions label {
    font-size: 1.4rem;
    color: #e12784;
    margin-bottom: 1em;
    font-weight: 600;
}

/* Style the form icons */
.xfilterprofessionsuggestions .icon {
    padding: 10px;
    background: #24418f;
    color: white;
    min-width: 50px;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 1;
}

.xfilterprofessionsuggestions .icon-clear {
    cursor: pointer;
    margin: auto -23px;
    align-self: center;
}

.xfilterprofessionsuggestions .icon:before{
    color: #fff;
}

.xfilterprofessionsuggestions  .xsuggestions {
    padding: 0 10px 10px 10px;
    display:none;
}

.xfilterprofessionsuggestions > .xcontent-extension {
    padding: 0 10px 10px 10px;
}

.xfilterprofessionsuggestions > .xcontent-extension > .input-extension-container {
    display: flex;
}

.xfilterprofessionsuggestions > .xcontent-extension > .input-extension-container > .item-row {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
}

.xfilterprofessionsuggestions > .xcontent-extension > .input-extension-container > .item-row > .item-body {
    margin-left: -2em;
    flex: 1 1 50%;
}

.xfilterprofessionsuggestions > .xcontent-extension > .input-extension-container > .item-row > .item-body > .item-content {
    padding: 2em;
}

.xfilterprofessionsuggestions > .xcontent-extension > .input-extension-container > .item-row > .item-body > .item-content > img {
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0,0,0,.32);
    width: 100%;
}

@media (max-width: 992px)
{
    .xfilterprofessionsuggestions > .xcontent-extension > .input-extension-container > .item-row > .item-body {
        flex-basis: 100%;
        margin-left: 0;
    }

    .xfilterprofessionsuggestions > .xcontent-extension > .input-extension-container > .item-row > .item-body > .item-content {
        padding: 2em 0;
    }
}

/*---------------------------------------------------------------------
XFilterCitySuggestions
---------------------------------------------------------------------*/

/* Input control */
.xfiltercitysuggestions input, .xfilterprofessionsuggestions  input {
    width: 100%;
    height: 34px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: none;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #808080;
}

/* Selected input control (validated content) */
.xfiltercitysuggestions input.selected, .xfilterprofessionsuggestions  input.selected {
    color: black;
}

.xfiltercitysuggestions .xsuggestions {
    padding: 0 10px 10px 10px;
}

/* Input control */
.xfiltercitysuggestions .xsuggestion, .xfilterprofessionsuggestions  .xsuggestion {
    display: block;
    position: relative;
    text-decoration: none;
    height: auto;
    line-height: normal;
    font-size: 14px;
    background-color: #e7edbe;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 3px;
    color: black;
    text-overflow: "...";
    white-space: nowrap;
    overflow: hidden;
    padding: 10px;
    cursor: pointer;
}

/* Input control */
.xfiltercitysuggestions .xsuggestion:hover, .xfilterprofessionsuggestions  .xsuggestion:hover {
    background-color: white;
}

/*---------------------------------------------------------------------
XFilterCityZipCodeSuggestions
---------------------------------------------------------------------*/

/* Input control */
.xfiltercityzipcodesuggestions input, .xfiltercityzipcodesuggestions  input {
    width: 100%;
    height: 34px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: none;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #808080;
}

.xfiltercityzipcodesuggestions .icon-clear {
    cursor: pointer;
    margin: auto -23px;
}

/* Selected input control (validated content) */
.xfiltercityzipcodesuggestions input.selected, .xfiltercityzipcodesuggestions  input.selected {
    color: black;
}

.xfiltercityzipcodesuggestions .xsuggestions, .xfiltercityzipcodesuggestions  .xsuggestions {
    padding: 0 10px 10px 10px;
}

/* Input control */
.xfiltercityzipcodesuggestions .xsuggestion, .xfiltercityzipcodesuggestions  .xsuggestion {
    display: block;
    position: relative;
    text-decoration: none;
    height: auto;
    line-height: initial;
    font-size: 14px;
    background-color: #e7edbe;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 3px;
    color: black;
    text-overflow: "...";
    white-space: nowrap;
    overflow: hidden;
    padding: 10px;
    cursor: pointer;
}

/* Style the form icons */
.xfiltercityzipcodesuggestions .icon {
    padding: 10px;
    background: #24418f;
    color: white;
    min-width: 50px;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 1;
}

.xfiltercityzipcodesuggestions .icon-clear {
    cursor: pointer;
    margin: auto -23px;
    align-self: center;
}

.xfiltercityzipcodesuggestions .icon:before{
    color: #fff;
}

/* Input control */
.xfiltercityzipcodesuggestions .xsuggestion:hover, .xfiltercityzipcodesuggestions  .xsuggestion:hover {
    background-color: white;
}

/*---------------------------------------------------------------------
XAlerts
---------------------------------------------------------------------*/

.xalerts .xcontent {
    padding: 0;
    background-color: #fff;
}

.control .xalerts {
    background-color: #fff;
}

/*---------------------------------------------------------------------
XTraces
---------------------------------------------------------------------*/

.xtraces {
    background-color: #d3d9e8;
    margin-bottom: 10px;
    border-radius: 0;
}

.xtraces table {
    border-spacing: 0;
    width: 100%;
}

.xtraces table td {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    height: auto;
    line-height: 18px;
}

.xtraces table td:first-child {
    width: 100px;
}

.xtraces table td:nth-child(2){
    width: 10px;
}

.xtraces table .msg {
    color: red;
}

.xtraces hr {
    border-top: 1px solid #a7b4d5;
    border-left: none;
    border-right: none;
}

/*---------------------------------------------------------------------
XVacanciesAlert
---------------------------------------------------------------------*/

.xvacanciesalert .xvacalert, .xvacanciesalert .xvacbuttons {
    padding: 10px 10px 0 0;
}

.xvacanciesalert .xvacstatus {
    margin: 10px 10px 0 0;
    display:none;
}

.xvacanciesalert .error {
    color: #333;
    text-align: center;
    background-color: #f8d4d9;
    display:block;
    padding: 10px 0;
    border: 1px solid #333;
}

.xvacanciesalert .success {
    color: #333;
    text-align: center;
    background-color: #d6f7cc;
    display:block;
    padding: 10px 0;
    border: 1px solid #333;
}

.xvacanciesalert .xvacbuttons input{
    background-color: #003d74;
    color: white;
    cursor: pointer;
}

.xvacanciesalert .item{
    background-color: #ffffff;
    border-radius: 2px;
    display: block;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3px;
    color: black;
    text-overflow: "...";
    white-space: normal;
    overflow: visible;
    padding: 5px;
}

.xvacanciesalert .item div{
    font-size: 1.1rem;
}

.xvacanciesalert .item .date{
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 10px;
}

.xvacanciesalert .item .extra{
    width: 100%;
    overflow: auto;
}

.xvacanciesalert .item .extra ul{
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
}

.xvacanciesalert .item .extra ul li{
    margin: 5px;
    float: left;
    font-size: 0.75rem;
    background-color: #f0f0f0;
    padding: 5px;
    border-radius: 10px;
}

/** GENERAL **/

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}
.clearfix:after { clear: both; }
.clearfix { zoom: 1; } /* IE < 8 */

.top-bar-wrapper {
    display: flex;
}

.xvacanciesalert .item .top-bar-wrapper .left {
    flex: 0 0 97%;
}

.xvacanciesalert .item .top-bar-wrapper .right {
    flex: 1;
}

.btn-delete, .btn-search{
    /*width: 26px;*/
    /*height: 26px;*/
    cursor: pointer;
    position: relative;
    /*border-radius: 3px;*/
    /*background-image: url(../images/xcontrols_btn_delete.png);*/
    /*background-size: cover;*/
}

.btn-search{
    margin: 0 0.5rem;
    display: none;
}

/****************************************************
XGridfieldconfirm
****************************************************/

.xvacanciesalert .xgridfieldconfirm {
    position: absolute;
    z-index: 2000;
    width: 200px;
    height: 100px;
    top: 31px;
    left: -174px;
    background-color: #f8f8f8;
    border: 1px solid #b5b5b5;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-align: center;
    line-height: 13px;
    white-space: normal;
}

.xvacanciesalert .xgridfieldconfirm .inner {
    position: relative;
    padding: 10px;
    height: 100%;
}

.xvacanciesalert .xgridfieldconfirm_arrow {
    position: absolute;
    top: -10px;
    right: -2px;
    width: 30px;
    height: 10px;
    background-image: url(../images/xgridfieldconfirm_arrow.png);
}

.xvacanciesalert .xgridfieldconfirm_yes,
.xvacanciesalert .xgridfieldconfirm_no {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 60px;
    height: 26px;
    line-height: 26px;
    background-color: #24418f;
    text-align: center;
    color: white;
}

.xvacanciesalert .xgridfieldconfirm_no {
    left: 130px;
}

/****************************************************
XButtonUpdate
****************************************************/

.xbuttonupdate a {
    display: block;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    margin: 20px 10px;
    background-color: #24418f;
    color: white;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-appearance: none;
    padding: 12px;
    border-radius: 5px;
}

/*-------------------------------------------
XSLIDER
-------------------------------------------*/

.xslider .adjuster {
    box-sizing: border-box;
    position: relative;
    line-height: 28px;
    width: 98%;
}
.xslider .adjuster .ui-widget.ui-widget-content {
    border: none;
    height: 3px;
    background-color: #24418f;
}
.xslider .adjuster .ui-corner-all {
    border-radius: 0;
}
.xslider .adjuster .ui-state-default,
.xslider .adjuster .ui-widget-content .ui-state-default {
    border: none;
    background: none;
}
.xslider .adjuster .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    top: 3px;
    margin-top: -13px;
    margin-left: -10px;
    width: 22px;
    height: 22px;
    background-color: #e42794;
    border-radius: 50%;
    box-shadow: 1px 1px 1px rgba(0,0,0, 0.4);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0, 0.4);
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0, 0.4);
}

/*-------------------------------------------
XChatterBox
-------------------------------------------*/

.xchatterbox * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.xchatterbox .xtitle {
    background-color: #fff;
    color: rgb(45,43,107);
}

.xchatterbox .xcontent {
    background-color: #fff;
    padding-bottom: 0;
}

.xchatterbox .row {
    display: flex;
    flex-direction: row;
    height: 75vh;
}

.xchatterbox .row .rooms {
    flex: 75%;
}

.xchatterbox .row .rooms .room {
    height: 100%;
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.xchatterbox .row .rooms .ropen{
    display: flex;
}

.xchatterbox .row .rooms .rclose{
    display: none;
}

.xchatterbox .subjects_container {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    background-color: #ECECEC;
    padding: 10px 20px;
}

.xchatterbox .subjects_options {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.xchatterbox .subjects {
    list-style-type: none;
    padding: 0;
    overflow: auto;
    border-radius: 5px;
    margin: 0;
    flex-grow: 1;
}

.xchatterbox .subjects .subject {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    cursor: pointer;
    padding: 1rem 1.25rem;
    background-color: #fff;
    margin: 1rem 0;
}

/*TEMP TEMP TEMP*/
/*.xchatterbox .subjects .subject::after {*/
    /*content: "❯";*/
    /*color: gray;*/
    /*font-size: 2rem;*/
    /*font-weight: 900;*/
    /*margin-right: 10px;*/
/*}*/

.xchatterbox .subjects .subject:hover {
    background-color: rgb(236,84,19);
    color: #fff;
}

.xchatterbox .subjects .subject:hover .title {
    color: #fff;
}

.xchatterbox .subjects .subject:active, .xchatterbox .subjects .sactive {
    background-color: rgb(236,84,19);
}

.xchatterbox .subjects .subject:active, .xchatterbox .subjects .sactive .title{
    color: #fff;
}

.xchatterbox .subjects .sactive::after {
    color: white;
}

.xchatterbox .subjects .subject span.options {
    flex-basis: 5%;
}

.xchatterbox .subjects .subject span.options .notification {
    width: 25px;
    height: 25px;
    background-color: rgb(225,82,19);
    border-radius: 50%;
    text-align: center;
    font-size: 0.75rem;
    display: flex;
    flex-basis: auto;
    align-self: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.xchatterbox .subjects .subject span.options .btn-subject-options-delete{
    width: 25px;
    height: 25px;
    background: #fff url(../images/xchatter_option_delete.png) no-repeat center center;
    border: 1px solid #fff;
    background-size: contain;
    cursor: pointer;
    border-radius: 25%;
    display: flex;
    flex-basis: auto;
    align-self: center;
    justify-content: center;
    flex-direction: column;
}

.xchatterbox .subjects .subject span.title {
    flex-basis: 95%;
    font-size: 1.2rem;
    padding: 0.25rem 0;
}

.xchatterbox .messages {
    list-style-type: none;
    flex-grow: 1;
    overflow: auto;
    padding: 0;
    margin: 0 4rem;
}

.xchatterbox .messages {
    list-style-type: none;
    flex-grow: 1;
    overflow: auto;
    padding: 0;
    margin: 0 4rem;
}

.xchatterbox .messages .message p {
    margin: 0 1rem 0 0;
    white-space: pre-wrap;
    width: 100%;
}

.xchatterbox .messages .message {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    margin: 0 0 1rem 0;
    box-shadow: 5px 5px 10px gray;
    width: 97%;
    border: 1px solid #cecece;
    background-color: #fff;
}

.xchatterbox .messages .mleft {
    width: 75%;
    background-color: #EFEFEF;
}

.xchatterbox .messages .mright {
    width: 75%;
    margin-left: auto;
    margin-right: 2.5rem;
}

.xchatterbox .messages .message .icon {
    flex: 0 0 36px;
    height: 36px;
    margin: 0 16px 0 15px;
}

.xchatterbox .messages .message .visitor {
    background: url(../images/xchatter_candidate.png) no-repeat left 0 center;
}

.xchatterbox .messages .message .candidate {
    background: url(../images/xchatter_candidate.png) no-repeat left 0 center;
}

.xchatterbox .messages .message .advisor {
    background: url(../images/xchatter_advisor.png) no-repeat left 0 center;
}

.xchatterbox .messages .message .admin {
    background: url(../images/xchatter_advisor.png) no-repeat left 0 center;
}

.xchatterbox .messages .message .body {
    display: flex;
    flex-direction: row;
    align-items: stretch
}

.xchatterbox .messages .header {
    flex-grow: 1;
    padding: 0 0 1rem 1rem;
    font-size: 0.69rem;
}

.xchatterbox .messages .footer {
    flex-grow: 1;
    padding: 1rem 1rem 0 1rem;
}

.xchatterbox .messages .footer .options {
    float: left;
}

.xchatterbox .messages .footer .message-unseen {
    float: right;
}

.xchatterbox .messages .footer .message-unseen .fa-check:before {
    color: #cecece;
}

.xchatterbox .messages .footer .message-seen {
    float: right;
}

.xchatterbox .messages .footer .message-seen .fa-check:before {
    color: green;
}

.xchatterbox .messages .header small {
    margin-left: 50px;
    font-size: inherit;
}

.xchatterbox .messages .header strong {
   font-size: inherit;
}

.xchatterbox .messages .message-new-break {
    background-color: rgba(225,82,19,0.25);
    font-weight: bold;
    text-align: center;
    width: 97%;
    margin: 0 0 1rem 0;
    border: 1px solid rgba(225,82,19,0.50);
}

.xchatterbox .messages .message-new-break span {
    color: rgb(225,82,19);
}

.xchatterbox .messages .message-new-break span:before {
    content: "\25be";
    color: rgb(225,82,19);
}

.xchatterbox .messages .message-new-break span:after {
    content: "\25be";
    color: rgb(225,82,19);
}


.xchatterbox .room-posting .input-group textarea {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #ccc;
    background-color: #f8f8f8;
    resize: none;
    padding: 5px;
}

.xchatterbox .room-posting .message-area-submit {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.xchatterbox .room-posting .message-area-submit input {
    border-radius: 5px;
    border: 2px solid #ccc;
    font-size: 1rem;
    padding: 24px 10px;
    margin: 10px 0;
    flex: 1;
    background: url(../images/xchatter_paperclip.png) no-repeat right center;
}

.xchatterbox .room-posting {
    align-self: flex-end;
    width: 100%;
    padding: 0 4rem;
}

.xchatterbox #xchatterbox-page-masking {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,0,0,0.25);
    z-index: 998;
}

.xchatterbox .confirm_box, .xchatterbox .input_box{
    display: none;
    position: absolute;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex: 0 0 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
    z-index: 999;
}

.xchatterbox .input_box input {
    margin: 1rem;
    display: inline-block;
    width: 100%;
}

.xchatterbox .confirm_box .btn,.xchatterbox .input_box .btn {
    display: inline-block;
    text-align: center;
    margin: 1rem;
    flex: 1;
    width: auto;
}

.xchatterbox .confirm_box span {
    width: 100%;
    display: inline-block;
    margin: 1rem;
}

.xchatterbox .btn {
    margin: 10px 0 10px 10px;
    border-radius: 5px;
    border: 0 solid transparent;
    cursor: pointer;
    font-size: 1.2rem;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    background-color: rgb(225,82,19);
    color: #fff;
    position: relative;
    box-sizing: border-box;
    box-shadow: inset 0 -5px 0 rgb(225,67,11), 5px 5px 5px rgb(201,199,199);
    height: 50px;
    flex: 0 0 250px;
}

.xchatterbox .btn:focus {
    outline: 1px dotted darkblue;
}

.xchatterbox .btn .btn-overlay {
    position: absolute;
    top: 0;
    width: 6rem;
    height: 100%;
    background-color: rgb(240,243,246);
    right: 0;
    box-sizing: border-box;
    border-radius: 0 5px 5px 0;
    display: flex;
    justify-content: center;
    font-size: 2.5rem;
    color: rgb(45,43,107);
    box-shadow: inset 0 -4px 0 rgb(204,217,234);
}

.xchatterbox .btn .btn-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-top: 50px solid rgb(225,82,19);
    border-right: 10px solid transparent;
}

.xchatterbox .btn:hover {
    background-color: rgb(236,84,19);
}

.xchatterbox .btn:hover .btn-overlay:before {
    border-top-color: rgb(236,84,19);
}

.xchatterbox .btn-options {
    width: 0;
}

.xchatterbox .subject-options-input {
    border-radius: 5px;
    border: 2px solid #ccc;
    font-size: 1rem;
    padding: 24px 10px;
    margin: 10px 0;
    flex: 1;
}

.xchatterbox .btn-options-add {
    background: rgb(225, 82, 19) url(../images/xchatter_option_add.png) no-repeat center center;
    flex: 0 0 50px;
    border: 0;
}

.xchatterbox .btn-options-save {
    background: rgb(225, 82, 19) url(../images/xchatter_option_save.png) no-repeat center center;
    flex: 0 0 50px;
    border: 0;
}

.xchatterbox .room-posting .input-group .message-area-label {
    color: darkblue;
    text-transform: uppercase;
    font-size: 1.5rem;
    display: inline-block;
    margin: 15px 0;
}

.xchatterbox .room-posting .status {
    color: #444;
    min-height: 18px;
}

.xchatterbox .room-posting .status .typing {
    margin-right: 0.5em;
    font-size: 0.85rem;
}

/*-------------------------------------------
XGridRS XToolBar
-------------------------------------------*/

.xgridrs .xtoolbar_container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.xgridrs .xtoolbar_container .xtoolbar {
    flex: 1 1 auto;
    justify-content: flex-end;
    display: flex;
}

.xgridrs .xtoolbar_container .xtoolbar > .button {
    min-width: auto;
    padding: 0;
    background-color: transparent;
    color: #1a438c;
    margin: 0 0.5em 0.2em 0.5em;
    font-size: 1.4rem;
    line-height: normal;
}

.xgridrs .xtoolbar_container .xtoolbar > .button.csv:before {
    content: "\f019";
}

/*-------------------------------------------
XQuestionDynamic
-------------------------------------------*/

.xquestiondynamic {
    background-color: white;
    -webkit-border-radius: initial;
    -moz-border-radius: initial;
    border-radius: initial;
    margin-bottom: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 10px;
}

.xquestiondynamic .xnav {
    width: 100%;
    height: 46px;
    text-align: center;
    margin-top: 10px;
}

.xquestiondynamic .xnav .xbuttons {
    display: inline-block;
    height: 46px;
}

.xquestiondynamic .xnav .xbuttons .xarrow_left {
    display: inline-block;
    height: 46px;
}

.xquestiondynamic .xnav .xbuttons .xarrow_left .xarrow_left_head,
.xquestiondynamic .xnav .xbuttons .xarrow_left.xenabled .xarrow_left_head {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-right: 23px solid;
    border-right-color: #74c7fd;
    cursor: pointer;
}

.xquestiondynamic .xnav .xbuttons .xarrow_left.xdisabled .xarrow_left_head {
    border-right: 23px solid #eeeeee;
    cursor: default;
}

.xquestiondynamic .xnav .xbuttons .xarrow_left .xarrow_left_tale,
.xquestiondynamic .xnav .xbuttons .xarrow_left.xenabled .xarrow_left_tale {
    display: inline-block;
    height: 46px;
    width: 12px;
    background-color: #74c7fd;
    border-top: 10px solid white;
    border-bottom: 10px solid white;
    cursor: pointer;
}

.xquestiondynamic .xnav .xbuttons .xarrow_left.xdisabled .xarrow_left_tale {
    background-color: #eeeeee;
    cursor: default;
}

.xquestiondynamic .xnav .xbuttons .xarrow_right {
    display: inline-block;
    height: 46px;
}

.xquestiondynamic .xnav .xbuttons .xarrow_right .xarrow_right_head,
.xquestiondynamic .xnav .xbuttons .xarrow_right.xenabled .xarrow_right_head {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 23px solid;
    border-left-color: #74c7fd;
    cursor: pointer;
}

.xquestiondynamic .xnav .xbuttons .xarrow_right.xdisabled .xarrow_right_head {
    border-left: 23px solid #eeeeee;
    cursor: default;
}

.xquestiondynamic .xnav .xbuttons .xarrow_right .xarrow_right_tale,
.xquestiondynamic .xnav .xbuttons .xarrow_right.xenabled .xarrow_right_tale {
    display: inline-block;
    height: 46px;
    width: 12px;
    background-color: #74c7fd;
    border-top: 10px solid white;
    border-bottom: 10px solid white;
    cursor: pointer;
}

.xquestiondynamic .xnav .xbuttons .xarrow_right.xdisabled .xarrow_right_tale {
    background-color: #eeeeee;
    cursor: default;
}

.xquestiondynamic .xnav .xprogress {
    display: inline-block;
    width: 160px;
    margin-left: 12px;
    margin-right: 12px;
    vertical-align: top;
}

.xquestiondynamic .xnav .xprogress_text {
    height: 22px;
    margin-top:10px;
    font-size: 11px;
    font-family: "Open Sans", sans-serif;
}

.xquestiondynamic .xnav .xprogress_bar {
    width: 100%;
    height: 5px;
    background-color: #efefef;
    cursor: pointer;
}

.xquestiondynamic .xnav .xprogress_fill {
    height: 5px;
    background-color: #b6b6b6;
}

.xquestiondynamic table.xquestions {
    width: 100%;
    table-layout: fixed;
    border-spacing: 0;
}

.xquestiondynamic table.xquestions td.inner_space {
    border: none;
    padding: 0;
}


.xquestiondynamic table.xquestions td {
    background-color: white;
    border: 1px solid #d6d6d6;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 20px;
    vertical-align: top;
}

.xquestiondynamic table.xquestions td .xquestion_nr {
    width: 100%;
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: #d9d9d9;
    text-align: center;
    margin-top: 0;
}

.xquestiondynamic table.xquestions td .xquestion_text {
    width: 100%;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    color: black;
    text-align: center;
    line-height: 24px;
    margin-top: 12px;
    height: 130px;
    vertical-align: center;
}

.xquestiondynamic table.xquestions td .xquestion_option {
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #efefef;
    height: 50px;
    margin-bottom: 10px;
    line-height: 50px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
}

.xquestiondynamic table.xquestions td .xquestion_option:hover {
    background-color: #dedede;
}

.xquestiondynamic table.xquestions td .xquestion_option.xselected {
    background-color: #74c7fd;
    color: white;
    font-weight: 600;
    cursor: default;
}

.xquestiondynamic table.xquestions td .xquestion_option.xselected:hover {
    background-color: #74c7fd;
}

/*-------------------------------------------
XQuestionImages
-------------------------------------------*/

@keyframes xquestionimages-slidein {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

@-webkit-keyframes xquestionimages-slidein {
    0% { -webkit-transform: translateX(-100%); }
    100% { -webkit-transform: translateX(0%); }
}

.xquestionimages {
    display: flex;
    justify-content: center;
}

.xquestionimages > .xquestion-bundle {
    display: flex;
    flex-direction: column;
    max-width: 1366px;
    min-width: 320px;
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 24px 0 rgba(0, 0, 0, 0.24);*/
    padding: 0;
    overflow: hidden;
    flex: 1 1 100%;
    border-radius: 6px;
    background-color: #f2f2f2;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-progression {
    flex-direction: row;
    display: flex;
    height: 12px;
    overflow: hidden;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-progression .background{
    background: #dedede;
    flex-grow: 1;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-progression .progression{
    /*background-color: #2ecc40;*/
    background-image: linear-gradient(#5EAE6B, #2ecc40);
    opacity: 1;
    width: 0;
    transition: width 1s ease-in-out;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-content > .xquestion-bundle-text h3 {
    color: #000;
    padding: 0;
    margin: 30px 0 30px 30px;
    font-size: 1.4em;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-content > .xquestion-bundle-text h3 > span {
    font-size: 1em;
    color: #aaa;
    margin-right: 15px;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-content {
    animation: xquestionimages-slidein 1.0s forwards;
    -webkit-animation: xquestionimages-slidein 1.0s forwards;
}

.xquestionimages .xquestion-bundle-images > .xquestion-bundle-image-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0.24em;
}

.xquestionimages .xquestion-bundle-images > .xquestion-bundle-image-container > .xquestion-bundle-image {
    padding: 0;
    margin: 0;
    flex: 1 1 50%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.xquestionimages .xquestion-bundle-images > .xquestion-bundle-image-container > .xquestion-bundle-image > button {
    border: 0;
    margin: 0.12em 0.24em;
    flex: 1 1 auto;
    height: 0;
    padding: 56.25% 0 0;
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.xquestionimages .xquestion-bundle-images > .xquestion-bundle-image-container > .xquestion-bundle-image > button:hover {
    transform: scale(1.1);
    opacity: 0.80;
}

.xquestionimages .xquestion-bundle-images > .xquestion-bundle-image-container > .xquestion-bundle-image > button.selected {
    position: relative;
    display: inline-block;
    margin: 0;
}

.xquestionimages .xquestion-bundle-images > .xquestion-bundle-image-container > .xquestion-bundle-image > button.selected:before {
    content: '\f05d';
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 100%;
    font-size: 8rem;
    background-color: rgba(46, 204, 64, 0.5);
    font-family: "FontAwesome","Open Sans", sans-serif;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-buttons {
    display: flex;
    margin: 20px 0 24px 0;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-buttons button {
    cursor: pointer;
    border: 0;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.8rem 1.4rem;
    background-color: #74c7fd;
    min-width: 160px;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-buttons button:hover {
    background-color:  #df1d84;
    color:             white;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-buttons > .xquestion-bundle-button-left {
    border-radius: 0 12px 12px 0;
}

.xquestionimages .xquestion-bundle > .xquestion-bundle-buttons > .xquestion-bundle-button-right {
    margin-left: auto;
    border-radius: 12px 0 0 12px;
}

@media (max-width: 768px)
{
    .xquestionimages .xquestion-bundle-images > .xquestion-bundle-image-container {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}