/* *****************************

BVSelect Jquery Plugin Styles
Developed by: Bruno Vieira

**************************** */
.bv_mainselect {
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.bv_atual {
  font-size: 11pt;
  padding: 15px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #ebecf0;
  border: 1px solid #ebecf0;
  height: 65px;
  display: flex;
  align-items: center;
  color: rgba(30, 49, 62, 0.329);
  box-sizing: border-box;
  font: inherit;
}

.bv_disabled {
  background-color: #e6e6e6 !important;
  cursor: default !important;
}

.bv_separator {
  font-weight: 700;
  color: #282828 !important;
  cursor: default !important;
  background-color: transparent !important;
}

.bv_background {
  background-color: #ebecf0;
}

.arrow {
  border: solid #1f323f8c;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  float: right;
  pointer-events: none;
  margin-left: auto;
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  margin-top: 4px;
  transition: all 0.2s ease;
}

.down {
  transition: all 0.2s ease;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: 0px;
}

.bv_ul_mobile {
  width: 80% !important;
  position: fixed !important;
  top: 5% !important;
  left: 10% !important;
  border: 0px !important;
  height: 90% !important;
  margin: 0px !important;
  overflow-y: scroll;
  z-index: 10 !important;
  max-height: 100% !important;
}

.bv_ul_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9;
}

.bv_ul_mobile li {
  padding: 20px !important;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.bv_ul_inner {
  position: absolute;
  margin-top: 10px;
  padding: 0;
  display: none;
  border: 1px solid #ebecf0;
  border-radius: 4px;
  display: none;
  z-index: 1;
  max-height: 400px;
  overflow-x: auto;
  background: #fff;
  margin-top: 5px;
  z-index: 2;
}

.bv_ul_inner li {
  cursor: pointer;
  list-style: none;
  color: #353535;
  font-size: 10pt;
  display: flex !important;
  align-items: center;
  padding: 10px !important;
}

.bv_ul_inner i {
  color: #464646;
  font-size: 17pt;
  margin-right: 10px;
  float: left;
  margin-top: -1px;
  margin-left: 3px;
}
.bv_ul_inner li img {
  margin-right: 10px;
  position: relative;
  max-width: 28px;
  max-height: 32px;
  min-width: 28px;
}

.bv_ul_inner li input {
  padding: 0px;
  border: 0px;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;
  color: black;
  height: 38px;
  width: 100%;
  background-color: transparent;
  font-size: 10pt;
  font-weight: bold;
}

.bv_ul_inner li:hover {
  background-color: #eee;
}

.nofocus {
  background-color: rgba(255, 255, 255, 0.1) !important;
  padding: 0px !important;
  border-bottom: 2px solid #e1e1e1;
}

.innerinput {
  padding: 0px 9px 0px 10px;
}

*:focus {
  outline: none !important;
}

.bg-white .bv_atual {
  border: 1px solid #1f323f8c;
  color: rgb(43, 45, 51);
  background-color: transparent;
}

#selected-icon img {
  width: 100%;
  height: 100%;
}

#selected-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.selection-wrap {
  position: relative;
}

.active .bv_atual {
  padding-left: 40px;
}

.with-error-field #selected-icon {
  top: calc(50% - 11px);
}
