/*  ___ _                      
   |  _|_|___ ___ ___ _ _      
   |  _| |_ -| -_|  _| | |_    
   |_| |_|___|___|_|  \_/|_|   Web Services                      Cascading Style Sheet (CSS) Table of Contents
   -----------------------------------------------------------------------------------------------------------
   Pseudo Select 4.2.0 by JP Larson, Copyright 2021 Fiserv. All rights reserved..............................9 
   ----------------------------------------------------------------------------------------------------------- */

/* Pseudo Select 4.2.0 by JP Larson, Copyright 2021 Fiserv. All rights reserved. */
/*Psuedo Select --------------------------------------*/
/* Non-Adjustable Styles */
.ps-select {
    position: relative;
    display: block;
}

.ps-select select {
    position: relative;
    z-index: 1;
    width: 100%;
    font-size: inherit;
    outline: none !important;
    -webkit-appearance: none;
    transition: none;
    opacity: 0;
}

.ps-select [data-select] {
    display: block !important;
    position: absolute;
    width: auto;
    min-width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: inherit;
    line-height: inherit;
    outline: none;
    transition: z-index 0s 0.5s ease, border-radius 0s 0.5s ease;
}

.ps-select [data-select] [data-options-wrapper] {
    display: block !important;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    transition: visibility 0.25s 0.125s ease, transform 0.25s 0.125s ease;
    transform: scaleY(0);
    transform-origin: top center;
}

.ps-select [data-select]:focus [data-options-wrapper] {
    visibility: visible;
    transform: scaleY(1);
    transition-delay: 0s !important;
}

.ps-select [data-select].open-up [data-options-wrapper] {
    bottom: 100%;
    top: auto;
    transform-origin: bottom center;
}

.ps-select [data-select]:focus {
    z-index: 345;
    transition-delay: 0s !important;
}

.ps-select [data-select]::after {
    content: "\f107";
    display: flex;
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    z-index: 3;
    pointer-events: none;
    font-size: 1.25em;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.ps-select [data-select].open-up::after {
    transform: rotate(180deg);
}

.ps-select [data-select],
.ps-select [data-option] {
    cursor: pointer;
}

.ps-select [data-select]::before,
.ps-select [data-option],
.ps-select [data-group] {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    height: inherit;
    line-height: inherit;
    box-sizing: border-box;
    z-index: 1;
    white-space: nowrap;
    text-decoration: inherit;
    font-style: inherit;
    width: 100%;
}

.ps-select [data-group] {
    align-items: stretch;
}

.ps-select [data-group]::before {
    content: attr(data-group);
    position: static;
}

.ps-select [data-select]::before {
    content: attr(data-html);
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    border: none;
    color: inherit;
    background-color: inherit;
}

.ps-select.invalid [data-select]::before {
    height: 100%;
    width: 100%;
}

.ps-select [data-select]:focus::before {
    pointer-events: none;
}

.ps-select [data-option].disabled {
    cursor: default;
    pointer-events: none;
}

.ps-select.ready [data-option] {
    transition: opacity 0.25s 0.125s ease;
}

.ps-select [data-option] {
    opacity: 0;
}

.ps-select [data-select]:focus [data-option] {
    opacity: 1;
    transition-delay: 0s, 0s !important;
}

.ps-select [data-option] a {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    color: inherit;
    text-decoration: inherit;
    font-style: inherit;
    cursor: pointer;
}

.ps-select [data-option] a:hover {
    color: inherit;
}

@media (pointer: coarse) {


} 

