@charset "utf-8";
/* CSS Document */

/**
 * date:        2023-12-31
 * user:        ARL
 *
 * hs Horizontal Scrolling Styles
*/

:root {
    --app-hs-light: #c0c0c0;
}
.app-hs {
    width: 100%;
    padding: 5px;
    margin-bottom: 50px;
    border: solid 1px var(--app-hs-light);
}

.app-hs-container {
    width: 100%;
    position: relative;
    height: 750px;
    display: flex;
}

.app-hs-navigator {
    background-color: transparent;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.app-hs-navigator-btn {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    box-shadow: 0px 0px 25px -21px rgba(126,126,126,1) inset;
    -webkit-box-shadow: 0px 0px 25px -21px rgba(126,126,126,1) inset;
    -moz-box-shadow: 0px 0px 25px -21px rgba(126,126,126,1) inset;
    -ms-box-shadow: 0px 0px 25px -21px rgba(126,126,126,1) inset;
    color: #484848;
    z-index: 100;
}

.app-hs-navigator-btn-right::before {
    font-family: 'FontAwesome';
    content: '\f054';
    font-size: x-large;
}

.app-hs-navigator-btn-left::before {
    font-family: 'FontAwesome';
    content: '\f053';
    font-size: x-large;
}

.app-hs-elements {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    display: flex;
    padding: 5px 0;
}

.app-hs-elements-container {
    color: #172449;
    display: flex;
}

.app-hs-elements-container-draggable {
    padding-bottom: 35px !important;
}

.app-hs-elements-controls-container {
    color: #282424;
    display: flex;
}

.app-hs-element {
    margin-right: 10px;
    width: 300px;
}

.app-hs-element-disabled {
    opacity: .7;
}

.app-hs-element-body {
    border: solid 1px #e4e4e4;
    padding: 15px;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
}

.app-hs-element-content {
    width: 100%;
    height: 100%;
    padding: 0 0;
}

.app-hs-element-pagination {
    background-color: orange;
    width: 300px;
    display: flex;
    border: solid 4px black;
    align-items: center;
    justify-content: center;
    height: 100%;
}
