
#tooltip {
	position: relative;
	display: inline-block;
	cursor: pointer;
  }
  
  #tooltip-text {
	display: none;
	position: absolute;
	background-color: #fff4c3;
	padding: 5px;
	color: black;
	border: 1px solid #ffcb5a;
	border-radius: 3px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	bottom: 100%; /* 調整底部位置 */
	left: 0;
	white-space: nowrap;
  }
  
  #tooltip:hover #tooltip-text {
	display: block;
  }
/* ------------------------------------------------- */
/* 回頂部 */
#myBtnGoUp {
	display: none;
	position: fixed;
	bottom: 8%;
	right: 15px;
	z-index: 99;
	border: none;
	outline: none;
	border: 1px solid rgb(214, 214, 214);
	background-color: rgb(255, 255, 255);
	color: black;
	cursor: pointer;
	padding-top: 5px;
	padding-bottom: 40px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 25px;
}
/* ------------------------------------------------- */
/* hr/上-手機顯示/下電腦隱藏-開始 */
@media screen and (max-width: 768px) {
	#hr00a {
		display: block;
	}
}
@media screen and (min-width: 769px) {
	#hr00a {
		display: none;
	}
}
/* ------------------------------------------------- */
/* 字電腦才出現 */
.price {
	display: inline-block;
	margin-right: 10px;
}
@media (max-width: 768px) {
	.price {
		display: none;
	}
	.mobile-text {
		font-size: 12px;
	}
}
@media (min-width: 768px) {
	.mobile-br {
		display: none;
	}
}
.colored-text2 {
	color: rgb(255, 232, 198);
}
/* ------------------------------------------------- */
/* hr00電腦隱藏手機顯示 */
@media screen and (max-width: 768px) {
	#hr00a {
		display: block;
	}
}

@media screen and (min-width: 769px) {
	#hr00a {
		display: none;
	}
}
/* ------------------------------------------------- */
/* 添加一些基本樣式以美化日曆 */
.calendar {
	font-family: Arial, sans-serif;
	width: 300px;
	text-align: center;
	color: gray;
}
.calendar input[type="date"] {
	color: gray !important;
	width: 100%;
	padding: 10px;
	margin: 10px 0;
}
input[type="date"]::-webkit-calendar-picker-indicator {
filter: invert(1) hue-rotate(180deg);
}
/* ------------------------------------------------- */
/* 說明框 */
.article-container {
	border: 1px solid #303030;
	padding: 10px;
	width: 100%;
	margin: 10 auto;
	border-radius: 10px;
}
/* ------------------------------------------------- */
/* 分享到社群 */
.styled-link {
    display: inline-block;
    margin: 5px;
    padding: 4px 15px;
    background-color: #4267B2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
}

.styled-link:hover {
    background-color: #365899;
}
.styled-link img {
    vertical-align: middle;
    margin-top: -4px;
    margin-left: 3px;
}
/* 分享按鈕靠右 */
.button-container {
    text-align: right;
}
.button-container a {
    font-size: 14px;
}


.modal-share {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-share-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    /* width: 80%; */
    text-align: left;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .modal-share-content {
        width: 650px;
        margin: 250px auto 0;
    }
}
@media (max-width: 769px) {
    .modal-share-content {
        width: 95%;
        margin: 200px auto 0;
    }
}

.close-share {
    color: #aaa;
    float: right;
    font-size: 60px;
    margin-top: -45px;
    font-weight: bold;
}

.close-share:hover,
.close-share:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* ------------------------------------------------- */
/* ------------------------------------------------- */


/* 機001開始 */
.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
  }

  .slider {
	width: 100%;
	margin-bottom: 20px;
  }

  .slider input[type="range"] {
	width: 100%;
  }

  input[type="range"] {
  border-radius:2px;
  width:230px;
  height:10px; /*桿條高度*/
  background-image:-webkit-linear-gradient(left ,rgb(226, 226, 226) 0%,rgb(226, 226, 226) 100%,#fff 50%, #fff 100%);
  box-shadow:inset rgb(226, 226, 226) 0 0 5px;
  outline : none;
  transition:.1s;
}

input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  width:10px;
  height:16px;
  background:rgb(220, 255, 66);
  border-radius:50%;
  transition:.1s;
  border-radius: 3px; /*方塊*/
}

input[type="range"]::-webkit-slider-thumb:hover,
input[type="range"]::-webkit-slider-thumb:active{
  width:16px;
  height:16px;
}

  .slider .slider-value {
	text-align: center;
	font-weight: bold;
	margin-top: 10px;
  }

  .result {
	margin-top: 20px;
	font-weight: bold;
  }

  .label {
	display: flex;
	justify-content: space-between;
  }

  ul {
	padding-left: 20px;
  }

  @media (max-width: 600px) {
	.container {
	  padding: 10px;
	}

	.slider {
	  width: 100%;
	  margin-bottom: 10px;
	}

	}
  @media (max-width: 300px) {
	input[type="range"] {
		border-radius:2px;
		width:170px;
 	}

	}

/* 機001結束 */


/* body內 開始 */
			#info {
			  position: fixed;
			  z-index: 999;
			  bottom: 20px;
			  left: 0px;
			  background: #222;
			  padding: 20px 30px;
			  color: #fff;
			  box-shadow: rgba(0, 0, 0, .5) 0 0 10px;
			  border-radius: 0 5px 5px 0;
				  font-size:16px;
			}
			
			#info a {
			  color: #0bf;
			  transition: .2s;
			}
			
			#info a:hover {
			  color: #6df;
			}
/* body內 結束 */
