
/* Standard
----------------------------------*/
.psc-custom-select {
  position: relative;
  width: 240px;
  
  border: 1px solid #b4b9be;
  background: #fff;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.psc-custom-select a {
  display: inline-block;
  width: 220px;
  height: 20px;
  padding: 8px 10px;
  color: #555;
  text-decoration: none;
  cursor: pointer;
  
}
.psc-custom-select a span {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 400;
  
}
.psc-custom-select select {
  display: none !important;
}
.psc-custom-select > div {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 1px 0 0 -1px;
  width: 100%;
  border: 1px solid #b4b9be;
  border-top: 0;
  background: #FFFFFF;
  z-index: 10;
  overflow: hidden;
}
.psc-custom-select input {
  width: 218px;
  border: 1px solid #b4b9be;
  margin: 5px 5px 0;
  padding: 5px;

}
.paypal-shopping-carts-checkout form#psc_checkout_process_now #psc_customer_billing_details #psc_billing_div .psc-custom-select{
  width: 100%; 
  height: auto;
}
.paypal-shopping-carts-checkout form#psc_checkout_process_now #psc_customer_billing_details #psc_billing_div .psc-custom-select a{
  width: 96%;
  height: auto;
  padding: 0px 10px;
  border-bottom: none;
  box-shadow: 0 0px 0 0 currentColor;
  
}
.paypal-shopping-carts-checkout form#psc_checkout_process_now #psc_customer_billing_details #psc_billing_div .psc-custom-select input{
  width: 96%;  
}
.paypal-shopping-carts-checkout form#psc_checkout_process_now #psc_customer_billing_details #psc_billing_div .selectd_country_state_display .psc-custom-select{
    width: 100%;
     height: 23px;
}
.paypal-shopping-carts-checkout form#psc_checkout_process_now #psc_customer_billing_details #psc_billing_div .selectd_country_state_display .psc-custom-select a{
    width: 93%;  
    padding: 0px 10px;
}
.paypal-shopping-carts-checkout form#psc_checkout_process_now #psc_customer_billing_details #psc_billing_div .selectd_country_state_display .psc-custom-select input{
    width: 92%;  
}
.psc-custom-select > div > div {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  margin: 5px;
  max-height: 120px;
}
.psc-custom-select div ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.psc-custom-select div ul li {
  display: none;
  padding: 5px;
}
.psc-custom-select div ul li.active {
  display: block;
  cursor: pointer;
}

.psc-custom-select div ul li.option-hover.option-disabled {
  background: #ff6666;

}
.psc-custom-select div ul li.no-results {
  display: none;
  background: #f2f2f2;

}

/* Custom Select - Open
----------------------------------*/
.psc-custom-select-open {
  border-bottom: 1px solid #b4b9be;
}
.psc-custom-select-open div {
  display: block;
}

/* Hide Input Box
----------------------------------*/
.psc-custom-select input.psc-custom-select-hidden-input {
  position: absolute !important;
  top: 0 !important;
  left: -1000px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  z-index: -1 !important;
}

