.first {
    width: 650px;
    height: 460px;
    border-radius: 2px;
    background: url(../images/animation/browser.png) 0 0 no-repeat;
    overflow: hidden;
    font-family: Arial,sans-serif;
}

.first > div{
    position: absolute;
}

.first .page-title,.first .search-title  {
    width: 240px;
    height: 12px;
    font-size: 11px;
    color: #111;
    top: 16px;
    left: 105px;
}

.first .search-title{
    opacity: 0;
}

.first .logo {
    width: 110px;
    height: 48px;
    background: url(../images/animation/logo.svg) 0 0 no-repeat;
    top: 170px;
    left: 270px;
}

.first .search-bar {
    width: 400px;
    height: 34px;
    top: 250px;
    left: 100px;
    border-radius: 2px;
    border: 1px solid #e6e6e6;
}

.first .search-text{
    width: 0;
    font-size: 12px;
    border-right: 1px solid #000;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    top: 261px;
    left: 112px;
    opacity: 0;

}

.first .search-btn {
    width: 105px;
    height: 36px;
    background: url(../images/animation/search_btn.png) 0 0 no-repeat;
    top: 250px;
    left: 460px;

}

.first .progress {
    width: 650px;
    height: 4px;
    background: #eaeaeb;
    border-top: 1px solid #d0d0d1;
    top: 75px;
    left: 0;
    opacity: 0;
}

.first .progress-bar {
    width: 0;
    height: 4px;
    background: #ffb500;
    border-top: 1px solid #e3a100;
    top: 75px;
    left: 0;
    opacity: 0;
}

.first .search-result{
    width: 568px;
    height: 375px;
    background: url(../images/animation/search_result.png) 0 0 no-repeat;
    top: 80px;
    left: 0;
    opacity: 0;
}

.first .attention{
    width: 375px;
    height: 120px;
    background: url(../images/animation/attention.png) 0 bottom no-repeat;
    top: 76px;
    left: 140px;
    box-shadow: 0 2px 25px 0 rgba(0,0,0,0.2);
}

.first .lock{
    width: 20px;
    height: 23px;
    background: url(../images/animation/lock.png) 0 0 no-repeat;
    top: 44px;
    left: 115px;
}

.first .screen{
    width: 650px;
    height: 385px;
    background: url(../images/animation/screen.png) 0 0 no-repeat;
    top: 76px;
    left: 0;
}

.first .ext-ico{
    width: 21px;
    height: 24px;
    background: url(../images/animation/ext_ico.png) 0 0 no-repeat;
    top: 11px;
    left: 83px;
}

.first .ext-screen{
    width: 650px;
    height: 485px;
    background: url(../images/animation/ext_screen.png) 0 0 no-repeat;
    top: 76px;
    left: 0;
}

.first .ext-widgets {
    width: 1235px;
    height: 277px;
    background: url(../images/animation/ext.png) 0 0 no-repeat;
    top: 148px;
    left: 22px;
}

.first .on {
    width: 14px;
    height: 13px;
    background: url(../images/animation/on.png) 0 0 no-repeat;
    top: 392px;
    left: 266px;
    -webkit-transform: scale(0);
}

.first .off {
    width: 13px;
    height: 13px;
    background: #fff;
    border: 2px solid #dedede;
    border-radius: 9px;
    top: 390px;
    left: 668px;
}

.first .slider {
    width: 30px;
    height: 13px;
    background: #f3f3f3;
    border: 2px solid #dedede;
    border-radius: 9px;
    top: 390px;
    left: 668px;
}

/*Fast browsing*/


.fast-browsing .page-title {
    -webkit-animation: page-title 10s;
    animation: page-title 10s;

}

.fast-browsing .search-title {
    -webkit-animation: search-title 10s;
    animation: search-title 10s;
}

.fast-browsing .logo {
    -webkit-animation: logo 10s;
    animation: logo 10s;
}

.fast-browsing .search-bar {
    -webkit-animation: search-bar 10s;
    animation: search-bar 10s;
}

.fast-browsing .search-text {
    -webkit-animation: search-text 10s;
    animation: search-text 10s;
}
.fast-browsing .search-btn {
    -webkit-animation: search-btn 10s;
    animation: search-btn 10s;
}
.fast-browsing .progress {
    -webkit-animation: progress 10s;
    animation: progress 10s;
}

.fast-browsing .progress-bar {
    -webkit-animation: progress-bar 10s;
    animation: progress-bar 10s;
}

.fast-browsing .search-result {
    -webkit-animation: search-result 10s;
    animation: search-result 10s;
}

.security .attention {
    -webkit-animation: attention 5s;
    animation: attention 5s;
}

.security .lock {
    -webkit-animation: lock 5s;
    animation: lock 5s;
}
.extension .ext-widgets {
    -webkit-animation: ext-widgets 5s;
    animation: ext-widgets 5s;
}

.extension .on {
    -webkit-animation: on 5s;
    animation: on 5s;
}

.extension .off {
    -webkit-animation: off 5s;
    animation: off 5s;
}
.extension .slider {
    -webkit-animation: slider 5s;
    animation: slider 5s;
}


@-webkit-keyframes logo {
    0% { opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes logo {
    0% { opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}

@-webkit-keyframes search-text {
    0% { width: 0; border-right: 0;opacity: 1}
    10% { width: 0; border-right: 1px solid #000; }
    11% { width: 7px; }
    12% { width: 11px; }
    13% { width: 17px; }
    14% { width: 26px; }
    15% { width: 32px; }
    16% { width: 43px; }
    17% { width: 46px; }
    18% { width: 55px; }
    19% { width: 57px; }
    20% { width: 61px; }
    21% { width: 67px; }
    22% { width: 71px; }
    23% { width: 77px; }
    24% { width: 84px; }
    25% { width: 93px; }
    26% { width: 99px; }
    27% { width: 102px; }
    28% { width: 109px; }
    29% { width: 115px; }
    30% { width: 122px; }
    31% { width: 126px; }
    32% { width: 135px; }
    33% { width: 142px; }
    34% { width: 149px; }
    35% { width: 155px; }
    36% { width: 162px; }
    37% { width: 169px; }
    38% { width: 179px; border-right: 1px solid #000; }
    39% { border: 0; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 0; width: 179px; border: 0;}
}

@keyframes search-text {
    0% { width: 0; border-right: 0;opacity: 1}
    10% { width: 0; border-right: 1px solid #000; }
    11% { width: 7px; }
    12% { width: 11px; }
    13% { width: 17px; }
    14% { width: 26px; }
    15% { width: 32px; }
    16% { width: 43px; }
    17% { width: 46px; }
    18% { width: 55px; }
    19% { width: 57px; }
    20% { width: 61px; }
    21% { width: 67px; }
    22% { width: 71px; }
    23% { width: 77px; }
    24% { width: 84px; }
    25% { width: 93px; }
    26% { width: 99px; }
    27% { width: 102px; }
    28% { width: 109px; }
    29% { width: 115px; }
    30% { width: 122px; }
    31% { width: 126px; }
    32% { width: 135px; }
    33% { width: 142px; }
    34% { width: 149px; }
    35% { width: 155px; }
    36% { width: 162px; }
    37% { width: 169px; }
    38% { width: 179px; border-right: 1px solid #000; }
    39% { border: 0; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 0; width: 179px; border: 0;}
}

@-webkit-keyframes search-btn {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { -webkit-transform: scale(1.0)}
    43% { -webkit-transform: scale(0.95)}
    46% { -webkit-transform: scale(1.0)}
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes search-btn {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { -webkit-transform: scale(1.0)}
    43% { -webkit-transform: scale(0.95)}
    46% { -webkit-transform: scale(1.0)}
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}


@-webkit-keyframes search-bar {
    0% { opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes search-bar {
    0% { opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}


@-webkit-keyframes page-title{
    0% { opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes page-title{
    0% { opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1;}
    61% { opacity: 0;}
    95% { opacity: 0;}
    100% { opacity: 1;}
}

@-webkit-keyframes search-title{
    0% { opacity: 0; }
    60% { opacity: 0;}
    61% { opacity: 1;}
    90% { opacity: 1;}
    95% { opacity: 0;}
    100% { opacity: 0;}
}

@keyframes search-title{
    0% { opacity: 0; }
    60% { opacity: 0;}
    61% { opacity: 1;}
    90% { opacity: 1;}
    95% { opacity: 0;}
    100% { opacity: 0;}
}

@-webkit-keyframes progress{
    0% { opacity: 0; }
    43% { opacity: 0; }
    46% { opacity: 1; }
    60% { opacity: 1; }
    61% { opacity: 0; }
    100% { opacity: 0;}
}

@keyframes progress{
    0% { opacity: 0; }
    43% { opacity: 0; }
    46% { opacity: 1; }
    60% { opacity: 1; }
    61% { opacity: 0; }
    100% { opacity: 0;}
}

@-webkit-keyframes progress-bar{
    0% { width: 0; opacity: 1}
    46% { width: 0; }
    60% { width: 650px; opacity: 1}
    61% { width: 650px; opacity: 0}
    100% { opacity: 0;}
}

@keyframes progress-bar{
    0% { width: 0; opacity: 1}
    46% { width: 0; }
    60% { width: 650px; opacity: 1}
    61% { width: 650px; opacity: 0}
    100% { opacity: 0;}
}

@-webkit-keyframes search-result{
    0% { opacity: 0}
    61% { opacity: 0}
    70% { opacity: 1}
    90% { opacity: 1}
    95% { opacity: 0}
    100% { opacity: 0}
}

@keyframes search-result{
    0% { opacity: 0}
    61% { opacity: 0}
    70% { opacity: 1}
    90% { opacity: 1}
    95% { opacity: 0}
    100% { opacity: 0}
}


@-webkit-keyframes attention{
    0% { height: 0}
    20% { height: 0}
    40% { height: 120px}
    100% { height: 120px}
}


@keyframes attention{
    0% { height: 0}
    20% { height: 0}
    40% { height: 120px}
    100% { height: 120px}
}

@-webkit-keyframes lock{
    10% { -webkit-transform: scale(1.0)}
    15% { -webkit-transform: scale(0.85)}
    20% { -webkit-transform: scale(1.0)}
}

@keyframes lock{
    10% { -webkit-transform: scale(1.0)}
    15% { -webkit-transform: scale(0.85)}
    20% { -webkit-transform: scale(1.0)}
}

@-webkit-keyframes ext-widgets {
    0% { left: 22px}
    10% { left: 22px}
    20% { left: -189px}
    30% { left: -189px}
    40% { left: -399px}
    50% { left: -399px}
    60% { left: -609px}
    100% { left: -609px}
}

@keyframes ext-widgets {
    0% { left: 22px}
    10% { left: 22px}
    20% { left: -189px}
    30% { left: -189px}
    40% { left: -399px}
    50% { left: -399px}
    60% { left: -609px}
    100% { left: -609px}
}

@-webkit-keyframes on {
    82% {-webkit-transform: scale(0) }
    85% {-webkit-transform: scale(1.0)}
    100% {-webkit-transform: scale(1.0)}
}

@keyframes on {
    82% {-webkit-transform: scale(0) }
    85% {-webkit-transform: scale(1.0)}
    100% {-webkit-transform: scale(1.0)}
}

@-webkit-keyframes off {
    30% { left: 668px}
    40% { left: 458px}
    50% { left: 458px}
    60% { left: 248px}
    70% { left: 248px; border-color:#dedede}
    80% { left: 265px; border-color: #3fb34f; -webkit-transform: scale(1.0)}
    82% {-webkit-transform: scale(0); }
    100% { left: 265px;-webkit-transform: scale(0)}
}

@keyframes off {
    30% { left: 668px}
    40% { left: 458px}
    50% { left: 458px}
    60% { left: 248px}
    70% { left: 248px; border-color:#dedede}
    80% { left: 265px; border-color: #3fb34f; -webkit-transform: scale(1.0)}
    82% {-webkit-transform: scale(0); }
    100% { left: 265px;-webkit-transform: scale(0)}
}

@-webkit-keyframes slider {
    30% { left: 668px}
    40% { left: 458px}
    50% { left: 458px}
    60% { left: 248px}
    70% { background: #f3f3f3; border-color: #dedede}
    80% { background: #3fb34f; border-color: #3fb34f}
    100% { background: #3fb34f; border-color: #3fb34f; left: 248px}
}

@keyframes slider {
    30% { left: 668px}
    40% { left: 458px}
    50% { left: 458px}
    60% { left: 248px}
    70% { background: #f3f3f3; border-color: #dedede}
    80% { background: #3fb34f; border-color: #3fb34f}
    100% { background: #3fb34f; border-color: #3fb34f; left: 248px}
}

/*Second section animation*/
.second {
    width: 940px;
    height: 439px;
    border-radius: 2px;
    box-shadow: 0 2px 25px 0 rgba(0,0,0,0.2);
    background: url(../images/animation/download_manager.png) 0 0 no-repeat;
    position: relative;
    overflow: hidden;
    font-family: Arial,sans-serif;
}

.second > div, .back > div {
    position: absolute;
}

.second .name {
    font-size: 13px;
    font-weight: bold;
    color: #333333;
    border-bottom: 1px solid transparent;
    top: 190px;
    left: 257px
}

.second .name.two {
    top: 25px;
    left: 67px;
    color: #3a7eb9;
    border-bottom: 1px solid #3a7eb9;
}

.second .name.three {
    top: 105px;
    left: 67px;
    color: #3a7eb9;
    border-bottom: 1px solid #3a7eb9;
}

.second .details {
    font-size: 10px;
    font-weight: bold;
    color: #3a7eb9;
    border-bottom: 1px dotted #3a7eb9;
    top: 237px;
    left: 257px
}

.second .details.two {
    top: 50px;
    left: 67px;
}

.second .details.three {
    top: 130px;
    left: 67px;
}

.second .play-now {
    width: 65px;
    height: 31px;
    padding: 0 15px 0 31px;
    background: #90c36d;
    background: -moz-linear-gradient(top,  #90c36d 0%, #5ba357 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#90c36d), color-stop(100%,#5ba357));
    background: -webkit-linear-gradient(top,  #90c36d 0%,#5ba357 100%);
    background: -o-linear-gradient(top,  #90c36d 0%,#5ba357 100%);
    background: -ms-linear-gradient(top,  #90c36d 0%,#5ba357 100%);
    background: linear-gradient(to bottom,  #90c36d 0%,#5ba357 100%);
    box-shadow: 0 1px 0 0 #428b3b, inset 0 0 0 1px rgba(255,255,255,0.1) ;
    border: 1px solid #468d40;
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    line-height: 32px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    top: 190px;
    right: 102px;
    opacity: 0;
    overflow: hidden;
}

.second .play-now:before {
    content: "";
    display: block;
    width: 8px;
    height: 13px;
    background: url(../images/animation/play.png) 0 0 no-repeat;
    position: absolute;
    top: 9px;
    left: 12px;
}

.second .pause-stop {
    width:80px;
    height: 34px;
    background: url(../images/animation/pause_stop.png) 0 0 no-repeat;
    top: 190px;
    right: 11px;
}

.second .progress {
    width: 585px;
    height: 10px;
    background: #e9e9e9;
    border-radius: 5px;
    top: 214px;
    left: 255px;
    overflow: hidden;
}

.second .progress-bar {
    width: 0;
    height: 10px;
    background: #6eb854;
    background: -moz-linear-gradient(top,  #6eb854 0%, #94d072 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6eb854), color-stop(100%,#94d072));
    background: -webkit-linear-gradient(top,  #6eb854 0%,#94d072 100%);
    background: -o-linear-gradient(top,  #6eb854 0%,#94d072 100%);
    background: -ms-linear-gradient(top,  #6eb854 0%,#94d072 100%);
    background: linear-gradient(to bottom,  #6eb854 0%,#94d072 100%);
    border-radius: 5px 0 0 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.second .open {
    width: 147px;
    height: 34px;
    background: url(../images/animation/open.png) 0 0 no-repeat;
    top: 190px;
    right: 11px;
    opacity: 0;
}

.second .back {
    width: 750px;
    height: 190px;
    background: url(../images/animation/down-m-bg.png) 0 0 no-repeat;
    top: 266px;
    right: -1px;
}


.second.down-manager  .progress {
    -webkit-animation: progress-s 15s infinite;
    animation: progress-s 15s infinite;
}

.second.down-manager  .progress-bar {
    -webkit-animation: progress-bar-s 15s infinite;
    animation: progress-bar-s 15s infinite;
}

.second.down-manager  .play-now {
    -webkit-animation: play-now 15s infinite;
    animation: play-now 15s infinite;
}

.second.down-manager  .pause-stop {
    -webkit-animation: pause-stop 15s infinite;
    animation: pause-stop 15s infinite;
}

.second.down-manager  .open {
    -webkit-animation: open 15s infinite;
    animation: open 15s infinite;
}

.second.down-manager > .name {
    -webkit-animation: name 15s infinite;
    animation: name 15s infinite;
}

.second.down-manager > .details {
    -webkit-animation: details 15s infinite;
    animation: details 15s infinite;
}

.second.down-manager > .back {
    -webkit-animation: back 15s infinite;
    animation: back 15s infinite;
}

@-webkit-keyframes progress-s {
    10% { width: 585px;}
    20% { width: 455px;}
    62% { opacity: 1}
    65% { opacity: 0}
    100% { width: 455px;opacity: 0}
}

@keyframes progress-s {
    10% { width: 585px;}
    20% { width: 455px;}
    62% { opacity: 1}
    65% { opacity: 0}
    100% { width: 455px;opacity: 0}
}

@-webkit-keyframes progress-bar-s {
    0% { width: 0}
    10% { width: 20%}
    20% { width: 20%}
    60% { width: 100%;}
    100% { width: 100%;}
}

@keyframes progress-bar-s {
    0% { width: 0}
    10% { width: 20%}
    20% { width: 20%}
    60% { width: 100%;}
    100% { width: 100%;}
}

@-webkit-keyframes play-now {
    0% { opacity: 0}
    20% { opacity: 0}
    22% { opacity: 1}
    65% { width: 65px; right: 102px}
    67% { width: 31px; right: 170px;}
    100% { width: 31px; right: 170px;opacity: 1}
}

@keyframes play-now {
    0% { opacity: 0}
    20% { opacity: 0}
    22% { opacity: 1}
    65% { width: 65px; right: 102px}
    67% { width: 31px; right: 170px;}
    100% { width: 31px; right: 170px;opacity: 1}
}

@-webkit-keyframes pause-stop {
    65% { opacity: 1}
    70% { opacity: 0}
    100% { opacity: 0}
}

@keyframes pause-stop {
    65% { opacity: 1}
    70% { opacity: 0}
    100% { opacity: 0}
}

@-webkit-keyframes open{
    67% { opacity: 0}
    70% { opacity: 1}
    100% { opacity: 1}
}

@keyframes open{
    67% { opacity: 0}
    70% { opacity: 1}
    100% { opacity: 1}
}

@-webkit-keyframes name{
    65% { color: #333333; border-bottom: 1px solid transparent}
    67% { color: #3a7eb9; border-bottom: 1px solid #3a7eb9}
    100% { color: #3a7eb9; border-bottom: 1px solid #3a7eb9}
}

@keyframes name{
    65% { color: #333333; border-bottom: 1px solid transparent}
    67% { color: #3a7eb9; border-bottom: 1px solid #3a7eb9}
    100% { color: #3a7eb9; border-bottom: 1px solid #3a7eb9}
}

@-webkit-keyframes details{
    65% { top: 237px}
    67% { top: 215px}
    100% { top: 215px}
}

@keyframes details{
    65% { top: 237px}
    67% { top: 215px}
    100% { top: 215px}
}

@-webkit-keyframes back{
    65% { top: 266px}
    67% { top: 246px}
    100% { top: 246px}
}

@keyframes back{
    65% { top: 266px}
    67% { top: 246px}
    100% { top: 246px}
}
/*Third animation start*/

.third {
    width: 460px;
    height: 460px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 25px 0 rgba(0,0,0,0.2);
    overflow: hidden;
}

.third > div{
    position: absolute;
}

.third .screen {
    width: 460px;
    height: 460px;
    top: 0;
    left: 0;
}

.third .slide {
    width: 460px;
    left: 0;
}

.third .screen.gr {
    background: url(../images/animation/grabber_screen.png) 0 0 no-repeat;
}

.third .slide.gr {
    background: url(../images/animation/grabber_slide.png) 0 0 no-repeat;
    height: 339px;
    top: 52px;

}

.third .screen.pr {
    background: url(../images/animation/proxy_screen.png) 0 0 no-repeat;
}

.third .slide.pr {
    height: 440px;
    top: 50px;
    background: url(../images/animation/proxy_slide.png) 0 0 no-repeat;
}

.third .switch-bg {
    width: 65px;
    height: 22px;
    top: 12px;
    right: 19px;
    border: 1px solid #999;
    border-radius: 2px;
    background: rgb(191,219,125);
    background: -moz-linear-gradient(top,  rgba(191,219,125,1) 0%, rgba(216,237,170,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(191,219,125,1)), color-stop(100%,rgba(216,237,170,1)));
    background: -webkit-linear-gradient(top,  rgba(191,219,125,1) 0%,rgba(216,237,170,1) 100%);
    background: -o-linear-gradient(top,  rgba(191,219,125,1) 0%,rgba(216,237,170,1) 100%);
    background: -ms-linear-gradient(top,  rgba(191,219,125,1) 0%,rgba(216,237,170,1) 100%);
    background: linear-gradient(to bottom,  rgba(191,219,125,1) 0%,rgba(216,237,170,1) 100%);
    opacity: 0;
}

.third .switch {
    width: 32px;
    height: 24px;
    background: url(../images/animation/switch.png) 0 0 no-repeat;
    top: 12px;
    right: 55px;
}

.third.grabber .slide {
    -webkit-animation: slide-grabber 8s infinite;
    animation: slide-grabber 7s infinite;
}

.third.proxy .switch-bg {
    -webkit-animation: switch-bg 8s infinite;
    animation: switch-bg 8s infinite;
}

.third.proxy .switch {
    -webkit-animation: switch 8s infinite;
    animation: switch 8s infinite;
}

.third.proxy .slide {
    -webkit-animation: slide-proxy 8s infinite;
    animation: slide-proxy 8s infinite;
}

@-webkit-keyframes slide-grabber {
    0% { background-position: 0 0}
    10% { background-position: 0 0}
    20% { background-position: 0 -250px}
    30% { background-position: 0 -250px}
    40% { background-position: 0 -500px}
    50% { background-position: 0 -500px}
    60% { background-position: 0 -750px}
    65% { background-position: 0 -750px}
    70% { background-position: 0 -792px}
    80% { background-position: 0 -792px}
    90% { background-position: 0 0}
    100% { background-position: 0 0}
}

@keyframes slide-grabber {
    0% { background-position: 0 0}
    10% { background-position: 0 0}
    20% { background-position: 0 -250px}
    30% { background-position: 0 -250px}
    40% { background-position: 0 -500px}
    50% { background-position: 0 -500px}
    60% { background-position: 0 -750px}
    65% { background-position: 0 -750px}
    70% { background-position: 0 -792px}
    80% { background-position: 0 -792px}
    90% { background-position: 0 0}
    100% { background-position: 0 0}
}


@-webkit-keyframes slide-proxy {
    0% { background-position: 0 0}
    10% { background-position: 0 0}
    20% { background-position: 0 -250px}
    30% { background-position: 0 -250px}
    40% { background-position: 0 -500px}
    50% { background-position: 0 -500px}
    60% { background-position: 0 -750px}
    65% { background-position: 0 -750px}
    70% { background-position: 0 -814px}
    80% { background-position: 0 -814px}
    90% { background-position: 0 0}
    100% { background-position: 0 0}
}

@keyframes slide-proxy {
    0% { background-position: 0 0}
    10% { background-position: 0 0}
    20% { background-position: 0 -250px}
    30% { background-position: 0 -250px}
    40% { background-position: 0 -500px}
    50% { background-position: 0 -500px}
    60% { background-position: 0 -750px}
    65% { background-position: 0 -750px}
    70% { background-position: 0 -814px}
    80% { background-position: 0 -814px}
    90% { background-position: 0 0}
    100% { background-position: 0 0}
}

@-webkit-keyframes switch-bg {
    0% { opacity: 0}
    10% { opacity: 0}
    15% {opacity: 1}
    100% { opacity: 1}
}

@keyframes switch-bg {
    0% { opacity: 0}
    10% { opacity: 0}
    15% {opacity: 1}
    100% { opacity: 1}
}

@-webkit-keyframes switch {
    0% { right: 55px}
    10% { right: 55px}
    15% {right: 18px}
    100% {right: 18px}
}

@keyframes switch {
    0% { right: 55px}
    10% { right: 55px}
    15% {right: 18px}
    100% {right: 18px}
}
