/** Custom Select **/

.option-cash {
    background-color: var(--blue) !important;
    color: var(--yellow) !important;
    font-weight: bold;
}
.option-cash:active {
    background-color: var(--yellow) !important;
    color: var(--blue) !important;
    font-weight: bold;
}
.option-cash:hover {
    background-color: var(--yellow) !important;
    color: var(--blue) !important;
    font-weight: bold;
}
.option-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.select-cash {
    width: 20%;
    margin: 0px 20px 0px 0px;
}
#InputsDocumento {
    width: 80%;
}
/* .custom-select.opened .custom-options */

.custom-options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
.custom-options::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}
.custom-options::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, .3);
    background-color: #ffc107;
}
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}
.custom-select-wrapper select {
    display: none;
}
.custom-select {
    position: relative;
    /* display: inline-block; */
    /* width: max-content; */
}
.custom-select option {
    width: max-content;
}
.custom-select-trigger {
    position: relative;
    display: block;
    padding: 8px 0 8px 8px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #75786b;
    background-color: #001648;
    padding-right: 33px;
    white-space: nowrap;
}
.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    transition: all .3s ease-in-out;
    transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
    z-index: 100;
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    width: max-content;
    margin: 15px 0;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
    background: #fff;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}
.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    width: max-content;
}
.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
.option-hover:before {
    background: #f9f9f9;
}
.custom-option {
    position: relative;
    display: block;
    padding: 0 8px;
    border-bottom: 1px solid #b5b5b5;
    font-weight: 600;
    color: #b5b5b5;
    line-height: 47px;
    cursor: pointer;
    transition: all .1s ease-in-out;
    white-space: nowrap;
}
.custom-option:first-of-type {
    border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
    background: var(--yellow);
    color: #fff;
}
.content-filter {
    /* align-items: center; */
    display: flex;
    flex-direction: column;
}
.select-loterias .custom-options {
    height: 250px;
    overflow-y: auto;
}
