
/*Base*/

body {
	margin: 0;
	padding: 0;
}

/*FONTS*/

@font-face {
    font-family: 'Lucida Sans';
    src: url('../html/fonts/LucidaSans.woff2') format('woff2'),
        url('../html/fonts/LucidaSans.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Georgia';
    src: url('../html/fonts/Georgia.woff2') format('woff2'),
        url('../html/fonts/Georgia.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Lucida Sans';
    src: url('../html/fonts/LucidaSans.woff2') format('woff2'),
        url('../html/fonts/LucidaSans.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Palatino Linotype';
    src: url('../html/fonts/PalatinoLinotype.woff2') format('woff2'),
        url('../html/fonts/PalatinoLinotype.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Arial';
    src: url('../html/fonts/Arial.woff2') format('woff2'),
        url('../html/fonts/Arial.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}


/*TERCO CONTENT*/

.terco-content {
	padding: 14px 12px;
	text-align: center;
}

.terco-header {
	height: 35%;
}

.terco-header__title {
	font-family: 'Arial', sans-serif;
	font-size: 72px;
	letter-spacing: 2px;
	color: #0D2B48;
	font-weight: 400;
	margin: 0;
	border-bottom: 2px solid #666666;
    line-height: 1.1;
}

.terco-header__title span {
	letter-spacing: 0;
}

.terco-header__subtitle {
	color: #46381E;
	font-size: 37px;
	font-family: 'Palatino Linotype', sans-serif;
	font-weight: 400;
	letter-spacing: -2px;
	margin: 10px 0 0;
}

.terco-header__destaque {
	color: #46381E;
    font-size: 16px;
    font-family: arial, sans-serif;
    margin: 0;
}


/*TERCO STEPS
*/

.terco-steps {
	height: 58%;
	padding: 5px 14px;
	/*background-color: #ffffff61;*/
	/*box-shadow: 0px -10px 15px 0px #ffffff61, 0px 10px 15px 0px #ffffff61;*/
}

.terco-actions .btn {
	width: 64px;
	height: 25px;
	background-color: #0d2b48;
	color: #fff;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	font-size: 12px;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: none !important;
}

.terco-actions .btn--right:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12.5px 0 12.5px 20px;
	border-color: transparent transparent transparent #0d2b48;
	position: absolute;
	top:0;
	right: -20px;
	display: block;
}

.terco-actions .btn--left:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12.5px 20px 12.5px 0;
	border-color: transparent #0d2b48 transparent transparent;
	position: absolute;
	top: 0;
	left: -20px;
	display: block;
}

.terco-actions .btn--start {
	text-transform: uppercase;
}

.terco-actions .btn--start.restart {
	width: 84px;
}

.terco-actions .btn:hover {
	background-color: #184F85;
}

.terco-actions .btn--left {
	float: left;
	margin: 0 10px 0 20px;
}

.terco-actions .btn:hover.btn--right:after {
	border-color: transparent transparent transparent #184F85;
	display: block;
} 

.terco-actions .btn:hover.btn--left:after {
	border-color: transparent #184F85 transparent transparent;
	display: block;
} 

.terco-steps__title {
	color: #342F1F;
	font-family: 'Lucida Sans', sans-serif;
	font-size: 16px;
	margin: 15px 0 10px;
	text-align: left;
	word-spacing: 2px;
	letter-spacing: .6px;
	font-weight: 600;
}

.terco-steps__title .terco-steps__subtitle {
	margin: 0 0 -10px 0;
}

.terco-steps__subtitle {
	color: #342F1F;
	font-family: 'Lucida Sans', sans-serif;
	font-size: 14px;
	margin: 0 0 5px;
	text-align: left;
	word-spacing: 2px;
	font-weight: 600;
}

.terco-steps__text {
	color: #0a0a0a;
	font-family: 'Lucida Sans', san-serif;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	text-align: left;
	word-spacing: 2px;
}

.terco-steps__small-text {
	color: #0a0a0a;
	font-family: 'Lucida Sans', san-serif;
	font-size: 13px;
	font-weight: 400;
	margin: 0;
	text-align: left;
	word-spacing: 2px;
}

/*TERCO ANIMATION*/

.terco-animation {
	background: url("../img/terco-virtual/terco.png") no-repeat center center;
	background-size: contain;
	/*background-color: #ffffff61;
	box-shadow: 0px -20px 20px 0px #ffffff61, 0px 20px 20px 0px #ffffff61;*/
	height: 80%;
	margin: 50px 15px;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
	position: relative;
}

.terco-wrapper {
	padding: 0;
	background: url("../img/terco-virtual/terco-background.png") no-repeat center center;
	background-size: cover;
	height: 100vh;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.terco-content,
.terco-animation {
	width: 49%;
}

.hidden {
	display: none !important;
}

.invisible {
	visibility: hidden;
}

img {
	max-width: 100%;
}


/*ANIMATION CIRCLE*/

.terco-circle {
    width: 31px;
    height: 31px;
    background: transparent;
    position: absolute;
    top: 175px;
    left: 50%;
    -webkit-transform: scale(.2);
        -ms-transform: scale(.2);
            transform: scale(.2);
    margin-left: -17px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: 0px 0px 16px 4px #fcff3f, inset 0 0 5px 0px #fcff3f;
    -ms-box-shadow: 0px 0px 16px 4px #fcff3f, inset 0 0 5px 0px #fcff3f;
            box-shadow: 0px 0px 16px 4px #fcff3f, inset 0 0 5px 0px #fcff3f;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    -webkit-transition-delay: .6;
         -o-transition-delay: .6;
            transition-delay: .6;
    -webkit-animation: pulse 1s ease-in-out infinite;
            animation: pulse 1s ease-in-out infinite;
    visibility: hidden;
    opacity: 0;
}

.pulse:hover {
  -webkit-animation: none;
          animation: none;
}

.terco-circle.open {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	visibility: visible;
	opacity: 1;

}​


@keyframes pulse {
  0% { -webkit-box-shadow: 0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); 
		-ms-box-shadow: 0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); 
  		box-shadow: 0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); }
  50% { -webkit-box-shadow: 0px 0px 16px 4px rgba(252, 255, 63, 1), inset 0 0 5px 2px rgba(252, 255, 63, 1); 
		-ms-box-shadow: 0px 0px 16px 4px rgba(252, 255, 63, 1), inset 0 0 5px 2px rgba(252, 255, 63, 1); 
  		box-shadow: 0px 0px 16px 4px rgba(252, 255, 63, 1), inset 0 0 5px 2px rgba(252, 255, 63, 1); }
  100% { -webkit-box-shadow: 0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); 
		-ms-box-shadow: 0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); 
  		box-shadow: 0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); }
}

@-webkit-keyframes pulse {
  0% { -webkit-box-shadow:  0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); }
  50% { -webkit-box-shadow: 0px 0px 16px 4px rgba(252, 255, 63, 1), inset 0 0 5px 2px rgba(252, 255, 63, 1); }
  100% { -webkit-box-shadow: 0px 0px 16px 1px rgba(252, 255, 63, 1), inset 0 0 5px 0px rgba(252, 255, 63, 1); }
}



/*Animation Steps*/

.terco-animation.start {
	background-size: 130%;
	background-position: -80px -640px;
}
.terco-animation.step-0 {
	background-size: contain;
	background-position: center center;
}
.terco-animation.step-0 .terco-circle {
	visibility: hidden;
	opacity: 0;
}
.terco-animation.step-1 {
	background-position: -80px -640px;
}
.terco-animation.step-1 .terco-circle.start {
	-webkit-transform: scale(7);
	    -ms-transform: scale(7);
	        transform: scale(7);
	visibility: visible;
	margin-left: -15px;
	opacity: 1;
}
.terco-animation.step-1 .terco-circle.topo {
	top: 245px;
}
.terco-animation.step-2 {
	background-position: -80px -540px;
}
.terco-animation.step-3 {
	background-position: -80px -495px;
}
.terco-animation.step-4 {
	background-position: -82px -469px;
}
.terco-animation.step-5 {
	background-position: -76px -445px;
}
.terco-animation.step-6 {
	background-position: -76px -420px;
}
.terco-animation.step-6 .terco-circle {
	width: 15px;
    height: 30px;
    margin-left: -9px;
}
.terco-animation.step-7 {
	background-position: -74px -397px;
}
.terco-animation.step-8 {
	background-position: -60px -355px;
}
.terco-animation.step-9 {
	background-position: -50px -332px;
}
.terco-animation.step-10 {
	background-position: -38px -311px;
}
.terco-animation.step-11 {
	background-position: -28px -288px;
}
.terco-animation.step-12 {
	background-position: -18px -265px;
}
.terco-animation.step-13 {
	background-position: -10px -243px;
}
.terco-animation.step-14 {
	background-position: 1px -220px;
}
.terco-animation.step-15 {
	background-position: 10px -198px;
}
.terco-animation.step-16 {
	background-position: 19px -178px;
}
.terco-animation.step-17 {
	background-position: 30px -157px;
}
.terco-animation.step-18 {
	background-position: 30px -140px;
}
.terco-animation.step-18 .terco-circle {
	width: 20px;
    height: 30px;
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
    margin-left: -21px;
}
.terco-animation.step-19 {
	background-position: 53px -117px;
}
.terco-animation.step-20 {
	background-position: 74px -77px;
}
.terco-animation.step-21 {
	background-position: 85px -53px;
}
.terco-animation.step-22 {
	background-position: 96px -30px;
}
.terco-animation.step-23 {
	background-position: 108px -6px;
}
.terco-animation.step-24 {
	background-position: 119px 15px;
}
.terco-animation.step-25 {
	background-position: 133px 36px;
}
.terco-animation.step-26 {
	background-position: 143px 58px;
}
.terco-animation.step-27 {
	background-position: 153px 81px;
}
.terco-animation.step-28 {
	background-position: 157px 107px;
}
.terco-animation.step-29 {
	background-position: 145px 131px;
}
.terco-animation.step-30 {
	background-position: 125px 147px;
}
.terco-animation.step-30 .terco-circle {
	width: 20px;
	height: 30px;
	-webkit-transform: rotate(65deg);
	    -ms-transform: rotate(65deg);
	        transform: rotate(65deg);
	margin-left: -17px;
}
.terco-animation.step-31 {
	background-position: 107px 153px;
}
.terco-animation.step-32 {
	background-position: 56px 160px;
}
.terco-animation.step-33 {
	background-position: 32px 163px;
}
.terco-animation.step-34 {
	background-position: 7px 159px;
}
.terco-animation.step-35 {
	background-position: -18px 160px;
}
.terco-animation.step-36 {
	background-position: -43px 161px;
}
.terco-animation.step-37 {
	background-position: -69px 164px;
}
.terco-animation.step-38 {
	background-position: -95px 165px;
}
.terco-animation.step-39 {
	background-position: -119px 165px;
}
.terco-animation.step-40 {
	background-position: -144px 164px;
}
.terco-animation.step-41 {
	background-position: -169px 166px;
}
.terco-animation.step-42 {
	background-position: -196px 168px;
}
.terco-animation.step-42 .terco-circle {
	width: 20px;
	height: 30px;
	-webkit-transform: rotate(80deg);
	    -ms-transform: rotate(80deg);
	        transform: rotate(80deg);
	margin-left: -17px;
}
.terco-animation.step-43 {
	background-position: -212px 167px;
}
.terco-animation.step-44 {
	background-position: -253px 152px;
}
.terco-animation.step-45 {
	background-position: -265px 128px;
}
.terco-animation.step-46 {
	background-position: -271px 105px;
}
.terco-animation.step-47 {
	background-position: -270px 80px;
}
.terco-animation.step-48 {
	background-position: -266px 54px;
}
.terco-animation.step-49 {
	background-position: -259px 30px;
}
.terco-animation.step-50 {
	background-position: -249px 6px;
}
.terco-animation.step-51 {
	background-position: -242px -18px;
}
.terco-animation.step-52 {
	background-position: -231px -43px;
}
.terco-animation.step-53 {
	background-position: -221px -69px;
}
.terco-animation.step-54 {
	background-position: -221px -88px;
}
.terco-animation.step-54 .terco-circle {
	width: 20px;
	height: 30px;
	-webkit-transform: rotate(20deg);
	    -ms-transform: rotate(20deg);
	        transform: rotate(20deg);
	margin-left: -17px;
}
.terco-animation.step-55 {
	background-position: -209px -108px;
}
.terco-animation.step-56 {
	background-position: -193px -149px;
}
.terco-animation.step-57 {
	background-position: -184px -175px;
}
.terco-animation.step-58 {
	background-position: -176px -199px;
}
.terco-animation.step-59 {
	background-position: -170px -224px;
}
.terco-animation.step-60 {
	background-position: -163px -247px;
}
.terco-animation.step-61 {
	background-position: -151px -270px;
}
.terco-animation.step-62 {
	background-position: -141px -293px;
}
.terco-animation.step-63 {
	background-position: -128px -313px;
}
.terco-animation.step-64 {
	background-position: -116px -337px;
}
.terco-animation.step-65 {
	background-position: -101px -358px;
}
.terco-animation.step-66 {
	background-position: -91px -376px;
}
.terco-animation.step-66 .terco-circle {
	width: 20px;
	height: 30px;
	-webkit-transform: rotate(30deg);
	    -ms-transform: rotate(30deg);
	        transform: rotate(30deg);
	margin-left: -17px;
}
.terco-animation.step-67 {
	background-position: center center;
	background-size: contain;
}
.terco-animation.step-67 .terco-circle {
	visibility: hidden;
}



/*ROSARIO*/

.rosario-steps__title {
	color: #342F1F;
	font-family: 'Lucida Sans', sans-serif;
	font-size: 16px;
	margin: 15px 0 10px;
	text-align: left;
	word-spacing: 2px;
	letter-spacing: .6px;
	font-weight: 600;	
}

@media (max-width: 770px) {

	/*terco*/

	.terco-wrapper {
		background: url(../img/terco-virtual/terco-background-ipad.png) no-repeat center center;
	}

	.terco-header__title {
		font-size: 52px;
	}

	.terco-header__subtitle {
		font-size: 28px;
	}

	.terco-content {
		width: 300px;
	}

	.terco-animation {
		width: 370px;
	}

	.terco-header {
		height: 120px;
	}

	.terco-steps {
		height: 330px;
		margin-top: 10px;
		background-color: #ffffff61;
		-webkit-box-shadow: 0px -10px 15px 0px #ffffff61, 0px 10px 15px 0px #ffffff61;
		        box-shadow: 0px -10px 15px 0px #ffffff61, 0px 10px 15px 0px #ffffff61;
	}

	.terco-animation {
		background-color: #ffffff61;
		-webkit-box-shadow: 0px -20px 20px 0px #ffffff61, 0px 20px 20px 0px #ffffff61;
		        box-shadow: 0px -20px 20px 0px #ffffff61, 0px 20px 20px 0px #ffffff61;
		margin: 52px 15px;
	}

	/*#rosario .terco-steps {
		height: 330px;
		margin-top: 10px;
	}*/

	.terco-steps__text {
		line-height: 1.2;
	}

}


@media (max-width: 650px) {

	/*#fancybox-wrap {
		width: 280px !important;
	}

	#fancybox-inner {
		width: 260px !important;
		left: 50% !important;
		margin-left: -130px !important;
	}*/

	.terco-content {
		width: 240px;
    	padding: 10px;
	}

	.terco-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        -webkit-flex-direction: column;
		        flex-direction: column;
		background: url("../img/terco-virtual/terco-background-mobile.png") no-repeat center center;
		background-size: cover;
	}

	.terco-header__title {
		font-size: 32px;
	}

	.terco-header {
		height: 60px;
	}

	.terco-header__title {
		font-size: 24px;
	}

	.terco-header__subtitle {
		font-size: 18px;
		margin-top: 6px;
	}

	.terco-header__destaque,
	.rosario-steps__title {
		font-size: 12px;
	}
	
	.terco-steps {
		height: 185px;
		padding: 5px;
		-webkit-box-shadow: 0px -5px 10px 0px #ffffff61, 0px 5px 10px 0px #ffffff61;
		        box-shadow: 0px -5px 10px 0px #ffffff61, 0px 5px 10px 0px #ffffff61;
	}

	.terco-steps__title {
		font-size: 14px;
		margin: 5px 0;
	}

	.terco-steps__text {
		font-size: 12px;
	}

	.terco-actions .btn {
		width: 54px;
		height: 20px;
		font-size: 10px;
	}

	.terco-actions .btn--left:after {
		border-width: 10px 15px 10px 0;
		left: -15px;
	}

	.terco-actions .btn--right:after {
		border-width: 10px 0 10px 15px;
		right: -15px;
	}

	.terco-steps-content {
		padding: 0;
		height: 170px;
		overflow-y: auto;
		margin: 5px 0 10px;
	}

	.terco-animation {
		width: 230px;
		margin: 0;
		height: 220px;
		margin: 15px;
		-webkit-box-shadow: 0px -5px 10px 0px #ffffff61, 0px 5px 10px 0px #ffffff61;
		        box-shadow: 0px -5px 10px 0px #ffffff61, 0px 5px 10px 0px #ffffff61;
	}


	/*Terço animation*/

	/*Animation Steps*/

/*	.terco-animation.start {
		background-size: 130%;
		background-position: -80px -640px;
	}
	.terco-animation.step-0 {
		background-size: contain;
		background-position: center center;
	}
	.terco-animation.step-0 .terco-circle {
		visibility: hidden;
		opacity: 0;
	}*/

	.terco-circle {
		width: 22px;
		height: 22px;
		top: 77px;
		margin-left: -11px;
	}

	.terco-animation.step-1 {
		background-position: -50px -470px;
	}
	.terco-animation.step-1 .terco-circle.start {
		-webkit-transform: scale(6);
		    -ms-transform: scale(6);
		        transform: scale(6);
		visibility: visible;
		margin-left: -10px;
		opacity: 1;
	}
	.terco-animation.step-1 .terco-circle.topo {
		top: 90px;
	}
	.terco-animation.step-2 {
		background-position: -50px -375px;
	}
	.terco-animation.step-3 {
		background-position: -49px -347px;
	}
	.terco-animation.step-4 {
		background-position: -51px -330px;
	}
	.terco-animation.step-5 {
		background-position: -48px -313px;
	}
	.terco-animation.step-6 {
		background-position: -47px -299px;
	}
	.terco-animation.step-6 .terco-circle {
		width: 14px;
	    height: 20px;
	    margin-left: -7px;
	}
	.terco-animation.step-7 {
		background-position: -45px -284px;
	}
	.terco-animation.step-8 {
		background-position: -36px -258px;
	}
	.terco-animation.step-9 {
		background-position: -30px -244px;
	}
	.terco-animation.step-10 {
		background-position: -23px -230px;
	}
	.terco-animation.step-11 {
		background-position: -17px -215px;
	}
	.terco-animation.step-12 {
		background-position: -10px -202px;
	}
	.terco-animation.step-13 {
		background-position: -4px -186px;
	}
	.terco-animation.step-14 {
		background-position: 3px -173px;
	}
	.terco-animation.step-15 {
		background-position: 7px -158px;
	}
	.terco-animation.step-16 {
		background-position: 13px -146px;
	}
	.terco-animation.step-17 {
		background-position: 21px -132px;
	}
	.terco-animation.step-18 {
		background-position: 27px -120px;
	}
	.terco-animation.step-18 .terco-circle {
		width: 14px;
	    height: 20px;
	    -webkit-transform: rotate(-30deg);
	        -ms-transform: rotate(-30deg);
	            transform: rotate(-30deg);
	    margin-left: -7px;
	}

	.terco-animation.step-19 {
		background-position: 34px -106px;
	}
	.terco-animation.step-20 {
		background-position: 48px -80px;
	}
	.terco-animation.step-21 {
		background-position: 56px -65px;
	}
	.terco-animation.step-22 {
		background-position: 62px -51px;
	}
	.terco-animation.step-23 {
		background-position: 69px -36px;
	}
	.terco-animation.step-24 {
		background-position: 76px -23px;
	}
	.terco-animation.step-25 {
		background-position: 85px -10px;
	}
	.terco-animation.step-26 {
		background-position: 91px 4px;
	}
	.terco-animation.step-27 {
		background-position: 98px 19px;
	}
	.terco-animation.step-28 {
		background-position: 101px 36px;
	}
	.terco-animation.step-29 {
		background-position: 92px 50px;
	}
	.terco-animation.step-30 {
		background-position: 82px 61px;
	}
	.terco-animation.step-30 .terco-circle {
		width: 14px;
		height: 20px;
		-webkit-transform: rotate(65deg);
		    -ms-transform: rotate(65deg);
		        transform: rotate(65deg);
		margin-left: -7px;
	}
	.terco-animation.step-31 {
		background-position: 68px 66px;
	}
	.terco-animation.step-32 {
		background-position: 37px 69px;
	}
	.terco-animation.step-33 {
		background-position: 20px 71px;
	}
	.terco-animation.step-34 {
		background-position: 5px 68px;
	}
	.terco-animation.step-35 {
		background-position: -10px 70px;
	}
	.terco-animation.step-36 {
		background-position: -27px 70px;
	}
	.terco-animation.step-37 {
		background-position: -43px 71px;
	}
	.terco-animation.step-38 {
		background-position: -59px 72px;
	}
	.terco-animation.step-39 {
		background-position: -75px 72px;
	}
	.terco-animation.step-40 {
		background-position: -90px 70px;
	}
	.terco-animation.step-41 {
		background-position: -107px 73px;
	}
	.terco-animation.step-42 {
		background-position: -121px 74px;
	}
	.terco-animation.step-42 .terco-circle {
		width: 14px;
		height: 20px;
		-webkit-transform: rotate(80deg);
		    -ms-transform: rotate(80deg);
		        transform: rotate(80deg);
		margin-left: -7px;
	}
	.terco-animation.step-43 {
		background-position: -134px 73px;
	}
	.terco-animation.step-44 {
		background-position: -160px 63px;
	}
	.terco-animation.step-45 {
		background-position: -167px 48px;
	}
	.terco-animation.step-46 {
		background-position: -172px 34px;
	}
	.terco-animation.step-47 {
		background-position: -170px 18px;
	}
	.terco-animation.step-48 {
		background-position: -169px 1px;
	}
	.terco-animation.step-49 {
		background-position: -164px -14px;
	}
	.terco-animation.step-50 {
		background-position: -157px -29px;
	}
	.terco-animation.step-51 {
		background-position: -153px -44px;
	}
	.terco-animation.step-52 {
		background-position: -146px -60px;
	}
	.terco-animation.step-53 {
		background-position: -140px -76px;
	}
	.terco-animation.step-54 {
		background-position: -137px -87px;
	}
	.terco-animation.step-54 .terco-circle {
		width: 14px;
		height: 20px;
		-webkit-transform: rotate(20deg);
		    -ms-transform: rotate(20deg);
		        transform: rotate(20deg);
		margin-left: -7px;
	}
	.terco-animation.step-55 {
		background-position: -131px -101px;
	}
	.terco-animation.step-56 {
		background-position: -122px -126px;
	}
	.terco-animation.step-57 {
		background-position: -115px -143px;
	}
	.terco-animation.step-58 {
		background-position: -110px -159px;
	}
	.terco-animation.step-59 {
		background-position: -107px -173px;
	}
	.terco-animation.step-60 {
		background-position: -103px -189px;
	}
	.terco-animation.step-61 {
		background-position: -96px -204px;
	}
	.terco-animation.step-62 {
		background-position: -89px -219px;
	}
	.terco-animation.step-63 {
		background-position: -80px -231px;
	}
	.terco-animation.step-64 {
		background-position: -73px -246px;
	}
	.terco-animation.step-65 {
		background-position: -63px -259px;
	}
	.terco-animation.step-66 {
		background-position: -53px -270px;
	}
	.terco-animation.step-66 .terco-circle {
		width: 14px;
		height: 20px;
		-webkit-transform: rotate(30deg);
		    -ms-transform: rotate(30deg);
		        transform: rotate(30deg);
		margin-left: -7px;
	}
	.terco-animation.step-67 {
		background-position: center center;
		background-size: contain;
	}
	.terco-animation.step-67 .terco-circle {
		visibility: hidden;
	}

}


@media (max-width: 650px) and (orientation: landscape) {
	.terco-wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        -webkit-flex-direction: row;
		        flex-direction: row;
		background: url(../img/terco-virtual/terco-background-mobile-land.png) no-repeat center center;
	}

	.terco-content {
		padding: 5px;
		width: 225px;
	}

	.terco-header {
		height: 45px;
	}

	.terco-steps {
		height: 190px;
	}

	.terco-steps-content {
		height: 160px;
	}

	.terco-animation {
		width: 230px;
	}

	#rosario .terco-steps {
		margin-top: 30px;
		height: 170px;
	}

	#rosario .terco-steps-content {
		height: 140px;
	}
}