/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    font-family: Arial;
    width: 120px;
}

.custom-select select {
    display: none; /*hide original SELECT element:*/
}

.select-selected {
    background-color: rgba(64, 64, 64, 1);
}

/*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: #f9e1a1 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #f9e1a1 transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    color: #f9e1a1;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(64, 64, 64, 1) transparent;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: rgba(64, 64, 64, 1);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 6;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.same-as-selected {
    background-color: rgba(64, 64, 64, 1);
}
.select-items div:hover {
    background-color: rgba(32, 32, 32, 1);
}

/*
     FILE ARCHIVED ON 20:54:33 Jun 15, 2020 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 10:08:46 Sep 10, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.373
  exclusion.robots: 0.041
  exclusion.robots.policy: 0.034
  esindex: 0.006
  cdx.remote: 12.969
  LoadShardBlock: 73.279 (3)
  PetaboxLoader3.datanode: 77.068 (4)
  PetaboxLoader3.resolve: 78.731 (2)
  load_resource: 84.727
*/