* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: 'NotoSansTC' !important;
}

body {
  margin: 0px;
  padding: 0px;
  /*
  min-width: 1130px;
  */
}

.disableHighlight{
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

::-webkit-input-placeholder {
  font-style: italic;
}
:-moz-placeholder {
  font-style: italic;  
}
::-moz-placeholder {
  font-style: italic;  
}
:-ms-input-placeholder {  
  font-style: italic; 
}




::-webkit-scrollbar {
  width: 0.7em;
}
 
::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #99D5B0;
}
 
::-webkit-scrollbar-thumb {
  background-color: #009639;
}

.markerTagImgRow::-webkit-scrollbar {
  height: 1em;
}


.font_tiny{
  font-size: clamp(0.7rem, calc(0.3rem + 0.2vw), 1rem);
}
.font_small{
  font-size: clamp(0.8rem, calc(0.4rem + 0.2vw), 1rem);
}
.font_medium{
  font-size: clamp(0.9rem, calc(0.5rem + 0.2vw), 1.5rem);
}
.font_medium_large{
  font-size: clamp(1.1rem, calc(0.6rem + 0.2vw), 1.7rem);
}
.font_large{
  font-size: clamp(1.5rem, calc(0.7rem + 0.2vw), 2rem);
}

.fInput{
  font-size: 0.9rem;
  padding: 0.2em;

  /** input style **/
  background-color: #46AD72;
  border: none;
  color: white;
  border-radius: 2px;
  font-weight: 300;
  letter-spacing: 1px;
}

.tinyInput{
  width: clamp(2rem, calc(1rem + 10vw), 3rem);
}

.shortInput{
  width: clamp(3rem, calc(2rem + 10vw), 5.5rem);
}

.stdInput{
  width: clamp(8rem, calc(6rem + 10vw), 12rem);
}
.longInput{
  width: clamp(15rem, calc(12rem + 10vw), 18rem);
}

.textAreaInput{
  width: clamp(15rem, calc(12rem + 10vw), 18rem);
  height: clamp(3rem, calc(2rem + 10vw), 5.5rem);
}

.ptFormInput{
  width: clamp(15rem, calc(12rem + 10vw), 18rem);
}


.leaflet-popup-content{
  font-size: 14px;
}


.stdTransition{
  transition:all 0.2s ease-out; 
  -o-transition:all 0.2s ease-out;
  -moz-transition:all 0.2s ease-out; 
  -webkit-transition:all 0.2s ease-out;
}

.slowTransition{
  transition:all 0.3s ease-out; 
  -o-transition:all 0.3s ease-out;
  -moz-transition:all 0.3s ease-out; 
  -webkit-transition:all 0.3s ease-out;
}

.debugTransition{
  transition:all 2s ease-out; 
  -o-transition:all 2s ease-out;
  -moz-transition:all 2s ease-out; 
  -webkit-transition:all 2s ease-out;
}

.hide{
  visibility: hidden;
  opacity: 0%;
}

.show{
  visibility: visible;
  opacity: 100%;
}

.displayNone{
  display: none;
}



.star {
  position: relative;
  
  display: inline-block;
  width: 0;
  height: 0;
  
  margin-left: .9em;
  margin-right: .9em;
  margin-bottom: 1.2em;
  
  border-right:  .3em solid transparent;
  border-bottom: .7em solid rgb(244,235,217);
  border-left:   .3em solid transparent;

  /* Controlls the size of the stars. */
  font-size: 0.4rem;

}

.star:before, .star:after {
  content: '';
  
  display: block;
  width: 0;
  height: 0;
  
  position: absolute;
  top: .6em;
  left: -1em;

  border-right:  1em solid transparent;
  border-bottom: .7em  solid rgb(244,235,217);
  border-left:   1em solid transparent;

  transform: rotate(-35deg);
}
  
.star:after {  
  transform: rotate(35deg);
}

.starCircle{
  position: relative;
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  font-size: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgb(69,48,0);
  margin-right: 0.2em;
}

.darkInput::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(255, 255, 255, 0.7);
  opacity: 1; /* Firefox */
  font-style: italic;
}

.darkInput::-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(255, 55, 0, 0.7);
  font-style: italic;
}

.darkInput::-ms-input-placeholder { /* Microsoft Edge */
  color: rgba(255, 55, 0, 0.7);
  font-style: italic;
}

.largeThumbnailPlayIcon{
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0; 
  right: 0;
  width: 70px; /* Need a specific value to work */
  height: 70px;
  opacity: 50%;
}

.largeThumbnailPlayIcon img{
  width: 100%;
  height: 100%;
}

.galleryImgContainer:hover .largeThumbnailPlayIcon{
    opacity: 90%;
}

.thumbnailPlayIcon{
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0; 
  right: 0;
  width: 50px; /* Need a specific value to work */
  height: 50px;
  opacity: 50%;
}

.markerTagImgContainer:hover .thumbnailPlayIcon{
    opacity: 90%;
}

.thumbnailPlayIcon img{
  width: 100%;
  height: 100%;
}


.m-m{
  margin: 1rem;
}

.m-t-xs{
  margin-top: 0.3rem;
}

.m-t-s{
  margin-top: 0.7rem;
}

.m-t-m{
  margin-top: 1.1rem;
}

.m-t-l{
  margin-top: 1.6rem;
}

.m-l-s{
  margin-left: 0.7rem;
}
.m-l-m{
  margin-left: 1.1rem;
}
.m-l-l{
  margin-left: 1.6rem;
}
.m-l-xl{
  margin-left: 2rem;
}

.m-r-xs{
  margin-right: 0.3rem;
}

.m-r-s{
  margin-right: 0.7rem;
}

.m-r-m{
  margin-right: 1.1rem;
}

.m-r-l{
  margin-right: 1.6rem;
}

.m-r-xl{
  margin-right: 2rem;
}


.m-b-xs{
  margin-bottom: 0.3rem;
}
.m-b-s{
  margin-bottom: 0.7rem;
}

.m-b-m{
  margin-bottom: 1.1rem;
}

.m-b-l{
  margin-bottom: 1.6rem;
}

.m-b-xl{
  margin-bottom: 2rem;
}

ol{
  padding-inline-start:1.5em;
}

.bold{
  font-weight: 600;
}

.stdShadow{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.stdTopShadow{
  box-shadow: 0 -6px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.bottomShadow{
  -webkit-box-shadow: 0px 11px 8px -2px rgba(51, 51, 51, 0.19);
  -moz-box-shadow: 0px 11px 8px -2px rgba(51, 51, 51, 0.523);
  box-shadow: 0px 11px 8px -2px rgba(51, 51, 51, 0.523);
}

.stdDropShadow{
  filter: drop-shadow(0 0.2rem 0.35rem rgba(0, 0, 0, 0.2));
}

.stdTextShadow{
  text-shadow: 0 0.2em 0.35em rgba(0, 0, 0, 0.2);
}

.centerText{
  text-align: center;
}