/* HP-BUTTON */
.hp-button {
    display: inline-block;
    position: relative;
    height: 39px;
    min-width: 39px;
    color: #fff;
    background-color: #8e8f90;
    overflow: hidden;
    margin: 2px;
    border-radius: 3px;
    border: none;
}

.hp-button.hp-selected,
.hp-button.hp-primary {
    background-color: #0eabee;
}

.hp-button.hp-disabled {
    background-color: #bbbdbf;
    color: #edeeee;
    pointer-events: none;
}

.hp-button:active,
.hp-button.hp-button-active {
    background-color: #2478be;
    color: #fff;
}

.hp-button.hp-disabled .hp-button-text {
    color: #edeeee;
}

.hp-button .hp-button-text {
    color: #fff;
    display: inline-block;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    float: right;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 100%;
    min-width: 100px;
    max-width: 600px;
    padding: 0 10px;
}

.hp-button .hp-button-icon {
    display: inline-block;
    float: left;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hp-button .hp-button-icon.hide,
.hp-button .hp-button-text.hide,
.hp-button .hp-button-arrow.hide
{
    display: none;
}

.hp-button-icon:not(.hide) ~ .hp-button-text {
    min-width: 71px;
    padding-left: 0;
}

.hp-button .hp-button-arrow {
    display: inline-block;
    height: 100%;
    width: 30px;
    float:right;
    border: none;
    outline: none;
    background-image: url(assets/right_arrow.png);
    background-size: cover;
    background-position: center;
    background-color: #abacad;
}

.hp-button-arrow ~ .hp-button-text {
    float: left;
}

.hp-button-arrow .hp-disabled {
    background-image: url(assets/DisclosureArrowRightGray.png);
    background-color: transparent;
}

/* --- RESPONSIVE STYLING */
.hp-button.sm {
    height: 24px;
    min-width: 24px;
}

.hp-button.sm .hp-button-text {
    min-width: 40px;
}

.hp-button.md {
    height: 39px;
    min-width: 39px;
}

.hp-button.md .hp-button-text {
    min-width: 60px;
}

.hp-button.lg {
    height: 39px;
    min-width: 39px;
}

.hp-button.lg .hp-button-text {
    min-width: 100px;
}

.hp-button.xl {
    height: 50px;
    font-size: 24px;
    min-width: 50px;
}

.hp-button.xl .hp-button-text {
    min-width: 128px;
}

.hp-button.xl .hp-button-arrow {
    width: 38px;
} 
 
.hp-checkbox {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    height: 39px;
}
.hp-checkbox-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0px;
    box-shadow: none;
    display: inline-block;
    height: 39px;
    width: 39px;
    outline: none;
    float: left;
    background-image: url(assets/checkbox_inactive.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hp-checkbox-input:checked {
    background-image: url(assets/checkbox_active.png);
}
.hp-checkbox-input:focus {
    outline: 2px solid #0eabee;
}
.hp-checkbox-text {
    display: inline-block;
    text-align: left;
    float: right;
    margin: 3px;
    margin-left: 0;
    padding: 7px;
    padding-left: 0;
    color: #4b4b4d;
    word-wrap: break-word;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
}
.hp-checkbox-text.hide {
    display: none;
}
.hp-checkbox.hp-disabled {
    opacity: .5;
    pointer-events: none;
}

/* --- RESPONSIVE STYLING */
.hp-checkbox.sm {
    height: 24px;
}
.hp-checkbox.sm .hp-checkbox-input {
    height: 24px;
    width: 24px;
}
.hp-checkbox.sm .hp-checkbox-text {
    margin: 0 10px 0 5px;
    height: 24px;
    padding: 3px 0;
}
.hp-checkbox.md {
    height: 39px;
}
.hp-checkbox.md .hp-checkbox-input {
    height: 39px;
    width: 39px;
}
.hp-checkbox.md .hp-checkbox-text {
    margin: 6px 10px 6px 5px;
    padding: 5px 0;
}
.hp-checkbox.lg {
    height: 39px;
}
.hp-checkbox.lg .hp-checkbox-input {
    height: 39px;
    width: 39px;
}
.hp-checkbox.lg .hp-checkbox-text {
    margin: 6px 10px 6px 5px;
    padding: 5px 0;
}
.hp-checkbox.xl {
    height: 50px;
}
.hp-checkbox.xl .hp-checkbox-input {
    height: 50px;
    width: 50px;
}
.hp-checkbox.xl .hp-checkbox-text {
    margin: 5px 12px 5px 6px;
    font-size: 24px;
}
 
 
.hp-label {
    line-height: 27px;
    font-weight: bold;
    font-size: 18px;
    color: #4b4b4d;
    word-wrap: break-word;
}

.hp-label.hp-disabled,
.hp-disabled .hp-label {
    color: #bbbdbf;
    pointer-events: none;
}

.hp-label.hide,
.hide .hp-label{
    visibility: hidden;
    opacity: 0;
    visibility: none;
    pointer-events: none;
}


/* --- RESPONSIVE STYLING */
.hp-label.sm {
    font-size: 21px;
}

.hp-label.xl {
    font-size: 24px;
} 
 
/*TODO: should this be a class? */
hp-list.hp-list-with-header>ul {
    height: -webkit-calc(100% - 50px);
}

hp-list>ul {
    overflow-y: auto;
    overflow-x: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
}

hp-list {
    box-sizing: border-box;
    overflow: auto;
    display: inline-block;
    width: 100%;
}

.hp-list-title {
    height: 50px;
    padding: 5px;
    border-bottom: 1px solid #cfd1d3;
    box-sizing: border-box;
    background-color: #edeeee;
    overflow: hidden;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
    -webkit-flex-wrap: nowrap;
}

.hp-list-title .hp-label {
    margin: 0 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* --- RESPONSIVE STYLING */
.hp-list.xl {
    zoom: 1.28;
}

.hp-list.xl .hp-label {
    font-size: 18px;
} 
 
.hp-listitem * {
    pointer-events: none;
}
.hp-radio-button-listitem * {
    pointer-events: none;
}

.collapse {
    display:none;
}

.hp-listitem {
    padding: 5px;
    position: relative;
    border-bottom: 1px solid #e2e2e2;
    background-color: #fff;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: flex-start;
}

.hp-listitem >.hp-listitem-container {
    padding-left: 10px;
    max-width: 92%
}

.hp-listitem > .hp-listitem-container > .hp-listitem-text, 
.hp-radio-button-listitem > .hp-listitem-container > .hp-listitem-text {
    margin: 9px 5px;
}

.hp-listitem>.hp-listitem-container > .hp-listitem-text,
.hp-radio-button-listitem > .hp-listitem-container > .hp-listitem-text {
    color: #4b4b4d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-listitem.hp-listitem-with-title.hp-disabled,
.hp-listitem.hp-disabled,
.hp-radio-button-listitem.hp-disabled {
    pointer-events: none;
}

.hp-listitem.hp-disabled .hp-listitem-title,
.hp-listitem.hp-disabled .hp-listitem-text,
.hp-radio-button-listitem.hp-disabled .hp-listitem-title,
.hp-radio-button-listitem.hp-disabled .hp-listitem-text {
    color: #bbbdbf !important;
    pointer-events: none;
}

.hp-listitem:focus,
.hp-listitem.hp-focused-item,
.hp-radio-button-listitem:focus,
.hp-radio-button-listitem.hp-focused-item {
    box-shadow: none;
    outline: 2px solid #0eabee;
    outline-offset: -2px;
}

.hp-listitem.hp-selected>.hp-listitem-container>.hp-listitem-text,
.hp-listitem:active>.hp-listitem-text,
.hp-listitem.hp-listitem-active>.hp-listitem-container>.hp-listitem-text {
    color: #fff;
}

.hp-listitem.hp-selected {
    background-color: #0eabee;
}

.hp-listitem:active,
.hp-listitem.hp-listitem-active {
    background-color: #2478be;
}

.hp-listitem-with-title>.hp-title-text-container {
    -webkit-flex: 1 1 auto;
    width: 100%;
}

.hp-listitem-with-title>.hp-title-text-container>.hp-listitem-title {
    display: block;
    color: #4b4b4d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-listitem-with-title>.hp-title-text-container>.hp-listitem-text {
    display: block;
    color: #7d7e7f;
    word-wrap: break-word;
}

.hp-listitem-with-title.hp-selected .hp-listitem-title,
.hp-listitem-with-title:active .hp-listitem-title,
.hp-listitem-with-title.hp-listitem-active .hp-listitem-title {
    color: #fff;
}

.hp-listitem-with-title.hp-selected .hp-listitem-text,
.hp-listitem-with-title:active .hp-listitem-text,
.hp-listitem-with-title.hp-listitem-active .hp-listitem-text {
    color: #94e0ff;
}

.hp-radio-button-listitem {
    display: -webkit-flex;
    -webkit-align-items: center;
    padding: 12px;
}

.hp-radio-button-listitem > .hp-radio-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0px;
    box-shadow: none;
    -webkit-flex: 0 0 auto;
    opacity: inherit;
    background-repeat: no-repeat;
    background-image: url(assets/radioButtonOff.png);
    display: inline-block;
    width: 28px;
    height: 28px;
}

.hp-radio-button-listitem > .hp-listitem-container {
    display: inline-block;
}

.hp-radio-button-listitem:active>.hp-radio-button,
.hp-radio-button-listitem.hp-listitem-active>.hp-radio-button {
    background-image: url(assets/radioButtonPressed.png);
}

.hp-radio-button-listitem.hp-selected>.hp-radio-button {
    background-image: url(assets/radioButtonOnBlue.png);
}

.hp-radio-button-listitem.hp-disabled>.hp-radio-button {
    background-image: url(assets/radioButtonOffDis.png);
    pointer-events: none;
}

.hp-radio-button-listitem.hp-selected.hp-disabled>.hp-radio-button {
    background-image: url(assets/radioButtonOnBlueDis.png);
}

.hp-list.hp-list-with-header>ul {
    height: -webkit-calc(100% - 50px);
}

.hp-listitem>.hp-listitem-icon hp-listitem>.hp-listitem-text,
.hp-radio-button-listitem>.hp-listitem-text {
    margin: 9px 5px;
    max-height: 65px;
}

.hp-listitem .hp-listitem-icon {
    height: 39px;
    height: 39px;
}

.hp-listitem.hp-selected,
.hp-listitem:active,
.hp-listitem.hp-listitem-active {
    border-bottom: 1px solid #2478be;
}

.hp-listitem-with-title>.hp-listitem-icon {
    margin: 5px;
}

.hp-listitem-with-title>.hp-title-text-container {
    margin: 5px 5px 4px;
}
.hp-listitem-with-title > .hp-title-text-container > .hp-listitem-title {
    line-height: 21px;
    margin: 0px;
}

.hp-listitem-with-title > .hp-title-text-container > .hp-listitem-text {
    line-height: 21px;
    margin-top: 5px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}


/* --- RESPONSIVE STYLING */
.hp-listitem.sm {
    padding: 0;
}

.hp-listitem.sm .hp-listitem-container,
.hp-listitem.md .hp-listitem-container {
    padding: 3px;
}

.hp-radio-button-listitem.md {
    padding: 5px;
    padding-left: 10px;
}

.hp-radio-button-listitem.sm {
    padding: 2px;
    padding-left: 5px;
}

.hp-listitem.sm .hp-listitem-icon {
    height: 24px;
    width: 24px;
} 
 
.hp-numberbox {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    left: 0;
    margin: 0;
}

.hp-numberbox .hp-numberbox-input:focus {
    border: 2px solid #0eabee;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.hp-numberbox.hp-disabled .hp-numberbox-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0px;
    box-shadow: none;
    background-color: #f8f8f8;
}

.hp-numberbox.hp-textbox-input::-webkit-input-placeholder {
    color: #dcddde;
}

.hp-numberbox.hp-disabled .hp-numberbox-input {
    color: #bbbdbf;
    pointer-events: none;
    -webkit-user-select: none;
}

.hp-numberbox.hp-numberbox-input.hp-disabled::-webkit-input-placeholder {
    color: #f8f8f8;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.hp-numberbox .hp-numberbox-input {
    box-sizing: border-box;
    display: inline-block;
    border: 1px solid #cfd1d3;
    outline: none;
    background-color: #fff;
    color: #4b4b4d;
    height: 39px;
    width: inherit;
    padding: 5px 8px;
    margin: 2px;
    border-radius: 3px;
    resize: none;
    -webkit-user-select: text;
    font: inherit;
}

/* --- RESPONSIVE STYLING */
.hp-numberbox.xl {
    zoom: 1.28;
}

.hp-numberbox.md {
    width: -webkit-calc(100% - 8px);
}

.hp-numberbox.sm {
    width: -webkit-calc(100% - 8px);
} 
 
.hp-slider {
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: block;
    outline: none;
}

.collapse {
    display: none;
}

.hp-slider-title {
    text-align: left;
}

.hp-slider>.hp-slider-container {
    display: -webkit-flex;
}

.hp-slider>.hp-slider-container:focus {
    outline: 2px solid #0eabee;
}

.hp-slider-image {
    height: 39px;
    width: 39px;
}

.hp-slider>.hp-slider-container>input[type='range'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0px;
    box-shadow: none;
    -webkit-flex: 1 1 auto;
    -webkit-appearance: none;
    //  outline: none;
    color: #4b4b4d;
    background-color: #7d7e7f;
    height: 5px;
    margin-top: 17px;
    margin-bottom: 17px;
    outline: none;
}

.hp-slider ::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-image: url("assets/SliderButtonUp35.png");
    width: 35px;
    height: 35px;
}

.hp-slider ::-webkit-slider-thumb:active {
    background-image: url("assets/SliderButtonDn35.png");
}

.hp-slider>.hp-slider-min-label {
    display: inline-block;
    font-weight: normal;
    float: left;
}

.hp-slider>.hp-slider-max-label {
    float: right;
    display: inline-block;
    font-weight: normal;
}


/*hide definitions */

.hide .hp-slider-container,
.hide .hp-slider-image,
.hide .hp-slider-container>input[type='range'] {
    /*TODO: should there be visibility hidden?*/
    //visibility: hidden;
    opacity: 0;
    pointer-events: none;
}


/*disabled definitions*/

.hp-disabled .hp-slider-image,
.hp-slider-image.hp-disabled {
    opacity: .3;
    pointer-events: none;
}

.hp-disabled .hp-slider-container>input[type=range]::-webkit-slider-thumb {
    background-image: none;
    pointer-events: none;
}

.hp-disabled .hp-slider-container>input[type=range] {
    background-color: #f8f8f8;
    pointer-events: none;
}


/* --- RESPONSIVE STYLING */

.hp-slider.xl {
    zoom: 1.28;
}

.hp-slider.xl .hp-label {
    font-size: 18px;
}

.hp-slider.sm {
    zoom: .85;
}
 
 
.hp-textbox {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    left: 0;
    margin: 0;
}
.hp-textbox .hp-textbox-input:focus {
    border: 2px solid #0eabee;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}
.hp-textbox.hp-disabled .hp-textbox-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0px;
    box-shadow: none;
    background-color: #f8f8f8;
}
.hp-textbox.hp-textbox-input::-webkit-input-placeholder {
    color: #dcddde;
}
.hp-textbox.hp-disabled .hp-textbox-input {
    color: #bbbdbf;
    pointer-events: none;
    -webkit-user-select: none;
}
.hp-textbox.hp-textbox-input.hp-disabled::-webkit-input-placeholder {
    color: #f8f8f8;
}
.hp-textbox .hp-textbox-input {
    box-sizing: border-box;
    display: inline-block;
    border: 1px solid #cfd1d3;
    outline: none;
    background-color: #fff;
    color: #4b4b4d;
    height: 39px;
    width: inherit;
    padding: 5px 8px;
    margin: 2px;
    border-radius: 3px;
    resize: none;
    -webkit-user-select: text;
    font: inherit;
}

/* --- RESPONSIVE STYLING */

.hp-textbox.xl {
    zoom: 1.28;
}
.hp-textbox.md {
    width: -webkit-calc(100% - 8px);
}
.hp-textbox.sm {
    width: -webkit-calc(100% - 8px);
}
 
 
/* UNIVERSAL */

body {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

body,
.global_oxpd_screen {
    -webkit-user-select: none;
    margin: 0;
    font-family: HP Simplified Unhinted, HP Simplified, Arial;
    font-size: 18px;
}

body.xl,
.global_oxpd_screen.xl {
    font-size: 24px;
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-track {
    display: none;
}

::-webkit-scrollbar-thumb {
    display: none;
}

body.browser {
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/* Browser simulation */

.global_oxpd_screen {
    display: -webkit-flex;
    position: relative;
    -webkit-flex-direction: column;
    border: solid 3px #F8F8F8;
    background-color: transparent;
    overflow: hidden;
    text-align: left;
    padding: 0;
    /* The transition time needs to remain in sync with the responsive update function timeout. */
    transition: all .5s;
}

.global_oxpd_masthead {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
    overflow: hidden;
    height: 58px;
    min-height: 58px;
    flex-basis: 58px;
    padding: 0 10px;
    background-color: #7368A2;
}

.global_oxpd_masthead.xl {
    height: 74px;
    min-height: 74px;
    flex-basis: 74px;
}

.global_oxpd_masthead.md,
.global_oxpd_masthead.sm {
    height: 50px;
    min-height: 50px;
    flex-basis: 50px;
    padding: 0 6px;
}

.global_oxpd_masthead #home_button {
    background-color: transparent;
    background-image: url(assets/Home.png);
}

.global_oxpd_masthead #start_button {
    background-color: #4C9E36;
    background-image: url(assets/OneTouch.png);
}

.global_oxpd_masthead #cancel_button {
    background-color: #D5402D;
    background-image: url(assets/CloseX.png);
}

.global_oxpd_masthead #start_button.sm {
    display: none;
}

.global_oxpd_masthead #cancel_button.sm {
    display: none;
}

.global_oxpd_masthead #help_button {
    background-color: transparent;
    background-image: url(assets/HelpBtn.png);
}

.global_oxpd_masthead #messages_button {
    background-color: transparent;
    background-image: url(assets/Message.png);
}

.global_oxpd_masthead #page_title {
    height: 30px;
    padding-left: 10px;
    flex: auto;
    overflow: hidden;
    word-wrap: none;
}

.global_oxpd_masthead #page_title .hp-label-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.global_oxpd_masthead .hp-button {
    margin: 0 5px;
    height: 39px !important;
    min-width: 39px !important;
    background-size: contain;
}

.global_oxpd_masthead .hp-button:active {
    opacity: .75;
}

.global_oxpd_masthead #custom_icon {
    display: inline-block;
    height: 39px;
    width: 39px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.global_oxpd_masthead .hide {
    display: none !important;
}

.global_oxpd_content {
    position: relative;
    flex: auto;
    overflow: auto;
}

.global_oxpd_footer {
    flex-basis: 58px;
    height: 58px;
    background-color: #E2E2E2;
}

.global_oxpd_footer.xl {
    flex-basis: 74px;
    height: 74px;
}

.global_oxpd_footer.md,
.global_oxpd_footer.sm {
    display: none;
}

.global_oxpd_style_selector {
    display: block;
    margin: 10px;
}

.global_oxpd_style_selector .hp-button {
    height: 39px !important;
    min-width: 80px !important;
}


/*  HP-HEADER class definition */

.hp-header .hp-button,
.hp-header .hp-icon {
    vertical-align: top;
}

.hp-header .hp-label,
.hp-header .hp-textbox,
.hp-header .hp-icon,
.hp-header .hp-button,
.hp-header .hp-drop-down,
.hp-header .hp-checkbox-label {
    margin: 0 5px;
}

.hp-footer .hp-button,
.hp-footer .hp-textbox {
    margin: 0 5px;
}


/*Font size definition */

.hp-button,
.hp-label,
.hp-listitem-title,
.hp-listitem-text,
.hp-checkbox-label {
    font-size: 18px;
}


/* hp-header class*/

.hp-header {
    box-sizing: border-box;
    background-color: #edeeee;
    overflow: hidden;
    position: relative;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
    -webkit-flex-wrap: nowrap;
    height: 50px;
    -webkit-flex: 0 0 50px;
    padding: 5px;
    border-bottom: 1px solid #cfd1d3;
}

.hp-header .hp-header-levelup-button {
    -webkit-flex: 0 0 auto;
    margin-left: 0;
    background-image: url("../lib/img/LevelUp.png");
}

.hp-header .hp-header-spacer {
    -webkit-flex: 0 0 auto;
    height: inherit;
    width: 2px;
    background-color: #fff;
}

.hp-header .hp-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-header .hp-button,
.hp-header .hp-icon {
    vertical-align: top;
}

.hp-header .hp-button-back {
    background-image: url("../lib/img/Back.png");
}

.hp-header>.hp-header-left-panel {
    -webkit-flex: 0 0 auto;
}

.hp-header>.hp-header-center-panel {
    -webkit-flex: 1 1 auto;
}

.hp-header>.hp-header-right-panel {
    -webkit-align-self: stretch;
    -webkit-flex: 0 0 auto;
}

.hp-header.xl {
    height: 74px;
    -webkit-flex-basis: 62px;
}


/*hp-footer class*/

.hp-footer {
    border-top: 1px solid #cfd1d3;
    position: relative;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end;
    height: 50px;
    -webkit-flex: 0 0 50px;
    box-sizing: border-box;
    background-color: #edeeee;
}

.hp-footer.xl {
    height: 63px;
    -webkit-flex-basis: 62px;
}

.hp-footer.sm {
    height: 30px;
    -webkit-flex-basis: 30px;
}


/* hp-panel class */

.hp-panel {
    position: absolute;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 300ms ease-in;
}

.hp-panel.hide {
    right: 110%;
    visibility: visible;
    opacity: 1;
}


/* hp-content class */

.hp-content {
    position: relative;
    display: inline-block;
    -webkit-flex: 1 1;
    overflow-x: hidden;
    overflow-y: auto;
}


/*** OVERRIDES (This must be at the end of the CSS document) ***/

.hp-disabled {
    pointer-events: none;
}

.mask {
    opacity: 0;
    -webkit-transition: opacity 3s;
    transition: opacity 3s;
}

.hide {
    opacity: 0;
    visibility: none;
    pointer-events: none;
}

.collapse {
    display: none !important;
}

.show {
    opacity: 1;
    visibility: visible;
    display: inherit;
}
 
