﻿/*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;
}

.ps-select [data-select] {
    display: block !important;
    position: absolute;
    background-color: #fff;
    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;
    pointer-events: none;
}

.ps-select [data-select]:focus {
    z-index: 1000;
    transition-delay: 0s !important;
}

.ps-select [data-select]::after {
    content: "\f107";
    display: flex;
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    z-index: 3;
    pointer-events: none;
    font-size: 1.25em;
    transform: translateY(-50%);
}

.ps-select [data-select],
.ps-select [data-option] {
    cursor: pointer;
}

.ps-select [data-select]::before,
.ps-select [data-option] {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    background-color: #fff;
    height: inherit;
    line-height: inherit;
    box-sizing: border-box;
    z-index: 1;
    white-space: nowrap;
    text-decoration: inherit;
    font-style: inherit;
}

.ps-select [data-select]::before {
    content: attr(data-html);
    position: absolute;
    z-index: 2;
    top: 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;
}

.ps-select.ready [data-select]::before,
.ps-select.ready [data-option] {
    transition: margin 0.25s 0.25s ease, background-color 0.25s ease, border-radius 0.125s 0.375s !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;
    font-weight: inherit;
}

.ps-select [data-option] a:hover {
    color: inherit;
}

.ps-select [data-select]:focus [data-option] {
    margin-top: 0 !important;
}

.ps-select [data-select]:focus::before,
.ps-select [data-select]:focus [data-option] {
    transition-delay: 0s !important;
}

.ps-select [data-select].open-up,
.ps-select [data-select].open-up [data-option],
.ps-select [data-select].open-up::before {
    transform: rotateX(180deg);
}

.ps-select [data-select].open-up:focus [data-option] {
    transform: rotateX(180deg);
}

@media only screen and (min-width: 1024px) {
    .ps-select [data-select] {
        pointer-events: all;
    }
}
