/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/* animation sets */

.img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}

/* move from / to  */

.pt-page-moveToLeft {
    -webkit-animation: moveToLeft .6s ease both;
    animation: moveToLeft .6s ease both;
}

.pt-page-moveFromLeft {
    -webkit-animation: moveFromLeft .6s ease both;
    animation: moveFromLeft .6s ease both;
}

.pt-page-moveToRight {
    -webkit-animation: moveToRight .6s ease both;
    animation: moveToRight .6s ease both;
}

.pt-page-moveFromRight {
    -webkit-animation: moveFromRight .6s ease both;
    animation: moveFromRight .6s ease both;
}

.pt-page-moveToTop {
    -webkit-animation: moveToTop .6s ease both;
    animation: moveToTop .6s ease both;
}

.pt-page-moveFromTop {
    -webkit-animation: moveFromTop .6s ease both;
    animation: moveFromTop .6s ease both;
}

.pt-page-moveToBottom {
    -webkit-animation: moveToBottom .6s ease both;
    animation: moveToBottom .6s ease both;
}

.pt-page-moveFromBottom {
    -webkit-animation: moveFromBottom .6s ease both;
    animation: moveFromBottom .6s ease both;
}

/* fade */

.pt-page-fade {
    -webkit-animation: fade .7s ease both;
    animation: fade .7s ease both;
}
.pt-page-fastfade {
    -webkit-animation: fade .1s ease both;
    animation:  fade .1s ease both;
}

.pt-page-noAnimation {
    -webkit-animation: noAnimation .1s ease both;
    animation:  noAnimation .1s ease both;
}

/* move from / to and fade */

.pt-page-moveToLeftFade {
    -webkit-animation: moveToLeftFade .7s ease both;
    animation: moveToLeftFade .7s ease both;
}

.pt-page-moveFromLeftFade {
    -webkit-animation: moveFromLeftFade .7s ease both;
    animation: moveFromLeftFade .7s ease both;
}

.pt-page-moveToRightFade {
    -webkit-animation: moveToRightFade .7s ease both;
    animation: moveToRightFade .7s ease both;
}

.pt-page-moveFromRightFade {
    -webkit-animation: moveFromRightFade .7s ease both;
    animation: moveFromRightFade .7s ease both;
}

.pt-page-moveToTopFade {
    -webkit-animation: moveToTopFade .7s ease both;
    animation: moveToTopFade .7s ease both;
}

.pt-page-moveFromTopFade {
    -webkit-animation: moveFromTopFade .7s ease both;
    animation: moveFromTopFade .7s ease both;
}

.pt-page-moveToBottomFade {
    -webkit-animation: moveToBottomFade .7s ease both;
    animation: moveToBottomFade .7s ease both;
}

.pt-page-moveFromBottomFade {
    -webkit-animation: moveFromBottomFade .7s ease both;
    animation: moveFromBottomFade .7s ease both;
}

/* move to with different easing */

.pt-page-moveToLeftEasing {
    -webkit-animation: moveToLeft .7s ease-in-out both;
    animation: moveToLeft .7s ease-in-out both;
}
.pt-page-moveToRightEasing {
    -webkit-animation: moveToRight .7s ease-in-out both;
    animation: moveToRight .7s ease-in-out both;
}
.pt-page-moveToTopEasing {
    -webkit-animation: moveToTop .7s ease-in-out both;
    animation: moveToTop .7s ease-in-out both;
}
.pt-page-moveToBottomEasing {
    -webkit-animation: moveToBottom .7s ease-in-out both;
    animation: moveToBottom .7s ease-in-out both;
}

/********************************* keyframes **************************************/

/* move from / to  */

@-webkit-keyframes moveToLeft {
    from { }
    to { -webkit-transform: translateX(-100%); }
}
@keyframes moveToLeft {
    from { }
    to { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

@-webkit-keyframes moveFromLeft {
    from { -webkit-transform: translateX(-100%); }
}
@keyframes moveFromLeft {
    from { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

@-webkit-keyframes moveToRight {
    from { }
    to { -webkit-transform: translateX(100%); }
}
@keyframes moveToRight {
    from { }
    to { -webkit-transform: translateX(100%); transform: translateX(100%); }
}

@-webkit-keyframes moveFromRight {
    from { -webkit-transform: translateX(100%); }
}
@keyframes moveFromRight {
    from { -webkit-transform: translateX(100%); transform: translateX(100%); }
}

@-webkit-keyframes moveToTop {
    from { }
    to { -webkit-transform: translateY(-100%); }
}
@keyframes moveToTop {
    from { }
    to { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

@-webkit-keyframes moveFromTop {
    from { -webkit-transform: translateY(-100%); }
}
@keyframes moveFromTop {
    from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

@-webkit-keyframes moveToBottom {
    from { }
    to { -webkit-transform: translateY(100%); }
}
@keyframes moveToBottom {
    from { }
    to { -webkit-transform: translateY(100%); transform: translateY(100%); }
}

@-webkit-keyframes moveFromBottom {
    from { -webkit-transform: translateY(100%); }
}
@keyframes moveFromBottom {
    from { -webkit-transform: translateY(100%); transform: translateY(100%); }
}

/* fade */

@-webkit-keyframes fade {
    from { }
    to { opacity: 0.3; }
}
@keyframes fade {
    from { }
    to { opacity: 0.3; }
}

@-webkit-keyframes noAnimation {
    to { }
    from { opacity: 1; }
}
@keyframes noAnimation {
    to { }
    from { opacity: 1; }
}

/* move from / to and fade */

@-webkit-keyframes moveToLeftFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateX(-100%); }
}
@keyframes moveToLeftFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

@-webkit-keyframes moveFromLeftFade {
    from { opacity: 0.3; -webkit-transform: translateX(-100%); }
}
@keyframes moveFromLeftFade {
    from { opacity: 0.3; -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

@-webkit-keyframes moveToRightFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateX(100%); }
}
@keyframes moveToRightFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateX(100%); transform: translateX(100%); }
}

@-webkit-keyframes moveFromRightFade {
    from { opacity: 0.3; -webkit-transform: translateX(100%); }
}
@keyframes moveFromRightFade {
    from { opacity: 0.3; -webkit-transform: translateX(100%); transform: translateX(100%); }
}

@-webkit-keyframes moveToTopFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateY(-100%); }
}
@keyframes moveToTopFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

@-webkit-keyframes moveFromTopFade {
    from { opacity: 0.3; -webkit-transform: translateY(-100%); }
}
@keyframes moveFromTopFade {
    from { opacity: 0.3; -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

@-webkit-keyframes moveToBottomFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateY(100%); }
}
@keyframes moveToBottomFade {
    from { }
    to { opacity: 0.3; -webkit-transform: translateY(100%); transform: translateY(100%); }
}

@-webkit-keyframes moveFromBottomFade {
    from { opacity: 0.3; -webkit-transform: translateY(100%); }
}
@keyframes moveFromBottomFade {
    from { opacity: 0.3; -webkit-transform: translateY(100%); transform: translateY(100%); }
}

/* scale and fade */

.pt-page-scaleDown {
    -webkit-animation: scaleDown .7s ease both;
    animation: scaleDown .7s ease both;
}

.pt-page-scaleUp {
    -webkit-animation: scaleUp .7s ease both;
    animation: scaleUp .7s ease both;
}

.pt-page-scaleUpDown {
    -webkit-animation: scaleUpDown .5s ease both;
    animation: scaleUpDown .5s ease both;
}

.pt-page-scaleDownUp {
    -webkit-animation: scaleDownUp .5s ease both;
    animation: scaleDownUp .5s ease both;
}

.pt-page-scaleDownCenter {
    -webkit-animation: scaleDownCenter .4s ease-in both;
    animation: scaleDownCenter .4s ease-in both;
}

.pt-page-scaleUpCenter {
    -webkit-animation: scaleUpCenter .4s ease-out both;
    animation: scaleUpCenter .4s ease-out both;
}

/********************************* keyframes **************************************/

/* scale and fade */

@-webkit-keyframes scaleDown {
    from { }
    to { opacity: 0; -webkit-transform: scale(.8); }
}
@keyframes scaleDown {
    from { }
    to { opacity: 0; -webkit-transform: scale(.8); transform: scale(.8); }
}

@-webkit-keyframes scaleUp {
    from { opacity: 0; -webkit-transform: scale(.8); }
}
@keyframes scaleUp {
    from { opacity: 0; -webkit-transform: scale(.8); transform: scale(.8); }
}

@-webkit-keyframes scaleUpDown {
    from { opacity: 0; -webkit-transform: scale(1.2); }
}
@keyframes scaleUpDown {
    from { opacity: 0; -webkit-transform: scale(1.2); transform: scale(1.2); }
}

@-webkit-keyframes scaleDownUp {
    from { }
    to { opacity: 0; -webkit-transform: scale(1.2); }
}
@keyframes scaleDownUp {
    from { }
    to { opacity: 0; -webkit-transform: scale(1.2); transform: scale(1.2); }
}

@-webkit-keyframes scaleDownCenter {
    from { }
    to { opacity: 0; -webkit-transform: scale(.7); }
}
@keyframes scaleDownCenter {
    from { }
    to { opacity: 0; -webkit-transform: scale(.7); transform: scale(.7); }
}

@-webkit-keyframes scaleUpCenter {
    from { opacity: 0; -webkit-transform: scale(.7); }
}
@keyframes scaleUpCenter {
    from { opacity: 0; -webkit-transform: scale(.7); transform: scale(.7); }
}

/* rotate sides first and scale */

.pt-page-rotateRightSideFirst {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateRightSideFirst .8s both ease-in;
    animation: rotateRightSideFirst .8s both ease-in;
}
.pt-page-rotateLeftSideFirst {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateLeftSideFirst .8s both ease-in;
    animation: rotateLeftSideFirst .8s both ease-in;
}
.pt-page-rotateTopSideFirst {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateTopSideFirst .8s both ease-in;
    animation: rotateTopSideFirst .8s both ease-in;
}
.pt-page-rotateBottomSideFirst {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateBottomSideFirst .8s both ease-in;
    animation: rotateBottomSideFirst .8s both ease-in;
}

/* flip */

.pt-page-flipOutRight {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipOutRight .5s both ease-in;
    animation: flipOutRight .5s both ease-in;
}
.pt-page-flipInLeft {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipInLeft .5s both ease-out;
    animation: flipInLeft .5s both ease-out;
}
.pt-page-flipOutLeft {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipOutLeft .5s both ease-in;
    animation: flipOutLeft .5s both ease-in;
}
.pt-page-flipInRight {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipInRight .5s both ease-out;
    animation: flipInRight .5s both ease-out;
}
.pt-page-flipOutTop {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipOutTop .5s both ease-in;
    animation: flipOutTop .5s both ease-in;
}
.pt-page-flipInBottom {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipInBottom .5s both ease-out;
    animation: flipInBottom .5s both ease-out;
}
.pt-page-flipOutBottom {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipOutBottom .5s both ease-in;
    animation: flipOutBottom .5s both ease-in;
}
.pt-page-flipInTop {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: flipInTop .5s both ease-out;
    animation: flipInTop .5s both ease-out;
}

/* rotate fall */

.pt-page-rotateFall {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: rotateFall 1s both ease-in;
    animation: rotateFall 1s both ease-in;
}

/* rotate newspaper */
.pt-page-rotateOutNewspaper {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: rotateOutNewspaper .5s both ease-in;
    animation: rotateOutNewspaper .5s both ease-in;
}
.pt-page-rotateInNewspaper {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: rotateInNewspaper .5s both ease-out;
    animation: rotateInNewspaper .5s both ease-out;
}

/* push */
.pt-page-rotatePushLeft {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotatePushLeft .8s both ease;
    animation: rotatePushLeft .8s both ease;
}
.pt-page-rotatePushRight {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotatePushRight .8s both ease;
    animation: rotatePushRight .8s both ease;
}
.pt-page-rotatePushTop {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotatePushTop .8s both ease;
    animation: rotatePushTop .8s both ease;
}
.pt-page-rotatePushBottom {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotatePushBottom .8s both ease;
    animation: rotatePushBottom .8s both ease;
}

/* pull */
.pt-page-rotatePullRight {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotatePullRight .5s both ease;
    animation: rotatePullRight .5s both ease;
}
.pt-page-rotatePullLeft {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotatePullLeft .5s both ease;
    animation: rotatePullLeft .5s both ease;
}
.pt-page-rotatePullTop {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotatePullTop .5s both ease;
    animation: rotatePullTop .5s both ease;
}
.pt-page-rotatePullBottom {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotatePullBottom .5s both ease;
    animation: rotatePullBottom .5s both ease;
}

/* fold */
.pt-page-rotateFoldRight {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateFoldRight .7s both ease;
    animation: rotateFoldRight .7s both ease;
}
.pt-page-rotateFoldLeft {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateFoldLeft .7s both ease;
    animation: rotateFoldLeft .7s both ease;
}
.pt-page-rotateFoldTop {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateFoldTop .7s both ease;
    animation: rotateFoldTop .7s both ease;
}
.pt-page-rotateFoldBottom {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateFoldBottom .7s both ease;
    animation: rotateFoldBottom .7s both ease;
}

/* unfold */
.pt-page-rotateUnfoldLeft {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateUnfoldLeft .7s both ease;
    animation: rotateUnfoldLeft .7s both ease;
}
.pt-page-rotateUnfoldRight {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateUnfoldRight .7s both ease;
    animation: rotateUnfoldRight .7s both ease;
}
.pt-page-rotateUnfoldTop {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateUnfoldTop .7s both ease;
    animation: rotateUnfoldTop .7s both ease;
}
.pt-page-rotateUnfoldBottom {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateUnfoldBottom .7s both ease;
    animation: rotateUnfoldBottom .7s both ease;
}

/* room walls */
.pt-page-rotateRoomLeftOut {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateRoomLeftOut .8s both ease;
    animation: rotateRoomLeftOut .8s both ease;
}
.pt-page-rotateRoomLeftIn {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateRoomLeftIn .8s both ease;
    animation: rotateRoomLeftIn .8s both ease;
}
.pt-page-rotateRoomRightOut {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateRoomRightOut .8s both ease;
    animation: rotateRoomRightOut .8s both ease;
}
.pt-page-rotateRoomRightIn {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateRoomRightIn .8s both ease;
    animation: rotateRoomRightIn .8s both ease;
}
.pt-page-rotateRoomTopOut {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateRoomTopOut .8s both ease;
    animation: rotateRoomTopOut .8s both ease;
}
.pt-page-rotateRoomTopIn {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateRoomTopIn .8s both ease;
    animation: rotateRoomTopIn .8s both ease;
}
.pt-page-rotateRoomBottomOut {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateRoomBottomOut .8s both ease;
    animation: rotateRoomBottomOut .8s both ease;
}
.pt-page-rotateRoomBottomIn {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateRoomBottomIn .8s both ease;
    animation: rotateRoomBottomIn .8s both ease;
}

/* cube */
.pt-page-rotateCubeLeftOut {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateCubeLeftOut .6s both ease-in;
    animation: rotateCubeLeftOut .6s both ease-in;
}
.pt-page-rotateCubeLeftIn {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateCubeLeftIn .6s both ease-in;
    animation: rotateCubeLeftIn .6s both ease-in;
}
.pt-page-rotateCubeRightOut {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateCubeRightOut .6s both ease-in;
    animation: rotateCubeRightOut .6s both ease-in;
}
.pt-page-rotateCubeRightIn {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateCubeRightIn .6s both ease-in;
    animation: rotateCubeRightIn .6s both ease-in;
}
.pt-page-rotateCubeTopOut {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateCubeTopOut .6s both ease-in;
    animation: rotateCubeTopOut .6s both ease-in;
}
.pt-page-rotateCubeTopIn {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateCubeTopIn .6s both ease-in;
    animation: rotateCubeTopIn .6s both ease-in;
}
.pt-page-rotateCubeBottomOut {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateCubeBottomOut .6s both ease-in;
    animation: rotateCubeBottomOut .6s both ease-in;
}
.pt-page-rotateCubeBottomIn {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateCubeBottomIn .6s both ease-in;
    animation: rotateCubeBottomIn .6s both ease-in;
}

/* carousel */
.pt-page-rotateCarouselLeftOut {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateCarouselLeftOut .8s both ease;
    animation: rotateCarouselLeftOut .8s both ease;
}
.pt-page-rotateCarouselLeftIn {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateCarouselLeftIn .8s both ease;
    animation: rotateCarouselLeftIn .8s both ease;
}
.pt-page-rotateCarouselRightOut {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: rotateCarouselRightOut .8s both ease;
    animation: rotateCarouselRightOut .8s both ease;
}
.pt-page-rotateCarouselRightIn {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: rotateCarouselRightIn .8s both ease;
    animation: rotateCarouselRightIn .8s both ease;
}
.pt-page-rotateCarouselTopOut {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateCarouselTopOut .8s both ease;
    animation: rotateCarouselTopOut .8s both ease;
}
.pt-page-rotateCarouselTopIn {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateCarouselTopIn .8s both ease;
    animation: rotateCarouselTopIn .8s both ease;
}
.pt-page-rotateCarouselBottomOut {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: rotateCarouselBottomOut .8s both ease;
    animation: rotateCarouselBottomOut .8s both ease;
}
.pt-page-rotateCarouselBottomIn {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: rotateCarouselBottomIn .8s both ease;
    animation: rotateCarouselBottomIn .8s both ease;
}

/* sides */
.pt-page-rotateSidesOut {
    -webkit-transform-origin: -50% 50%;
    transform-origin: -50% 50%;
    -webkit-animation: rotateSidesOut .5s both ease-in;
    animation: rotateSidesOut .5s both ease-in;
}
.pt-page-rotateSidesIn {
    -webkit-transform-origin: 150% 50%;
    transform-origin: 150% 50%;
    -webkit-animation: rotateSidesIn .5s both ease-out;
    animation: rotateSidesIn .5s both ease-out;
}

/* slide */
.pt-page-rotateSlideOut {
    -webkit-animation: rotateSlideOut 1s both ease;
    animation: rotateSlideOut 1s both ease;
}
.pt-page-rotateSlideIn {
    -webkit-animation: rotateSlideIn 1s both ease;
    animation: rotateSlideIn 1s both ease;
}

/********************************* keyframes **************************************/

/* rotate sides first and scale */

@-webkit-keyframes rotateRightSideFirst {
    0% { }
    40% { -webkit-transform: rotateY(15deg); opacity: .8; -webkit-animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); opacity:0; }
}
@keyframes rotateRightSideFirst {
    0% { }
    40% { -webkit-transform: rotateY(15deg); transform: rotateY(15deg); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); transform: scale(0.8) translateZ(-200px); opacity:0; }
}

@-webkit-keyframes rotateLeftSideFirst {
    0% { }
    40% { -webkit-transform: rotateY(-15deg); opacity: .8; -webkit-animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); opacity:0; }
}
@keyframes rotateLeftSideFirst {
    0% { }
    40% { -webkit-transform: rotateY(-15deg); transform: rotateY(-15deg); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); transform: scale(0.8) translateZ(-200px); opacity:0; }
}

@-webkit-keyframes rotateTopSideFirst {
    0% { }
    40% { -webkit-transform: rotateX(15deg); opacity: .8; -webkit-animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); opacity:0; }
}
@keyframes rotateTopSideFirst {
    0% { }
    40% { -webkit-transform: rotateX(15deg); transform: rotateX(15deg); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); transform: scale(0.8) translateZ(-200px); opacity:0; }
}

@-webkit-keyframes rotateBottomSideFirst {
    0% { }
    40% { -webkit-transform: rotateX(-15deg); opacity: .8; -webkit-animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); opacity:0; }
}
@keyframes rotateBottomSideFirst {
    0% { }
    40% { -webkit-transform: rotateX(-15deg); transform: rotateX(-15deg); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
    100% { -webkit-transform: scale(0.8) translateZ(-200px); transform: scale(0.8) translateZ(-200px); opacity:0; }
}

/* flip */

@-webkit-keyframes flipOutRight {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateY(90deg); opacity: 0.2; }
}
@keyframes flipOutRight {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateY(90deg); transform: translateZ(-1000px) rotateY(90deg); opacity: 0.2; }
}

@-webkit-keyframes flipInLeft {
    from { -webkit-transform: translateZ(-1000px) rotateY(-90deg); opacity: 0.2; }
}
@keyframes flipInLeft {
    from { -webkit-transform: translateZ(-1000px) rotateY(-90deg); transform: translateZ(-1000px) rotateY(-90deg); opacity: 0.2; }
}

@-webkit-keyframes flipOutLeft {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateY(-90deg); opacity: 0.2; }
}
@keyframes flipOutLeft {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateY(-90deg); transform: translateZ(-1000px) rotateY(-90deg); opacity: 0.2; }
}

@-webkit-keyframes flipInRight {
    from { -webkit-transform: translateZ(-1000px) rotateY(90deg); opacity: 0.2; }
}
@keyframes flipInRight {
    from { -webkit-transform: translateZ(-1000px) rotateY(90deg); transform: translateZ(-1000px) rotateY(90deg); opacity: 0.2; }
}

@-webkit-keyframes flipOutTop {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateX(90deg); opacity: 0.2; }
}
@keyframes flipOutTop {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateX(90deg); transform: translateZ(-1000px) rotateX(90deg); opacity: 0.2; }
}

@-webkit-keyframes flipInBottom {
    from { -webkit-transform: translateZ(-1000px) rotateX(-90deg); opacity: 0.2; }
}
@keyframes flipInBottom {
    from { -webkit-transform: translateZ(-1000px) rotateX(-90deg); transform: translateZ(-1000px) rotateX(-90deg); opacity: 0.2; }
}

@-webkit-keyframes flipOutBottom {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateX(-90deg); opacity: 0.2; }
}
@keyframes flipOutBottom {
    from { }
    to { -webkit-transform: translateZ(-1000px) rotateX(-90deg); transform: translateZ(-1000px) rotateX(-90deg); opacity: 0.2; }
}

@-webkit-keyframes flipInTop {
    from { -webkit-transform: translateZ(-1000px) rotateX(90deg); opacity: 0.2; }
}
@keyframes flipInTop {
    from { -webkit-transform: translateZ(-1000px) rotateX(90deg); transform: translateZ(-1000px) rotateX(90deg); opacity: 0.2; }
}

/* fall */

@-webkit-keyframes rotateFall {
    0% { -webkit-transform: rotateZ(0deg); }
    20% { -webkit-transform: rotateZ(10deg); -webkit-animation-timing-function: ease-out; }
    40% { -webkit-transform: rotateZ(17deg); }
    60% { -webkit-transform: rotateZ(16deg); }
    100% { -webkit-transform: translateY(100%) rotateZ(17deg); }
}
@keyframes rotateFall {
    0% { -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg); }
    20% { -webkit-transform: rotateZ(10deg); transform: rotateZ(10deg); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
    40% { -webkit-transform: rotateZ(17deg); transform: rotateZ(17deg); }
    60% { -webkit-transform: rotateZ(16deg); transform: rotateZ(16deg); }
    100% { -webkit-transform: translateY(100%) rotateZ(17deg); transform: translateY(100%) rotateZ(17deg); }
}

/* newspaper */

@-webkit-keyframes rotateOutNewspaper {
    from { }
    to { -webkit-transform: translateZ(-3000px) rotateZ(360deg); opacity: 0; }
}
@keyframes rotateOutNewspaper {
    from { }
    to { -webkit-transform: translateZ(-3000px) rotateZ(360deg); transform: translateZ(-3000px) rotateZ(360deg); opacity: 0; }
}

@-webkit-keyframes rotateInNewspaper {
    from { -webkit-transform: translateZ(-3000px) rotateZ(-360deg); opacity: 0; }
}
@keyframes rotateInNewspaper {
    from { -webkit-transform: translateZ(-3000px) rotateZ(-360deg); transform: translateZ(-3000px) rotateZ(-360deg); opacity: 0; }
}

/* push */

@-webkit-keyframes rotatePushLeft {
    from { }
    to { opacity: 0; -webkit-transform: rotateY(90deg); }
}
@keyframes rotatePushLeft {
    from { }
    to { opacity: 0; -webkit-transform: rotateY(90deg); transform: rotateY(90deg); }
}

@-webkit-keyframes rotatePushRight {
    from { }
    to { opacity: 0; -webkit-transform: rotateY(-90deg); }
}
@keyframes rotatePushRight {
    from { }
    to { opacity: 0; -webkit-transform: rotateY(-90deg); transform: rotateY(-90deg); }
}

@-webkit-keyframes rotatePushTop {
    from { }
    to { opacity: 0; -webkit-transform: rotateX(-90deg); }
}
@keyframes rotatePushTop {
    from { }
    to { opacity: 0; -webkit-transform: rotateX(-90deg); transform: rotateX(-90deg); }
}

@-webkit-keyframes rotatePushBottom {
    from { }
    to { opacity: 0; -webkit-transform: rotateX(90deg); }
}
@keyframes rotatePushBottom {
    from { }
    to { opacity: 0; -webkit-transform: rotateX(90deg); transform: rotateX(90deg); }
}

/* pull */

@-webkit-keyframes rotatePullRight {
    from { opacity: 0; -webkit-transform: rotateY(-90deg); }
}
@keyframes rotatePullRight {
    from { opacity: 0; -webkit-transform: rotateY(-90deg); transform: rotateY(-90deg); }
}

@-webkit-keyframes rotatePullLeft {
    from { opacity: 0; -webkit-transform: rotateY(90deg); }
}
@keyframes rotatePullLeft {
    from { opacity: 0; -webkit-transform: rotateY(90deg); transform: rotateY(90deg); }
}

@-webkit-keyframes rotatePullTop {
    from { opacity: 0; -webkit-transform: rotateX(-90deg); }
}
@keyframes rotatePullTop {
    from { opacity: 0; -webkit-transform: rotateX(-90deg); transform: rotateX(-90deg); }
}

@-webkit-keyframes rotatePullBottom {
    from { opacity: 0; -webkit-transform: rotateX(90deg); }
}
@keyframes rotatePullBottom {
    from { opacity: 0; -webkit-transform: rotateX(90deg); transform: rotateX(90deg); }
}

/* fold */

@-webkit-keyframes rotateFoldRight {
    from { }
    to { opacity: 0; -webkit-transform: translateX(100%) rotateY(90deg); }
}
@keyframes rotateFoldRight {
    from { }
    to { opacity: 0; -webkit-transform: translateX(100%) rotateY(90deg); transform: translateX(100%) rotateY(90deg); }
}

@-webkit-keyframes rotateFoldLeft {
    from { }
    to { opacity: 0; -webkit-transform: translateX(-100%) rotateY(-90deg); }
}
@keyframes rotateFoldLeft {
    from { }
    to { opacity: 0; -webkit-transform: translateX(-100%) rotateY(-90deg); transform: translateX(-100%) rotateY(-90deg); }
}

@-webkit-keyframes rotateFoldTop {
    from { }
    to { opacity: 0; -webkit-transform: translateY(-100%) rotateX(90deg); }
}
@keyframes rotateFoldTop {
    from { }
    to { opacity: 0; -webkit-transform: translateY(-100%) rotateX(90deg); transform: translateY(-100%) rotateX(90deg); }
}

@-webkit-keyframes rotateFoldBottom {
    from { }
    to { opacity: 0; -webkit-transform: translateY(100%) rotateX(-90deg); }
}
@keyframes rotateFoldBottom {
    from { }
    to { opacity: 0; -webkit-transform: translateY(100%) rotateX(-90deg); transform: translateY(100%) rotateX(-90deg); }
}

/* unfold */

@-webkit-keyframes rotateUnfoldLeft {
    from { opacity: 0; -webkit-transform: translateX(-100%) rotateY(-90deg); }
}
@keyframes rotateUnfoldLeft {
    from { opacity: 0; -webkit-transform: translateX(-100%) rotateY(-90deg); transform: translateX(-100%) rotateY(-90deg); }
}

@-webkit-keyframes rotateUnfoldRight {
    from { opacity: 0; -webkit-transform: translateX(100%) rotateY(90deg); }
}
@keyframes rotateUnfoldRight {
    from { opacity: 0; -webkit-transform: translateX(100%) rotateY(90deg); transform: translateX(100%) rotateY(90deg); }
}

@-webkit-keyframes rotateUnfoldTop {
    from { opacity: 0; -webkit-transform: translateY(-100%) rotateX(90deg); }
}
@keyframes rotateUnfoldTop {
    from { opacity: 0; -webkit-transform: translateY(-100%) rotateX(90deg); transform: translateY(-100%) rotateX(90deg); }
}

@-webkit-keyframes rotateUnfoldBottom {
    from { opacity: 0; -webkit-transform: translateY(100%) rotateX(-90deg); }
}
@keyframes rotateUnfoldBottom {
    from { opacity: 0; -webkit-transform: translateY(100%) rotateX(-90deg); transform: translateY(100%) rotateX(-90deg); }
}

/* room walls */

@-webkit-keyframes rotateRoomLeftOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(-100%) rotateY(90deg); }
}
@keyframes rotateRoomLeftOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(-100%) rotateY(90deg); transform: translateX(-100%) rotateY(90deg); }
}

@-webkit-keyframes rotateRoomLeftIn {
    from { opacity: .3; -webkit-transform: translateX(100%) rotateY(-90deg); }
}
@keyframes rotateRoomLeftIn {
    from { opacity: .3; -webkit-transform: translateX(100%) rotateY(-90deg); transform: translateX(100%) rotateY(-90deg); }
}

@-webkit-keyframes rotateRoomRightOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(100%) rotateY(-90deg); }
}
@keyframes rotateRoomRightOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(100%) rotateY(-90deg); transform: translateX(100%) rotateY(-90deg); }
}

@-webkit-keyframes rotateRoomRightIn {
    from { opacity: .3; -webkit-transform: translateX(-100%) rotateY(90deg); }
}
@keyframes rotateRoomRightIn {
    from { opacity: .3; -webkit-transform: translateX(-100%) rotateY(90deg); transform: translateX(-100%) rotateY(90deg); }
}

@-webkit-keyframes rotateRoomTopOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(-100%) rotateX(-90deg); }
}
@keyframes rotateRoomTopOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(-100%) rotateX(-90deg); transform: translateY(-100%) rotateX(-90deg); }
}

@-webkit-keyframes rotateRoomTopIn {
    from { opacity: .3; -webkit-transform: translateY(100%) rotateX(90deg); }
}
@keyframes rotateRoomTopIn {
    from { opacity: .3; -webkit-transform: translateY(100%) rotateX(90deg); transform: translateY(100%) rotateX(90deg); }
}

@-webkit-keyframes rotateRoomBottomOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(100%) rotateX(90deg); }
}
@keyframes rotateRoomBottomOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(100%) rotateX(90deg); transform: translateY(100%) rotateX(90deg); }
}

@-webkit-keyframes rotateRoomBottomIn {
    from { opacity: .3; -webkit-transform: translateY(-100%) rotateX(-90deg); }
}
@keyframes rotateRoomBottomIn {
    from { opacity: .3; -webkit-transform: translateY(-100%) rotateX(-90deg); transform: translateY(-100%) rotateX(-90deg); }
}

/* cube */

@-webkit-keyframes rotateCubeLeftOut {
    0% { }
    50% { -webkit-animation-timing-function: ease-out;  -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg); }
    100% { opacity: .3; -webkit-transform: translateX(-100%) rotateY(-90deg); }
}
@keyframes rotateCubeLeftOut {
    0% { }
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out;  -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg);  transform: translateX(-50%) translateZ(-200px) rotateY(-45deg); }
    100% { opacity: .3; -webkit-transform: translateX(-100%) rotateY(-90deg); transform: translateX(-100%) rotateY(-90deg); }
}

@-webkit-keyframes rotateCubeLeftIn {
    0% { opacity: .3; -webkit-transform: translateX(100%) rotateY(90deg); }
    50% { -webkit-animation-timing-function: ease-out;  -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg); }
}
@keyframes rotateCubeLeftIn {
    0% { opacity: .3; -webkit-transform: translateX(100%) rotateY(90deg); transform: translateX(100%) rotateY(90deg); }
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out;  -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg);  transform: translateX(50%) translateZ(-200px) rotateY(45deg); }
}

@-webkit-keyframes rotateCubeRightOut {
    0% { }
    50% { -webkit-animation-timing-function: ease-out; -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg); }
    100% { opacity: .3; -webkit-transform: translateX(100%) rotateY(90deg); }
}
@keyframes rotateCubeRightOut {
    0% { }
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; -webkit-transform: translateX(50%) translateZ(-200px) rotateY(45deg); transform: translateX(50%) translateZ(-200px) rotateY(45deg); }
    100% { opacity: .3; -webkit-transform: translateX(100%) rotateY(90deg); transform: translateX(100%) rotateY(90deg); }
}

@-webkit-keyframes rotateCubeRightIn {
    0% { opacity: .3; -webkit-transform: translateX(-100%) rotateY(-90deg); }
    50% { -webkit-animation-timing-function: ease-out; -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg); }
}
@keyframes rotateCubeRightIn {
    0% { opacity: .3; -webkit-transform: translateX(-100%) rotateY(-90deg); transform: translateX(-100%) rotateY(-90deg); }
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; -webkit-transform: translateX(-50%) translateZ(-200px) rotateY(-45deg); transform: translateX(-50%) translateZ(-200px) rotateY(-45deg); }
}

@-webkit-keyframes rotateCubeTopOut {
    0% { }
    50% { -webkit-animation-timing-function: ease-out; -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg); }
    100% { opacity: .3; -webkit-transform: translateY(-100%) rotateX(90deg); }
}
@keyframes rotateCubeTopOut {
    0% {}
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg); transform: translateY(-50%) translateZ(-200px) rotateX(45deg); }
    100% { opacity: .3; -webkit-transform: translateY(-100%) rotateX(90deg); transform: translateY(-100%) rotateX(90deg); }
}

@-webkit-keyframes rotateCubeTopIn {
    0% { opacity: .3; -webkit-transform: translateY(100%) rotateX(-90deg); }
    50% { -webkit-animation-timing-function: ease-out; -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg); }
}
@keyframes rotateCubeTopIn {
    0% { opacity: .3; -webkit-transform: translateY(100%) rotateX(-90deg); transform: translateY(100%) rotateX(-90deg); }
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg); transform: translateY(50%) translateZ(-200px) rotateX(-45deg); }
}

@-webkit-keyframes rotateCubeBottomOut {
    0% { }
    50% { -webkit-animation-timing-function: ease-out; -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg); }
    100% { opacity: .3; -webkit-transform: translateY(100%) rotateX(-90deg); }
}
@keyframes rotateCubeBottomOut {
    0% { }
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; -webkit-transform: translateY(50%) translateZ(-200px) rotateX(-45deg); transform: translateY(50%) translateZ(-200px) rotateX(-45deg); }
    100% { opacity: .3; -webkit-transform: translateY(100%) rotateX(-90deg); transform: translateY(100%) rotateX(-90deg); }
}

@-webkit-keyframes rotateCubeBottomIn {
    0% { opacity: .3; -webkit-transform: translateY(-100%) rotateX(90deg); }
    50% { -webkit-animation-timing-function: ease-out; -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg); }
}
@keyframes rotateCubeBottomIn {
    0% { opacity: .3; -webkit-transform: translateY(-100%) rotateX(90deg); transform: translateY(-100%) rotateX(90deg); }
    50% { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; -webkit-transform: translateY(-50%) translateZ(-200px) rotateX(45deg); transform: translateY(-50%) translateZ(-200px) rotateX(45deg); }
}

/* carousel */

@-webkit-keyframes rotateCarouselLeftOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(-150%) scale(.4) rotateY(-65deg); }
}
@keyframes rotateCarouselLeftOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(-150%) scale(.4) rotateY(-65deg); transform: translateX(-150%) scale(.4) rotateY(-65deg); }
}

@-webkit-keyframes rotateCarouselLeftIn {
    from { opacity: .3; -webkit-transform: translateX(200%) scale(.4) rotateY(65deg); }
}
@keyframes rotateCarouselLeftIn {
    from { opacity: .3; -webkit-transform: translateX(200%) scale(.4) rotateY(65deg); transform: translateX(200%) scale(.4) rotateY(65deg); }
}

@-webkit-keyframes rotateCarouselRightOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(200%) scale(.4) rotateY(65deg); }
}
@keyframes rotateCarouselRightOut {
    from { }
    to { opacity: .3; -webkit-transform: translateX(200%) scale(.4) rotateY(65deg); transform: translateX(200%) scale(.4) rotateY(65deg); }
}

@-webkit-keyframes rotateCarouselRightIn {
    from { opacity: .3; -webkit-transform: translateX(-200%) scale(.4) rotateY(-65deg); }
}
@keyframes rotateCarouselRightIn {
    from { opacity: .3; -webkit-transform: translateX(-200%) scale(.4) rotateY(-65deg); transform: translateX(-200%) scale(.4) rotateY(-65deg); }
}

@-webkit-keyframes rotateCarouselTopOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(-200%) scale(.4) rotateX(65deg); }
}
@keyframes rotateCarouselTopOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(-200%) scale(.4) rotateX(65deg); transform: translateY(-200%) scale(.4) rotateX(65deg); }
}

@-webkit-keyframes rotateCarouselTopIn {
    from { opacity: .3; -webkit-transform: translateY(200%) scale(.4) rotateX(-65deg); }
}
@keyframes rotateCarouselTopIn {
    from { opacity: .3; -webkit-transform: translateY(200%) scale(.4) rotateX(-65deg); transform: translateY(200%) scale(.4) rotateX(-65deg); }
}

@-webkit-keyframes rotateCarouselBottomOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(200%) scale(.4) rotateX(-65deg); }
}
@keyframes rotateCarouselBottomOut {
    from { }
    to { opacity: .3; -webkit-transform: translateY(200%) scale(.4) rotateX(-65deg); transform: translateY(200%) scale(.4) rotateX(-65deg); }
}

@-webkit-keyframes rotateCarouselBottomIn {
    from { opacity: .3; -webkit-transform: translateY(-200%) scale(.4) rotateX(65deg); }
}
@keyframes rotateCarouselBottomIn {
    from { opacity: .3; -webkit-transform: translateY(-200%) scale(.4) rotateX(65deg); transform: translateY(-200%) scale(.4) rotateX(65deg); }
}

/* sides */

@-webkit-keyframes rotateSidesOut {
    from { }
    to { opacity: 0; -webkit-transform: translateZ(-500px) rotateY(90deg); }
}
@keyframes rotateSidesOut {
    from { }
    to { opacity: 0; -webkit-transform: translateZ(-500px) rotateY(90deg); transform: translateZ(-500px) rotateY(90deg); }
}

@-webkit-keyframes rotateSidesIn {
    from { opacity: 0; -webkit-transform: translateZ(-500px) rotateY(-90deg); }
}
@keyframes rotateSidesIn {
    from { opacity: 0; -webkit-transform: translateZ(-500px) rotateY(-90deg); transform: translateZ(-500px) rotateY(-90deg); }
}

/* slide */

@-webkit-keyframes rotateSlideOut {
    0% { }
    25% { opacity: .5; -webkit-transform: translateZ(-500px); }
    75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
    100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes rotateSlideOut {
    0% { }
    25% { opacity: .5; -webkit-transform: translateZ(-500px); transform: translateZ(-500px); }
    75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); transform: translateZ(-500px) translateX(-200%); }
    100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); transform: translateZ(-500px) translateX(-200%); }
}

@-webkit-keyframes rotateSlideIn {
    0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
    75% { opacity: .5; -webkit-transform: translateZ(-500px); }
    100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@keyframes rotateSlideIn {
    0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); transform: translateZ(-500px) translateX(200%); }
    75% { opacity: .5; -webkit-transform: translateZ(-500px); transform: translateZ(-500px); }
    100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); transform: translateZ(0) translateX(0); }
}

/* animation delay classes */

.pt-page-delay100 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}
.pt-page-delay180 {
    -webkit-animation-delay: .180s;
    animation-delay: .180s;
}
.pt-page-delay200 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.pt-page-delay300 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
.pt-page-delay400 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}
.pt-page-delay500 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
.pt-page-delay700 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}
.pt-page-delay1000 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

html, body { height: 100%; background-color: #eee}

.pt-perspective {
    position: relative;
    width: 375px;
    height: 667px;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    perspective: 1200px;
    overflow: hidden;
    margin: 0 auto;
}

.pt-page {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 10000px;
    left: 0;
    visibility: hidden;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.pt-page-current,
.no-js .pt-page {
    top: 0;
    visibility: visible;
    z-index: 1;
    background-color: #eee;
}

.no-js body {
    overflow: auto;
}

.pt-page-ontop {
    z-index: 999;
}

.pt-footer{
    position: sticky;
    bottom: 0;
    max-width: 100vw;
    border-top: 1px solid #ddd;
}

/**
 *  PROTOSTRAP CSS
 *   v. 3.3
 */

@charset "utf-8";

body {
    font-size: 16px;
    padding: 0 0 40px;
}

.container, .container-fluid  {
    padding-left: 20px;
    padding-right: 10px;
}


/* navbar*/

.navbar-collapse {
    max-height: none;
}


/* Flexbox */


.flexbox{
    display:flex;
    display: -webkit-flex;
    justify-content: space-between;
}

.flexbox.padded > div {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    border: 10px solid transparent;
}

.flexbox.padded > div:first-child {
    border-left: 0 solid transparent;
}

.flexbox.padded > div:last-child {
    border-right: 0 solid transparent;
}

.flex-1 {
    flex: 1  0px;
    -webkit-flex: 1  0px;
}
.flex-2 {
    flex: 2  0px;
    -webkit-flex: 2  0px;
}
.flex-3 {
    flex: 3  0px;
    -webkit-flex: 3  0px;
}
.flex-4 {
    flex: 4  0px;
    -webkit-flex: 4  0px;
}
.flex-5 {
    flex: 5  0px;
    -webkit-flex: 5  0px;
}
.flex-6 {
    flex: 6  0px;
    -webkit-flex: 6  0px;
}
.flex-7 {
    flex: 7  0px;
    -webkit-flex: 7  0px;
}
.flex-8 {
    flex: 8  0px;
    -webkit-flex: 8  0px;
}
.flex-9 {
    flex: 9  0px;
    -webkit-flex: 9  0px;
}
.flex-10 {
    flex: 10  0px;
    -webkit-flex: 10  0px;
}
.flex-11 {
    flex: 11  0px;
    -webkit-flex: 11  0px;
}


.fixed-size-20, .fix20{
    width: 20px;
}
.fixed-size-40, .fix40{
    width: 40px;
}
.fixed-size-60, .fix60{
    width: 60px;
}
.fixed-size-80, .fix80{
    width: 80px;
}
.fixed-size-100, .fix100{
    width: 100px;
}
.fixed-size-120, .fix120{
    width: 120px;
}
.fixed-size-140, .fix140{
    width: 140px;
}
.fixed-size-160, .fix160{
    width: 160px;
}
.fixed-size-180, .fix180{
    width: 180px;
}
.fixed-size-200, .fix200{
    width: 200px;
}

.p25{
    width: 25%;
}
.p50{
    width: 50%;
}
.p75{
    width: 75%;
}
.p33{
    width: 33%;
}
.p66{
    width: 66%;
}


/*
 * COMMON STYLES
 **/

.topbar, .tabbar {
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  width: 100%;
}

.topbar.topbar-current, .tabbar.tabbar-current {
  visibility: visible;

}



/**
 * TOPBAR Styles
 **/

.topbarContainer {
  background-color: #e7e7e7;
  color: #333;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  border-bottom: none;
  height: 44px;
  top: 0;
  left: 0; }

.topbarContainerPlain {
  background-color: none;
  color: #757575;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  border-bottom: none;
  height: 44px;
  top: 0;
  left: 0; }

  .topbar {
    border-bottom: 1px solid #c5c5c5;
  }

.topbar-black {
    background-color: #333;
    color: #fff;
    border-bottom: 2px solid black;
}

.topbar-black .icon.topbar-icon{
    color: #fff;
}


.topbar-label {
  padding-top: 7px;
  font-size: 16px; }

.topbar-label.topbar-center {
  font-size: 18px; }

/* NEEDED? */
.topbarContainer .topbar-label a {
    /*originally white*/
    color: red;
}

.topbar .btn {
  padding: 0 6px; }


.btn.btn-topbar {
  background-color: #233a77;
  border-color: #233a77;
  padding: 0 20px;
  height: 26px;
  margin-top: 8px;
  margin-left: 5px; }

.topbar .btn.btn-topbar-text {
  font-size: 16px;
  padding-top: 7px; }



.topbar-badge {
  background-color: #d00;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 0.8em;
  line-height: 16px;
  max-height: 16px;
  min-height: 16px;
  min-width: 16px;
  padding: 0 5px;
  position: absolute;
  right: 8px;
  top: 5px;
  vertical-align: middle;
  z-index: 1100; }

.topbar-badge-left {
  background-color: #d00;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 0.8em;
  line-height: 16px;
  max-height: 16px;
  min-height: 16px;
  min-width: 16px;
  padding: 0 5px;
  position: absolute;
  right: 56px;
  top: 5px;
  vertical-align: middle;
  z-index: 1100; }

.topbar-badge-home {
  background-color: #d00;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 0.8em;
  left: -16px;
  line-height: 16px;
  max-height: 16px;
  min-height: 16px;
  min-width: 16px;
  padding: 0 5px;
  position: relative;
  top: -16px;
  vertical-align: middle;
  z-index: 1100; }

.icon.topbar-icon {
  color: #333;
  font-size: 28px;
  padding: 7px 10px 0; }


.topbar-title{
    font-size: 18px;
    margin-top: 10px;
    display: inline-block;
    vertical-align: middle;
}

/*NEEDED?*/
.topbar-fixed{
    padding: 0 10px;
    margin-top: 10px;
    color: #007aff;
}

.topbar-fixed .icon{
    font-size: 36px;
    line-height: 24px;
}



/** END TOPBAR Styles **/

/**
 * TABBAR Styles
 **/

.tabnavbar.navbar-fixed-bottom{
    height: 46px;
}

.tabbar a, .tabbar a:hover, .tabbar a:focus {
  color: #757575;
  display: block;
  text-decoration: none; }

.tabbar a.active, .tabbar a.active:hover, .tabbar a.active:focus {
  color: #233a77;
  display: block;
  text-decoration: none; }

.tabbar-badge {
  background-color: #d00;
  border-radius: 8px;
  color: white;
  display: table;
  font-size: 11px;
  left: 42px;
  line-height: 16px;
  max-height: 16px;
  min-height: 16px;
  min-width: 16px;
  padding: 0 4px;
  position: relative;
  top: -50px;
  vertical-align: middle;
  z-index: 1100; }


.tabbar .flexbox{
    height: 48px;
}

.tabbar-icon  {
    display: block;
}

/*.tabbar-item  .icon, .button-box  .icon{

    font-size: 36px;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    line-height: 24px;
    text-rendering: auto;
    transform: translate(0px, 0px);
    position: relative;
    top:-3px;
}*/


.tabbar-label {
  bottom: 7px;
  display: block;
  font-size: 10px;
  position: relative; }

/*.tabbar-item {
    padding-top:4px;
}*/

.tabbar-item a , .tabbar-item a:hover , .tabbar-item a:focus  {
    text-decoration: none;
    color: #777;
    display: block;
}
.tabbar-item a.active , .tabbar-item a.active:hover , .tabbar-item a.active:focus  {
    text-decoration: none;
    color: #007aff;
}

.tabbar .btn {
    border-radius: 0;
    padding: 10px 12px;
    font-size: 16px;
}

/** END TABBAR Styles **/

/**********************/
/* CLASSES FOR MOBILE */

/* Add Item Popover */

.fullwidth.popover, .fullwidth.popover-content{
    padding:0;
}

.fullwidth.popover{
    width: 100%;
}

.fullwidth.popover div.list-group{
    margin: 0;
}

.fullwidth.popover div.list-group a:first-child{
    border-top: none;
}
.fullwidth.popover div.list-group a:last-child{
    border-bottom: none;
}

/* Options Dropdown */

.btn-group.open .optionsDropdown.dropdown-toggle {
    box-shadow: none;
    background-color: #eee;
    border:1px solid rgba(0, 0, 0, 0.15)
}

.optionsDropdown {
    background-color: #fff;
    padding: 0 10px ;
    max-height: 33px;
}
.optionsDropdown .icon {
    position: relative;
    top: -10px;
    font-size: 36px;
    line-heigth: 24px;
}

/* Touchfriendly list */

.list-touchfriendly > div, .topborder {
    border-top: 1px solid #d3d3d3;
}

.list-touchfriendly > div:last-child, .bottomborder {
    border-bottom: 1px solid #d3d3d3;
}

.list-touchfriendly > div > div{
    min-height: 44px;
    padding:5px;
    line-height: 30px;
    vertical-align: middle;
}

/* Iconicon Icons */
/* Iconicon Icons */


.icon {
    font-size: 24px;
    margin-top: 3px;
    margin-bottom: 4px
}
.tabbar .icon {
    font-size: 28px;
    margin-top: 3px;
    margin-bottom: 4px
}

.icon.icon-sm{
    font-size: 24px;
}

.icon.icon-lg{
    font-size: 36px;
}

@media(min-width:481px) {
    .iosTabbar{
        display: none;
    }
}

@media(max-width:481px) {

    body.iosTabbar {
        margin-bottom: 60px;
    }

}

/*--------------------*/


.clear {
    clear: both;
}


.align-left, .table th.align-left, .table td.align-left {
    text-align: left;
}
.align-right, .table th.align-right, .table td.align-right {
    text-align: right;
}
.align-center, .table th.align-center, .table td.align-center {
    text-align: center;
}

tr.odd  td, tr.odd  th {
    background-color: #fff;
}

tr.even td, tr.even th {
    background-color: #F0F0F0;
}

.hidden, .navbar .nav.hidden {
    display: none;
}

.btn-height {
    line-height: 28px;
}

/* Fixing Bootstrap */
tr.alert, td.alert {
    color: #333;
}

td.success {
    background-color: #DFF0D8;
}
td.alert {
    background-color: #FCF8E3;
}
td.error {
    background-color: #F2DEDE;
}

.table.table-plain > tr > th, .table.table-plain > tr > th,
.table.table-plain > thead > tr > th, .table.table-plain > tbody > tr > th,
.table.table-plain > tfoot > tr > th, .table.table-plain > thead > tr > td,
.table.table-plain > tbody > tr > td, .table.table-plain > tfoot > tr > td {
    border-top: none;
}


table.table.table-plain tr th:first-child,
table.table.table-plain tr td:first-child{
    padding-left: 0;
}

.panel-body .table.table-plain {
    margin :0;
}

span.btn-group {
    font-size: inherit;
}

.btn-huge{padding:9px 14px;font-size: 28px;line-height:normal;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}
.btn-huge [class^="icon-"]{margin-top:2px;}
 .btn-huge i{
    font-size: 84px;
 }

.tab-pane.active {
    overflow: hidden;
}

/*Toogle*/
.btn-toggle input {
    display: none;
}
​
span.btn-group.btn-inline {
    bottom:4px;
}

.accordion-toggle, a:focus {
    outline:  none;
}

.accordion-inner {
    border-top: 0;
    padding: 9px 15px;
}

.accordeon-wedge .accordion-heading{
    background: url("../img/down.png") no-repeat scroll right center transparent;
}

.accordeon-wedge .accordion-heading.accordion-up{
    background: url("../img/down.png") no-repeat scroll right center transparent;
}

ul.nav.nav-tabs li a, .teaser li a{
    font-size: 15px;
}

a span.success {
    color: #009900;
    font-size: 24px;
}

/* navpills */
.nav-pills li .divider {
    color: #CCCCCC;
    padding: 0 5px;
    line-height: 32px;
    vertical-align: middle;
    margin-top: 2px;
}


.container hr.strong, hr.strong {
  -moz-border-bottom-colors: none;
  -moz-border-image: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-top-color: #aaa ;
  border-bottom-color: #fff;
  border-style: solid none;
  border-width: 1px 0;
  margin: 18px 0;
}

hr.plain{
    margin: 0 0 8px 0;
    -moz-border-bottom-colors: none;
  -moz-border-image: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-top-color: #aaa ;
  border-bottom-color: #fff;
  border-style: solid none;
  border-width: 1px 0;
}

/* breadcrumb */

.breadcrumb {
    background-color: transparent;
}

#breadcrumbwrapper {
    margin: 12px 0;
    overflow: hidden;
    width: 100%;
    height: 44px;
}

.scroller.breadcrumb {
    height:44px;
    padding:0;
    list-style:none;
    margin:0;
    text-align:left;
}

.scroller.breadcrumb li {
    display:inline-block;
    vertical-align:middle;
    float:left;
    height: 44px;
    line-height: 44px;
}
.scroller.breadcrumb li:last-child {
    padding-right: 12px;
}

.tabs-inWell.tabs-left > .nav-tabs{
    margin-right: 0
}
.tabs-inWell .tab-content{
    background-color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
    border: 1px solid #DDDDDD;
    border-left: none;
}
.tabs-inWell.tabs-left  {

}


/* Highlight active Nav */

.nav.nav-stacked > li > a {
    padding: 3px 15px;
    margin: 7px 0;
}

.nav-pills > li > a {
    border-radius: 0;

}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: rgba(0, 0, 0, 0);
    color: #333;
    font-weight: bold;
}

.nav .nav > li > a {
       padding: 0 0 0 8px;
       margin: 4px 0 4px 15px ;
}

.nav.nav-stacked > .active > a, .nav.nav-stacked > .active:hover > a, .nav.nav-stacked > .active:focus > a,
.nav.nav-stacked .nav > .active > a, .nav.nav-stacked .nav > .active:hover > a, .nav.nav-stacked .nav > .active:focus > a {
    color: background-color: rgba(0, 0, 0, 0);
    border-left: 2px solid #333;
    color: #333;
}

/* hide subnavigation of inactive items */
.nav .nav {
    display: none;
    padding-bottom: 10px;
}
/* show subnavigation of active item */
 .nav > .active > ul {
    display: block;
}


/* ERROR Hints for Forms */
.control-group.error   .help-inline{
    margin-bottom: 0.5em;
}
.control-group.error   .help-inline:before {
    background:none;
    font-family: entyporegular;
    vertical-align:bottom;
    font-style: normal;
    font-weight: normal;
    font-size: 2.2em;
    padding-right: .2em;
    content: '\26A0';
}
.control-group.success   .help-inline:before {
    background:none;
    font-family: entyporegular;
    vertical-align: bottom;
    font-style: normal;
    font-weight: normal;
    font-size: 2em;
    padding-right: .2em;
    content: '\2713';
}


/* multistep */
.multistep li a h2, .multistep li a h2 i{
    vertical-align: middle;
}

.navbar-inner .pull-right{
    margin-top: 4px;
}


.well .table {
    background-color: #F5F5F5;
}

.table-responsive {
    border: 1px solid #DDDDDD;
    margin-bottom: 15px;
    overflow-x: scroll;
    overflow-y: scroll;
    width: 100%;
}

.table-responsive-maxheight{
    max-height: 400px;
}

.noWrap {white-space: nowrap;}

td .radio, td .checkbox, th .radio, th .checkbox {
    margin: 0;
}

/*TABLET*/
@media (max-width: 767px) {

}


/* Phone */
@media screen and (max-width : 375px) and (orientation:portrait){
 h1 {
    font-size: 28px;
 }

    .navbar-inner .pull-right{
        margin-top: 6px;
    }

    .navbar-inner {
        padding-right: 5px;
    }
}

/* tablet */
@media screen and (max-width : 768px) and (orientation:portrait){
    .container, .container-fluid  {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Portrait */
@media screen and (orientation:portrait) {
    .visible-landscape {
        display: none;
    }
    .visible-portrait{
        display: block;
    }

    .navbar-static-top {
        margin-left: 0;
        margin-right: 0;
    }



}

/* password toggle */

.input-append input.passwordWithToggle {

    width: 70%;
}
.input-append span[class="add-on passwordToggle"] {
    width: 30%;
    padding-left: 0;
    padding-right: 0;
}


/* Print Styles*/
@media print {
    aside, hide-on-print { display:none; }

    .accordion-heading .accordion-toggle {
        font-weight: bold;
        padding: 0;
        border: 0;
    }
    .accordion-body.collapse {
        height: auto;
    }

    .accordion-group {
        border: 0;
    }

}

/* helper classes for the snipets demo */


.navbar .btn-navbar {
    color: #766;
    text-shadow: none;
    font-size: 20px;
    margin-bottom: 3px;
    margin-top: 3px;
}


.navbar .btn-navbar:hover {

    color: #333;
    text-shadow: none;
}
.navbar-nav > li > span {
    padding: 15px;
    line-height: 20px;
}

.nav > li > span {
    display: block;
    padding: 15px;
    position: relative;
}

.navbar-nav > li > span.form {
    padding-top: 8px;
    line-height: 20px;
}

.nav > li > span.form {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
}
.navbar-form {
    margin: 7px 0;
}

.navbar-inverse .navbar-nav > li > span {
    color: #fff;
}
.bootstrap-select:not([class*="span"]).col-md-05 {
    width: 90px;

}

.nav-tabs > li:first-child {
    margin-left: 10px;
}


.tab-content > .active, .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus  {
    background-color: #fff;
}
.tab-content > .active{
    padding: 10px;
}

.col-md-12{
    display: block;


}

label.radio {
    /* remove the bold from radio buttons */
    font-weight: normal;
}

/* helper classes */

.blur {
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.micropadding {
    height: 8px;
    display: block;
}

table.table.noTopBorder tr:first-Child td, table.table.noTopBorder tr:first-Child th{
    border-top: none;
}

.
@media print {
    .pageBreak {page-break-after: always;}
}


/* Fake Google Search */
.googleSearchfield {
    border-color: none;
    box-shadow: none;
    outline: 0;
    border-width: 1px;
    border-radius: 0;
}

.form-control.googleSearchfield:focus {
    border-color: #4285f4;
    outline: 0 0;
    box-shadow: none;
}
.btn.googleBtn {
    -moz-user-select: none;
   background: -webkit-linear-gradient(#f5f5f5, #f1f1f1);
   background: -o-linear-gradient(#f5f5f5, #f1f1f1);
   background: linear-gradient(#f5f5f5, #f1f1f1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444 ;
    font-size: 11px;
    border-radius: 2px;
    cursor: default !important;
    display: inline-block;
    font-weight: bold;
    height: 29px;
    line-height: 29px;
    min-width: 54px;
    padding: 0 8px;
    text-align: center;
    text-decoration: none !important;
}

.btn-primary.googleprimaryBtn{
   background: -webkit-linear-gradient(#4387fd, #4683ea);
   background: -o-linear-gradient(#4387fd, #4683ea);
   background: linear-gradient(#4387fd, #4683ea);
   padding-left: 40px;
   padding-right: 40px;
}
.googleResultStats {
    line-height: 43px;
    color: #808080;
    font-size: 13px;
}
.googleResult{
    line-height: 18px;
    padding: 20px 0;
    border-top: 1px solid #ebebeb;
}
a.googleTitle{
    color: #1a0dab;
    font-size: 18px;

}
a.googleLink{
    color: #006621;
    font-size: 13px;
}

.googleDescription {
    color: #545454;
    font-size: 13px;
}

.csb {
    background: url("./assets/img/google_nav_logo195.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    overflow: hidden;
    background-position: 0 0;
    display: block;
    height: 40px;
}
.cur, .b {
    font-weight: bold;
    font-family: arial,sans-serif;
    font-size: small;
    text-align: center;
}
a.fl:link, a.fl:visited,.fl a, .flt, a.flt, .gl a:link, a.mblink, .mblink b {
    color: #1a0dab;
    font-family: arial,sans-serif;
    font-size: small;
    display: block;
    text-align: center;
}
.flt, .flt u, a.fl {
    text-decoration: none;
}

/* Prevent Bootstrap from printing URLs */
@media print {
  a[href]:after {
    content: none;
  }
}

.label-as-badge {
    border-radius: 1em;
    margin-right: 4px;
    font-size: inherit;
}

.label.label-as-badge {
    border-radius: 1em;
    margin-right: 4px;
    font-size: 100%;
}

.label.label-default {
    background-color: #999;
}

.stepper .steps {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  *zoom: 1;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
     -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}

.stepper .steps:before,
.stepper .steps:after {
  display: table;
  line-height: 0;
  content: "";
}

.stepper .steps:after {
  clear: both;
}

.stepper ul.steps {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none outside none;
}

.stepper ul.steps.previous-disabled li.complete {
  cursor: default;
}

.stepper ul.steps.previous-disabled li.complete:hover {
  color: #468847;
  cursor: default;
  background: #f3f4f5;
}

.stepper ul.steps.previous-disabled li.complete:hover .chevron:before {
  border-left-color: #f3f4f5;
}

.stepper ul.steps li {
  position: relative;
  float: left;
  height: 46px;
  padding: 0 20px 0 30px;
  margin: 0;
  font-size: 16px;
  line-height: 46px;
  color: #999999;
  cursor: default;
  background: #ededed;
}

.stepper ul.steps li .chevron {
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 1;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #d4d4d4;
}

.stepper ul.steps li .chevron:before {
  position: absolute;
  top: -24px;
  right: 1px;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #ededed;
  content: "";
}

.stepper ul.steps li.complete {
  color: #468847;
  background: #f3f4f5;
}

.stepper ul.steps li.complete:hover {
  cursor: pointer;
  background: #e7eff8;
}

.stepper ul.steps li.complete:hover .chevron:before {
  border-left: 14px solid #e7eff8;
}

.stepper ul.steps li.complete .chevron:before {
  border-left: 14px solid #f3f4f5;
}

.stepper ul.steps li.active {
  color: #3a87ad;
  background: #f1f6fc;
}

.stepper ul.steps li.active .chevron:before {
  border-left: 14px solid #f1f6fc;
}

.stepper ul.steps li .badge {
  margin-right: 8px;
}

.stepper ul.steps li:first-child {
  padding-left: 20px;
  border-radius: 4px 0 0 4px;
}

.stepper .steps .actions {
  position: absolute;
  right: 0;
  z-index: 1000;
  float: right;
  padding-right: 15px;
  padding-left: 15px;
  line-height: 46px;
  vertical-align: middle;
  background-color: #e5e5e5;
  border-left: 1px solid #d4d4d4;
}

.stepper .steps .actions a {
  margin-right: 8px;
  font-size: 12px;
  line-height: 45px;
}

.stepper .steps .actions .btn-prev i {
  margin-right: 5px;
}

.stepper .steps .actions .btn-next i {
  margin-left: 5px;
}

.stepper .step-content {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #D4D4D4;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.stepper .step-content .step-pane {
  display: none;
}

.stepper .step-content .active {
  display: block;
}

.stepper .step-content .active .btn-group .active {
  display: inline-block;
}

/* Stepper mobile view */

.stepNumber{
    display: none;
}

@media(max-width:375px) {
    .stepper ul.steps li{
        display: none;
    }
    .stepper ul.steps li.active{
        display: block;
        width:100%;
        padding-left: 20px;
    }
    .stepper ul.steps li .chevron {
        display: none;
    }
    .stepNumber{
        display: inline-block;
        float: right;
        color: #333;
    }
}


.simpleList {
    margin: 12px 0;
}
.simpleList li{
    margin-bottom: 12px;
}

.oneliner {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nopadding{
    padding: 0;
}

.nomargin{
    margin: 0;
}

.noborder{
    border: none;
}


.btn.btn-circle {
    width: 50px;
    height:50px;
    border-radius: 25px;
    padding-top: 0;
    padding-bottom: 0;
}

.btn.btn-circle i {
    height: 50px;
    line-height: 48px;
    font-size: 18px;
    vertical-align: middle;
}

.btn-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 0;
}

.btn.btn-circle-sm i {
    height: 40px;
    line-height: 38px;
    font-size: 18px;
    vertical-align: middle;
}
.btn-onCard, .btn-onCard.topRight {
    position: absolute;
    top: 10px;
    right: 10px;
}
.btn-onCard.topLeft {
    left: 10px;
    right: auto;
}
.btn-onCard.bottomLeft {
    left: 10px;
    right: auto;
}



/*CARD*/

.card {
    position: relative;
    display: block;
    margin-bottom: .75rem;
    background-color: #fff;
    border-radius: .25rem;
    border: 1px solid rgba(0,0,0,.125);
    flex-basis: 0;
    flex-grow: 1;
}
.card:hover{
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12), 0 8px 8px 0 rgba(0, 0, 0, 0.24);
}

.card-img-top {
    border-top-right-radius: calc(.25rem - 1px);
    border-top-left-radius: calc(.25rem - 1px);
    width:100%;
}

.card-block {
    padding: 1.25rem;
}
.card-title {
    margin-bottom: .75rem;
}

.cardContainer, .flex-row {
    display: flex;
    flex-wrap: wrap;
}
.cardContainer > [class*='col-'], .flex-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}


.flex-row > [class*='col-md-4'] {
    width:33.2%;
}

.flex-row > [class*='col-md-3'] {
    width:24.95%;
}


/*CARD*/



/* Twitter Typeahead */

.tt-dataset{
    background-color: #fff;
    border:1px solid #c1c1c1;
}
.tt-suggestion{
    padding: 8px;
}
.tt-suggestion:hover, .tt-suggestion.tt-cursor{
    background-color: #337ab7;
    color:#fff;
}
.tt-highlight {
    background-color: yellow;
}
.tt-suggestion:hover .tt-highlight, .tt-suggestion.tt-cursor .tt-highlight{
    background-color: black;
    color:yellow;
}
.tt-noentries {
    padding: 8px;
}

.tt-footer {
    padding: 8px;
    margin:0;
    background-color: #f3f3f3;
    border-top:1px solid #c1c1c1;
}
.tt-menu{
    min-width:400px;
}
.bootstrap-switch {
    max-height: 30px;
}

/* FORM FEEDBACK */

.form-group .form-control-feedback, .form-control-feedback-message {
    display: none;
}
.form-group .has-feedback .form-control-feedback, .form-group.has-feedback .form-control-feedback {
    display: inline-block;
}
.form-group .has-feedback .form-control-feedback-message, .form-group.has-feedback .form-control-feedback-message {
    display: block;
}

.has-feedback label~.form-control-feedback {
    top: 35px;
}

/* GRID CLASSES */

.grid{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
}

.grid-2, .grid-xs-2{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
}

.grid-3, .grid-xs-3{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
}

.grid-4, .grid-xs-4{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
}

.grid-5, .grid-xs-5{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-6, .grid-xs-6{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-2575, .grid-xs-2575{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 3fr;
    -ms-grid-columns: 1fr 3fr;
}

.grid-7525, .grid-xs-7525{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 3fr 1fr;
    -ms-grid-columns: 3fr 1fr;
}

.grid-3366, .grid-xs-3366{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 2fr;
    -ms-grid-columns: 1fr 2fr;
}

.grid-6633, .grid-xs-6633{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 2fr 1fr;
    -ms-grid-columns: 2fr 1fr;
}

.grid-255025, .grid-xs-255025{
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 2fr 1fr;
    -ms-grid-columns: 1fr 2fr 1fr;
}

.grid-40n, .grid-n40, .grid-60n,.grid-n60, .grid-80n, .grid-n80, .grid-100n,  .grid-n100, .grid-120n, .grid-n120, .grid-140n,  .grid-n140, .grid-160n, .grid-n160, .grid-180n, .grid-n180, .grid-200n,.grid-n200, .grid-40n40, .grid-60n60 {
    display: grid;
    
    display: -ms-grid;
    grid-gap: 10px;
}

.grid-40n {
    grid-template-columns: 40px 1fr;
    -ms-grid-columns: 40px 1fr;
}
.grid-n40 {
    grid-template-columns:  1fr 40px;
    -ms-grid-columns:  1fr 40px;
}
 .grid-60n {
    grid-template-columns: 60px 1fr;
    -ms-grid-columns: 60px 1fr;
 }
 .grid-n60 {
    grid-template-columns: 1fr 60px;
    -ms-grid-columns: 1fr 60px;
 }
 .grid-80n {
    grid-template-columns: 80px 1fr;
    -ms-grid-columns: 80px 1fr;
 }
 .grid-n80 {
    grid-template-columns: 1fr 80px;
    -ms-grid-columns: 1fr 80px;
 }
 .grid-100n {
    grid-template-columns: 100px 1fr;
    -ms-grid-columns: 100px 1fr;
 }
 .grid-100n100 {
    display:grid;
    grid-template-columns: 100px 1fr 100px;
    -ms-grid-columns: 100px 1fr;
 }
 .grid-n100 {
    grid-template-columns: 1fr 100px ;
    -ms-grid-columns: 1fr 100px ;
 }
 .grid-120n {
    grid-template-columns: 120px 1fr;
    -ms-grid-columns: 120px 1fr;
 }
 .grid-n120 {
    grid-template-columns: 1fr 120px ;
    -ms-grid-columns: 1fr 120px ;
 }
 .grid-140n {
    grid-template-columns: 140px 1fr;
    -ms-grid-columns: 140px 1fr;
 }
 .grid-n140 {
    grid-template-columns: 1fr 140px;
    -ms-grid-columns: 1fr 140px;
 }
 .grid-160n {
    grid-template-columns: 160px 1fr;
    -ms-grid-columns: 160px 1fr;
 }
 .grid-n160 {
    grid-template-columns: 1fr 160px;
    -ms-grid-columns: 1fr 160px;
 }
 .grid-180n {
    grid-template-columns: 180px 1fr;
    -ms-grid-columns: 180px 1fr;
 }
 .grid-n180 {
    grid-template-columns:  1fr 180px;
    -ms-grid-columns:  1fr 180px;
 }
 .grid-200n {
    grid-template-columns: 200px 1fr;
    -ms-grid-columns: 200px 1fr;
 }
 .grid-n200 {
    grid-template-columns: 200px 1fr;
    -ms-grid-columns: 200px 1fr;
 }


.grid-40n40 {
    grid-template-columns: 40px 1fr 40px;
    -ms-grid-columns: 40px 1fr 40px;
}
.grid-60n60  {
    grid-template-columns: 60px 1fr 60px;
    -ms-grid-columns: 60px 1fr 60px;
 }


@media screen and (max-width : 375px) and (orientation:portrait){
    .grid-2, .grid-3, .grid-4,.grid-5, .grid-6, .grid-2575, .grid-3366, .grid-7525, .grid-6633, .grid-255025  {
        grid-template-columns: 1fr;
        -ms-grid-columns: 1fr;
    }
}

.gridHasBorder div{
    border: 1px solid #666;
}

.gridCentered {
    align-items: center;
    justify-content: center;
}
.gridPadded div{
    padding: 10px;
}
.gridTable, .gridGap0 {
    grid-gap: 0;
}
.gridTable div{
    padding: 10px;
}
body {
    padding:0;
    -webkit-tap-highlight-color: transparent;
    background: transparent;
    font-family: 'Roboto', sans-serif;
}
.well {
    padding: 10px;
}
.header-fixed {
    padding-top: 52px;
}
a {
    color: #3975A3;
}

.pt-page-current, .no-js .pt-page {
    background-color: #fff;
}
.pt-page {
    margin-top: 44px;
    background: #dfdfdf;
    padding:0;
}

.pt-page.noTopbar {
    margin-top: 0;
}

.hotspot{
    position: absolute;
    z-index: 1000;
    cursor: pointer;
}

.showHotspots .hotspot, #hotspotCanvas .hotspot{
    border: 1px solid red;
    background-color: rgba(255,0,0,0.2);
    overflow: hidden;
}
#hotspotCanvas .hotspot .infotext{
    margin-top: 4px;
    font-size: 14px;
    padding: 4px;
    /*background-color: rgba(255,255,255,0.8);*/
}
#hotspotCanvas{
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 2000;
    background-color: rgba(0,0,0,0.2); 
    color: red;
    text-align: center;
}
#hotspotTextarea{
    background-color: transparent;
    height: auto;
    /*display: none;*/
    border: none;
    height: 0;

}

.hide {
    display: none;
}