/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 8.1.2021, 16:38:15
    Author     : Václav
*/
/* The container must be positioned relative: */
/*the container must be positioned relative:*/
.custom-select2 {
  position: relative;
  width: auto;
  display: inline-block;
}

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

.select-selected {
  background-color: transparent;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "\f078";
  top: 1px;
  right: 20px;
  width: 0;
  height: 0;
  font-family: 'Font Awesome 5 Pro';
  color: white;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {

}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  color: #ffffff;
  /* padding: 0px 25px 0 15px; */
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
  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(55, 65, 128, 1);
}


/* SELECT2 */
.select2 {
  margin-left: 10px;
}

.select2 .select-selected {
  color: #ffffff;
  padding: 0px 25px 0 15px;
  border: 1px solid white;
  cursor: pointer;
  user-select: none;
  font: normal normal bold 14px/22px Proxima Nova;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  border: 1px solid white;
  border-radius: 20px;
  width: auto;
}

.select2 .select-items div {
  background-color: #131F6B;
  color: #ffffff;
  font: normal normal bold 14px/18px Proxima Nova;
  padding:5px 10px;
}

.select2 .select-items {
  border: 1px solid white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  max-height: 400px;
  width:120px;
  overflow-y: scroll;
}

.select2 .select-selected {
  background-color: transparent;
}

.select4 .select-items div, .select-selected {
  color: #131F6B;
  padding: 0px 22px 0 0;
  border: 1px solid transparent;
  border-color: transparent;
  font-weight: bold;
  font-size: 14px;
}

.select4 .select-selected:after {
  position: absolute;
  content: "\f078";
  top: 1px;
  right: 20px;
  width: 0;
  height: 0;
  font-family: 'Font Awesome 5 Pro';
  color: #131F6B;
}
