@charset "utf-8";
/* CSS Document */

input[type='text'],input[type='email'],input[type='password'],input[type='tel'],input[type='number'],select {
    width: 100%;
    padding: 6px 10px;
    margin: 12px 0;
    display: inline-block;
    border: 1px solid hsla(0,0%,60%,1.00);
    border-radius: 0;
    box-sizing: border-box;
	font-size: 13px;
	line-height: 20px;
	font-family: 'Noto Sans TC', 'd-din-xl' , 'Han-Sans-m', sans-serif;
	color: hsla(0,0%,4%,1.00);
}

input[type=submit].inputsy {
    width: 100%;
    background-color: hsla(0,0%,4%,1.00);
    color: white;
    padding: 14px 20px;
    margin: 12px 0;
    border: none;
    cursor: pointer;
	font-size: 16px;
	font-family: 'Noto Sans TC', 'd-din-xl' , 'Han-Sans-m', sans-serif;
}

input[type=submit].inputsy:hover {
    background-color: hsla(0,0%,60%,1.00);
}


.custom-select.inputsy {
  position: relative;
  font-family: 'Noto Sans TC', 'd-din-xl' , 'Han-Sans-m', sans-serif;
  font-size: 13px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  background-color: hsla(0,0%,100%,1.00);
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 15px;
  right: 10px;
  width: 0;
  height: 0;
  font-size: 13px;
  border: 3px solid transparent;
  border-color: hsla(0,0%,4%,1.00) transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent hsla(0,0%,4%,1.00) transparent;
  top: 10px;
}
/*style the items (options), including the selected item:*/
.select-selected {
  color: hsla(0,0%,4%,1.00);
  padding: 6px 10px;
  border: 1px solid transparent;
  border-color: hsla(0,0%,60%,1.00) hsla(0,0%,60%,1.00) hsla(0,0%,60%,1.00) hsla(0,0%,60%,1.00);
  cursor: pointer;
  line-height: 19px;
}
/*style items (options):*/
.select-items div{
  color: hsla(0,0%,4%,1.00);
  padding: 6px 10px;
  border: 1px solid transparent;
  border-color: hsla(0,0%,60%,1.00) hsla(0,0%,60%,1.00) hsla(0,0%,60%,1.00) hsla(0,0%,60%,1.00);
  border-top: none;
  cursor: pointer;
}
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 160px;
  overflow-y: scroll;
}
.select-items::-webkit-scrollbar {
    width: 0px;
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.width-12{
	width: 100%;
}
.width-6{
	width: 50%;
}
.width-4{
	width: calc(33.3% - 4px);
}
.width-4-margin{
	margin-right: 6px;
}
.con-3{
	display: flex;
	flex-wrap: wrap;
}

.buy-bn-con{
	margin-top: 25px;
}

/* The container */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 3px;
    height: 20px;
    width: 20px;
    background-color: hsla(0,0%,82%,1.00);
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
    background-color: hsla(0,0%,60%,1.00);
}

/* When the checkbox is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
    background-color: hsla(0,0%,4%,1.00);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.radio-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}





.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkbox-checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: hsla(0,0%,82%,1.00);
	border: 1px solid hsla(0,0%,60%,1.00)
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: hsla(0,0%,60%,1.00);
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: hsla(0,0%,4%,1.00);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-item{
	padding-left: 30px;
}

.inputbn{
	/*width: 40px; 2021-10-16*/
	width: 80px;
	/*background-color: hsla(0,0%,4%,1.00);*/
	background-color: #000000;
	color: #ffffff;
	/*color: hsla(0,0%,100%,1.00);*/
	margin-top: 6px;
	margin-bottom: 6px;
	border: 0px;
	cursor: pointer;
	font-family: 'd-din-xl' ,'Noto Sans TC', 'Han-Sans-m', sans-serif;
}
.inputbn:hover{
	background-color: hsla(0,0%,60%,1.00);
}



/* The container */
.cir-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.cir-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark-cir {
    position: absolute;
    top: 4px;
    left: 2px;
    height: 14px;
    width: 14px;
	border: 1px solid hsla(0,0%,82%,1.00);
    background-color: hsla(0,0%,82%,1.00);
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cir-container:hover input ~ .checkmark-cir {
    background-color: hsla(0,0%,60%,1.00);
}

/* When the radio button is checked, add a blue background */
.cir-container input:checked ~ .checkmark-cir {
    border: 1px solid hsla(0,0%,4%,1.00);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark-cir:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.cir-container input:checked ~ .checkmark-cir:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.cir-container .checkmark-cir:after {
 	top: 2px;
	left: 2px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: hsla(0,0%,4%,1.00);
}

