/* The container must be positioned relative: */.custom-select {    position: relative;    font-family: Arial;}.custom-select select {    display: none; /*hide original SELECT element: */}.select-selected {    background-color: #ffffff;    border: 1px solid #d4d9e0;    border-radius: 5px;    -moz-border-radius: 5px;    -webkit-border-radius: 5px;}/* Style the arrow inside the select element: */.select-selected:after {    position: absolute;    content: "";    top: 17px;    right: 10px;    width: 15px;    height: 9px;    background: url('/clubs/dreamlact/images/calculator/select_arrow.png') no-repeat;}/* Point the arrow upwards when the select box is open (active): */.select-selected.select-arrow-active:after {    background: url('/clubs/dreamlact/images/calculator/select_arrow.png') no-repeat;    top: 17px;    transform: rotate(180deg);}/* style the items (options), including the selected item: */.select-items div,.select-selected {    color: #000000;    padding: 8px 16px;    cursor: pointer;    border-bottom: 1px solid #d4d9e0;}/* Style items (options): */.select-items {    position: absolute;    background-color: #ffffff;    top: 100%;    left: 0;    right: 0;    z-index: 99;    border: 1px solid #d4d9e0;    border-radius: 5px;    -moz-border-radius: 5px;    -webkit-border-radius: 5px;}/* 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);}