/*
 * ================================================
 *
 * 自定樣式設定
 *
 * ================================================
*/
body{
  background-color: #030303;
}
.cke_editable{
  background-color: unset;
}
main{
  padding:60px 0px 70px 0px;
  color:#ffffff;
  background-color: ;
}
* {
  box-sizing: border-box;
}
* { min-height: 0 }

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}

.all-border{
  border:1px solid #f00;
}
.bike-bg{
  height:411px;
  background:url('../images/img_customize_bike.png') no-repeat;
  background-size: auto 100%;
  background-position: right;
}
.main-content{
/*  padding:120px 0px;
*/  height: calc(100vh - 122px);
}
@media (max-width: 767px){
  .main-content{
    padding: 70px 0px;
  }
  .bike-bg{
    background-size: contain;
    background-position: center;
  }
}
.login-title{
  color:#2699FB;
  font-weight: lighter;
  padding-bottom:30px;
}
.login-column-title{
  display: flex;
  font-size: 1.4rem;
  margin:7px 0px;
}
.input-field{
  margin:28px 0px 14px 0px;
}
input{
  border:1px solid #3e3e3e;
  background-color: rgba(31,31,31,0.7);
  height: 50px;
  width: 320px;
  color:#eeeeee;
  font-size: 1.3rem;
  padding:0px 10px;
  outline: none;
}
input:focus {
  border:1px solid #2699FB;
}
.login-forgetpwd {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom:20px;

}

input[type="submit"],input[type="button"], button, a.v-button{
  color:#ffffff;
  background-color: rgba(38,153,251,1.0);
  border-radius: 5px;
  padding:12px 20px;
  font-size: 1.3rem;
  min-width:130px;
  max-width: 160px;
  text-align: center;
  transition-property: background-color;
  transition-duration: 300ms;
  transition-timing-function: ease-in;
}
input[type="submit"]:hover,input[type="button"]:hover, button:hover, a.v-button:hover{
  background-color: rgba(38,153,251,0.7);
}

@media (max-width: 480px){
  input{
    width:280px;
  }
}

input.is-error {
    border-color: #de071c;
    background: #fef0f02b;
}
.color-picker-input{
  height: 30px;
}
/*黑頻樣式*/

.modal{
  z-index: 100;
  position: fixed;
  top:0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal .modal-block{
  flex-direction: column;
  display:flex;
  width:375px;
  padding:50px 0px;
  border:1px solid #2699FB;
  border-radius: 3px;
}
.modal-block h2{
  font-size:1.8rem;
  color:#2699FB;
}
.modal-block .description{
  font-size:1.2rem;
  color:#eeeeee;
  text-align: center;
  margin: 0px 30px;
}
.modal-block input+* {
  margin-left:12px;
}
.modal-block input{
  max-width: 120px;
}

#loadingbg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0);
  color: #ffffff;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 40px;
}


.login-btn{
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  height: 60px;
  background-color: #000000;
  z-index: 100;

}
.header-title{
  text-align: center;
  color: #2699FB;
  font-size: 2rem;
  font-weight: lighter;
}
.logo-btn{
  width:120px;
  height:30px;
  position: absolute;
  display: inline-block;
  left:30px;
  background-attachment:fixed;
  background: url('../images/2020GIANT.png') no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 500px){
  .logo-btn{
    display: none;
  }
}
.logout-btn{
  position: absolute;
  right:30px;
  font-size: 1.4rem;

}
footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #000000;
  z-index: 100;
}
.copyright-title{
  text-align: center;
  color: rgba(255, 255,255, 0.6);
  font-size: 1.2rem;
}


/*
 * Order.php
*/

.order-header{
  padding:10px 30px;
  justify-content: space-between;
}

.order-header .order-button{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 600px){
  .order-header{
    padding:10px 30px;
    justify-content: flex-start;
  }
  .order-header .order-button{
    justify-content: flex-start;
    align-items: center;
  }
}

.order-header h1{
  font-size: 1.6rem;
  font-weight: normal;
}

.order-tab{
  padding:0px 30px;
}
.order-tab-item {
  display: inline-block;
  font-size: 1.3em;
  padding:10px 10px;
}

.order-tab-item.selected{
  border-bottom: 4px solid #2699FB;
  color:#2699FB;
}
.order-bike-list{
  padding:30px 30px;
}
.order-bike-item{
  margin-bottom:30px;
  height: 300px;
  display: flex;
}
.order-bike-item > div{
  width: 100%;
}
.order-bike-image{
  cursor: pointer;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  height: 200px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition-timing-function: ease-in;
  background-size: auto 170px;
  background-position: center;
  background-repeat: no-repeat;
   border:1px solid transparent;
}
.order-bike-image .orderctrl{
  position: absolute;
  bottom:8px;
  display: none;
  right:5px;
}

.order-small-btn {
  display: inline-flex;
  height: 26px;
  width: 40px;
  background-color: #2699FB;
  border-radius: 3px;
  margin-right:10px;
  transition-property: background-color;
  transition-duration: 300ms;
  transition-timing-function: ease-in;
  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
}
.order-bike-image .order-small-btn:hover{
  background-color: #A0A0A0;
}
.order-bike-image .upload-order{
  background-image: url('../images/icon_15X15_Upload.svg');
}
.order-bike-image .editor-order{
  background-image: url('../images/icon_15X15_pen.svg');
}
.order-bike-image .delete-order{
  background-image: url('../images/icon_15X15_trashcan.svg');
}
.order-bike-image .done-order{
  background-image: url('../images/icon_check-01.svg');
}
.order-bike-image .recover-order{
  background-image: url('../images/icon_15X15_Reply.svg');
}
.order-bike-image .copy-order{
  background-image: url('../images/icon_15X15_copy.svg');
}
.order-bike-image .view-order{
  background-image: url('../images/icon_15X15_eyes.svg');
}
.order-bike-image:hover {
/*  transform: scale(1.1);
*/  border:1px solid #2699FB;
}
.order-bike-image:hover .orderctrl{
  display: block;
}
.order-bike-number{
  font-size:1.2rem;
  margin-top:10px;
/*  text-align: center;
*/  color: #cccccc;
}
.order-bike-number label{
  color:#999;
}

/*
 * bikelist.php
*/

.arrow-btn{
  width:120px;
  height:30px;
  position: absolute;
  display: inline-block;
  left:60px;
  background-attachment:fixed;
  background: url('../images/icon_backwardarrow.svg') no-repeat;
  background-size: contain;
  background-position: left center;
}
.bikelist-header{
  padding:30px 30px;
}
.bikelist-header h1{
  font-size: 1.7rem;
  font-weight: lighter;
  text-align: center;
}


/*Accordion控制項*/
.bike-model-select{
  margin:0px auto;
/*  max-width: 1200px;
*/  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}
.bike-model-item{
  height: 90px;
  /*margin-right:24px;*/
  margin-bottom:24px;
}
.bike-model-title{
  font-weight: lighter;
  text-align: center;
  height: 90px;
  border: 1px solid #3D3D3D;
  /*margin-right: 24px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding: 5px 15px;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition-timing-function: ease-in;

}
.bike-model-title:hover{
   border: 1px solid #2699FB;
   color: #2699FB;
}
.accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion .item .title {
    padding-left:43px;
    padding-right: 50px;
    font-size:2rem;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 106px 80px;
    display: flex;
    margin: auto 0;
    font-weight: 100;
    position: relative;
    cursor: pointer;
    height: 64px;
    align-items: center;
    border-bottom: 1px solid #ffffff;
    font-weight: bolder;
/*    background-color: #222222;
*/}
.accordion .item {
  border:1px solid transparent;
  display: flex;
  flex-direction: column;
    color: #fff;
}
.accordion .item .title:after {
    content: '';
    position: absolute;
    top:25px;
    right: 20px;
    width: 20px;
    height: 15px;
    transition: all 0.5s ease;
    background: url("../images/icon_arrow_01.svg") no-repeat center;
}
/*.accordion .item.open{
  border-bottom:1px solid #2699FB;
}*/
.accordion .item.open .title{
  border-bottom:1px solid #2699FB;
  color: #2699FB;
}
.accordion .item.open .title:after {
    transform: rotate(180deg);
}

.accordion .item .content {
    padding: 0;
    margin: 0;
    transition: all 0.5s ease;
    overflow: hidden;
}

.accordion .item.open .content {
    height: auto;
}
.accordion-item-content{
  margin-bottom:30px;
  display: flex;
  flex-direction: row;
}
.accordion-subitem-title{
  display: flex;
  flex-direction: column;
  padding:27px 17px;
}
.accordion-subitem-title > label{
  color:#fff;
  font-size: 1rem;
  padding-top:20px;
}
.accordion-subitem-title > label:first-child{
  padding-top:0px;
}

/*
  忘記密碼流程
*/

.forget-password-title{
  display: flex;
  flex-direction: column;
}
.forget-password-title > h2{
  color: #2CA3FC;
  font-weight: lighter;
}
.forget-password-note{
  text-align: center;
  max-width: 300px;
  font-size: 1.2rem;
  color: #ACACAC;
}
.forget-password-form{
  margin-top: 50px;
}
.security-code-title{
  text-align: center;
}
.security-code-container{
  margin: 20px auto 30px auto;
  display: flex;
  flex-direction: row;
}

.security-code-container input+* {
  margin-left: 13px;
}
.security-code-container input {
  width:57px;
  height: 57px;
  text-align: center;
  padding: 0;
  font-size: 2rem;
  border-radius: 3px;
}
/*
  填寫客戶表單樣式
*/

.customer-info-title{
  font-size: 2.4rem;
}
.customer-info{
  flex-direction: column;
  overflow-y: auto;
}
.customer-info-next{
  margin-top:52px;
}



/*
  訂單列印
*/



.icon-btn{
  cursor: pointer;
  color:#fff;
  border-radius: 3px;
  display: inline-flex;
  height: 45px;
  min-width: 140px;
  background-color: #2699FB;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition-timing-function: ease-in;
}
.icon-btn:focus, .icon-btn:hover{
  color:#fff;
  background-color: #A0A0A0;
}
.icon-btn .icon-text{
  padding-left:20px;
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: left center;
}

@media (max-width: 500px){
  .order-footer >span {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .order-footer >span >a{
    margin-right:15px;
  }
  .order-footer >span >a:last-child{
    margin-right:0px;
  }
  .icon-btn{
    display: flex;

    height: 40px;
    min-width: 95px;
  }
}



/*fakeloading css
*/

#fakeloader-overlay {
  opacity: 0;
  top: 0px;
  left: 0px;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  z-index: 9998;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

#fakeloader-overlay.visible {
  opacity: 1;
}

#fakeloader-overlay.hidden {
  opacity: 0;
  height: 0px;
  width: 0px;
  z-index: -10000;
}

#fakeloader-overlay .loader-wrapper-outer {
  background-color: transparent;
  z-index: 9999;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: table;
  text-align: center;
  vertical-align: middle;
}

#fakeloader-overlay .loader-wrapper-inner {
  display: table-cell;
  vertical-align: middle;
}

#fakeloader-overlay .loader {
  margin: auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 8px solid rgba(255, 255, 255, 0.5);
  border-right: 8px solid rgba(255, 255, 255, 0.5);
  border-bottom: 8px solid rgba(255, 255, 255, 0.5);
  border-left: 8px solid #AAA;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: fakeloader 1.1s infinite linear;
  animation: fakeloader 1.1s infinite linear;
}

#fakeloader-overlay .loader, #fakeloader-overlay .loader:after {

  border-radius: 50%;
  width: 50px;
  height: 50px;
}

@-webkit-keyframes fakeloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fakeloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

