/* 
 * overlay.css v1.0.0
 * Copyright 2014 Joah Gerstenberg (www.joahg.com)
 */

.overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;

  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.overlay .modal {
  cursor: auto;
  position: absolute;
  z-index: 11;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 20px 20px 50px 20px;
  /*background-color: rgba(5,5,5,.5);*/
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: auto;
}

#ippmodel{
  /*background-image: linear-gradient(to bottom, #345355, #092f30);*/
  background: url(../../image/bg.jpg) center top no-repeat;
  /*background-size: 100%;*/
  background-repeat: no-repeat;
}

.overlay.shown {
  opacity: 1;
}

.modal.myproduct{
  overflow: visible;
}

/*.cominfo{
  /*background: #fff;
  padding: 50px 40px;
  border-radius: 10px;*/
/*}*/

.poptitle{
  font-size: 2em;
  text-align: center;
  margin:30px 0 0px 0;
  line-height: 1.5em;
  letter-spacing: 0px;
  color: #fff;
  font-weight: bold;
  background: rgba(255,255,255,.5);
}

.poptitle-main{
  font-size: 2em;
  text-align: center;
  margin:30px 0 0px 0;
  line-height: 1.5em;
  letter-spacing: 0px;
  color: #fff;
  font-weight: bold;
}

.poparea{
  padding:20px 0px ;
  border-top:1px solid #ccc;
  margin: 0 0 15px 0;
 
}
.poparea:last-child{
  border-right:0px;
}
.popproduct{
  margin:10px 0 8px 0;
  color: #154198;
}

.poplink{
  padding: 10px 0;
}

/*.links{
  
  border-radius: 50px;
  padding: 8px 15px;
  text-align: center;
  margin: 5px 0;
  letter-spacing: 0px;
  color: #5A5A5A;
}

.links:hover{
  color: #fff;
  background: #097cf2;
  -o-transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  -webkit-transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  -moz-transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  transform: scale(1.1);
  box-shadow: 0px 3px 8px #154198;
  border-radius: 50px;
}

.links i{
  margin: 0 10px 0 0;
}
*/
.popinfo{
  padding: 10px 15px;
  margin: 30px 0 30px 0;
  letter-spacing: 0px;
  font-size: 1.1em;
  color: #787878;
}

.gotoweb{
  background: #154198;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1.1em;
  color: #fff;
  letter-spacing: 0px;
}

.gotoweb:hover{
  color: #fff;
  background: #097cf2;
  -o-transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  -webkit-transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  -moz-transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  transition:background .3s linear,box-shadow .3s linear,border .15s linear,transform .15s linear;
  transform: scale(1.1);
  box-shadow: 0px 3px 8px #154198;
}

.closeset{
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 200px;
  /*margin: 0 auto;*/
  /*height:40px;*/
  /*background: violet;
  text-align: center;*/
  line-height: 3.5em;
 -webkit-transition: -webkit-transform .2s ease-in-out;
  -ms-transition: -ms-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;  
}


.closeset:hover{
  cursor: pointer;
  transform: rotate(25deg);
}


.ops{
  text-align: left;
}

.ops input[type="checkbox"],
.ops input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.ops label {
    position: relative;
    display: inline-block;
    margin-right: 0px;
    /* margin: 3px 0;*/
    margin-bottom: 3px;
    padding: 5px 15px 5px 25px;
    line-height: 1.5em;
    cursor: pointer;
    min-width: 20px;
    min-height: 20px;
    z-index: 1;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
}

.ops label::before {
    content: " ";
    position: absolute;
    top: 9px;
    left: 0px;
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 2px;
    z-index: -1;
}

.ops label::after {
    content: " ";
    position: absolute;
    top: 9px;
    left: 0px;
    display: block;
    width: 16px;
    height: 16px;
    border: 0px solid #fff;
    background: #29abe2;
    border-radius: 4px;
    z-index: -1;
    opacity: 0;
}
.ops label:hover {
  color: #fff;
}
.ops label:hover::before {
    background: #fff;
}

.ops input[type="radio"]+label::before {
    border-radius: 18px;
}

.ops input[type="radio"]:checked+label::before {
    border-radius: 4px;
}

.ops input[type="radio"]:checked+label::after {
    border-radius: 18px;
}


/* Checked */

.ops input[type="checkbox"]:checked+label,
.ops input[type="radio"]:checked + label {
    padding: 5px 15px 5px 25px;
    color: #29abe2;
    margin: 0px 0;
    margin-bottom: 3px;
}

.ops input[type="checkbox"]:checked + label::before,
.ops input[type="radio"]:checked + label::before {
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: transparent;
    border: 0px ;
}

.ops input[type="checkbox"]:checked + label::after,
.ops input[type="radio"]:checked + label::after {
    opacity: 1;
}

/*.ops .allchecked + label,
.ops .allchecked + label {
    padding: 8px 15px 8px 30px;
    color: #fff!important;
    margin: 0px 0;
}

.ops .allchecked + label::before{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #454545;
    border: 2px solid #454545;
}
*/

/*.ops input[type="radio"]:checked + label {
  margin: 2px 5px 2px 0;
}*/


/* Transition */

.ops label,
.ops label::before {
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}

.popformtitle{
  color: #fff;
  padding-left: 3%;
  font-size: 1.25em;
  font-weight: 900;
  border-left:13px solid #fff;
  line-height:1.5em;
  margin: 0 0 10px 0;
}
.setchoice{
  margin: 0 0 20px 0;
}

.popright{
  border-left:1px solid #ccc;
}

.settitle{
  color: #fff;
  font-size: 1.35em;
  font-weight: 900;
  padding: 0 .5% 0 0%;
  
}

.ops .popinput{
  font-size: 2.5em;
  color: #29abe2;
  text-align: center;
  background: rgba(0,0,0,.5);
  font-weight: 900;
}

.setarea{
  padding:20px 20px;
  border-bottom: 1px solid #ccc;
}

.popright .flex{
  flex-wrap: nowrap;
}

.popright input{
  background: rgba(0,0,0,.5);
  color: #fbb03b;
  padding:.5% 1.5% ;
}

.settime{
  margin:  0 0 10px 0;
}

.tuneable{
  color: #fbb03b;
  font-size: 2em;
  font-weight: 900; 
}

.tuneable:first-child{
  color: #222;
  background: #fff;
  padding: 5px 5px;
  border-radius: 5px; 
  font-weight: 900; 
  font-size: 1.5em;
  margin: 0 0 5px 0 ;
}

.mask {
  -webkit-mask: url('../../image/betteryenergy.png') no-repeat center center / contain;
  mask: url('../../image/betteryenergy.png') no-repeat top center / cover;
}

.popbettery{
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 120px;
  background: url('../../image/betteryshell-w.png') no-repeat center center;
  /*background-size: 100%;*/
  z-index: 2;
}

.energy {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffc7+0,00b7ff+100 */
  background: #8cc63f;
  z-index: -5;
}

.energy1 {
  height: 1%;
}

.energy2 {
  height: 2%;
}

.energy3 {
  height: 3%;
}

.energy4 {
  height: 4%;
}

.energy5 {
  height: 5%;
}

.energy6 {
  height: 6%;
}

.energy7 {
  height: 7%;
}

.energy8 {
  height: 8%;
}

.energy9 {
  height: 9%;
}

.energy10 {
  height: 10%;
}

.energy11 {
  height: 11%;
}

.energy12 {
  height: 12%;
}

.energy13 {
  height: 13%;
}

.energy14 {
  height: 14%;
}

.energy15 {
  height: 15%;
}

.energy16 {
  height: 16%;
}

.energy17 {
  height: 17%;
}

.energy18 {
  height: 18%;
}

.energy19 {
  height: 19%;
}

.energy20 {
  height: 20%;
}

.energy21 {
  height: 21%;
}

.energy22 {
  height: 22%;
}

.energy23 {
  height: 23%;
}

.energy24 {
  height: 24%;
}

.energy25 {
  height: 25%;
}

.energy26 {
  height: 26%;
}

.energy27 {
  height: 27%;
}

.energy28 {
  height: 28%;
}

.energy29 {
  height: 29%;
}

.energy30 {
  height: 30%;
}

.energy31 {
  height: 31%;
}

.energy32 {
  height: 32%;
}

.energy33 {
  height: 33%;
}

.energy34 {
  height: 34%;
}

.energy35 {
  height: 35%;
}

.energy36 {
  height: 36%;
}

.energy37 {
  height: 37%;
}

.energy38 {
  height: 38%;
}

.energy39 {
  height: 39%;
}

.energy40 {
  height: 40%;
}

.energy41 {
  height: 41%;
}

.energy42 {
  height: 42%;
}

.energy43 {
  height: 43%;
}

.energy44 {
  height: 44%;
}

.energy45 {
  height: 45%;
}

.energy46 {
  height: 46%;
}

.energy47 {
  height: 47%;
}

.energy48 {
  height: 48%;
}

.energy49 {
  height: 49%;
}

.energy50 {
  height: 90px;
}

.energy51 {
  height: 51%;
}

.energy52 {
  height: 52%;
}

.energy53 {
  height: 53%;
}

.energy54 {
  height: 54%;
}

.energy55 {
  height: 55%;
}

.energy56 {
  height: 56%;
}

.energy57 {
  height: 57%;
}

.energy58 {
  height: 58%;
}

.energy59 {
  height: 59%;
}

.energy60 {
  height: 60%;
}

.energy61 {
  height: 61%;
}

.energy62 {
  height: 62%;
}

.energy63 {
  height: 63%;
}

.energy64 {
  height: 64%;
}

.energy65 {
  height: 65%;
}

.energy66 {
  height: 66%;
}

.energy67 {
  height: 67%;
}

.energy68 {
  height: 68%;
}

.energy69 {
  height: 69%;
}

.energy70 {
  height: 70%;
}

.energy71 {
  height: 71%;
}

.energy72 {
  height: 72%;
}

.energy73 {
  height: 73%;
}

.energy74 {
  height: 74%;
}

.energy75 {
  height: 75%;
}

.energy76 {
  height: 76%;
}

.energy77 {
  height: 77%;
}

.energy78 {
  height: 78%;
}

.energy79 {
  height: 79%;
}

.energy80 {
  height: 80%;
}

.energy81 {
  height: 81%;
}

.energy82 {
  height: 82%;
}

.energy83 {
  height: 83%;
}

.energy84 {
  height: 84%;
}

.energy85 {
  height: 85%;
}

.energy86 {
  height: 86%;
}

.energy87 {
  height: 87%;
}

.energy88 {
  height: 88%;
}

.energy89 {
  height: 89%;
}

.energy90 {
  height: 90%;
}

.energy91 {
  height: 91%;
}

.energy92 {
  height: 92%;
}

.energy93 {
  height: 93%;
}

.energy94 {
  height: 94%;
}

.energy95 {
  height: 95%;
}

.energy96 {
  height: 96%;
}

.energy97 {
  height: 97%;
}

.energy98 {
  height: 98%;
}

.energy99 {
  height: 99%;
}

.energy100 {
  height: 105px;
}

.outoput.bettery{
  font-size: 3.65em;
  color: #8cc63f;
  font-weight: bold;
  line-height: 1em;
}

.outoput.betterynum{
  font-size: 1.35em;
  color: #8cc63f;
  font-weight: bold;
}

.outoput.betterynum span{
  color: #fff;
}

.mask{
  position: absolute;
  height: 116px;
  top: 0px;
  z-index: -1;
}

.confirmset{
  color: #22b573;
  padding: 5% 5%;
  width: auto;
  margin:0 auto;
  border: 1px solid #22b573;
  background: transparent;
  float: none;
}
@media screen and (min-width: 1000px){
  .overlay .modal {
  


   padding: 20px 35px;
   max-height: 100%;
  }

  .poparea{
    padding:0 30px ;
    border-right:1px solid #ccc;
    border-top:0px solid #ccc;
   
  }

  

}

@media screen and (min-width: 1200px){
  .overlay .modal {
    cursor: auto;
    position: absolute;
    z-index: 11;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 1200px;
    max-height: 100%;
    padding: 20px 50px 20px 35px;
    /*background-color: rgba(0,0,0,0.5);*/
    /*background: url("../../image/bg/paper.png") center bottom no-repeat;*/
    background-size: cover;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow:auto;
  }
}

@media screen and (min-width: 1680px){
  .overlay .modal {
    cursor: auto;
    position: absolute;
    z-index: 11;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 1000px;
    max-height: 90%;
    padding: 20px 35px 20px 35px;
    /*background-color: rgba(0,0,0,0.5);*/
    /*background: url("../../image/bg/paper.png") center bottom no-repeat;*/
    background-size: cover;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: auto;
  }

  .closeset{
    top: 88%;
  }
  
}