.input-comp.select {
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  position: relative;
  -moz-transform: all cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all cubic-bezier(0.6, 0.04, 0.98, 0.335)
}

.input-comp.select.active {
  z-index: 10;
  border: solid 2px #fdc502;
  -moz-transform: all cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all cubic-bezier(0.6, 0.04, 0.98, 0.335)
}

.input-comp.select .bg {
  margin-right: 5px;
}

.input-comp.select > div:nth-of-type(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding-left: 5px;
}

.input-comp.select > div:nth-of-type(3) span {
  font-weight: 400;
  color: #a4a4a4;
  font-size: 13px;
}

.input-comp.select > div:nth-of-type(3) b {
  font-weight: 500;
  size: 16px;
  color: #595959;
}

.input-comp.select .div-for-closing {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.xw-selectpicker {
  height: 0px;
  border: 0px;
}

.xw-selectpicker-opt {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: -2px;
  width: calc(100% + 4px);
  background-color: white;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  border: solid 1px #ccc;
  border-top: solid 0px #ccc;
}

.xw-selectpicker-opt  > * {
  height: 50px;
  border-bottom: solid 1px #ccc;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
}

.xw-selectpicker-opt  > *:hover {
  background-color: #e3e3e3;
}

.xw-black {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0);
}
.input-comp.btn.btn-xw-gold {
  background-color: #fdc502;
  flex-grow: 1;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  min-width: 209.18px
}