.custom-select {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 400px;
  width: 100%;
  font-size: 18px;
  color: #000;
  margin-top: 0.5rem;
  justify-content: space-between;
}

.select-button {
  width: 70%;
  font-size: 18px;
  background-color: #fff;
  padding: 0.675em 1em;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-value {
  text-align: left;
}

.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #000;
  transition: transform ease-in-out 0.3s;
}

.select-dropdown {
  position: absolute;
  list-style: none;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 4px;
  padding: 10px;
  margin-top: 50px;
  max-height: 500px;
  overflow-y: auto;
  transition: 0.5s ease;
  z-index: 1000;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
}

.select-dropdown:focus-within {
  box-shadow: 0 10px 25px rgba(94, 108, 233, 0.6);
}

.select-dropdown li {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.select-dropdown li label {
  width: 100%;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.select-dropdown::-webkit-scrollbar {
  width: 7px;
}
.select-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}

.select-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.select-dropdown li:hover,
.select-dropdown input:checked ~ label {
  background-color: #f2f2f2;
}

.select-dropdown input:focus ~ label {
  background-color: #dfdfdf;
}

.select-dropdown input[type="radio"] {
  position: absolute;
  left: 0;
  opacity: 0;
}

/* interactivity */

.custom-select.active .arrow {
  transform: rotate(180deg);
}

.custom-select.active .select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.option_card {
  border-bottom: 1px solid #000;
  width: 100%;
  margin-top: 2px;
}
.option_card p {
  margin: 5px;
}

.postal_code_container{
  width: 100%;
  font-size: 18px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.pc_input{
  width: 55%;
  height: 100%;
  font-size: 18px;
  margin-right: 5px;
  padding:10px;
}

.pc_btn{
  height: 100%;
  margin-right: 5px;
  padding:10px;
  background: #046A38; 
  color: #fff; 
  font-size: 1.6rem; 
  align-items: center; 
  justify-content: center;
  border-radius: 10px ;
  border: 2px solid #206a38 ;
}

.fa {
  margin-left: -12px;
  margin-right: 8px;
}

.pc_btn:hover{
  background-color: #098a4c;
}

.pin_store {
  background-color: #4285F4;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
}

.pin_store::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #4285F4;
}