* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	ms-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
}

.ccsk-header {
	margin: 0;
	padding-left: .25em;
	padding: .35em 0;
	overflow: hidden;
	border-top: 1px solid #3A3D42;
	border-left: 1px solid #3A3D42;
	border-right: 1px solid #3A3D42;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .75)));
}

.ccsk-input {
    display: inline-block;
    width: 200px;
    /*height: 34px;*/
    padding: 6px 12px;
    font-size: 1.1em;
    border: none;

    line-height: 1.42857143;
    color: #000;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s
}

.ccsk-input.placeholder {
	color: #999;
}

.ccsk-input.focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}

.ccsk-mask {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 8999;
	text-align: center;
	opacity: 0;
}

.ccsk-mask .loading-spinner {
  -webkit-animation-duration: 0.45s;
  animation-duration: 0.45s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate-forever;
  animation-name: rotate-forever;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 30%;
  margin-left: -15px;
}


@-webkit-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg); 
    transform: rotate(360deg);
  }
}

.loader-percentage {
	position: absolute;
	color: #333;
	opacity: 1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	display: inline-block;
	margin-left: -28px;
}

.ccsk-warp {
	display: none;
	position: fixed;
	left:0px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-top: 1px solid #3A3D42;
	border-left: 1px solid #3A3D42;
	border-right: 1px solid #3A3D42;
	background: #757D8A;
	background-image: -moz-linear-gradient(#003f7e, #e4e8f2);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#003f7e),to(#e4e8f2));
	box-shadow: 0 1px 0 rgba(255, 255, 255, .3) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .3) inset;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .3) inset;
	z-index: 9001;
}

.ccsk-img {
	position: relative;
	left: 0px;
	z-index: 9002;
}

.ccsk-area {
	position: absolute;
	z-index: 9003;
}

.ccsk-area .line {
	position: absolute;
	background: none;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	z-index: 9004;
}

.ccsk-area .line.line-top {
	width: 0;
	height: 2px;
	top: -2px;
	left: -110%;
}

.ccsk-area .line.line-right {
	width: 2px;
	height: 0;
	top: -110%;
	right: -2px;
}

.ccsk-area .line.line-bottom {
	width: 0;
	height: 2px;
	bottom: -2px;
	right: -110%;
}

.ccsk-area .line.line-left {
	width: 2px;
	height: 0;
	bottom: -110%;
	left: -2px;
}

.ccsk-area.touch {
	border: 2px solid rgba(102,175,233,.9);
	background: rgba(102,175,233,.9);
}

.ccsk-area.touch .line {
	background: rgba(102,175,233,.9);
}

.ccsk-area.touch .line.line-top {
	width: 100%;
	left: -2px;
}

.ccsk-area.touch .line.line-right {
	height: 100%;
	top: -2px;
}

.ccsk-area.touch .line.line-bottom {
	width: 100%;
	right: -2px;
}

.ccsk-area.touch .line.line-left {
	height: 100%;
	bottom: -2px;
}

.slide-in-up {
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.slide-in-up.ng-leave,.slide-in-up>.ng-leave {
	-webkit-transition: all ease-in-out 250ms;
	-moz-transition: all ease-in-out 250ms;
	transition: all ease-in-out 250ms;
}


.slide-in-up.ng-enter,.slide-in-up>.ng-enter {
	-webkit-transition: all cubic-bezier(0.1, .7, .1, 1) 400ms;
	-moz-transition: all cubic-bezier(0.1, .7, .1, 1) 400ms;
	transition: all cubic-bezier(0.1, .7, .1, 1) 400ms
}


.slide-in-up.ng-enter-active,.slide-in-up>.ng-enter-active {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.ccsk-plugin, .ccsk-warp {
	-webkit-touch-callout: none;
	-webkit-user-select: none
}