/* Morph Shape */
.StudentProgram .box_In {
    height: 100%;
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.morph-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.morph-shape svg {
    position: absolute;
    margin: 0;
    pointer-events: none;
}

/* Stack */
.stack ul {
    position: relative;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.stack ul li {
    position: absolute;
    width: 100%;
    opacity: 0;
}

ul.stack__images {
    width: 816px;
    height: 376px;
    margin-top: 30px;
    z-index: 10;
    -webkit-perspective: 1000px;
    -webkit-perspective-origin: 50% -100%;
    perspective: 1000px;
    perspective-origin: 50% -100%;
}

.stack__images li {
    width: 816px;
    height: 376px;
    top: 0;
    background-repeat: no-repeat;
    z-index: 1;
    -webkit-transform: translate3d(0, 0, -180px);
    transform: translate3d(0, 0, -180px);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.stack__images li img {
    display: block;
    margin: 88px auto;
    pointer-events: none;
}

.stack__images li:hover {
    cursor: -webkit-grab;
    cursor: grab;
}

.stack__images li:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.stack__images li.animate {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.stack__images li.move-back {
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1); /* older webkit */
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1.515);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1.515);
}

.stack__next {
    border: none;
    background: none;
    display: block;
    padding: 0;
    overflow: hidden;
    width: 54px;
    height: 43px;
    line-height: 45px;
    margin: 10px auto;
    background: url("../../Image/UICourse/Index/part8/arrow.png") no-repeat;
    position: relative;
    cursor: pointer;
    -webkit-animation: moveDown .8s linear infinite;
    animation: moveDown .8s linear infinite;
}
@keyframes moveDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.stack__next:hover {
    animation-play-state: paused;
}
.stack__next:focus {
    outline: none;
}
.stack__next span {
    position: absolute;
    top: 200%;
}

ul.stack__titles {
    width: 100%;
    height: 50px;
    text-align: center;
    font-family:fzltxh;
    font-size: 30px;
    color: #f47580;
}

/*.stack__titles blockquote {*/
    /*margin: 0;*/
    /*text-align: center;*/
/*}*/

.stack__titles li {
    pointer-events: none;
    -webkit-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
}

.stack__titles li.current {
    opacity: 1;
    pointer-events: auto;
}
/* Animations */
/*.morph-shape svg {*/
    /*fill: #ffd4b4;*/
    /*-webkit-transition: fill 0.1s ease-out;*/
    /*transition: fill 0.1s ease-out;*/
/*}*/

/*.navigate-next .morph-shape svg {
	fill: #ffa6b6;
	-webkit-transition-duration: 0.45s;
	transition-duration: 0.45s;
}*/

.container {
    margin-bottom: 40px;
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.6, 0, 0.5, 1);
    transition: transform 0.1s cubic-bezier(0.6, 0, 0.5, 1);
}

.StudentProgram.navigate-next .container {
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
    -webkit-transform: translate3d(0, 0, -600px);
    transform: translate3d(0, 0, -600px);
}