/* sticky header */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index:100;
}

.sticky + div,
.sticky + article {
    margin-top: 140px !important;
}

/*======================================================
glossy logo
========================================================*/
.glossy {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;

    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 1%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.85) 70%, rgba(255,255,255,0.85) 71%, rgba(255,255,255,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(1%,rgba(255,255,255,0.03)), color-stop(30%,rgba(255,255,255,0.85)), color-stop(50%,rgba(255,255,255,0.85)), color-stop(70%,rgba(255,255,255,0.85)), color-stop(71%,rgba(255,255,255,0.85)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* IE10+ */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */

    width: 15%;
    height: 100%;
    transform: skew(-30deg,0deg);
    -webkit-transform: skew(-30deg,0deg);
    -moz-transform: skew(-30deg,0deg);
    -ms-transform: skew(-30deg,0deg);
    -o-transform: skew(-30deg,0deg);

    /*  animating it  */
    animation: move 6s;
    animation-iteration-count: infinite;
    animation-delay: 1s;

    -webkit-animation: move 6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: 1s;

    -moz-transform: skew(-30deg,0deg);
    -moz-animation: move 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-delay: 1s;

    -ms-transform: skew(-30deg,0deg);
    -ms-animation: move 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-delay: 1s;

    -o-transform: skew(-30deg,0deg);
    -o-animation: move 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-delay: 1s;
}

@keyframes move {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

@-webkit-keyframes move {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

@-moz-keyframes move {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

@-ms-keyframes move {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

@-o-keyframes move {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

/*======================================================
glossy2 button with two animation
========================================================*/
.glossy2 {
    position: relative;
    overflow: hidden;
}

.glossy2:after{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
    transition: 0.5s;
    transition-delay: 0s;
}
.glossy2:hover:after{
    left: 100%;
}
.glossy2 span{
    position: absolute;
    display: block;
    transition: 0.5s ease;
}


.glossy2 span:nth-child(1) {
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
}
.glossy2:hover span:nth-child(1) {
    width: 100%;
    transform: translateX(100%);
}

.glossy2 span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #fff;
}
.glossy2:hover span:nth-child(3) {
    width: 100%;
    transform: translateX(-100%);
}

.glossy2 span:nth-child(2) {
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: #fff;
}
.glossy2:hover span:nth-child(2) {
    height: 100%;
    transform: translateY(100%);
}
.glossy2 span:nth-child(4) {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 0;
    background: #fff;
}
.glossy2:hover span:nth-child(4) {
    height: 100%;
    transform: translateY(-100%);
}


/*======================================================
glossy3 button
========================================================*/
.glossy3 {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;

    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 1%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.85) 70%, rgba(255,255,255,0.85) 71%, rgba(255,255,255,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(1%,rgba(255,255,255,0.03)), color-stop(30%,rgba(255,255,255,0.85)), color-stop(50%,rgba(255,255,255,0.85)), color-stop(70%,rgba(255,255,255,0.85)), color-stop(71%,rgba(255,255,255,0.85)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* IE10+ */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.03) 1%,rgba(255,255,255,0.6) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.85) 71%,rgba(255,255,255,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */

    width: 15%;
    height: 100%;
    transform: skew(-30deg,0deg);
    -webkit-transform: skew(-30deg,0deg);
    -moz-transform: skew(-30deg,0deg);
    -ms-transform: skew(-30deg,0deg);
    -o-transform: skew(-30deg,0deg);

    /*  animating it  */
    animation: glossy_ani_3 6s;
    animation-iteration-count: infinite;
    animation-delay: 1s;

    -webkit-animation: glossy_ani_3 6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: 1s;

    -moz-transform: skew(-30deg,0deg);
    -moz-animation: glossy_ani_3 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-delay: 1s;

    -ms-transform: skew(-30deg,0deg);
    -ms-animation: glossy_ani_3 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-delay: 1s;

    -o-transform: skew(-30deg,0deg);
    -o-animation: glossy_ani_3 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-delay: 1s;
}

@keyframes glossy_ani_3 {
    0%  { left: 0; opacity: 0; }
    5% {opacity: 0.2}
    20% {opacity: 0.0; left: 85%}
}

@-webkit-keyframes glossy_ani_3 {
    0%  { left: 0; opacity: 0; }
    5% {opacity: 0.2}
    20% {opacity: 0.0; left: 85%}
}

@-moz-keyframes glossy_ani_3 {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

@-ms-keyframes glossy_ani_3 {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

@-o-keyframes glossy_ani_3 {
    0%  { left: 0; opacity: 0; }
    15% {opacity: 0.4}
    30% {opacity: 0.0; left: 100%}
}

/*======================================================
triple icon_loader and icon_loader_small
========================================================*/
.icon_loader,
.icon_loader_small {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 40px;
    margin-top: -10px;
}
.icon_loader_small {
    height: 22px !important;
}
.icon_loader div,
.icon_loader_small div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #87c9ff;
    animation: icon_loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.icon_loader_small div {
    animation: icon_loader_small 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite ;
}
.icon_loader div:nth-child(1),
.icon_loader_small div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}
.icon_loader div:nth-child(2),
.icon_loader_small div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}
.icon_loader div:nth-child(3),
.icon_loader_small div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}
@keyframes icon_loader {
    0% {
        top: 6px;
        height: 45px;
    }
    50%, 100% {
        top: 19px;
        height: 20px;
    }
}
@keyframes icon_loader_small {
    0% {
        top: 0px;
        height: 30px;
    }
    50%, 100% {
        top: 10px;
        height: 15px;
    }
}
