.custom_modal {
  padding-top: 16px;
}

.custom_modal_content {
  width: auto!important;
  max-width: 980px!important;
  margin: 0 10px;
}

@media screen and (min-width: 940px) { 
  .custom_modal_content { margin: auto; }    
}

.custom_select {
  padding: 4px 0;
  width: 100%;
  height: 30px;
  border: none;
  background-color: #c9cfff27;
  color: rgb(0, 0, 0);
}

.custom_select:focus, .custom_input:focus {
  background-color: #3f51b5;
  color: #ffffff;
  outline: none;
}

.custom_select {
  position: relative;
}

.custom_select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #f2fcfd;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 12px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000000;
  top: 5px;
}

/* style the items (options): */
.select-items div {
  font-size: 18px;
  padding: 2px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(255, 255, 255, 0.3) transparent;
  cursor: pointer;
}

.select-selected {
  font-size: 18px;
  color: #000000;
  padding: 2px;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  padding: 5px;
  position: absolute;
  background-color: #3f51b5;
  color: rgb(255, 255, 255);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.same-as-selected {
  color: #000000 !important;
  background-color: #ffffff;
}

.select-items div:hover {
  color: #000000;
  background-color: #ffffff;
}