.animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-ms-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s;}@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(0);
		-webkit-animation-timing-function: ease-out;
	}	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-webkit-animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
	}
	100% {
		-webkit-transform: perspective(400px) scale(1);
		-webkit-animation-timing-function: ease-in;
	}
}
@-moz-keyframes flip {
	0% {
		-moz-transform: perspective(400px) rotateY(0);
		-moz-animation-timing-function: ease-out;
	}
	40% {
		-moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-moz-animation-timing-function: ease-out;
	}
	50% {
		-moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-moz-animation-timing-function: ease-in;
	}
	80% {
		-moz-transform: perspective(400px) rotateY(360deg) scale(.95);
		-moz-animation-timing-function: ease-in;
	}
	100% {
		-moz-transform: perspective(400px) scale(1);
		-moz-animation-timing-function: ease-in;
	}
}
@-o-keyframes flip {
	0% {
		-o-transform: perspective(400px) rotateY(0);
		-o-animation-timing-function: ease-out;
	}
	40% {
		-o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-o-animation-timing-function: ease-out;
	}
	50% {
		-o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-o-animation-timing-function: ease-in;
	}
	80% {
		-o-transform: perspective(400px) rotateY(360deg) scale(.95);
		-o-animation-timing-function: ease-in;
	}
	100% {
		-o-transform: perspective(400px) scale(1);
		-o-animation-timing-function: ease-in;
	}
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.flip {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flip;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flip;
	-o-backface-visibility: visible !important;
	-o-animation-name: flip;
	backface-visibility: visible !important;
	animation-name: flip;
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}
	
	70% {
		-webkit-transform: scale(.9);
	}
	
	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}
	
	70% {
		-moz-transform: scale(.9);
	}
	
	100% {
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-o-transform: scale(1.05);
	}
	
	70% {
		-o-transform: scale(.9);
	}
	
	100% {
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	
	70% {
		transform: scale(.9);
	}
	
	100% {
		transform: scale(1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
	}
	
	25% {
		-webkit-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}	
}

@-moz-keyframes bounceOut {
	0% {
		-moz-transform: scale(1);
	}
	
	25% {
		-moz-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-moz-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-moz-transform: scale(.3);
	}	
}

@-o-keyframes bounceOut {
	0% {
		-o-transform: scale(1);
	}
	
	25% {
		-o-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-o-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-o-transform: scale(.3);
	}	
}

@keyframes bounceOut {
	0% {
		transform: scale(1);
	}
	
	25% {
		transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		transform: scale(.3);
	}	
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	-moz-animation-name: bounceOut;
	-o-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
/* HM: Personal tuning */


h4, p, span {
  font-family: monospace !important;
  letter-spacing: -1px;
} 

img.flag {
  vertical-align: initial;
  margin-left: 0.2rem;
}

#comments {
  padding-left: 10px;
}
#chat {
  height: 400px;
}
#chat hr {
  margin: 0.5em 0em 0em 0em;
}
#box {
  color: green;
}

/* chat box */
.theme--day .header-bar {
  background-color: #494949;
}

.w50 {
  width: 80px;
}
.w140 {
  width: 140px;
}
.margin-05em {
 margin: 0.5em; 
}
.toolcard {
  font-size: 2em;
  padding: 0.5em;
}
.btnidle {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;  /* not 20 to match the height of the active btn and show the grid nicely */
  color: gray;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: rgba(0,0,0,0.25);
  webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.btnacquired {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;  /* not 20 to match the height of the active btn and show the grid nicely */
  color: gray;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: rgb(0 0 0 / 4%);
  webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.thtool {
  display: block;
  padding: 10px 8px 10px 8px;
  /* background-color: #111; */
  line-height: 20px;
  /* border: 1px solid #242424; */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  /* -webkit-box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.055); */
  -webkit-box-shadow: 3px 4px 3px 2px rgba(0,0,0,0.055); 
  /* -moz-box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.055); */
  -moz-box-shadow: 3px 4px 3px 2px rgba(0,0,0,0.055);
  /* box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.055); */
  box-shadow: 3px 4px 3px 2px rgba(0,0,0,0.055);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.locked {
  background-color: rgba(0,0,0,0.25);
  height: 76px;
}
.thlogin {
  display: block;
  padding: 1rem;
  line-height: 20px;
  border: 2px dashed #BCC5C9;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.leadertable td:not(:first-child) {
  text-align: right !important;
  vertical-align: middle;
}

.leadertable th:not(:first-child) {
  text-align: right !important;
}

.leadertable tr.even {
  background-color: #f2f2f2; 
}

.username {
  text-shadow: 0px 0px #BCC5C9;
  font-size: 85%;
}

.ranknum {
  background-color: #8D9BAA; /* #9dcbf2; */
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 0.8em;
  color: #fff;
  vertical-align: inherit;
  margin-left: 0.9rem;
}

.rank_badge {
    -moz-border-radius:20%;
    -webkit-border-radius:20%;
    background-color:#8D9BAA; /*#f5f5f5;*/
    border-radius:15%;
    color:#fff; /* #aaa; */
    text-align:center;
    font-family:serif;
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
    padding:0.4em;
}

.upgrade_badge {
    width:90px;
    height:90px;
    -moz-border-radius:100%;
    -webkit-border-radius:100%;
    border-radius:100%;
    background-color:#222;
    color:#aaa;
    text-align:center;
    font-family:serif;
    overflow:hidden;
    display:table-cell;
    vertical-align:middle;
}

.exp_badge {
    font-size: x-small;
    background-color: black;
    color: white;
    border-radius: 10px;
    border: solid 1px red;
}

.toolbadge {
    opacity: 0.60;
    -moz-opacity: 40%;
    -webkit-opacity: 40%;
    width:20px;
    height:20px;

    color: #fff;
    background-color: #3e3e3e;
    font-weight: bold;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    font-size: 1.2em;
    font-family: serif;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    display:table-cell;
    vertical-align:middle;
    padding:.3em;

}

.rankbadge-faded {
    opacity: 0.20;
    -moz-opacity: 20%;
    -webkit-opacity: 20%;
    width:40px;
    height:40px;
    
    color: #999;
    background-color: #111;
    font-weight: bold;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    font-family: serif;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    display:table-cell;
    vertical-align:middle;
}

.badge-faded {
  opacity: 0.20;
  -moz-opacity: 20%;
  -webkit-opacity: 20%;
  width:60px;
}

.labs-box {
  margin: 10px;
  /* background-color: #FAFAFA; */
  font-family: VT323;
  /* font-weight: bolder; */
  font-size: larger;
  text-align: right;
}
.hostbox {
  border-radius: 10px;
 /* background-color: #111; */
  padding: 2em !important;
  text-align: center;
}
.hostbox_self {
  border-radius: 10px;
 /* background-color: #FFFFFF; */
  padding: 2em !important;
  text-align: center;
}
.hostbox_boss {
  border-radius: 10px;
 /* background-color: #000000; */
 /* color: green; */
  padding: 2em !important;
  text-align: center;
}

.hm-top {
  background-color: black;
}

.nav.pull-right.header {
  margin: -50px 20px;
}

div#scan_types .btspace {
  margin-top: 0.2em;
}

.error {
 color: red;
 font-style: italic;
}

#current {
  font-weight: bold !important;
  color: #444 !important;
  border-bottom: 3px solid #555 !important;
}

.smallfonts {
  color:darkgray; 
  font-size:x-small;
}

.chatline {
  border-bottom: solid 0.1em #9e9e9e;
}

#hackdetails {
}
#terminal_frame {
  height: 420px;
}
#terminal {
  background: black;
  font-family: monospace;
  font-size: small;
  height: 400px;
  line-height: 1em;
  overflow: auto;
  padding: 10px;
  border-radius: 0.4rem;
}
.t1 { color: orange; }
.t2 { color: mediumaquamarine; }
.t3 { color: green; }
.t4 { color: darkorange; }
.t5 { color: darkseagreen; }
.t6 { color: lime; }
.t7 { color: darkgray; }
.t8 { color: gold; }
.t9 { color: ivory; }
.t10 { color: lawngreen; }
.t11 { color: orange; }    /* one more orange bc orange is cool */

.tophackers {
  border-left: 1px solid #eeeeee;
  padding-left: 19px;
}
.you { 
  background-color: aliceblue; 
} 
.numgreen {
  color:green;
  font-weight: bolder;
}
.radar-label {
  background-color: #eeeeee;
  padding: 10px;
  border-radius: 10px;
  margin-left: -20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

#scan_types {
  padding: 10px 10px;
}
#scan_types form {
  margin: 0 0 0px;
}
.scan_pad {
  margin: 0px 0px 10px;
}

.wbg {
  background-color: #ddd;
  color: #000;
}

.paginationh {margin:20px 0;}
.paginationh ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;}
.paginationh ul>li{display:inline;}
.paginationh ul>li>a,.pagination ul>li>span{float:left;text-decoration:none;}
.paginationh ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{}
.paginationh ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;}
.paginationh ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999999;background-color:transparent;cursor:default;}
.paginationh ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
.paginationh ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
.paginationh-centered{text-align:center;}
.paginationh-right{text-align:right;}
.paginationh-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;}
.paginationh-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
.paginationh-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
.paginationh-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;}
.paginationh-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;}
.paginationh-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;}
.paginationh-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;}

.fixed {
position: fixed!important;
top: 0;
width: 100%;
padding-top: 55px;
border-color: black;
border-style: solid;
border-width: 1px;
background-color: white;
}

.fixed2 { position:fixed; top:18%; right:2%; }

.emailprovider {
  background-color: white;
  padding: 10px;
  line-height: 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.emailprovider:hover {
 background-color: white;
 border-style: solid;
 border-color: #53a1b3;
 border-width: 1px;
 width: 100px;
}

.lastupdate {
  color: gray; 
  font-weight: 900; 
  font-size: 0.9em;
}

.center-table
{
  margin: 0 auto !important;
  float: none !important;
}

.checkbox-grid-25 li {
    display: block;
    float: left;
    width: 25%;
}
.checkbox-grid-50 li {
    display: block;
    float: left;
    width: 50%;
}

/* HM: Micro clearfix */
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }
.cf { zoom: 1; }

/* HM: Smooth Footer */
        html, body {
            height: 100%;
	    /* background: linear-gradient(black, rgb(11, 11, 11), black); */
	    /* background-repeat: repeat; */
	    /* background-attachment: fixed; */
        }
        footer {
            padding: 17px 0 18px 0;
        }
        .wrapper {
            min-height: 80%;  /* Not 100% bc NAVBAR is big*/
            height: auto !important;
            height: 100%;
            margin: 0 auto -63px;
        }
        .push {
            height: 63px;
        }

.calls {
  font-family: sans;
  font-weight: 700;
  color: gray;
}

.checkbox-well {
  min-height: 20px;
  padding: 3px;
  margin: 1px;
  background-color: #fafafa;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}


/* =============================================================== */
/* Accordion
================================================================ */
.acc-trigger {
        border: 1px solid #ddd;
        cursor: pointer;
        display: block;
        margin: 10px 0;
        background-image: linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
        background-image: -o-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
        background-image: -moz-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
        background-image: -webkit-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
        background-image: -ms-linear-gradient(bottom, #F7F7F7 0%, #FFFFFF 100%);
        background-color: #F9F9F9;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
}

.acc-trigger a {
        background: url(../img/accordion_plus_ico.png) no-repeat right;
        border-left: #ddd;
        display: block;
        color: #888;
        outline:  none;
        padding: 11px 15px;
        text-decoration: none;
        font-weight: bold;
        font-family: Arial, sans-serif;
}

.acc-trigger.active a {cursor: default; background: url(../img/accordion_minus_ico.png) no-repeat right;}
.acc-trigger a:hover, .acc-trigger.active a{color: #444;}
.acc-trigger a h3 {font-weight: bold; font-size: 14px; letter-spacing: -0.5px; line-height: 28px; color: #777;}
.acc-container .content{ padding: 2px 15px 5px 15px;    line-height: 19px;}
.content p {margin-bottom: 10px;}

.crypto_align {
  float: left; padding-right: 0.3rem; padding-top: 0.1rem; }

.t {
  text-decoration: line-through; }

/* =============================================================== */
/* Progress bar animation 
================================================================ */

#progressbar {
    width: 100%;
    height: 15px;
    padding: 2px;
    margin: .6em 0;
    border: 1px #242424 double;
    clear: both;
}

#progress {
    background: #444444; /*-- Color of the bar --*/
    height: 15px;
    width: 0%;
    max-width: 100%;
    float: left;
    -webkit-animation: progress 1s 1 forwards;
    -moz-animation: progress 1s 1 forwards;
    -ms-animation: progress 1s 1 forwards;
    animation: progress 1s 1 forwards;
}

#pbaranim {
    height: 15px;
    width: 100%;
    overflow: hidden;
    /* background: url('http://www.cssdeck.com/uploads/media/items/7/7uo1osj.gif') repeat-x; */
    -moz-opacity: 0.25;
    -khtml-opacity: 0.25;
    opacity: 0.25;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
    filter: alpha(opacity=25);
}

@-webkit-keyframes progress { 
    from { }
    to { width: 100% }
}

@-moz-keyframes progress { 
    from { }
    to { width: 100% }
}

@-ms-keyframes progress { 
    from { }
    to { width: 100% }
}

@keyframes progress { 
    from { }
    to { width: 100% }
}
.shepherd-element, .shepherd-element:after, .shepherd-element:before, .shepherd-element *, .shepherd-element *:after, .shepherd-element *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.shepherd-element {
  position: absolute;
  display: none; }
  .shepherd-element.shepherd-open {
    display: block; }

.shepherd-element.shepherd-theme-arrows {
  max-width: 100%;
  max-height: 100%; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: white;
    color: #444444;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  /*  -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 1));
    -moz-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 1));
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 1)); }  */

    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box; 
    }

    .shepherd-element.shepherd-theme-arrows .shepherd-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #9E9E9E; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #9E9E9E; }

.shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {
  border-bottom-color: #222; }
.shepherd-element.shepherd-theme-arrows.shepherd-has-title .shepherd-content header {
  background: #222;
  color: white;
  padding: 1em; }
  .shepherd-element.shepherd-theme-arrows.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
    padding: 0;
    margin-bottom: 0; }
.shepherd-element.shepherd-theme-arrows.shepherd-has-cancel-link .shepherd-content header h3 {
  float: left; }
.shepherd-element.shepherd-theme-arrows .shepherd-content {
  padding: 0; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content * {
    font-size: inherit; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content header {
    *zoom: 1;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 4px 4px 0 0; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content header:after {
      content: "";
      display: table;
      clear: both; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content header h3 {
      margin: 0;
      line-height: 1;
      font-weight: normal; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content header a.shepherd-cancel-link {
      float: right;
      text-decoration: none;
      font-size: 1.25em;
      line-height: 0.8em;
      font-weight: normal;
      color: rgba(0, 0, 0, 0.5);
      opacity: 0.25;
      position: relative;
      top: 0.1em;
      padding: 0.8em;
      margin-bottom: -0.8em; }
      .shepherd-element.shepherd-theme-arrows .shepherd-content header a.shepherd-cancel-link:hover {
        opacity: 1; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content .shepherd-text {
    padding: 1em; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content .shepherd-text p {
      margin: 0 0 0.5em 0;
      line-height: 1.3em; }
      .shepherd-element.shepherd-theme-arrows .shepherd-content .shepherd-text p:last-child {
        margin-bottom: 0; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content footer {
    padding: 0 1em 1em; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons {
      text-align: right;
      list-style: none;
      padding: 0;
      margin: 0; }
      .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li {
        display: inline;
        padding: 0;
        margin: 0; }
        .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li .shepherd-button {
          display: -moz-inline-stack;
          display: inline-block;
          vertical-align: middle;
          *vertical-align: auto;
          zoom: 1;
          *display: inline;
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          -ms-border-radius: 3px;
          -o-border-radius: 3px;
          border-radius: 3px;
          cursor: pointer;
          border: 0;
          margin: 0 0.5em 0 0;
          font-family: inherit;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          font-size: 0.8em;
          line-height: 1em;
          padding: 0.75em 2em;
          background: #222;
          color: white; }
          .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li .shepherd-button.shepherd-button-secondary {
            background: #000000;
            color: #888888; }
        .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li:last-child .shepherd-button {
          margin-right: 0; }

.shepherd-title {
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *
 *= animate-custom
 *= custom
 * shepherd-theme-woh


 */

/* SOLARIZE 
 * $base03:    #002b36;
 * $base02:    #073642;
 * $base01:    #586e75;
 * $base00:    #657b83;
 * $base0:     #839496;
 * $base1:     #93a1a1;
 * $base2:     #eee8d5;
 * $base3:     #fdf6e3;
 * $yellow:    #b58900;
 * $orange:    #cb4b16;
 * $red:       #dc322f;
 * $magenta:   #d33682;
 * $violet:    #6c71c4;
 * $blue:      #268bd2;
 * $cyan:      #2aa198;
 * $green:     #859900;
*/


.center{ text-align:center; }

@media screen and (min-width:979px) {
body {
 padding-top: 80px;
 }
}
