* {
    font-family:"Microsoft JhengHei"
}
a{
  color:inherit;
  cursor: pointer;
}
.container-full{
  overflow:auto;
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}
.item-active{
  background: #ececec;
  color: #616267!important;
}
.navber{
  height:0;
  transform: scaleY(0);
  transition-duration:0.3s;
  transform-origin:top;
  transition-property:transform;
}
.navber-active{
  height: auto!important; 
  transform: scaleY(1)!important;
}


 .trapezoid-2 {
        border-color:#ffffff transparent transparent transparent;
        border-style: solid solid solid solid;
        border-width: 86px;
 
        /* 設定 width、height 可更好理解原理 */
        height: 86px;
        width: 250px;
    }
    .renowned{
        background: url(../images/square/blue.jpg);
        background-size: 100% 100%;
        background-position: center;
        font-family: 'Oswald', sans-serif;
        border-radius: 5px;
        color:#F2C153;
        transition: 0.6s;
        margin:auto 4px;
    }
    .renowned:hover{
        
        
        color:white;
    }

    [data-visible='true'] {
             transition: opacity 0.3s;
             display: block;
            opacity:1;
        }
        [data-visible='false'] {
             transition: 1s;
            display: none;
            opacity:0;
        }


         div,img{
             margin:0;
             padding:0;
         }
         img{
             float:left;
             height: 100%;

         }
         #run_main{
            height: 350px;
             overflow: auto;
         }
         #run_items,#run_space{
            height: 100%;
             float:left;
         }
         #run_sec{
            height: 100%;
             width:1200vw;/*這個屬性很重要 讓容器有足夠的寬度實現滾動*/
             float:left;
         }


         .toggle {
  margin: 4px;
  display: inline-block;
}

.toggle {
  
  position: relative;
  height: 140px;
  width: 140px;
}
.toggle:before {
  box-shadow: 0 0 17.5px 8.75px #fff;
  border-radius: 118.3px;
  background: #fff;
  position: absolute;
  margin-left: -36%;
  margin-top: -36%;
  opacity: 0.2;
  content: "";
  height: 72%;
  width: 72%;
  left: 50%;
  top: 50%;
}
.toggle .button {
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  filter: blur(1px);
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.5), inset 0 -3px 4px -1px rgba(0, 0, 0, 0.2), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 3px 4px -1px rgba(255, 255, 255, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.8), inset 0 20px 30px 0 rgba(255, 255, 255, 0.2);
  border-radius: 96.32px;
  position: absolute;
  background: #ccd0d4;
  margin-left: -34.4%;
  margin-top: -34.4%;
  display: block;
  height: 68.8%;
  width: 68.8%;
  left: 50%;
  top: 50%;
}
.toggle .label {
  transition: color 300ms ease-out;
  text-shadow: 1px 1px 3px #ccd0d4, 0 0 0 rgba(0, 0, 0, 0.8), 1px 1px 4px #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  font-weight: 700;
  font-size: 16px;
  display: block;
  opacity: 0.9;
  height: 15%;
  width: 100%;
  color: rgba(0, 0, 0, 0.4);
}
.-bg-lightgray{
  background-color:#EFEFEF;
}
.-cor-gary{
  color: #616267;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  z-index: 9999999999999;
  transition:0.6s;
  opacity: 1;
}

.loading .middle {
  position: absolute;
  top: 50%;
  width: 100%;
}

.loading .middle .loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 3;
  border: 4px solid #8EA260;
  top: 50%;
  -webkit-animation: loader 2s infinite ease;
          animation: loader 2s infinite ease;
}

.loading .middle .loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #8EA260;
  -webkit-animation: loader-inner 2s infinite ease-in;
          animation: loader-inner 2s infinite ease-in;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
