/* The container must be positioned relative: */
.custom-select {
    position: relative;
    padding: 0;
    border: 0;
    background: unset;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.custom-select.artist-select {
    height: 200px;
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.artist-select .select-selected {
    height: 100%;
    background-color: unset;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    font-size: 60px;
    font-weight: 100;
}

.artist-select .select-selected:after {
    top: calc(50% - 15px);
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.artist-select .select-selected.select-arrow-active:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.artist-select .select-selected:before {
    content: 'YEAR';
    position: absolute;
    top: calc( 50% + 30px);
    font-size: 16px;
    color: #000;
}

.artist-select .select-items {
    background-color: #000;
    top: 0;
    min-height: 200px;
    max-height: 400px;
    overflow: auto;
}

.artist-select .select-items > div {
    font-size: 30px;
    font-weight: 100;
}

.artist-select .select-items > div:hover {
    color: #ff0086;
}

.artist-select .select-items::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #000;
}

.artist-select .select-items::-webkit-scrollbar
{
    width: 45px;
    background-color: #000
}

.artist-select .select-items::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #fff;
    width: 40px;
    border: 20px solid rgba(0, 0, 0, 1);
}

@media all and (max-width: 992px) {

    .artist-filter {
        flex-wrap: wrap;
        padding: 50px 5%;
    }

    .artist-filter-header,
    .artist-filter-select {
        width: 100%;
        padding: 0;
    }

    .artist-filter-header h1 {
        font-size: 60px;
    }

    .custom-select.artist-select {
        height: 150px;
    }

    .artist-listing-information {
        width: 100%;
        padding: 0 5% 0 50px;
    }

    .award-item {
        width: 100%;
    }

    .press-item h3 {
        min-height: 50px;
    }

    .press-listing .press-item {
        width: 100%;
        margin-bottom: 20px;
    }
}