@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 */
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}
.animated.infinite {
	animation-iteration-count: infinite;
}
.animated.hinge {
	animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
	animation-duration: 0.75s;
}
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateZ(0);
	}
	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}
@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	animation-name: flash;
}
@keyframes pulse {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scaleX(1);
	}
}
.pulse {
	animation-name: pulse;
}
@keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		transform: scaleX(1);
	}
}
.rubberBand {
	animation-name: rubberBand;
}
@keyframes shake {
	0%,
	to {
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	animation-name: shake;
}
@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake;
}
@keyframes swing {
	20% {
		transform: rotate(15deg);
	}
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	to {
		transform: rotate(0deg);
	}
}
.swing {
	transform-origin: top center;
	animation-name: swing;
}
@keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
.tada {
	animation-name: tada;
}
@keyframes wobble {
	0% {
		transform: none;
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		transform: none;
	}
}
.wobble {
	animation-name: wobble;
}
@keyframes jello {
	0%,
	11.1%,
	to {
		transform: none;
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello {
	animation-name: jello;
	transform-origin: center;
}
@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
.bounceIn {
	animation-name: bounceIn;
}
@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: none;
	}
}
.bounceInDown {
	animation-name: bounceInDown;
}
@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInLeft {
	animation-name: bounceInLeft;
}
@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInRight {
	animation-name: bounceInRight;
}
@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInUp {
	animation-name: bounceInUp;
}
@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	animation-name: bounceOut;
}
@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	animation-name: bounceOutUp;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	animation-name: fadeIn;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDownBig {
	animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeft {
	animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRight {
	animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRightBig {
	animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUp {
	animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUpBig {
	animation-name: fadeInUpBig;
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	animation-name: fadeOut;
}
@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(-1turn);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		animation-timing-function: ease-in;
	}
	to {
		transform: perspective(400px);
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip;
}
@keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateX(-20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX;
}
@keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateY(-20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY;
}
@keyframes flipOutX {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}
.flipOutX {
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}
@keyframes flipOutY {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}
.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}
@keyframes lightSpeedIn {
	0% {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		transform: none;
		opacity: 1;
	}
}
.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}
@keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}
.rotateIn {
	animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownRight {
	animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpRight {
	animation-name: rotateInUpRight;
}
@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1;
	}
	to {
		transform-origin: center;
		transform: rotate(200deg);
		opacity: 0;
	}
}
.rotateOut {
	animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}
@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		transform: rotate(80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		transform: rotate(60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	animation-name: hinge;
}
@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom;
	}
	50% {
		transform: rotate(-10deg);
	}
	70% {
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.jackInTheBox {
	animation-name: jackInTheBox;
}
@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.rollIn {
	animation-name: rollIn;
}
@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}
.rollOut {
	animation-name: rollOut;
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	animation-name: zoomIn;
}
@keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInDown {
	animation-name: zoomInDown;
}
@keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInLeft {
	animation-name: zoomInLeft;
}
@keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInRight {
	animation-name: zoomInRight;
}
@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInUp {
	animation-name: zoomInUp;
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	animation-name: zoomOut;
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutDown {
	animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
.zoomOutLeft {
	animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
.zoomOutRight {
	animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutUp {
	animation-name: zoomOutUp;
}
@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInDown {
	animation-name: slideInDown;
}
@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInLeft {
	animation-name: slideInLeft;
}
@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInRight {
	animation-name: slideInRight;
}
@keyframes slideInUp {
	0% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInUp {
	animation-name: slideInUp;
}
@keyframes slideOutDown {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}
.slideOutDown {
	animation-name: slideOutDown;
}
@keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}
.slideOutLeft {
	animation-name: slideOutLeft;
}
@keyframes slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}
.slideOutRight {
	animation-name: slideOutRight;
}
@keyframes slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	animation-name: slideOutUp;
}

/* GENERAL STYLES */
@font-face {
	font-family: dinproregular;
	src: url("../fonts/dinproregular.otf"), url("../fonts/dinproregular.eot");
}

@font-face {
	font-family: dinprobold;
	src: url("../fonts/dinprobold.otf"), url("../fonts/dinprobold.eot");
}

html,
body {
	font-family: "dinproregular", sans-serif;
	color: #7a7a7a;
	font-size: 15px;
	height: 100%;
}
body {
	overflow-x: hidden;
}
* {
	margin: 0;
	padding: 0;
}
hr {
	border-top-color: #ddd;
}
hr.line-purple {
	border-top-color: #3f0098;
}
.regular {
	font-family: "dinproregular", sans-serif;
}
.bold {
	font-family: "dinprobold", sans-serif;
}
.container-fluid,
.no-padding {
	padding: 0;
}
.no-margin {
	margin: 0;
}
.center {
	text-align: center;
	margin: 0 auto;
	float: none;
}
.left {
	float: left;
}
.right {
	float: right;
}
.txt_left {
	text-align: left;
}
.txt_right {
	text-align: right;
}
.m_left5 {
	margin-left: 5px;
}
.m_left10 {
	margin-left: 10px;
}
.main {
	width: 100%;
	min-height: 100vh;
	background: #ededed;
	padding-bottom: 60px;
	position: relative;
}
.top10 {
	margin-top: 10px;
}
.top20 {
	margin-top: 20px;
}
.top30 {
	margin-top: 30px;
}
.top40 {
	margin-top: 40px !important;
}
.top50 {
	margin-top: 50px !important;
}
.top60 {
	margin-top: 60px !important;
}
.top80 {
	margin-top: 80px !important;
}
.top110 {
	margin-top: 110px;
}
.bottom10 {
	margin-bottom: 10px;
}
.bottom20 {
	margin-bottom: 20px;
}
.bottom30 {
	margin-bottom: 30px;
}
.line-divider {
	width: 100%;
	height: 1px;
	background: #cccccc;
	margin-bottom: 20px;
}
.w100 {
	width: 100% !important;
}
.w92 {
	width: 92% !important;
}

.img-center {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
}

/* Headings & text*/

h1 {
	font-size: 50px;
	line-height: 48px;
	color: #3f0098;
	margin-bottom: 20px;
}
h2 {
	/* font-size:38px;
	line-height:40px; */
	font-size: 35px;
	line-height: 38px;
	color: #3f0098;
	text-align: center;
}
h3 {
	font-size: 25px;
	sline-height: 30px;
	margin-top: 6px;
}
h3.cursor:hover {
	color: #3f0098;
	transition:
		color 0.4s linear 0s,
		text-decoration 0.4s linear 0s;
	text-decoration: underline;
}
h4 {
	font-size: 24px;
	line-height: 27px;
}
b,
h3 span {
	font-family: "dinprobold", sans-serif;
}

a:hover {
	text-decoration: none;
}
a {
	color: #7a7a7a;
}
/*a:hover p{
	color: #3F0098;
}*/
p a,
p a:hover {
	color: #3f0098;
}

p a:hover,
.underline {
	text-decoration: underline;
}
.underline-hover:hover {
	text-decoration: underline;
}
.row ul {
	margin-left: 30px;
}
.main-text {
	font-size: 20px;
	line-height: 22px;
}
.min-text {
	font-size: 11px;
	line-height: 18px;
}
.text-purple {
	color: #3f0098;
}
.text-yellow {
	color: #ffb500 !important;
}
.text-white {
	color: #ffffff;
}
.text-default {
	color: #7a7a7a;
}
.text-claro {
	color: #aaaaaa;
}
.text-list {
	padding: 0 20px;
}
.text-left {
	text-align: left;
}
.text-help {
	width: 100%;
	float: left;
	margin-top: 10px;
	text-align: center;
	font-size: 11px;
}

.bg-gris {
	background: #ccc;
}

/* Loader */
#loader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	background-color: #fff;
}
#progress {
	width: 60px;
	height: 70px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	background: url("../img/loading.gif");
}

/* Buttons */

.cursor {
	cursor: pointer;
}
button:focus,
a:hover,
a:active,
a:focus {
	outline: 0 !important;
}
.btn-primary-home,
.btn-primary {
	padding: 10px 30px 9px 30px;
	background: #3f0098;
	border: none;
	border-radius: 0;
	color: #ffffff;
}
.btn-primary-home,
.btn-default-home {
	font-size: 20px;
	color: #ffffff;
}
.btn-primary,
.btn-default {
	font-size: 15px;
}
.btn-nuevo-sueno {
	font-size: 20px;
	line-height: 35px;
	padding: 10px 30px;
	background: #3f0098;
	border: none;
	border-bottom: 3px solid #330087;
	border-radius: 3px;
	color: #ffffff;
}
.btn-ver-suenos {
	padding: 8px 30px;
	background: #ffb500;
	border: none;
	border-bottom: 3px solid #ebab00;
	border-radius: 3px;
	color: #ffffff;
}

.btn-default-home,
.btn-default {
	padding: 10px 30px 9px 30px;
	background: #ffb500;
	border: none;
	color: #ffffff;
	border-radius: 0;
}
.btn-default[disabled] {
	background-color: #ffb500 !important;
}
.btn-third {
	padding: 10px 30px;
	background: #6c8297;
	border: none;
	color: #ffffff;
	border-radius: 0;
}
.file_pdf,
.btn-third,
.file_img .btn-third {
	display: none;
}
.btn-min {
	padding: 8px 10px;
	background: #ffb500;
	border: none;
	color: #ffffff;
	border-radius: 0;
}
.btn-primary-home:hover,
.btn-default-home:hover,
.btn-default:hover,
.btn-nuevo-sueno:hover,
.btn-ver-suenos:hover,
.btn-min:hover {
	color: #ffffff;
}
.btn-text {
	background: none;
	border: none;
	text-decoration: underline;
	padding: 0;
}
.btn-text:hover {
	color: #7a7a7a;
}
.container-btn-registro {
	width: 100%;
	height: 60px;
	position: absolute;
}
.btn-buscar {
	width: 30px;
	height: 30px;
	background: url("../img/sprite-menu-lat-2.svg") no-repeat;
	background-position: -20px -20px;
}
.btn-tips {
	margin-right: 10px;
}
.custom-input-pass-icon {
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	pointer-events: unset;
	cursor: pointer;
}
/* Input file */

/*--.upload-edit-mi-foto {
	width: 200px;
    height: 200px;
    border-radius:100px;
    overflow: hidden;
    position: absolute;
    top: 15px;
    right: 0;
}--*/
.upload-edit-mi-foto input {
	display: block;
	width: 200px !important;
	height: 200px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	cursor: pointer;
	display: none;
}

/*--.upload-edit-foto-empresa {
	width: 100%;
    height: 230px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}--*/
.upload-edit-foto-empresa input {
	display: none !important;
	width: 100% !important;
	height: 230px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	cursor: pointer;
}

.upload-edit-logo-empresa {
	width: 120px;
	height: 120pxpx;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}
.upload-edit-logo-empresa input {
	display: none !important;
	width: 120px !important;
	height: 120px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	cursor: pointer;
}

.upload-edit {
	width: 30px;
	height: 30px;
	padding: 5px 0;
	background: url("../img/icon_upload.png");
	overflow: hidden;
	position: absolute;
	top: 15px;
	right: 0;
	z-index: 3;
	cursor: pointer;
}
.upload-edit input {
	display: block !important;
	width: 30px !important;
	height: 30px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	cursor: pointer;
}
.upload-image {
	width: 60px;
	height: 50px;
	padding: 8px 0 10px 0;
	background: url("../img/subir-imagen.png") no-repeat;
	overflow: hidden;
	position: absolute;
	top: 0;
}
.upload-image input {
	display: block !important;
	width: 60px !important;
	height: 50px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	cursor: pointer;
}

.upload-foto-perfil-empresa {
	width: 120px;
	height: 120px;
	background: url("../img/logo-empresa.svg") no-repeat;
	overflow: hidden;
	position: absolute;
	top: -65px;
}
.upload-foto-perfil-empresa input {
	display: block !important;
	width: 120px !important;
	height: 120px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	cursor: pointer;
}

/* Checkbox */
.checkbox {
	margin-top: 6px;
	float: right;
}
.radio {
	margin-top: 6px;
}
.radio-producto {
	position: absolute;
	margin: -10px 0 0 -10px;
	z-index: 10;
}
.scroll-box .checkbox {
	position: absolute;
	margin-top: -5px;
	margin-left: -10px;
}
.scroll-box .box-persona .checkbox {
	position: absolute;
	margin-top: 25px;
	margin-left: -20px;
}
.tooltip-info-perfil .checkbox {
	margin-top: 6px;
	margin-left: 0;
	position: absolute;
}
input[type="checkbox"],
input[type="radio"] {
	display: none;
}
input[type="checkbox"] + label > span,
input[type="radio"] + label > span {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	background: #ffffff;
	margin: -5px 4px 0 0;
	border: 2px solid #cccccc;
	cursor: pointer;
	/*position: relative;
    top: 5px;*/
	vertical-align: middle;
	position: relative;
}
input[type="checkbox"] + label > span:before,
input[type="radio"] + label > span:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/check.png") no-repeat;
	opacity: 0;
	content: "";
}
input[type="checkbox"]:checked + label > span,
input[type="radio"]:checked + label > span {
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: 2px solid #3f0098;
	/*position: relative;
    top: 5px;*/
}
input[type="checkbox"]:checked + label > span:before,
input[type="radio"]:checked + label > span:before {
	opacity: 1;
}
#modalPagar input[type="checkbox"] + label > span,
#modalPagar input[type="radio"] + label > span {
	position: relative;
	top: 6px;
}
#modalAgregarProducto input[type="radio"] + label > span {
	margin: 20px 4px 0 0;
}
.form-terminos .radio > span {
	position: relative;
	top: 6px;
}
textarea {
	resize: none;
}

/* Select */
.select-style,
.box-tipo-categoria {
	padding: 0;
	margin: 0;
	/* margin-bottom: 15px; */
	border: 1px solid #ccc;
	width: 100%;
	height: 42px;
	border-radius: 4px;
	overflow: hidden;
	background-color: #fff;
	background: #fff url("../img/new_arrow.png") no-repeat 98% 50%;
	font-weight: 300;
	color: #989898;
}
.select-style select {
	padding: 8px 28px 8px 8px;
	width: 100%;
	border: none;
	box-shadow: none;
	color: #989898;
	background-color: transparent;
	background-image: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.select-style select:focus {
	outline: none;
}

.box-tipo-categoria {
	width: 100%;
	padding: 7px 0 0 10px;
	text-align: left;
}
.box-tipo-sueno {
	width: 100%;
	border-radius: 0 0 5px 5px;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	position: absolute;
	background: #ffffff;
	z-index: 100;
	top: 35px;
	margin: 0 15px 0 0;
	padding: 20px 0 0 8px;
	text-align: left;
	display: none;
}
.choice-item {
	width: 98%;
	padding-bottom: 3px;
	float: left;
	margin-bottom: 2px;
	display: table;
	border-bottom: 1px solid #ccc;
}
.choice-item:last-child {
	border-bottom: none;
}
.choice-item label {
	/*	width: 90%;*/
	max-width: 220px;
	min-height: 24px;
	font-size: 14px;
	line-height: 14px;
	padding: 2px 0;
	display: table-cell;
	vertical-align: middle;
}
label.choice-item-lg {
	line-height: 14px;
	padding: 0;
}

.checkbox-tipo-cat {
	display: table-cell;
	vertical-align: middle;
	width: 24px;
	height: 24px;
}

.checkbox-tipo-cat input[type="checkbox"] + label span,
.checkbox-tipo-cat input[type="radio"] + label span {
	margin: 0px 4px 0px 0px;
}

.form-pauta1 .box-tipo-categoria {
	width: 100%;
}

/*label.choice-item-lg span {
    margin-top:-12px !important;
  }
.choice-item.tipo-sueno label span{
	margin-top:-30px !important;
}
@-moz-document url-prefix() { 
  .choice-item.tipo-sueno label span {
    margin-top:0px !important;
  }
}

@-moz-document url-prefix() { 
  .choice-item label span {
    margin-top:0px !important;
  }
}
@-moz-document url-prefix() { 
  label.choice-item-lg span {
    margin-top:-12px !important;
  }
}


/* Alerts */
.alert {
	width: 500px;
}

.alert-modal-publicacion {
	width: 690px;
}

.modal-initial-explorador{
	width: 500px;
	margin: 0 auto;
	top: calc(50% - 290px);
}

/* NAVBAR */
.navbar {
	margin-bottom: 0;
}
.navbar-default {
	border: none;
	background: #ffffff;
}
.navbar-brand {
	width: 430px;
	height: 87px;
	padding: 0;
	display: block;
}
#headerperfil .navbar-brand {
	max-width: 48px;
	height: auto;
	margin-top: 9px;
	transition: all 0.4s;
	margin-left: 0;
}
#headerperfil.header_scroll .navbar-brand {
	margin-top: 9px;
}
#headerperfil #logoheader {
	width: 100%;
	border-radius: 4px;
}

.navbar-brand > img {
	width: 100%;
}
.navbar-toggle {
	margin: 0;
	border-radius: 0;
	background: #ffb500;
	border: none;
	padding: 35px 30px;
	transition: padding 0.4s linear 0s;
}

.nav > li {
	margin-left: 49px;
}
.nav > li > a {
	padding: 10px 0 0 0;
	text-align: center;
	margin-top: 10px;
	font-weight: 300;
}
.nav > li > a span {
	font-family: "dinprobold", sans-serif;
}
.navbar-default .navbar-nav > li > a:hover {
	color: #3f0098;
}
#scroll1,
#scroll2,
#scroll3 {
	cursor: pointer;
	width: 140px;
}
#scroll1 {
	width: 100px;
}
.animated-line {
	width: 0;
	height: 1px;
	margin: 10px auto;
	background: #ffb500;
	transition: width 0.4s linear 0s;
}
#scroll1:hover .animated-line,
#scroll2:hover .animated-line,
#scroll3:hover .animated-line {
	width: 40px;
}
.animated-line-btn {
	width: 0;
	height: 1px;
	margin: 0 auto;
	background: #ffffff;
	display: block;
	transition: width 0.4s linear 0s;
}
.btn:hover .animated-line-btn {
	width: 100%;
}

.nav > li.ingresar,
.nav > li.registrarme {
	padding: 3px 0 0 20px;
	margin: 12px 10px 0 0;
	text-decoration: underline;
}

li.container-social-button {
	width: 100px;
	height: 50px;
	float: left;
	margin: 20px 0 0 20px;
}
li.container-social-button a {
	padding: 0 !important;
}
.social-button {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	margin-left: 10px;
	float: left;
}
.facebook .social-button-img {
	width: 10px;
	height: 20px;
	background: url("../img/img-sprite.svg") 0 0 no-repeat;
	background-size: 70px 170px;
	margin: 10px auto;
}
.twitter .social-button-img {
	width: 20px;
	height: 20px;
	background: url("../img/img-sprite.svg") -10px 0 no-repeat;
	background-size: 70px 170px;
	margin: 10px auto;
}
.facebook {
	background: #1b5490;
}
.facebook:hover {
	background: #144575;
}
.twitter {
	background: #00adf1;
}
.twitter:hover {
	background: #1688b2;
}

.block-ingresar-mobile-1 {
	width: 100%;
	height: 80px;
	display: none;
	float: left;
	background: #ffffff;
}
.block-ingresar-mobile-2 {
	width: 100%;
	height: 330px;
	display: none;
	float: left;
	background: #ffffff;
	position: relative;
	z-index: 100;
}
.ingresar-input-mobile {
	width: 230px;
	margin: 0 auto;
}
.text-ingresar-mobile {
	width: 120px;
	margin: 18px auto;
}
.btn-ingresar-mobile {
	width: 230px;
	margin: 20px auto 0 auto;
	display: block;
}
.container-social-mobile {
	width: 230px;
	margin: 0 auto;
}

/*HEADER PERFIL*/

#headerperfil {
	position: fixed;
	z-index: 1000;
	top: 0px;
	width: 100%;
	height: 65px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	font-size: 12px;
	transition: height 0.4s linear 0s;
}
#logoheader-container {
	width: 220px;
}
#logoheader {
	width: 220px;
	transition: width 0.4s linear 0s;
}
#dropdowntoggle {
	padding-top: 19px;
	padding-bottom: 18px;
	transition:
		padding-top 0.4s linear 0s,
		padding-bottom 0.4s linear 0s;
}
.navbar-header {
	height: 87px;
	transition: height 0.4s linear 0s;
	float: left;
}
.btn-header-border {
	border-right: 1px solid #e6e6e6;
	transition: height 0.4s linear 0s;
}
.btn-header-perfil,
.btn-header-perfil-cursor {
	padding: 0 20px;
	margin-left: 0 !important;
	height: 65px;
	max-width: 260px;
	transition: all 0.4s;
	width: 122px;
}
.header_scroll .btn-header-perfil,
.header_scroll .btn-header-perfil-cursor {
	height: 65px;
}
.btn-header-perfil-cursor:hover,
.btn-header-perfil-cursor.actual {
	background: #eaeef3;
}
.btn-header-perfil-cursor:hover p {
	color: #3f0098;
}
.headericon {
	padding-top: 10px;
	margin-top: 14px;
	transition:
		padding-top 0.4s linear 0s,
		margin-top 0.4s linear 0s;
}

.headericon p {
	opacity: 1;
	transition: opacity 0.4s linear 0s;
}

.header-empresa {
	float: right;
}
.btn-notificaciones {
	border: none;
	background: none;
}
.btn-notificaciones:hover {
	color: #3f0098;
}
.icon-votos {
	width: 30px;
	height: 40px;
	margin: 0 auto;
	background: url("../img/img-sprite.svg") 0 -51px no-repeat;
	background-size: 70px 170px;
}
.icon-votos.icon_cash {
	background: url(../img/cash_vote.png);
	width: 40px;
	background-size: 100% 100%;
}

.icon-notificaciones {
	width: 22px;
	height: 30px;
	margin: 0 auto;
	background: url("../img/img-sprite.svg") -2px -86px no-repeat;
	background-size: 60px 160px;
}
li.btn-header-perfil-cursor:hover .icon-notificaciones {
	background: url("../img/img-sprite.svg") -2px -120px no-repeat;
	background-size: 60px 160px;
}
.icon-carrito {
	width: 30px;
	height: 30px;
	margin: 0 auto;
	background: url("../img/img-sprite.svg") -29px -86px no-repeat;
	background-size: 60px 160px;
}
.cart-float {
	position: fixed;
	width: 65px;
	height: 65px;
	bottom: 80px;
	right: 40px;
	background-color: #fff;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	box-shadow: 0 0 5px 5px #999;
	z-index: 999;
}
.cart-float .icon-cifra {
	top: -60px;
	right: -34px;
}
.icon-carrito-float {
	display: block;
	width: 30px;
	height: 30px;
	margin: 20px auto;
	background: url("../img/img-sprite.svg") -29px -86px no-repeat;
	background-size: 60px 160px;
}
li.btn-header-perfil-cursor:hover .icon-carrito {
	background: url("../img/img-sprite.svg") -29px -120px no-repeat;
	background-size: 60px 160px;
}
.icon-cifra {
	width: 24px;
	height: 24px;
	border-radius: 12px;
	color: #ffffff;
	position: relative;
	top: 5px;
	right: -20px;
	font-size: 12px;
	line-height: 24px;
	text-align: center;
}
.blanco {
	background: #ffffff;
}
.morado {
	background: #7846e1;
}
.azul {
	background: #417de1;
}
.rojo {
	background: #e03c3c;
}
.amarillo {
	background: #ffb500;
}
.icon-perfil,
.icon-perfil-empresa {
	width: 40px;
	height: 40px;
	overflow: hidden;
	margin: 0 10px -15px 0;
	display: inline-block;
}
.icon-perfil {
	border-radius: 50px;
	background-color: #dedfdb;
}
.icon-perfil-empresa {
	border-radius: 4px;
	border: 2px solid #ffffff;
}
.icon-perfil img {
	width: 100%;
}
.link-mi-perfil {
	width: 40px !important;
	height: 40px;
	position: absolute !important;
	z-index: 100;
	margin-left: 10px;
	background: transparent !important;
}
.img-perfil-usuario {
	width: 100%;
}
.navbar-collapse {
	padding-right: 0;
}
.navbar-default .navbar-nav .dropdown {
	margin-left: 0px;
}
.navbar-default .navbar-nav .dropdown:hover {
	background: #eaeef3;
	color: #333333;
}
.navbar-default .navbar-nav .dropdown a {
	width: 90px;
	padding: 19px 0 18px 0;
	margin-top: 0;
}
.navbar-default .navbar-nav .dropdown a:hover {
	color: #3f0098;
}
.headerperfil {
	margin-top: 0px !important;
	transition: margin-top 0.4s linear 0s;
	transition: all 0.4s;
}
/* .header_scroll .headerperfil{
	padding-top: 0;
} */
.dropdown-box {
	width: 88px;
	height: 50px;
	padding: 0 12px;
	margin: 0 auto;
}
.icon-config {
	width: 25px;
	height: 25px;
	background: url("../img/icon-config.svg") 0 0 no-repeat;
	display: inline-block;
	position: relative;
	top: 12px;
}
.text-dropdown {
	line-height: 15px;
	text-align: left;
	display: table;
	height: 40px;
	/* margin-top: 3px; */
}
.text-dropdown b {
	display: table-cell;
	vertical-align: middle;
}
.dropdown-menu {
	width: 265px;
	background: #eaeef3;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
	border: none;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	line-height: 40px;
}
.navbar-default .navbar-nav .dropdown .dropdown-menu > li > a {
	width: 263px;
	padding: 12px 25px;
	line-height: 30px;
}
.dropdown-menu > li > a:hover {
	background: #d6dee8;
}
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
	background-color: #eaeef3;
	color: #333333;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}
.icon-mi-perfil {
	background-color: none;
	border-left: none;
	border-right: none;
	position: absolute !important;
	width: 50px;
	height: 50px;
}

.icon-editar-perfil,
.icon-invitar,
.icon-contrasena,
.icon-cerrar-sesion,
.icon-invitar-fb,
.icon-invitar-tw {
	width: 31px;
	height: 30px;
	float: left;
	margin-right: 15px;
}
.icon-editar-perfil {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -255px 0px / 408px 105px;
}
.icon-invitar {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -287px 0px / 408px 105px;
	margin-left: 25px;
}
.icon-contrasena {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -315px 0px / 408px 105px;
}
.icon-cerrar-sesion {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -293px -57px / 408px 105px;
}
.icon-invitar-fb {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -346px 0px / 407px 105px;
}
.icon-invitar-tw {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -377px 0px / 407px 105px;
}

/* Block notificaciones */

.scroll-box.block-notificaciones {
	width: 320px;
	position: absolute;
	top: 87px;
	z-index: 100;
	margin-left: 0;
	left: 0;
	display: none;
}
.box-notificacion {
	width: 100%;
	float: left;
	padding: 10px 0 5px 0;
	border-left: 1px solid #3f0098;
	border-right: 1px solid #3f0098;
	border-bottom: 1px solid #3f0098;
	background: #ffffff;
}
.box-notificacion:first-child {
	border-top: 1px solid #3f0098;
}
.box-notificaciones-icon,
.box-notificaciones-cerrar {
	width: 30px;
	height: 30px;
	background: #ffffff;
	border: none;
}

.btn-header-perfil-cursor:hover .box-notificacion p {
	color: #7a7a7a;
}
.box-notificacion:hover p {
	color: #3f0098 !important;
}
.cerrar-notificacion {
	width: 30px;
	height: 30px;
	background: url("../img/sprite-icon.svg") no-repeat scroll -90px 0px / 408px 105px;
}
.icon-notificacion-cumplido {
	width: 26px;
	height: 26px;
	margin-top: 1px;
	background: url("../img/sprite-notificacion.svg") no-repeat scroll -109px 0px / 244px 27px;
}
.icon-notificacion-voto {
	width: 26px;
	height: 26px;
	margin-top: 1px;
	background: url("../img/sprite-notificacion.svg") no-repeat scroll -136px 0px / 244px 27px;
}
.icon-notificacion-registro {
	width: 26px;
	height: 26px;
	margin-top: 1px;
	background: url("../img/sprite-notificacion.svg") no-repeat scroll -163px 0px / 244px 27px;
}
.icon-notificacion-aceptar {
	width: 26px;
	height: 26px;
	margin-top: 1px;
	background: url("../img/sprite-notificacion.svg") no-repeat scroll 0px 0px / 244px 27px;
}
.icon-notificacion-rechazar {
	width: 26px;
	height: 26px;
	margin-top: 1px;
	background: url("../img/sprite-notificacion.svg") no-repeat scroll -55px 0px / 244px 27px;
}
.icon-notificacion-warning {
	width: 26px;
	height: 26px;
	margin-top: 1px;
	background: url("../img/sprite-notificacion.svg") no-repeat scroll -218px 0px / 244px 27px;
}
.icon-notificacion-alert {
	width: 26px;
	height: 26px;
	margin-top: 1px;
	background: url("../img/sprite-notificacion.svg") no-repeat scroll -191px 0px / 244px 27px;
}

/*VIDEO CONTAINER*/

.home-main-container {
	width: 100%;
	height: 500px;
	text-align: center;
	color: #ffffff;
	/*	background: url('../img/img-x.jpg') 0 0 no-repeat;
	background-size: cover;
	background-position: center;*/
	float: left;
	padding-right: 0;
	position: relative;
	background: #ffb500;
}
.int-main-container {
	width: 100%;
	height: 500px;
	background: url("../img/img-qs.jpg") 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	float: left;
	text-align: center;
	color: #ffffff;
}
.pusher-height {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 */
	float: left;
	opacity: 0.5;
	display: none;
}

.container-video {
	width: 100%;
}
.container-video2 {
	position: relative;
}
.container-video2 img {
	width: 100%;
	display: block;
}
.video-box {
	position: relative;
	width: 100%;
	z-index: 10;
	max-width: 889px;
	margin: auto;
}
.video-box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.video-box video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: none;
}
.bg-video {
	width: 100%;
	height: 500px;
	background: #ffb500;
	display: none;
	position: absolute;
	top: 0;
}
.cerrar-video {
	width: 75px;
	height: 75px;
	position: absolute;
	cursor: pointer;
	top: 280px;
	left: 48%;
	display: none;
	z-index: -100;
}
.title-container {
	width: 100%;
	position: absolute;
	left: 0;
	margin-top: 150px;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
	z-index: 10;
}
.title-container img {
	cursor: pointer;
}
.title-container h1 {
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
	color: #ffffff;
	margin-bottom: 20px;
}
.title-box {
	width: 395px;
	margin: 0 auto;
}
.title-line {
	width: 100%;
	height: 2px;
	background: #ffffff;
	margin-bottom: 10px;
}

/*LOGIN-BOX*/
.no-login,
.pub-no-login {
	display: block;
}
.btn-login-container-abrir,
.btn-ingresar-container-abrir {
	width: 40px;
	height: 80px;
	position: absolute;
	right: 0;
	top: 387px;
	cursor: pointer;
	z-index: 100;
	display: none !important;
}
.btn-login-container-cerrar,
.btn-ingresar-container-cerrar {
	width: 40px;
	height: 80px;
	position: absolute;
	margin-right: 100%;
	right: 0px;
	cursor: pointer;
	top: 300px;
	z-index: 100;
	display: none !important;
}
.btn-login-container-abrir,
.btn-login-container-cerrar {
	background: url("../img/sprite-btn-login.svg") no-repeat 0 0;
	background-size: 84px 80px;
}
.btn-ingresar-container-abrir,
.btn-ingresar-container-cerrar {
	background: url("../img/sprite-btn-login.svg") no-repeat -42px 0;
	background-size: 84px 80px;
}
.btn-login-container-abrir img,
.btn-login-container-cerrar img,
.btn-ingresar-container-abrir img,
.btn-ingresar-container-cerrar img {
	margin: 29px 0 0 8px;
	width: 25px;
	height: 25px;
	opacity: 0.5;
}
.login-container,
.login-container-collapsed,
.ingresar-container {
	width: 30%;
	min-width: 300px;
	height: 500px;
	float: right;
	position: absolute;
	right: 0;
	top: 87px;
	z-index: 100;
	text-align: center;
	color: #ffffff;
}
.login-container,
.login-container-collapsed {
	background: #ffb500;
}

.ingresar-container {
	background: #ffb500;
	display: none;
}
.c-collapsed {
	display: block;
}

.login-box {
	width: 200px;
	margin: 10px 0 0 12%;
}
.login-box h3 {
	margin-bottom: 3px;
	color: #3f0098;
}
.login-box p {
	width: 100%;
	margin: 0 0 7px 0;
	text-align: center;
	float: left;
	color: #fff;
	font-size: 20px;
	line-height: 24px;
}
.login-box p span {
	margin: 40px 0;
	color: #ffffff;
	font-size: 12px;
	cursor: pointer;
}
.login-box form {
	float: left;
	padding-bottom: 10px;
}
.login-box .form-group {
	margin-bottom: 0;
}
.login-box .form-control {
	border-radius: 0 !important;
	margin-bottom: 5px;
}
.form-control {
	height: 40px;
	float: left;
	font-weight: 300;
}
#modalNombreFecha .form-control,
.bottom15 {
	margin-bottom: 15px;
}
input#inputEmail1.form-control,
input#inputEmail2.form-control,
input#inputPass.form-control {
	float: none;
}

.login-box input#inputEmail1.form-control,
.login-box input#inputEmail2.form-control,
.login-box input#inputPass.form-control {
	float: left;
}

.btn-empezar {
	width: 100%;
}
.btn-empezar:hover {
	color: #ffffff;
}
.box-btn-registro {
	width: 100%;
	margin: 10px auto;
	margin-top: 30px;
}
.container-registro-mail {
	background: #e6e6e6;
	color: #7a7a7a;
	font-size: 10px;
	padding: 5px;
	display: inline-block;
	margin: 0 auto;
	width: 100%;
}
.container-registro-mail a {
	/* float: left; */
	margin: 10px 20px 0 0;
	display: inline-flex;
}
.container-registro-mail a:last-child {
	margin-right: 0;
}
.box-registro-mail {
	width: 115px;
	margin: 0 auto;
	display: inline;
}

.btn-registro-fb,
.btn-registro-tw,
.btn-ingresar-fb,
.btn-ingresar-tw {
	width: 50%;
	text-align: left;
	line-height: 14px;
	background: #36558e;
	float: left;
	padding: 12px;
	cursor: pointer;
}
.btn-registro-fb:hover,
.btn-ingresar-fb:hover {
	background: #144575;
}
.btn-registro-tw,
.btn-ingresar-tw {
	background: #000;
}
.btn-registro-tw:hover,
.btn-ingresar-tw:hover {
	background: #484242;
}
.btn-registro-tw span,
.btn-registro-fb span,
.btn-ingresar-tw span,
.btn-ingresar-fb span {
	font-size: 10px;
}
.btn-registro-fb-img {
	float: left;
	width: 10px;
	height: 20px;
	background: url("../img/img-sprite.svg") 0 0 no-repeat;
	background-size: 70px 170px;
	margin: 5px 10px 0 21%;
}
.btn-registro-tw-img {
	float: left;
	width: 20px;
	height: 20px;
	background: url("../img/sprite-aside.svg") -11px 0 no-repeat;
	background-size: 240px 22px;
	margin: 5px 10px 0 21%;
}
.btn-registro-text {
	float: left;
	color: #fff;
}

/* BLOCKS HOME */
.height200 {
	height: 200px;
}
.height250 {
	height: 250px;
}
.title-divider {
	width: 80px;
	height: 4px;
	background: #3f0098;
	margin: 0 auto 10px auto;
}
.title-divider-blanco {
	width: 80px;
	height: 4px;
	background: #ffffff;
	margin: 0 auto 40px auto;
}
.title-divider-in {
	width: 0px;
	height: 4px;
	background: #3f0098;
	margin: -10px 0 20px 0;
}

.como-funciona .row,
.como-cumplimos-suenos .row,
.inscribir-organizacion .row {
	margin-right: 0;
}
.como-funciona .row.block-morado {
	padding: 100px 0 50px 0;
}
.como-cumplimos-suenos .rounded-container {
	width: 90%;
	background: #ffffff;
	margin: 0 auto;
	display: inline-block;
	padding: 15px;
}
.como-cumplimos-suenos .rounded-box {
	width: 100%;
	border-radius: 10px;
	display: inline-block;
	border: 1px solid #3f0098;
	padding: 20px 2%;
	background: #f4f6f0;
}
.como-cumplimos-suenos h3 {
	width: 90%;
	margin: 30% auto 0 auto;
}
.como-cumplimos-suenos h3 span {
	padding: 0px 10px 2px 10px;
	background: #3f0098;
	color: #ffffff;
	border-radius: 18px;
}
.como-cumplimos-suenos img {
	width: 90%;
	max-width: 329px;
}
.inscribir-organizacion .block-morado {
	padding: 0 0 130px 0;
	margin-top: 50px;
}
.inscribir-organizacion h3 {
	width: 80%;
	max-width: 580px;
	margin: 0 auto;
}
.inscribir-organizacion p {
	width: 80%;
	max-width: 480px;
	margin: 80px auto 0 auto;
}
.inscribir-organizacion .text-purple {
	margin-top: 80px;
}

.block-morado {
	background: #3f0098;
	text-align: center;
	color: #ffffff;
}
.home-padding {
	padding: 40px 0 20px 0;
}
.normal-padding {
	padding: 15px;
}
.lateral-padding {
	padding: 0 15px;
}
.margin-bottom {
	margin-bottom: 20px;
}
.block-morado h2 {
	color: #ffffff;
}
.block-gris {
	background: #dedfdb;
	text-align: center;
	color: #7a7a7a;
}
.block-gris-claro {
	background: #f4f6f0;
	text-align: center;
	color: #7a7a7a;
}
.block-blanco {
	background: #ffffff;
	text-align: center;
}
.block-amarillo {
	background: #ffb500;
	text-align: center;
}

.circle-container {
	width: 100%;
	height: 90px;
	position: absolute;
	margin-top: -85px;
	z-index: 10;
}
.como-funciona .circle-container {
	margin-top: -25px;
	color: #ffffff;
}
.inscribir-organizacion .circle-container {
	width: 100%;
	height: 200px;
	position: absolute;
	margin-top: -140px;
	z-index: 10;
}
.cifras .circle-container {
	margin-top: -50px;
}
#modalNuevaPublicacion .circle-container {
	margin-top: -30px;
}
#modalEditPublicacion .circle-container {
	margin-top: -30px;
}
.circle-img {
	width: 35px;
	height: 30px;
	margin: 20px auto;
}
.dias {
	background: url("../img/img-sprite.svg") 0 -21px no-repeat;
	background-size: 70px 170px;
}
.horas {
	background: url("../img/img-sprite.svg") -37px -21px no-repeat;
	background-size: 70px 170px;
}
.personas {
	background: transparent url("../img/cohete_azul.svg") no-repeat;
	width: 100%;
	height: 100%;
	margin: 5px auto;
}
.votos {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -185px 0px / 408px 105px;
}
.lugar {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -220px 0px / 408px 105px;
}
.circle-morado,
.circle-amarillo,
.circle-blanco,
.circle-gris {
	width: 90px;
	height: 90px;
	border: 10px solid #ffffff;
	border-radius: 45px;
	-moz-border-radius: 45px;
	-webkit-border-radius: 45px;
	z-index: 100;
	margin: 0 auto;
}

.circle-blanco {
	border-color: #3f0098;
}

.circle-morado {
	background: #3f0098;
}
/* .circle-amarillo{
	background: #ffb500;
	font-size: 32px;
	line-height: 70px
} */
.circle-amarillo {
	border-color: #ffb500;
	background: #fff;
}
.circle-bg-amarillo {
	background: #ffb500 !important;
}
.circle-amarillo {
	border-color: #ffb500;
	background: #fff;
}
.circle-amarillo img {
	margin: 20px auto;
	width: 90%;
}
.circle-blanco {
	background: #ffffff;
}
.circle-gris {
	background: #dedfdb;
}
.number {
	font-size: 76px;
	font-weight: 300;
	line-height: 86px;
}
.finalizar-edicion-text {
	padding-right: 15px;
}

.carousel-logo-container {
	text-align: center;
	border-right: 1px solid #ddd;
	padding: 30px;
}

.content_carousel_empresas {
	margin: 30px 0;
}

.carousel-logo-container img {
	width: 100%;
	max-width: 160px;
}
.carousel-control.left,
.carousel-control.right {
	background-image: none;
}
.carousel-control {
	top: 95px;
	left: 0;
	width: 15px;
	height: 25px;
	opacity: 1;
}

.arrow-left {
	width: 15px;
	height: 25px;
	background: url("../img/sprite-arrow.svg") 0 0 no-repeat;
	background-size: 32px 25px;
}
.arrow-right {
	width: 15px;
	height: 25px;
	background: url("../img/sprite-arrow.svg") -16px 0 no-repeat;
	background-size: 32px 25px;
}

/* PERFIL USUARIO */

/* Crear sueÃ±o */
.box-info {
	margin-bottom: 15px;
}
.subir-imagen {
	background: url("../img/img-subir-foto.jpg") 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 5px 5px 0 0;
	min-height: 350px;
}
.btn-subir-imagen {
	margin: 0 auto;
	width: 60px;
	height: 50px;
	float: none;
}
.btn-imagen-editar {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -232px -36px / 408px 105px;
	height: 30px;
}
.icon-edit-mi-foto {
	width: 22px;
	height: 22px;
	background: transparent url("../img/btn_edit.png");
	position: absolute;
	z-index: 100;
	top: 100%;
	margin-top: -30px;
	right: 10px;
	cursor: pointer;
}
.icon-edit-mi-foto {
	display: block;
}
.icon-edit-foto-empresa {
	width: 30px;
	height: 30px;
	background: transparent url("../img/icon_upload.png");
	position: absolute;
	z-index: 100;
	bottom: 10px;
	right: 10px;
	margin-left: -18px;

	cursor: pointer;
}
.img-mi-perfil:hover .icon-edit-foto-empresa {
	display: block;
}

.icon-edit-logo-empresa {
	width: 30px;
	height: 30px;
	background: transparent url("../img/icon_upload.png");
	position: absolute;
	z-index: 100;
	bottom: 3px;
	right: 3px;
	margin-left: -12px;

	cursor: pointer;
}
.container-logo-empresa:hover .icon-edit-logo-empresa {
	display: block;
}

.cual-es-tu-sueno {
	height: 60px;
	text-align: center;
	border-radius: 5px;
	font-size: 20px;
	margin: 40px 0 20px 0;
	opacity: 0.8;
}

#sueno-descripcion {
	height: 80px;
	position: relative;
}
.maximo-caracteres {
	position: absolute;
	top: 82px;
	left: 12.5%;
	color: #cccccc;
}

.maximo-caracteres-publicacion {
	position: relative;
	bottom: 20px;
	left: 10px;
	color: #cccccc;
}
.tipo-categoria {
	width: 90%;
	padding: 5px 0;
	float: left;
	border-bottom: 1px solid #3f0098;
	margin-left: 5%;
	color: #3f0098;
	font-weight: 700;
}
.block-sueno-usuario {
	height: 350px;
}
/*.categoria-selected{
	width: 100%;
	height: 40px;
	border-bottom: 1px solid #CCCCCC;
	background: orange;
}*/
.box-valor-sueno-left {
	min-width: 230px;
	padding: 0 0 0 15px;
}
.box-valor-sueno-left h2 {
	font-size: 34px;
}
.box-valor-sueno-right {
	min-width: 230px;
	padding: 0 15px 0 0;
}
.valor-sueno {
	font-size: 28px;
	border-bottom: 1px solid #ffb500;
}
.form-control-buscar-tienda {
	width: 194%;
	height: 40px;
	padding: 6px 12px;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
	transition:
		border-color 0.15s ease-in-out 0s,
		box-shadow 0.15s ease-in-out 0s;
}
.form-control-buscar-producto {
	display: block;
	width: 472%;
	height: 41px;
	padding: 6px 12px;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
	transition:
		border-color 0.15s ease-in-out 0s,
		box-shadow 0.15s ease-in-out 0s;
}
.form-control-valor-producto {
	width: 218px;
	height: 40px;
	padding: 6px 12px;
	margin-bottom: 10px;
	float: left;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
	transition:
		border-color 0.15s ease-in-out 0s,
		box-shadow 0.15s ease-in-out 0s;
}
.producto-seleccionado {
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #cccccc;
	margin: 0;
}
.producto-seleccionado span {
	line-height: 30px;
}
.btn-buscar-tienda {
	width: 100%;
	height: 40px;
	color: #aaaaaa;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 5px;
	transition: border 0.4s linear 0s;
	padding-left: 30px;
	position: relative;
	text-align: left;
}
.btn-buscar-tienda:hover {
	border: 1px solid #3f0098;
}
.icon-buscar-tienda {
	width: 35px;
	height: 27.2px;
	border: medium none;
	position: absolute;
	top: 50%;
	margin-top: -13px;
	left: 2px;
	z-index: 10;
	background: transparent url("../img/sprite-menu-lat.svg") no-repeat scroll 0px 0px / 280px 54.4px;
}
.buscar-circle-container {
	width: 100%;
	height: 90px;
	position: absolute;
	margin-top: -30px;
	z-index: 10;
}
.modal-circle {
	width: 90px;
	height: 90px;
	border-radius: 45px;
	background: #ffffff;
	padding-top: 10px;
	margin: 0 auto;
}
.modal-circle .circle-morado {
	width: 70px;
	height: 70px;
	border-radius: 35px;
	background: #3f0098;
	margin: 0 auto;
	border: none;
	padding-top: 12px;
}
.btn-modal-buscar-producto {
	width: 34px;
	height: 34px;
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -360px -30px / 408px 105px;
	margin: 0 auto;
	display: block;
}
.btn-modal-logo {
	width: 45px;
	height: 45px;
	background: transparent url("../img/white-logo.svg") no-repeat scroll 0 0 / 45px 45px;
	margin: 0 auto;
	display: block;
}
.box-btn-producto {
	padding: 0 10px;
}
.btn-producto {
	width: 30px;
	height: 30px;
	float: left;
	margin-top: 10px;
	border: none;
	display: block;
}
.check0 {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll 0px 0px / 408px 105px;
}
.check1 {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -30px 0px / 408px 105px;
}
.check2 {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -60px 0px / 408px 105px;
}
.quitar {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -90px 0px / 408px 105px;
}
.info-icon {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -121px 0px / 408px 105px;
	margin: 5px auto 10px auto;
	float: none;
	display: block;
}

/* Modal Agregar Producto */
.box-producto {
	background: #ffffff;
	border-radius: 5px;
	border: 1px solid #cccccc;
	margin-top: 20px;
}

.box-producto-img {
	width: 100%;
	height: 120px;
	overflow: hidden;
	position: relative;
}
.box-producto-img img {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
}

.box-producto-text {
	padding: 10px;
	border-radius: 0 0 4px 4px;
	text-align: left;
}

/* Box persona */
.box-persona,
.box-seguidor {
	width: 100%;
	border: 1px solid #3f0098;
	border-radius: 5px;
	float: left;
}
.box-seguidor {
	max-width: 270px;
}
.modal-content .box-persona {
	margin-bottom: 15px;
	background: #fff;
}
.modal-content .box-persona p {
	margin: 0 10px;
	line-height: 18px;
	width: auto;
	font-size: 13px;
}
.box-persona .block-gris,
.box-seguidor .block-gris {
	height: 90px;
	padding: 0 2px 0 0;
	border-radius: 4px 0 0 4px;
}
/*.box-persona .block-gris img, .box-seguidor .block-gris img{
	max-height: 90px;
	margin: 0 auto;
}*/
.box-persona .block-amarillo {
	padding: 12px;
	border-radius: 0 4px 4px 0;
	color: #ffffff;
	min-height: 90px;
}
.box-persona-votos,
.box-ranking-votos {
	width: 35px;
	height: 30px;
	margin: 0 auto;
	/*--background: transparent url("../img/sprite-icon.svg") no-repeat scroll -185px 0px / 408px 105px;--*/
	background: url(../img/img-sprite.svg);
	background-size: 57px auto;
	background-position: 5px 95px;
}
.box-persona-cohetes {
	background: transparent url("../img/cohete_blanco_f_amarillo.png") no-repeat;
	background-size: 18px auto;
	width: 20px !important;
	display: inline-block;
	vertical-align: middle;
}
.content-box-per-cohetes {
	margin: 16px 0px;
}
.box-per-cohetes {
	width: 20px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: unset;
}
.box-per-cohetes.c-manzana {
	background-image: url(../img/cohete_manzana.svg);
}
.box-per-cohetes.c-verde {
	background-image: url(../img/cohete_verde.svg);
}
.box-per-cohetes.c-morado {
	background-image: url(../img/cohete_morado.svg);
}
.box-per-cohetes.c-fucsia {
	background-image: url(../img/cohete_fucsia.svg);
}
.content-box-per-candies {
	margin: 21px 0px;
}
.box-per-candies {
	width: 45px;
	height: 21px;
	background-image: url(../img/sprite-candies.svg);
	background-size: auto 100%;
}
.box-per-candies.c-manzana {
	background-position: 0px 0;
}
.box-per-candies.c-verde {
	background-position: -251px 0;
}
.box-per-candies.c-morado {
	background-position: -505px 0;
}
.box-per-candies.c-fucsia {
	background-position: -759px 0;
}
.content-box-mis-contactos {
	background: #fff !important;
}
.background-unset {
	background: unset !important;
}
.box-persona-numero-votos {
	width: 100%;
	line-height: 27px;
	margin: 0 auto;
	text-align: center;
	color: #3f0098;
}
.modal-content .box-seguidor p {
	margin: 15px 0 0 15px;
	line-height: 18px;
}
.box-persona a:hover p {
	color: #3f0098;
}
.box-persona input[type="checkbox"] + label span {
	margin: 5px 0px 0 32px;
}

/* Cifras */
.block-cifras {
	height: 220px;
	padding: 0 5px;
	line-height: 18px;
	text-decoration: none !important;
}
.link-cifras {
	text-decoration: underline;
	font-size: 11px;
	margin-top: 20px;
	display: inline-block;
}

/*Box Ranking */
#ranking-mi-sueno .number-ranking,
#ranking-mi-sueno .block-amarillo {
	background: #3f0098;
}
.box-ranking {
	width: 300px;
	border-radius: 5px;
	border: 1px solid #3f0098;
	float: left;
	margin: 20px 0 15px 10px;
	position: relative;
	display: inline-block;
}
.padding-box-left {
	padding: 0 5px 0 15px;
}
.padding-box-right {
	padding: 0 15px 0 5px;
}
.number-ranking {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: #ffb500;
	border: 5px solid #ffffff;
	line-height: 40px;
	font-size: 26px;
	position: absolute;
	top: -25px;
	left: 50%;
	margin-left: -25px;
	color: #ffffff;
}
.modal-content .box-ranking {
	width: 95%;
}
.modal-content .box-ranking p {
	line-height: 15px;
	margin: 30px 0 0 5px;
	width: auto;
}
.box-ranking span.min-text {
	line-height: 13px;
}
.box-ranking-foto {
	padding: 32px 5px 0px 10px;
}
.box-ranking .block-amarillo {
	height: 180px;
	padding: 50px 0;
	border-radius: 0 4px 4px 0;
	color: #ffffff;
}
.box-ranking-numero-votos {
	line-height: 32px;
	margin: 0 auto;
	text-align: center;
	font-size: 14px;
}

/*Boxes PublicaciÃ³n */
.container-row-publicaciones {
	width: 100%;
	float: left;
}
.container-publicacion {
	width: 48%;
	height: 417px;
	min-width: 240px;
	max-width: 366px;
	float: left;
	margin: 0 1% 30px 1%;
	display: block;
}
.mi-publicacion {
	height: 310px;
}
.container-row-productos {
	width: 100%;
}
/* .container-producto {
	width: 48%;
	min-width: 240px;
	max-width: 366px;
	//height: 565px;
	margin: 0 1% 20px 1%;
	float: left;
} */

.container-all-store {
	width: 100%;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: repeat(auto-fill, 370px);
	/* grid-auto-rows: 10px; */
	grid-gap: 10px;
	justify-content: center;
	padding-bottom: 65px;
}

.card-store-small-1 {
	grid-row: span 24;
}
.card-store-small-2 {
	grid-row: span 25;
}
.card-store-medium-1 {
	grid-row: span 27;
}
.card-store-medium-2 {
	grid-row: span 28;
}
.card-store-large-1 {
	grid-row: span 30;
}
.card-store-large-2 {
	grid-row: span 31;
}

.container-producto {
	width: 370px;
	padding: 5px;
}
.content-dinamic .container-producto {
	width: 100%;
	padding: 0px 5px;
}
.container-img-producto {
	height: 220px;
	position: relative;
	overflow: hidden;
	float: none !important;
}
.container-img-producto img {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
}

.agregar-carrito {
	/*margin-bottom: 120px;*/
	float: left;
}
.container-banner-empresa,
.container-banner-empresa-exp {
	width: 48%;
	min-width: 240px;
	max-width: 335px;
	float: left;
	margin: 0 1% 30px 1%;
}
.container-banner-empresa-exp {
	height: 474px;
	display: table;
}
.table-banner-empresa {
	display: table-cell;
	vertical-align: middle;
}
.box-banner-empresa {
	width: 250px;
	/*height: 250px;*/
	margin: 0 auto;
	/*--border: 1px solid #CCC;--*/
	overflow: hidden;
	position: relative;
}
.box-banner-empresa img {
	/*width: 100%;
	position: absolute;
	top:-100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto !important;*/
}

.box-nueva-publicacion {
	width: 100%;
	min-width: 260px;
	height: 321px;
	padding: 26% 0px;
	border-radius: 8px;
	border: 3px dashed #738296;
	float: left;
}
.btn-nueva-publicacion {
	width: 75px;
	height: 75px;
	margin: 0 auto;
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll 0 -30px / 408px 105px;
	opacity: 0.5;
}

.box-publicacion {
	width: calc(100% - 8px);
	min-width: 250px;
	border: 1px solid #738296;
	border-radius: 5px;
	float: left;
	background: #fff;
	margin: 0 4px;
}
.box-publicacion-prod {
	width: 100%;
	border: 1px solid #738296;
	border-radius: 5px;
	float: left;
	background: #fff;
}
.corner-box {
	width: 60px;
	height: 49.5px;
	position: absolute;
	z-index: 1;
	padding: 0;
	border: 0;
	background: transparent url("../img/corner-box.png") no-repeat scroll 0 0;
	background-size: cover;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
	border-radius: 4px 0 4px 0;
	cursor: pointer;
}

.corner-box-plus,
.corner-box-minus {
	width: 20px;
	height: 20px;
	margin: 5px;
}
.corner-box-plus {
	background: transparent url("../img/sprite-corner-box.svg") no-repeat scroll 0 0 / 40px 20px;
}
.corner-box-minus {
	display: none;
	background: transparent url("../img/sprite-corner-box.svg") no-repeat scroll -20px 0 / 40px 20px;
}
.corner-box.box-open .corner-box-plus {
	display: none;
}
.corner-box.box-open .corner-box-minus {
	display: block;
}
.icon-expandir-publicacion {
	width: 29px;
	height: 29px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -324px -58px / 408px 105px;
	opacity: 0.8;
	transition: opacity 0.4s linear 0s;
	opacity: 0;
	transition: all 0.4s;
}

.container-publicacion:hover .icon-expandir-publicacion {
	opacity: 1;
}

.container-publicacion-options {
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	background: #3f0098;
}
.box-sueno .container-publicacion-options {
	background: #313338;
}

span.fecha-publicacion {
	width: 67%;
	float: left;
}
.box-publicacion-editar,
.box-publicacion-cerrar,
.icon-expandir-mi-publicacion {
	width: 29px;
	height: 29px;
	float: right;
	margin: 4px 0 0 4px;
	/*position: absolute;
	top:5px;
	z-index: 10;*/
}
.box-publicacion-editar {
	/*right:45px;*/
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -232px -38px / 408px 105px;
}
.box-publicacion-cerrar {
	/*right:10px;*/
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -263px -38px / 408px 105px;
}
.icon-expandir-mi-publicacion {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -356px -60px / 408px 105px;
	margin-top: 6px;
}
.icon-expandir-publicacion:hover {
	opacity: 1;
}

.box-publicacion-editar.edit-producto {
	width: 32px;
	height: 32px;
	background: transparent url("../img/sprite-icon-2.svg") no-repeat scroll 0px 0px / 200px 80px;
}
.box-publicacion-cerrar.delete-poducto {
	width: 32px;
	height: 32px;
	background: transparent url("../img/sprite-icon-2.svg") no-repeat scroll -40px 0px / 200px 80px;
	margin: 6px 5px 0 0;
}

.subir-imagen-editar {
	width: 29px;
	height: 29px;
	position: absolute;
	top: -10px;
	right: -10px;
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -232px -38px / 408px 105px;
}
.box-publicacion-foto,
.box-publicacion-video,
.box-publicacion-audio,
.box-publicacion-doc {
	width: 33px;
	height: 34px;
	position: absolute;
	bottom: 10px;
	left: 15px;
	z-index: 10;
}
.btn-modal-publicacion-foto,
.btn-modal-publicacion-video,
.btn-modal-publicacion-audio,
.btn-modal-publicacion-pdf {
	width: 33px;
	height: 34px;
	margin-left: 19px;
	display: block;
}

.box-publicacion-foto,
.btn-modal-publicacion-foto {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -197px -69px / 408px 105px;
}
.box-publicacion-video,
.btn-modal-publicacion-video {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -195px -34px / 408px 105px;
}
.box-publicacion-audio,
.btn-modal-publicacion-audio {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -230px -68px / 408px 105px;
}
.box-publicacion-doc,
.btn-modal-publicacion-pdf {
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -262px -68px / 408px 105px;
}
.box-publicacion-fecha {
	width: 90px;
	height: 26px;
	line-height: 16px;
	padding: 5px 0px;
	position: absolute;
	bottom: 35px;
	right: 0px;
	z-index: 10;
	background: rgba(255, 255, 255, 0.4);
	color: #232428;
}
.box-publicacion-inf {
	height: 60px;
	border-right: 1px solid #738296;
	padding: 12px 0;
	background: #ffffff;
	cursor: pointer;
}
.box-publicacion-inf:last-child {
	border-right: none;
	padding: 12px 0;
	border-radius: 0 0 3px 0;
}
.box-btn-publicacion {
	width: 28px;
	margin: 0 auto;
	display: block;
}
.box-btn-publicacion .tooltip-content.tooltip-share-btns {
	width: 220px;
}
/* .box-text-action {
	margin-left: 28px;
} */
.btn-publicacion {
	width: 25px;
	height: 25px;
	margin: 0 auto;
}
.box-publicacion-reportar {
	height: 60px;
	border-right: 1px solid #738296;
	padding: 18px 0;
	background: #ffffff;
	border-radius: 0 0 0 3px;
	cursor: pointer;
}
.btn-reportar-publicacion {
	width: 66px;
	margin: 0 auto;
	background: #ffffff;
}
.box-publicacion-reportar:hover .btn-reportar-publicacion {
	text-decoration: underline;
}
.box-publicacion-compartir,
.box-publicacion-votos,
.box-publicacion-voted,
.box-publicacion-none,
.box-publicacion-comentarios {
	width: 20px;
	height: 20px;
	margin: 0 auto;
}
.box-publicacion-compartir {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll 0 0;
	background-size: 132px 20px;
}
.box-publicacion-votos {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -19px 0;
	background-size: 132px 20px;
}
.box-publicacion-none {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -59px 0;
	background-size: 132px 20px;
}
.box-publicacion-voted {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -78px 0;
	background-size: 132px 20px;
}
.box-publicacion-comentarios {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -38px 0;
	background-size: 132px 20px;
}
.img-publicacion,
.box-descripcion,
.box-descripcion-doc {
	width: 100%;
	height: 220px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.img-publicacion img {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
}

.publicacion-youtube,
.publicacion-soundcloud {
	width: 100%;
	height: 220px;
	padding-bottom: 56.25%; /* 16:9 */
	z-index: 10;
	position: relative;
}
.publicacion-youtube iframe,
.publicacion-soundcloud iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.box-seccion iframe {
	width: 100%;
	height: 540px;
}

.box-descripcion,
.box-descripcion-doc {
	width: 100%;

	background: #313338;
	font-weight: 300;
	border-radius: 3px 3px 0 0;
	display: none;
}
.box-descripcion-doc {
	padding: 20px 15px 53px 15px !important;
	display: block !important;
	color: #ffffff;
}
.container-pdf iframe {
	width: 100%;
	height: 700px;
}

/* Modal Nueva PublicaciÃ³n */
#publicacion-foto,
#publicacion-video,
#publicacion-audio,
#publicacion-pdf {
	display: none;
}

/* Modal Invitar amigos */
.estado-invitado {
	width: 26px;
	height: 25px;
	margin: 6px 5px 0 0;
	float: right;
}
.acepto {
	background: transparent url("../img/sprite-notificacion.svg") no-repeat scroll 0px -1px;
	background-size: 244px 27px;
}
.espera {
	background: transparent url("../img/sprite-notificacion.svg") no-repeat scroll -28px -1px;
	background-size: 244px 27px;
}
.rechazo {
	background: transparent url("../img/sprite-notificacion.svg") no-repeat scroll -55px -1px;
	background-size: 244px 27px;
}
.agregar {
	background: transparent url("../img/sprite-notificacion.svg") no-repeat scroll -82px -1px;
	background-size: 244px 27px;
}

.currency {
	position: absolute;
	top: 70px;
	left: 240px;
}

/* Mis Sueños */
.box-sueno {
	border-radius: 4px;
	border: 1px solid #cccccc;
}
.box-sueno .container-nombre-sueno {
	top: 110px;
}
.box-sueno-cerrar {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 5px;
	z-index: 10;
}
.box-sueno-cerrar {
	right: 20px;
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -258px -31px / 408px 105px;
}

/* MENÚ LATERAL */
#left {
	position: absolute !important;
	width: 100px;
	height: 100%;
}
.clear {
	clear: both;
}
ul#menulateral {
	width: 60px;
	height: 560px;
	margin-top: 110px;
	position: fixed;
	z-index: 100;
	transition: margin-top 0.4s linear 0s;
}
#menulateral li {
	list-style: none;
	height: 60px;
	width: 60px;
}
#menulateral span {
	/* Container properties */
	width: 0;
	left: 60px;
	padding: 0;
	position: absolute;
	overflow: hidden;
	z-index: 100;
	/* Text properties */
	font-size: 18px;
	white-space: nowrap;
	line-height: 60px;
	/* CSS3 Transition: */
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	transition: 0.25s;
}
#menulateral a,
#menulateral .ml-buscar {
	background: url("../img/sprite-menu-lat-4.svg") no-repeat;
	height: 60px;
	width: 60px;
	display: block;
	position: relative;
	background-size: auto 120px;
}

/* General hover styles */
#menulateral a:hover span,
#menulateral .ml-buscar:hover span {
	width: 230px;
	overflow: visible;
}

#menulateral a:hover,
#menulateral .ml-buscar:hover {
	text-decoration: none;
}

#menulateral .ml-buscar:hover span,
#menulateral .ml-buscar.editar span {
	width: 400px;
	padding-left: 0 !important;
	overflow: visible;
}

#menulateral span {
	height: 60px;
	border-radius: 0 5px 5px 0;
	background: #3f0098;
	color: #ffffff;
}
/* Buscar */
#menulateral .ml-buscar {
	background-position: 0 0;
	border-radius: 5px 0 0 0;
}
#menulateral .ml-buscar:hover {
	background-position: 0 -60px;
}
#menulateral .ml-buscar span {
	background-color: #ffffff;
	color: #7a7a7a;
}
/*#menulateral .ml-buscar:hover span{ width:400px;padding-left:0!important;overflow:visible; }*/

#menulateral .ml-buscar span input {
	background-color: #ffffff;
	color: #7a7a7a;
	border-radius: 0 5px 5px 0;
	width: 400px;
	height: 60px;
	line-height: 60px;
}

/* Mi perfil */
#menulateral .ml-miperfil {
	background-position: -60px 0;
}
#menulateral .ml-miperfil:hover,
#menulateral .ml-miperfil-actual {
	background-position: -60px -60px;
}

/* Explorar sueÃ±os */
#menulateral .ml-explorar {
	background-position: -120px 0;
}
#menulateral .ml-explorar:hover,
#menulateral .ml-explorar-actual {
	background-position: -120px -60px;
}

/* Directorio de organizaciones */
#menulateral .ml-directorio {
	background-position: -180px 0;
}
#menulateral .ml-directorio:hover,
#menulateral .ml-directorio-actual {
	background-position: -180px -60px;
}

/* Tienda de sueÃ±os */
#menulateral .ml-tienda {
	background-position: -240px 0;
}
#menulateral .ml-tienda:hover,
#menulateral .ml-tienda-actual {
	background-position: -240px -60px;
}

/* Bolsa de estÃ­mulos */
#menulateral .ml-bolsa {
	background-position: -300px 0;
}
#menulateral .ml-bolsa:hover,
#menulateral .ml-bolsa-actual {
	background-position: -300px -60px;
}

/* Mi historial */
#menulateral .ml-historial {
	background-position: -360px 0;
	border-radius: 0 0 0 5px;
}
#menulateral .ml-historial:hover,
#menulateral .ml-historial-actual {
	background-position: -360px -60px;
}

/* Crear nuevo sueÃ±o */
#menulateral .ml-crearnuevo {
	background-position: -420px 0;
}
#menulateral .ml-crearnuevo:hover,
#menulateral .ml-crearnuevo-actual {
	background-position: -420px -60px;
}

#menulateral .ml-otros {
	background-position: -480px 0;
}
#menulateral .ml-otros:hover,
#menulateral .ml-otros-actual {
	background-position: -480px -60px;
}

#menulateral .ml-miperfil2 {
	background-position: -539px 0;
}
#menulateral .ml-miperfil2:hover,
#menulateral .ml-miperfil2-actual {
	background-position: -539px -60px;
}

/* ASIDE */
.aside-box {
	width: 90%;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	margin-left: 5%;
}
.aside-box img {
	margin: 0 auto;
}
.aside-block-blanco,
.aside-block-gris {
	width: 100%;
	margin-left: 0;
}
.aside-block-gris {
	background: #eaece6;
}
.img-perfil {
	width: 100%;
	max-width: 200px;
	height: auto;
	margin: 0 auto;
}
.container-logo-empresa {
	width: 100%;
	height: 120px;
	margin-top: -40px;
}
.box-logo-empresa {
	width: 120px;
	height: 120px;
	border-radius: 10px;
	overflow: hidden;
	background: #eaece6;
	margin: 0 auto;
	border: 3px solid #ccc;
	position: relative;
}
.box-logo-empresa img {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
}

.img-mi-perfil {
	width: 100%;
	height: 230px;
	position: relative;
	overflow: hidden;
	/*border-bottom: 1px solid #CCC;*/
}
.img-mi-perfil img {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
/*.img-mi-perfil .upload-edit input{
    margin-top: -30px;
}*/
.container-editar-logo-empresa .upload-edit input {
	margin-top: -30px;
	width: 30px;
	height: 30px;
}
.table-bg {
	width: 200px;
	height: 200px;
	display: table;
}
.table-cell-bg {
	display: table-cell;
	vertical-align: middle;
	width: 200px;
	overflow: hidden;
	position: relative;
}
.img-mi-perfil-x {
	width: 200px;
	margin: 0 auto;
}
.circle-img-perfil-bg {
	width: 200px;
	height: 200px;
	border-radius: 100px;
	overflow: hidden;
	/*position: relative;*/
	background: #ccc;
	display: table;
}
.circle-img-perfil-bg img {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
	/*display: table-cell;
	vertical-align: middle;*/
}
.circle-img-perfil-md {
	width: 75px;
	height: 75px;
	border-radius: 40px;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	background: #ccc;
}
.circle-img-perfil-md img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	display: block;
	height: 100%;
	object-fit: cover;
}
.container-circle-sm {
	width: 60px;
	margin: 0 auto;
}
.circle-img-perfil-sm {
	width: 60px;
	height: 60px;
	position: relative;
	margin: 0 auto;
}
.circle-img-perfil-sm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.table-xs {
	width: 40px;
	height: 40px;
	display: table;
}
.table-cell-xs {
	display: table-cell;
	vertical-align: middle;
	width: 40px;
}
.circle-img-perfil-xs {
	max-width: 40px;
	max-height: 40px;
	border-radius: 25px;
	overflow: hidden;
	margin: 0 auto;
}
.circle-img-perfil-xs img {
	width: 100%;
	height: 40px;
}

.box-persona .block-gris .circle-img-perfil-md {
	margin: 8px auto;
}
.box-persona .block-gris .circle-img-perfil-xs {
	margin: 20px auto;
}

.container-editar-foto {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 135px;
	left: 50%;
	margin-left: -15px;
	opacity: 0;
	background: transparent url("../img/sprite-icon.svg") no-repeat scroll -232px -36px / 408px 105px;
}
/*--.container-edit-mi-foto{
	position: absolute;
	width:200px;
	height: 200px;
	top: 0;
	left: 0;
	opacity:0;
}--*/
.container-edit-foto-empresa {
	position: absolute;
	width: 100%;
	height: 230px;
	top: 0;
	left: 0;
	opacity: 0;
}
.container-edit-logo-empresa {
	position: absolute;
	width: 120px;
	height: 120px;
	top: 0;
	left: 0;
	opacity: 0;
}
.btn-informacion:hover {
	text-decoration: underline;
	color: #3f0098;
}
.aside-box .maximo-caracteres {
	top: 165px !important;
	left: 25px;
}

.box-participante img {
	max-width: 75px;
}
.box-participante a:hover p {
	color: #3f0098;
	text-decoration: underline;
}
.container-invitar {
	width: 100%;
	height: 55px;
	margin: 0 auto;
}

.container-comp-emp {
	width: 270px;
	height: 40px;
	margin: 5px auto;
}
.container-comp-pub {
	width: 240px;
	margin: 5px auto 0;
}
.container-comp-pub .custom_images {
	display: flex;
	justify-content: space-between;
}

.container-invitar-sm {
	width: 240px;
	margin: 10px auto;
}
.container-invitar-sm1,
.container-invitar-sm2 {
	width: 92px;
	height: 40px;
	margin: 0 0 0 15px;
	display: inline-block;
	vertical-align: top;
	text-align: right;
}
.container-invitar-sm2 {
	margin: 0 auto;
	text-align: left;
}
.btn-invitar-facebook,
.btn-invitar-twitter,
.btn-invitar-gmail,
.btn-invitar-hotmail,
.btn-invitar-yahoo {
	width: 50px !important;
	height: 50px;
	border-radius: 25px;
	margin: 0 10px 10px 0;
	padding: 10px 0;
}
.btn-invitar-facebook,
.btn-invitar-facebook-sm {
	background: #38549c;
	border-bottom: 2px solid #193a8f;
}
.btn-invitar-twitter,
.btn-invitar-twitter-sm {
	background: #000;
	border-bottom: 2px solid #000;
}
.btn-invitar-gmail,
.btn-invitar-gmail-sm,
.btn-invitar-hotmail,
.btn-invitar-hotmail-sm {
	background: #e5e5e5;
	border-bottom: 2px solid #cccccc;
}
.btn-invitar-yahoo,
.btn-invitar-yahoo-sm {
	background: #65479c;
	border-bottom: 2px solid #542d90;
	margin-right: 0 !important;
}

.btn-invitar-sc-sm,
.btn-invitar-copy-sm,
.btn-invitar-mail-sm {
	background: #ffb500;
	/*background: #ffb500 url(../img/icon_sc.jpg);*/
	border-bottom: 2px solid #dc9d02;
}
.btn-invitar-wsp-sm {
	background: #25d366;
	border-bottom: 2px solid #25d366;
}
.btn-invitar-linkedin-sm {
	background: #0077b5;
	border-bottom: 2px solid #0077b5;
}
.btn-invitar-insta-sm {
	background: #d6249f;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.icon-invitar-facebook {
	width: 14px;
	height: 29px;
	margin: 0 auto;
	background: url("../img/sprite-aside.svg") 0px 0px no-repeat;
	background-size: 225px 30px;
}
.icon-invitar-twitter {
	width: 31px;
	height: 24px;
	margin: 4px auto;
	background: url("../img/sprite-aside.svg") -16px 0 no-repeat;
	background-size: 225px 30px;
}
.icon-invitar-gmail {
	width: 32px;
	height: 27px;
	margin: 0px auto;
	background: url("../img/sprite-mails.svg") -2px 0 no-repeat;
	background-size: 150px 30px;
}
.icon-invitar-hotmail {
	width: 32px;
	height: 27px;
	margin: 0px auto;
	background: url("../img/sprite-mails.svg") -40px 0 no-repeat;
	background-size: 150px 30px;
}
.icon-invitar-yahoo {
	width: 32px;
	height: 28px;
	margin: 0px auto;
	background: url("../img/sprite-mails.svg") -80px 0 no-repeat;
	background-size: 150px 30px;
}

.btn-invitar-facebook-sm,
.btn-invitar-twitter-sm,
.btn-invitar-wsp-sm,
.btn-invitar-insta-sm,
.btn-invitar-linkedin-sm,
.btn-invitar-copy-sm,
.btn-invitar-mail-sm,
.btn-invitar-gmail-sm,
.btn-invitar-hotmail-sm,
.btn-invitar-yahoo-sm,
.btn-invitar-sc-sm {
	width: 22px !important;
	height: 22px;
	border-radius: 20px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

.icon-invitar-facebook-sm {
	width: 19px;
	height: 22px;
	margin: 0 auto;
	background: url("../img/sprite-aside.svg") -7px 2px no-repeat;
	background-size: 283px 22px;
}
.icon-invitar-sc-sm {
	width: 19px;
	height: 20px;
	margin: 0 auto;
	background: url("../img/sprite-aside.svg") -225px -8px no-repeat;
	background-size: 282px 39px;
}
.icon-invitar-twitter-sm {
	width: 17px;
	height: 22px;
	margin: 2px auto;
	background: url("../img/sprite-aside.svg") -9px 0px no-repeat;
	background-size: 185px 22px;
}
.icon-invitar-wsp-sm {
	width: 20px;
	height: 22px;
	margin: 2px auto;
	background: url("../img/sprite-aside.svg") -142px -1px no-repeat;
	background-size: 254px 20px;
}
.icon-invitar-insta-sm {
	width: 19px;
	height: 25px;
	margin: 2px auto;
	background: url("../img/sprite-aside.svg") -198px -1px no-repeat;
	background-size: 275px 22px;
}
.icon-invitar-linkedin-sm {
	width: 19px;
	height: 22px;
	margin: 2px auto;
	background: url("../img/sprite-aside.svg") -136px 0px no-repeat;
	background-size: 212px 18px;
}
.icon-invitar-copy-sm {
	width: 16px;
	height: 20px;
	margin: 2px auto;
	background: url("../img/sprite-aside.svg") -230px -1px no-repeat;
	background-size: 290px 20px;
}
.icon-invitar-mail-sm {
	width: 20px;
	height: 22px;
	margin: 2px auto;
	background: url("../img/sprite-aside.svg") -221px -7px no-repeat;
	background-size: 240px 33px;
}
.content-icon-gmail-sm {
	background: #fff;
	border-bottom: 2px solid #cccccc;
	width: 40px !important;
	height: 40px;
	border-radius: 25px;
	margin: 0 10px 0px 0;
	padding: 10px 0;
}
.icon-invitar-gmail-sm {
	width: 23px;
	height: 20px;
	margin: 0px auto;
	background: url("../img/sprite-mails.svg") -1px 0 no-repeat;
	background-size: 100px 20px;
}
.icon-invitar-hotmail-sm {
	width: 20px;
	height: 20px;
	margin: 0px auto;
	background: url("../img/sprite-mails.svg") -26px 0 no-repeat;
	background-size: 100px 20px;
}
.icon-invitar-yahoo-sm,
.icon-invitar-yahoo2-sm {
	width: 21px;
	height: 18px;
	margin: 0px auto;
	background: url("../img/sprite-mails.svg") -53px 0 no-repeat;
	background-size: 100px 20px;
}
.icon-invitar-yahoo2-sm {
	background: url("../img/sprite-mails.svg") -77px 0 no-repeat;
	background-size: 100px 20px;
}

.container-organizaciones {
	background: #ffffff;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
}
.box-organizaciones {
	height: 180px;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	display: flex;
	justify-content: center;
	align-items: center;
}
.box-organizaciones a {
	width: 95%;
	max-width: 125px;
	display: table-cell;
	vertical-align: middle;
}
.box-organizaciones img {
	width: 95%;
	max-width: 125px;
}
.container-control-organizaciones {
	width: 35px;
	float: right;
}
#control-organizaciones-left {
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -15px;
}
#control-organizaciones-right {
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -15px;
}
.container-control-carrito{
	display: none;
}
.control-carrito-left {
	position: absolute;
	top: 61%;
	left: 20px !important;
}
.control-carrito-right {
	position: absolute;
	top: 61%;
	right: 20px !important;
}
.aside-sueno,
.aside-sueno-gris {
	width: 92%;
	margin: 0 4%;
	padding: 0 2% 20px 0;
}
.aside-sueno-gris {
	background: #eaece6;
}
.aside-sueno-hidden,
.btn-cerrar-suenos {
	display: none;
}
.desasociar {
	width: 12px;
	height: 12px;
	background: url("../img/desasociar.svg") 0 0 no-repeat;
	display: inline-block;
	float: right;
}
.sueno-cumplido {
	width: 120px;
	height: 40px;
	position: absolute;
	top: 10px;
	left: 5px;
	background: url("../img/sueno-cumplido.svg") 0 0 no-repeat;
	background-size: 120px 40px;
}
.label-aside-sueno {
	margin-right: 15px;
	padding: 8px 4px;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	bottom: 0;
}
.icon-nuevo-sueno {
	width: 45px;
	height: 35px;
	margin-right: 10px;
	float: left;
	background: url("../img/sprite-menu-lat.svg") -315px -35px no-repeat;
	background-size: 360px 70px;
}
.icon-seguidores {
	width: 40px;
	height: 40px;
	margin: -10px 0 0 20px;
	background: transparent url("../img/sprite-menu-lat.svg") no-repeat scroll -45px 0px / 360px 70px;
}

/* PERFIL USUARIO */

.container-banner-sueno {
	width: 100%;
	height: 350px;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
}

.container-banner-sueno img {
	width: 100%;
	position: absolute;
	top: -100%;
	left: 0;
	right: 0;
	bottom: -100%;
	margin: auto;
}

.container-nombre-sueno {
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 10;
	padding-left: 10px;
}

.votes_num {
	position: absolute;
	background: #ffb500;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	text-align: center;
	top: 15px;
	right: 15px;
	z-index: 2;
}
.votes_num p {
	font-size: 12px;
	color: #fff;
	margin: 0;
}
.votes_num h5 {
	font-size: 18px;
	color: #fff;
	margin: 0;
}
.container-nombre-sueno h1,
.container-nombre-sueno h2 {
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	margin: 0;
}
.container-nombre-sueno h1 {
	padding-bottom: 20px;
	font-size: 32px;
	line-height: 1em;
	margin-top: 10px;
}

.container-nombre-sueno h2 {
	font-size: 22px;
	line-height: 22px;
}
.descripcion-sueno-usuario {
	width: 100%;
	padding: 15px;
	background: #dedfdb;
	float: left;
}

/* PERFIL EMPRESA */

.container-tooltip-button {
	width: 150px;
	height: 42px;
	margin-top: 10px;
	float: left;
}
.container-subir-imagen {
	width: 83%;
	height: 50px;
	position: absolute;
	top: 170px;
}
.box-detalle-producto {
	margin-top: 20px;
	border-right: 1px solid #ffffff;
}
.box-detalle-producto:last-child {
	border-right: none;
}
.icon-detalle-producto {
	width: 27px;
	height: 27px;
	margin: 10px auto 5px auto;
}
.consideraciones {
	width: 92%;
	margin: 0 auto;
	border-bottom: 1px solid #cccccc;
}

.compartir {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll 0px 0px / 108px 84px;
}
.visto {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -54px 0px / 108px 84px;
}
.carrito {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -27px 0px / 108px 84px;
}
.detalle {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -82px 0px / 108px 84px;
}
/* .btn-ver-detalle:hover .detalle {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -82px -27px / 108px 54px;
	color: #3f0098;
}
.btn-ver-detalle:hover {
	color: #3f0098;
} */
.compartir-white {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll 0px -28px / 108px 84px;
}
.visto-white {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -54px -27px / 108px 84px;
}
.carrito-white {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -27px -28px / 108px 84px;
}
.detalle-white {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -82px -54px / 108px 84px;
}
/* .btn-ver-detalle:hover .detalle {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -82px -27px / 108px 54px;
	color: #3f0098;
}
.btn-ver-detalle:hover {
	color: #3f0098;
} */
.compartir-modal {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll 0 0 / 108px 84px;
}
.visto-modal {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -54px 0 / 108px 84px;
}
.carrito-modal {
	background: transparent url("../img/sprite-producto.svg") no-repeat scroll -27px 0 / 108px 84px;
}

.box-precio-producto {
	width: 100%;
	border-bottom: 1px solid #cccccc;
	float: left;
	margin-left: 0;
}
.box-precio-producto label {
	width: 100%;
	padding: 10px 0 5px 0;
	line-height: 5px;
	display: inline-flex
;
}
/*--.box-precio-producto label span{
	position: absolute;
	top:18px;
}--*/
.box-precio-producto .price_text {
	line-height: 16px;
	padding: 0px 5px;
	display: grid;
}
.box-precio-producto input[type="radio"] + label > span{
	margin: 0 4px 0 0;
}
.title-content-text-price .show-discounts {
	background-color: #ffb500;
	border-radius: 10px;
	padding: 0px 5px;
}
.content-btns-edit{
	display: inline-flex;
}
.content-product-discounts{
	display: none;
}
.modal-content .box-precio-producto p {
	line-height: 16px;
	padding-left: 45px;
}
.modal-content .box-precio-producto label span {
	margin-left: 10px;
}

.box-ahorro-producto {
	width: 100%;
	border-bottom: 1px solid #cccccc;
	float: left;
	background: #dadee3;
	padding-top: 10px;
	line-height: 20px;
	display: none;
}
.icon-empresa {
	width: 25px;
	height: 25px;
	display: inline-block;
	margin-right: 5px;
}
.website {
	background: url("../img/sprite-aside.svg") no-repeat scroll -175px -5px / 225px 30px;
}
.phone {
	background: url("../img/sprite-aside.svg") no-repeat scroll -200px -5px / 225px 30px;
}
.location {
	background: url("../img/sprite-aside.svg") no-repeat scroll -150px -5px / 225px 30px;
}

/* LISTADO EMPRESAS */
.filtrar {
	width: 21.4%;
	margin-right: 1%;
	float: left;
}
.box-empresa-inf {
	padding: 0;
	background: #ffffff;
	display: table;
}
.box-empresa-inf p {
	box-sizing: content-box;
	text-align: center;
	border-top: 1px solid #ccc;
	padding-top: 50px;
	height: 3.6em;
}
@-moz-document url-prefix() {
	.box-empresa-inf p {
		margin-top: -21px !important;
	}
}
.box-empresa-logo {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	background: #ffffff;
	border: 3px solid #ccc;
	position: absolute;
	top: -46px;
	left: 10px;
	overflow: hidden;
}
.box-empresa-cont-logo {
	width: 94px;
	height: 94px;
	border-radius: 10px;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}
.box-empresa-cont-logo img {
	width: 100%;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
	margin: auto;
}
.box-empresa-seguir {
	width: 100%;
	height: 53px;
	float: left;
	line-height: 38px;
	padding: 8px 0;
	color: #232428;
	border-radius: 0 0 4px 4px;
	border-top: 1px solid #cccccc;
}
.container-seguir {
	width: 95%;
	height: 38px;
	float: left;
	margin-left: 10px;
}
.box-empresa-seguidores {
	width: 35px;
	height: 35px;
	margin: 0 5px 0 10px;
	float: left;
	background: transparent url("../img/sprite-menu-lat.svg") no-repeat scroll -45px 0px / 360px 70px;
}
.block-img-seguidor {
	padding: 15px 0 !important;
	height: 90px;
}

.block-nombre-seguidor {
	padding: 0 10px !important;
	display: table;
	height: 90px;
}
.block-nombre-seguidor p {
	display: table-cell !important;
	vertical-align: middle !important;
}

/* LISTADO DE SUEÃ‘OS */
.box-sueno,
.box-sueno-cumplido {
	width: 100%;
	border: 1px solid #738296;
	border-radius: 5px;
	float: left;
	margin-bottom: 10px;
	background: #fff;
	position: relative;
}
.box-sueno-cumplido {
	width: 98%;
	height: 417px;
}
.box-nombre-pub {
	width: 100%;
	height: 55px;
	padding: 5px 0;
	display: table;
}
.box-nombre-pub p {
	display: table-cell;
	vertical-align: middle;
}
.box-nombre-sueno {
	width: 100%;
	height: 55px;
	padding: 5px 0;
	display: table;
}
.box-nombre-sueno span.nombre_sueno {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	padding-left: 20px;
}
.box-nombre-sueno .btn-primary {
	padding: 6px 10px;
	margin-right: 10px;
	margin-top: 6px;
	margin-left: 10px;
}
.box-nombre-sueno .box-publicacion-cerrar {
	margin-top: 8px;
	margin-right: 8px;
}
.box-sueno-cumplido .box-sueno-inf {
	height: 140px;
}
.box-sueno-inf {
	background: #ffffff;
	line-height: 13px;
	border-top: 1px solid #738296;
}
.box-sueno-perfil {
	width: 100%;
	height: 60px;
	margin: -3px auto;
}
.box-usuario {
	height: 139px;
	padding-top: 20px;
	/* margin-right: 10px; */
	border-right: 1px solid #738296;
	background: #dedfdb;
}
/*.box-sueno-perfil img{
	margin: 0 auto;
	max-width: 60px;
	max-height: 60px;
}*/
.box-sueno-perfil a {
	text-align: center;
}
.box-sueno-perfil a p {
	line-height: 12px;
	margin-top: 5px;
}
.box-sueno-inf p:first-child {
	margin-top: 15px;
	margin-bottom: 5px;
	min-height: 4.8em;
}
.text-categorias {
	line-height: 13px;
	height: 6.5rem;
	overflow: hidden;
}

.box-sueno-botones {
	border-top: 1px solid #738296;
}
.box-sueno-compartir,
.box-sueno-votos,
.box-sueno-comentarios {
	width: 20px;
	height: 20px;
	float: left;
	margin: 0px 10px 5px 0;
}
.box-sueno-compartir {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll 0 0;
	background-size: 80px 20px;
}
.box-sueno-votos {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -20px 0;
	background-size: 8px 20px;
}
.box-sueno-comentarios {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -40px 0;
	background-size: 80px 20px;
}
.banner-empresa {
	margin: 30px auto 20px auto;
}

.tag-sueno-cumplido {
	width: 200px;
	height: 66px;
	line-height: 18px;
	padding: 7px 0 0 20px;
	position: absolute;
	top: 8px;
	left: -18px;
	z-index: 10;
	background: transparent url("../img/tag-sueno-cumplido.svg") no-repeat scroll 0 0 / 200px 66px;
	color: #ffffff;
}

/* TIENDA DE SUEÃ‘OS */
.text-slider {
	width: 30%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	background: #3f0098;
	color: #ffffff;
	padding: 20px 5%;
}
.box-producto-inf {
	width: 100%;
	padding: 16px 0 6px 0;
	background: #ffffff;
}
.title-producto-more {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px 5px;
	height: 1.7rem;
}
.box-producto-botones {
	width: 100%;
	padding: 0px 4%;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}
.box-precio-votos:after {
	content: "";
	width: 24px;
	height: 24px;
	background: transparent url("../img/cash_vote.png") no-repeat;
	background-size: 100% 100%;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}

/* CARRITO */
.valign {
	vertical-align: middle !important;
}
.valign-select {
	padding-top: 30px !important;
}
.quitar-producto {
	float: none;
	margin: 0 auto;
}

.box-producto-votos {
	width: 20px;
	height: 20px;
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -20px 0px / 80px 20px;
	display: inline-block;
}
.table-carrito .box-producto-votos {
	margin-right: 20px;
}
.container-form-pago,
#container-cohetes-forma-pago {
	display: none;
}
.forma-pago {
	padding: 20px;
	font-size: 20px;
	border-radius: 5px;
	background: #eaece6;
}
.btn-pago-efectivo {
	max-width: 164px;
	display: block;
	margin: auto;
	margin-top: 15px;
}
.img-nequi{
	max-width: 146px !important;
}
.nequi-desktop {
	display: none;
	font-size: 8px;
	margin: unset !important;
}
.btn-pago-enlinea {
	max-width: 100%;
}

/* HISTORIAL */
.row-table {
	width: 100%;
}
.historico-votos .box-persona .block-gris {
	padding: 15px 10px;
}
.box-historial-compra {
	width: 100%;
	border: 1px solid #cccccc;
	border-radius: 0 0 5px 5px;
	margin-left: 15px;
	background: #ffffff;
}
.title-historial-compra {
	margin: 0 0 0 15px;
	height: 45px;
	background: #3f0098;
	color: #ffffff;
	border-radius: 5px 5px 0 0;
	line-height: 40px;
	padding: 0 10px;
}
.title-historial-span {
	padding: 0 5px;
	text-align: left;
	float: left;
}
.table > thead > tr > th {
	line-height: 18px;
}
.historico-votos .box-persona p {
	margin: 7px 0 0 10px;
	line-height: 18px;
}
.width5 {
	width: 5%;
}
.width10 {
	width: 10%;
}
.width11 {
	width: 11%;
	min-width: 100px;
}
.width12 {
	width: 12%;
	min-width: 100px;
}
.width15 {
	width: 15%;
}
.width23 {
	width: 23%;
	min-width: 180px;
}
.width25 {
	width: 25%;
}
.width30 {
	width: 30%;
}
.width34 {
	width: 34%;
}
.width40 {
	width: 40%;
}
.width70 {
	width: 70%;
}

/* BOLSA DE ESTÍMULOS */
.container-ranking {
	width: 100%;
	height: 550px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	padding: 15px;
	overflow-y: scroll;
}
.container-ranking p,
.box-mi-ranking p {
	line-height: 16px;
	margin: 30px 0 0 10px;
}
.tipo-bar {
	width: 0px;
	height: 30px;
}
.tipo-bar p span {
	display: none;
}
.tipo-sueno1 {
	background: #7846e1;
}
.tipo-sueno2 {
	background: #417de1;
}
.tipo-sueno3 {
	background: #e03c3c;
}
.tipo-sueno4 {
	background: #ffb500;
}

.scroll-box-fluid .box-ranking p,
.box-ranking p {
	margin-top: 28px;
	line-height: 18px;
}

/* RESULTADOS BÚSQUEDA */
ul.nav-tabs {
	margin-left: -50px;
}
.btn-tab {
	padding: 10px 20px !important;
}
.cifra-resultados {
	width: 24px;
	height: 24px;
	border-radius: 12px;
	color: #ffffff;
	position: relative;
	top: 0px;
	right: -8px;
	font-size: 12px;
	line-height: 24px;
	text-align: center;
	float: right;
}
.container-resultados {
	min-height: 500px;
}

/* FOOTER */
.page-wrap {
	min-height: 100%;
}
.page-wrap:after {
	content: "";
	display: block;
}
footer {
	height: 160px;
}
.footer {
	background: #3f0098;
	width: 100%;
	padding-top: 20px;
	color: #ffffff;
	font-size: 12px;
	float: right;
	position: relative;
	bottom: 0;
}
footer {
	background: #3f0098;
	width: 100%;
	padding-top: 20px;
	color: #ffffff;
	font-size: 12px;
	float: left;
	position: relative;
	bottom: 0;
}
footer p {
	margin: 15px 0 0 20px;
}
.footer p {
	margin: 15px 0 0 10px;
}
footer p a,
.footer p a {
	color: #ffffff;
	margin-top: 20px;
}
footer p a:hover,
.footer p a:hover {
	color: #fafafa;
	text-decoration: underline;
}
footer img {
	max-width: 210px;
	float: right;
	margin-bottom: 10px;
	margin-top: 10px;
	width: 100%;
}
.footer img {
	max-width: 150px;
	padding: 5px;
	margin-bottom: 10px;
	margin-top: 25px;
	width: 100%;
}
.pie {
	width: 100%;
	padding: 10px;
	text-align: center;
	background: #39008a;
	margin-top: 10px;
}
.pie .container {
	position: relative;
}

.copyright span {
	font-size: 1.5em;
}

/* MODAL */

.modal-center{
	top: calc(50% - 170px) !important;
}
.modal-center-2{
	top: calc(50% - 230px) !important;
}

.modal-content {
	border-radius: 12px 12px 6px 6px;
	text-align: center;
	padding-bottom: 10px;
}
.modal-content p {
	width: 100%;
	margin: 10px auto;
	max-width: 800px;
}
.modal-header {
	background: #3f0098;
	border-radius: 6px 6px 0 0;
	color: #ffffff;
}
.modal-body {
	text-align: left;
}
.modal-btn-text {
	background: none;
	margin-top: 15px;
	float: left;
}
.modal-btn-text:hover {
	opacity: 0.8;
}
button.close {
	color: #3f0098;
	opacity: 1;
	background: #ffffff;
	padding: 0 7px 5px 7px;
	border-radius: 13px;
	position: absolute;
	top: 9px;
	right: 9px;
}
.block-morado button.close {
	right: 20px;
}
button.close:hover {
	opacity: 0.8;
}
.close-text {
	line-height: 13px;
	margin-top: 8px;
}

.modal-box {
	width: 96%;
	/*float: left;*/
	margin: 0 2%;
}

.scroll-box,
.scroll-box-fluid {
	width: 92%;
	height: 350px;
	margin: 10px 4%;
	background: #e6e6e6;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 10px 10px 10px 20px;
	border-radius: 5px;
	border: 1px solid #cccccc;
}
.scroll-box-fluid {
	width: 100%;
	height: 320px;
	margin: 10px 0;
}

.scroll-box::-webkit-scrollbar {
	width: 8px;
}

.scroll-box::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.scroll-box::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.5);
	background: #cccccc;
}

.block-notificaciones.scroll-box {
	height: 300px;
	width: 320px;
	overflow: auto;
	background: transparent;
	border: none;
	padding: 0;
	border-radius: 0;
}

.block-comentario {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 20px;
}
.text-comentario {
	padding-left: 10px;
}

.box-pautar {
	border: 1px solid #cccccc;
	border-radius: 4px;
	padding: 10px;
	float: left;
	margin-bottom: 20px;
}
.box-pautar img {
	margin: 0 auto;
	width: 250px;
	height: 250px;
}
.box-pautar-textarea {
	float: left;
	width: 100%;
}

#modalPublicacionGaleria .modal-header,
#modalVerPdf .modal-header {
	background: #fff;
	border-bottom: none;
}
#modalPublicacionGaleria .carousel-control {
	margin-top: 135px;
}

#modalPublicacionGaleria .carousel-indicators,
.carousel-indicators.indicators-sm {
	bottom: 0;
}

#modalComentarios,
#modalVerPdf,
#modalPublicacionGaleria {
	z-index: 1100;
}

.carousel-fade {
	opacity: 0;
	transition-property: opacity;
}
.active .carousel-fade {
	opacity: 1;
}

.box-img-galeria {
	width: 100%;
	height: 550px;
	position: relative;
}
.box-img-galeria-sm {
	width: 100%;
	height: 350px;
	position: relative;
	border: 1px solid #ccc;
}
.box-img-galeria img,
.box-img-galeria-sm img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: auto;
	position: absolute;
	top: -100%;
	right: 0;
	bottom: -100%;
	left: 0;
}
.publicacion-galeria-control {
	width: 50px;
	height: 50px;
	padding: 13px 17px;
	background: #fff;
	border-radius: 4px;
	margin: 0 10px;
}
.container-buttons-galeria {
	width: 20%;
	margin: 0 40%;
	max-width: 870px;
	height: 60px;
	position: absolute;
	bottom: 40px;
}
.left .container-buttons-galeria {
	display: none;
}
.container-buttons-galeria .box-publicacion-inf {
	width: 80px;
	margin: 0 auto;
	border: 1px solid #ccc;
	border-radius: 4px;
	display: none;
}
.container-buttons-galeria p {
	margin: 3px auto;
}

.container-detalle-pub {
	height: 350px;
	position: relative;
}
.modal-content .container-detalle-pub p {
	margin: 0;
}
.box-detalle-pub-btn {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.preview-pdf,
.preview-soundcloud,
.preview-youtube {
	width: 100%;
	height: 350px;
}
.consideraciones-preview {
	width: 100%;
	margin: 0px auto;
	border-bottom: 1px solid #ccc;
}

/* Tooltips */

.tooltip-span {
	display: none;
	/* width: 300px;  */
	width: 200px;
	position: absolute;
	z-index: 999;
	text-align: center;
}
.tooltip-table {
	display: table;
	height: 170px;
	width: 100%;
}
.tooltip-content {
	width: 100%;
	/* min-width: 250px; */
	float: left;
	padding: 10px;
	background: #34007e;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}
.tooltip-gray {
	background-color: #c0c0c0 !important;
	color: #34007e !important;
}
.tooltip-content.tooltip-vote-btns {
	min-width: 265px;
}
.tooltip-callout-hz {
	width: 100%;
	height: 23px;
	float: left;
	text-align: center;
}
.tooltip-callout-vr {
	width: 23px;
	float: left;
	text-align: center;
}

.tooltip1 {
	left: 50%;
	margin-left: -150px;
	bottom: 30px;
}
.tooltip2 {
	left: -60px;
	bottom: 20px;
}
.tooltip3 {
	width: 325px;
	left: -310px;
	bottom: 35px;
	line-height: 40px;
}
.tooltip3 .tooltip-content {
	width: 300px;
}
.tooltip3 .tooltip-callout-vr {
	height: 110px;
}
.tooltip3 a {
	width: 40px !important;
	padding-top: 10px !important;
}
.tooltip3 .callout2 {
	margin: 36px 0px 0px -1px !important;
}
.tooltip4 {
	bottom: 30px;
	left: -125px;
}
.tooltip-span.tooltip5 {
	bottom: 100%;
	margin-bottom: -15px;
	left: 50%;
	width: 164px;
	margin-left: -72px;
	z-index: 999;
	font-size: 10px;
}
.tooltip-span.tooltip5 .tooltip-content {
	padding: 10px 5px;
}
.tooltip-span.tooltip-history {
	bottom: 100%;
	margin-bottom: -15px;
	width: 164px;
	margin-left: -109px;
	z-index: 999;
	font-size: 10px;
}
.tooltip-act-history:hover {
	cursor: pointer;
	text-decoration: underline;
}
.tooltip-span.tooltip-history .tooltip-content {
	padding: 10px 5px;
	line-height: 20px;
}

.tooltip-span.tooltip-vote-pub {
	bottom: 100%;
	margin-bottom: -5px;
	left: 50%;
	width: 270px;
	margin-left: -145px;
}
.box-sueno-inf .tooltip-span.tooltip5 {
	margin-bottom: 0px;
	margin-left: -93px;
}
.tooltip-cohetes {
	left: 35% !important;
}

.tooltip-sm {
	width: 110px;
	bottom: 55px;
	left: 10px;
}
.container-buttons-galeria .tooltip-sm {
	left: 32px;
}
.tooltip8 {
	width: 300px;
	bottom: -110px;
	left: -235px;
}
.tooltip8 .tooltip-content {
	width: 275px;
}
.tooltip8 button.close {
	right: 35px !important;
}
.tooltip8 .tooltip-callout-vr {
	height: 250px;
}
p.fecha-nacimiento {
	margin: 5px 0 0 12px;
	color: #fff;
}
.tooltip-span.tooltip9 {
	bottom: 55px;
	left: -60px;
	line-height: 40px;
	width: 200px;
}
.tooltip-span.tooltip9 .container-comp-pub,
.tooltip-span.tooltip5 .container-comp-pub {
	width: 100%;
}
.tooltip10 {
	bottom: 50px;
	left: -86px;
	/* left: -112px; */
}
.tooltipRight {
	bottom: 50px;
	right: -20px;
}
.tooltip11 {
	width: 300px;
	bottom: -82px;
	left: -275px;
}
.tooltip11 .tooltip-callout-vr {
	height: 150px;
}
.tooltip11 .tooltip-callout-vr .callout3 {
	margin-top: 80px !important;
}
.tooltip11 .tooltip-content {
	width: 275px;
	background: #34007e;
}
.tooltip11 button.close {
	right: 35px !important;
}
.tooltip12 {
	bottom: 40px;
	left: -60px;
}

.tooltip13 {
	width: 300px;
	height: 170px;
	bottom: -65px;
	left: -210px;
}
.tooltip13 .tooltip-content {
	width: 275px;
	display: table-cell;
	vertical-align: middle;
	float: none;
}
.tooltip13 .tooltip-callout-vr {
	height: 170px;
}
.tooltip13 .tooltip-callout-vr .callout3 {
	margin-top: 60px !important;
}

.tooltip-zone:hover .tooltip-span {
	display: inline;
	position: absolute;
	color: #ffffff;
}
.tooltip14 {
	top: 305px;
	left: 20px;
}
.tooltip14 p {
	color: #fff;
	font-size: 11px;
	line-height: 16px;
}
.tooltip15 {
	top: 60px;
	left: 215px;
	line-height: 16px;
}
.tooltip15 .tooltip-content {
	width: 275px;
}
.tooltip15 .tooltip-callout-vr {
	height: 170px;
}
.tooltip15 .tooltip-callout-vr .callout2 {
	position: absolute;
	z-index: 100;
	top: -40px;
	left: 0;
}

.tooltip16 {
	width: 110px;
	top: -60px;
	left: 380px;
}
.tooltip17 {
	top: 133px;
	left: -220px;
}
.tooltip17 .tooltip-content {
	width: 275px !important;
}
.container-info-usuario {
	width: 275px;
	float: left;
}
.box-info-usuario {
	height: 250px;
	display: table;
}

.callout1,
.callout4,
.callout5,
.callout-producto {
	width: 50px;
	/* height: 25px;*/
	height: 100%;
	border: 0;
	/* margin: 0px auto; */
	vertical-align: top;
	position: relative;
}
.calloutRight {
	margin-left: 120px !important;
}
.callout-sm {
	width: 50px;
	height: 25px;
	position: absolute;
	z-index: 20;
	bottom: -24px;
	border: 0;
	left: 35px;
}
.callout2,
.callout3 {
	width: 25px;
	height: 50px;
	z-index: 20;
	border: 0;
	margin: 100px 0 0 -1px !important;
	bottom: 100px;
}
.callout3 {
	bottom: 65px;
}

.info-empresa-box {
	left: -300px;
	top: 35px;
	line-height: 30px;
	background: #34007e;
}
.btn-cerrar-info {
	position: absolute;
	top: -12px;
	right: 4px;
}

.form-group-info-perfil {
	margin-bottom: 0;
}
.form-control-info-perfil {
	width: 95%;
	height: 30px;
	display: block;
	float: left;
	padding: 5px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	margin: 0 0 0 5%;
	color: #ffffff;
	border-radius: 4px;
}
.info-perfil-icon {
	width: 25px;
	height: 30px;
	float: left;
}
.pais {
	background: url("../img/sprite-aside.svg") -78px 0 no-repeat;
	background-size: 225px 30px;
}
.nacimiento {
	background: url("../img/sprite-aside.svg") -102px 0 no-repeat;
	background-size: 225px 30px;
}
.genero {
	background: url("../img/sprite-aside.svg") -127px 0 no-repeat;
	background-size: 225px 30px;
}
.website {
	background: url("../img/sprite-aside.svg") -150px 0 no-repeat;
	background-size: 225px 30px;
}
.telefono {
	background: url("../img/sprite-aside.svg") -175px 0 no-repeat;
	background-size: 225px 30px;
}
#txt-mi-info {
	height: 133px;
}
.breadcrumb {
	display: none;
}
.breadcrumb li a {
	color: #b2b2b2;
}
.breadcrumb .active {
	color: #7a7a7a;
}

/* AddThis Social Buttons */
.addthis_sharing_toolbox {
	width: 200px;
	height: 40px;
	margin: 0 auto;
}
.at-share-tbx-element.addthis_32x32_style .at-share-btn,
.at-share-tbx-element.addthis_32x32_white_style .at-share-btn {
	border-radius: 16px;

	margin: 0 4px !important;
}
.addthis_32x32_style .at4-icon {
	background-size: 28px !important;
}

/* Modal Crear/Editar Publicación */
ul.container-agregar-imagen,
ul.container-initial-imagen {
	margin-left: -15px;
}
.container-agregar-imagen li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.agregar-imagen {
	margin-bottom: 10px;
	padding-right: 15px;
	padding-left: 15px;
}

/* Resultados de transacción */
.container-table {
	border: 1px solid #ccc;
	border-radius: 4px;
	margin: 20px 0 40px 0;
}
.tr-resultado-transaccion {
	border-bottom: 1px solid #ccc;
	background: #fff;
}
.tr-resultado-transaccion td {
	padding-left: 20px;
}

.container-detalle-prod img,
.margin-auto {
	margin: auto;
}
.img_bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.sueno_img {
	width: 100%;
	height: 220px;
}
/*--.main-header-container{position: relative;}
.main-header-container:before{position: absolute; top: 0; right: 100%; margin-right: -15px; width: 2000px; height: 100%; background:#ffb500; content: ''; display: block;  transition:all 0.5s;}--*/
.networks-circles {
	display: inline-block;
}
.compra_pendiente .title-historial-compra {
	background: #6f7184;
}
.compra_pendiente .text-purple {
	color: #6f7184;
}
.radio_label {
	display: block;
}
.box-error {
	margin-top: 120px;
}

.custom_images {
	text-align: center;
}
.custom_images a {
	display: inline-block;
}

.alert.alert-contactos h4 {
	color: #3f0098;
}

.alert.alert-contactos .title-divider {
	margin-bottom: 12px;
}
.perfil__cta {
	text-align: center;
	padding-bottom: 15px;
}
.perfil__cta .btn-primary,
.perfil__cta .btn-default {
	padding: 8px;
	margin: 0 0 10px 1px;
}

.perfil__cta .content-default {
	display: inline-block;
}

.perfil__cta .btn-primary:before,
.perfil__cta .btn-default:before {
	content: "";
	width: 12px;
	height: 12px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	margin-right: 6px;
}
.perfil__cta .btn-primary:before {
	background-image: url(../img/content.svg);
}

.perfil__cta .btn-default:before {
	background-image: url(../img/phone.svg);
}

/* RESPONSIVE
   ========================================================================= /


/*Laptops
   ------------------------------------------------------------------------- */
@media (max-width: 1199px) {
	.box-banner-empresa,
	.box-banner-empresa img {
		width: 100%;
	}

	.nav > li {
		margin-left: 17px;
	}
	.btn-header-perfil,
	.btn-header-perfil-cursor {
		padding: 0px 10px;
		width: auto;
	}
	.btn-header-perfil-cursor {
		max-width: 200px;
	}

	.navbar-default .navbar-nav .dropdown {
		margin-left: 5px;
	}
	.navbar-default .navbar-nav .dropdown a {
		width: 90px;
		padding: 19px 0 18px 0;
	}
	.dropdown-box {
		width: 88px;
		padding: 0px 5px;
	}
	.dropdown-menu {
		width: 230px;
	}

	.navbar-default .navbar-nav .dropdown .dropdown-menu > li > a {
		width: 228px;
		padding: 12px 10px;
	}

	.btn-login-container-abrir {
		top: 352px;
	}
	.btn-login-container-cerrar {
		top: 265px;
	}
	.login-container,
	.login-container-collapsed {
		top: 87px;
	}

	.container-banner-sueno {
		height: 300px;
	}

	.form-control-buscar-tienda {
		width: 110%;
	}
	/*--.icon-buscar-tienda{
		display:none;
	}--*/
	.form-control-valor-producto {
		width: 180px;
	}

	.finalizar-edicion-text {
		padding-left: 10px;
	}

	.box-nueva-publicacion {
		padding: 18% 0;
	}

	.box-sueno .container-nombre-sueno {
		top: 110px;
	}
	.btn-invitar-facebook,
	.btn-invitar-twitter,
	.btn-invitar-gmail,
	.btn-invitar-hotmail,
	.btn-invitar-yahoo {
		margin: 0 5px 10px 0;
	}
	.filtrar {
		width: 20.7%;
	}
	.box-error {
		margin-top: 100px;
	}
	.box-seccion iframe {
		height: 450px;
	}
}

.content_full_select {
	position: relative;
}
.content_full_select .box-tipo-categoria,
.content_full_select .box-tipo-sueno {
	width: 100%;
}
.info_title {
	font-size: 18px;
	color: #3f0098;
	font-weight: bold;
	margin-top: 6px;
}
.info_title span {
	font-size: 13px;
	color: #999;
}
.product-section .form-control {
	float: none;
}
.dimensions {
	margin: auto;
	margin-bottom: 15px;
	margin-top: -26px;
}
.content_info {
	position: relative;
}
.little_info {
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: 2px;
	font-size: 11px;
	color: #999;
}
.check-group .checkbox-tipo-cat {
	display: inline-block;
}
.link {
	color: #3f0098;
	text-decoration: underline;
}
.modal-content .panel-title p {
	width: auto;
}
.content_envio,
.content_presencial,
.content_custom,
.content_default,
.content_cita_previa {
	display: none;
}
.note_info span {
	color: #3f0098;
}
.btn-default.product-disabled {
	margin-top: 30px;
}
.btn-default.product-enabled {
	margin-top: 30px;
	background-color: #5cb85c;
}
.gal_thumb {
	display: block;
	height: 100px;
	background-position: center;
	background-size: cover;
	border: 1px solid #ddd;
	opacity: 0.8;
	cursor: pointer;
}
.gal_thumb:hover {
	opacity: 1;
	cursor: pointer;
}
.precio_prod {
	text-align: left;
}
.precio_prod p {
	padding-left: 45px;
	margin-top: 0;
}
.total {
	color: #3f0098;
	font-weight: bold;
}
.item_con {
	padding: 12px;
	border-bottom: 1px solid #ddd;
}
.item_con:last-child {
	border-bottom: none;
}
.item_cart_head {
	padding: 5px;
	border-bottom: 2px solid #ddd;
}
.item_cart_head h3 a {
	color: #3f0098;
	text-decoration: underline;
}
.item_cart_head p {
	margin-top: 6px;
}
.item_cart .table > thead > tr > th {
	border-bottom: none;
}
.item_cart {
	margin-bottom: 20px;
	margin-left: 0 !important;
}
p.iva span {
	font-size: 12px;
}
p.iva {
	text-align: center;
}
.item_cart .table > thead > tr > th {
	white-space: nowrap;
}
.product_file .btn {
	border-radius: 0 5px 5px 0;
}
.content_calcular .panel-default > .panel-heading {
	padding: 0;
}
.content_calcular .panel-default > .panel-heading a {
	display: block;
	background: #3f0098;
	padding: 0 20px;
	padding-left: 50px;
}
.content_calcular .panel-default > .panel-heading h4 {
	color: #fff;
	font-size: 25px;
	margin: 0;
}
.content_calcular .panel-default > .panel-heading a.collapsed {
	background: #fff;
}
.content_calcular .panel-default > .panel-heading a.collapsed h4 {
	color: #3f0098;
	padding-top: 10px;
}
.content_calcular .panel-group .panel {
	border-radius: 0;
}
.content_calcular .tooltip-inner,
.purple-tooltip .tooltip-inner {
	background-color: #3f0098;
}
.content_calcular .tooltip.top .tooltip-arrow,
.purple-tooltip .tooltip.top .tooltip-arrow {
	border-top-color: #3f0098;
}
.tooltip_bottom {
	position: relative;
}
.tooltip_bottom .tooltip.bottom {
	margin-top: 8px;
	margin-left: 15px;
}
.tooltip_bottom .tooltip.bottom .tooltip-arrow {
	border-bottom-color: #3f0098;
}
.devolucion .form-control {
	float: none;
}
.devolucion p {
	font-size: 14px;
	text-align: center;
	color: #3f0098;
	margin-bottom: 20px;
}
.product-section .box-detalle-producto {
	margin-top: 0;
}
.info_title.buy_title {
	margin-top: 12px;
}
.price_val {
	width: 60%;
	display: block;
	margin-top: 6px;
}
.price_detail {
	width: 38%;
	display: block;
	margin-top: 6px;
}
.big_img {
	margin: auto;
	display: block;
	cursor: pointer;
}
.box-precio-producto label.open strong {
	color: #3f0098;
}
.modal-header2 {
	position: relative;
}
.modal-header2 .modal-circle {
	top: 50%;
	margin-top: -24px;
	left: 10px;
	width: 47px;
	height: 47px;
	background: url(../img/modal-icon.png);
	position: absolute;
}
.modal-header2 h3 {
	text-align: center;
	font-size: 24px;
	margin-top: 5px;
}

.modal-header2 .modal-circle .circle-morado {
	width: 50px;
	height: 50px;
}
.modal-header2 .btn-modal-logo {
	width: 35px;
	height: 35px;
	background-size: contain;
}

.item_publication {
	border-radius: 6px;
	border: 1px solid #5d5d5d;
	margin-bottom: 20px;
}
.publication_head {
	color: #fff;
	background: #ffb500;
	border-radius: 6px 6px 0 0;
	padding: 10px;
}
.publication_head_blog {
	background: #c0c0c0 !important;
}
.pub_total_votes {
	font-size: 14px;
}
.pub_total_votes::before {
	content: "\2022";
	color: white;
	display: inline-block;
	margin-right: 2px;
	font-size: 16px;
}
.content-info-publicacion-desktop {
	display: block;
}
.content-info-publicacion-mobile {
	display: none;
}
.subtitle-pub-white {
	color: #ffffff;
	font-size: 14px;
}
.publication_head .col-sm-5 {
	padding-left: 0;
}
.head_text h4 {
	font-size: 14px;
	color: #fff;
	margin: 0;
	line-height: normal;
}
/* .head_text h4 a {
	color: #fff;
	//color: #3F0098;
} */
.head_text {
	margin-left: 10px;
	width: calc(100% - 70px);
	padding-right: 10px;
	min-height: 60px;
}
.head_text p {
	color: #fff;
	margin: 0;
	font-size: 12px;
	line-height: normal;
}
.content_image_publicacion .image-profile-pub {
	padding-left: unset;
	padding-right: 10px;
}

.content_image_publicacion .content_total_votes_pub {
	padding: 0 5px;
}
.col-right-head-pub {
	padding-left: unset;
}
.border-right {
	border-right: 1px solid #fff;
}
.border-top {
	margin: 10px 0;
	border-top: 1px solid #fff;
	max-width: 100px;
}
.col-pub-title {
	padding: unset;
}
.col-pub-title-sc {
	padding-left: 10px;
}
.publication_votes {
	font-size: 14px;
}
.publication_votes span {
	display: block;
}
.btn-vote {
	padding: 8px !important;
	cursor: pointer;
	font-size: 11px;
	line-height: 1.2;
}
.btn-vote.disabled {
	background: #ddd;
	cursor: default;
	opacity: 1;
}
.btn-vote span {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	width: 45px;
	white-space: pre-line;
}
.votes_icon {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -342px 0;
	background-size: 438px 45px;
	width: 30px;
	height: 45px;
	display: inline-block;
	vertical-align: middle;
}
.disabled .votes_icon {
	background: transparent url("../img/sprite-publicacion.svg") no-repeat scroll -301px 0;
	background-size: 438px 45px;
	width: 30px;
	height: 45px;
	display: inline-block;
	vertical-align: middle;
}
.votes_icon_historial {
	background: url(../img/icon_votes.png);
	width: 11px;
	height: 14px;
	background-size: 100% 100%;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 5px;
}
.cohetes_icon_historial {
	background: url(../img/cohete-blanco.png);
	width: 13px;
	height: 20px;
	background-size: 100% 100%;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 5px;
}
.publication_body {
	background: #fff;
	padding: 15px;
	border-radius: 0 0 6px 6px;
}
.publication_body .box-img-galeria-sm {
	border: none;
	height: 215px;
	margin-top: 20px;
}
.publication_body .carousel-control,
.publication_body .publicacion-galeria-control {
	width: 20px;
	height: 30px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 0;
	top: 50%;
	margin: 0;
	margin-top: -15px;
	padding: 0;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
.publication_body .carousel-control.right {
	right: -5px;
}
.publication_body .carousel-control.left {
	left: -5px;
}
.publication_body .carousel-control.right .arrow-right,
.publication_body .carousel-control.left .arrow-left {
	margin-top: 3px;
	margin-left: 3px;
}

.box-publicacion .bx-wrapper .bx-controls-direction a,
.content_bx .bx-wrapper .bx-controls-direction a {
	padding: 5px;
	background-color: rgba(255, 255, 255, 0.7);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
	height: 25px;
	opacity: 0;
	transition: all 0.4s;
}
.box-publicacion:hover .bx-wrapper .bx-controls-direction a,
.box-publicacion:hover .bx-wrapper .bx-controls-direction a,
.content_bx:hover .bx-wrapper .bx-controls-direction a,
.content_bx:hover .bx-wrapper .bx-controls-direction a {
	opacity: 1;
}
.box-publicacion .bx-wrapper .bx-controls-direction a:after,
.box-publicacion .bx-wrapper .bx-controls-direction a:before,
.content_bx .bx-wrapper .bx-controls-direction a:after,
.content_bx .bx-wrapper .bx-controls-direction a:before {
	position: absolute;
	top: 0;
	height: 100%;
	width: 2px;
	background-color: rgba(255, 255, 255, 0.7);
	content: "";
}
.box-publicacion .bx-wrapper .bx-controls-direction a:after,
.content_bx .bx-wrapper .bx-controls-direction a:after {
	left: 100%;
}
.box-publicacion .bx-wrapper .bx-controls-direction a:before,
.content_bx .bx-wrapper .bx-controls-direction a:before {
	right: 100%;
}
.date_head {
	font-size: 12px;
	margin-bottom: 15px;
}
.publication_body h4 {
	font-size: 16px;
	margin-bottom: 15px;
}
.publication_body p {
	font-size: 14px;
	color: #5d5d5d;
	margin-bottom: 25px;
	line-height: 1.2em;
	margin-bottom: 10px;
}
.pub_desc_ver_mas {
	word-break: break-word;
	max-height: 3.6em;
	overflow: hidden;
}
.pub_desc_text_ver_mas {
	word-break: break-word;
	max-height: 8.4em;
	overflow: hidden;
}
.pub_desc_only_text {
	font-size: 16px;
	font-weight: bold;
}
.pub_desc_only_text a,
.pub_desc a {
	word-break: break-all;
}
.publication_body p.open {
	max-height: none;
	overflow: visible;
}
.publication_body .box-detalle-pub-btn {
	margin-left: 0;
	margin-right: 0;
	position: relative;
	left: 0;
	border: none;
	background: #f1f2f2;
}
.publication_body .box-publicacion-inf,
.publication_body .box-publicacion-inf:last-child {
	background: transparent !important;
	padding: 10px 0;
	height: 60px;
	border-right: none;
}

.publication_body .box-publicacion-inf p,
.publication_body .box-publicacion-inf:last-child p,
.publication_body .box-publicacion-inf .icon_share,
.publication_body .box-publicacion-inf:last-child .icon_share,
.number-votes {
	display: inline-block;
	vertical-align: middle;
}
.publication_body .box-publicacion-inf p,
.publication_body .box-publicacion-inf:last-child p {
	margin-bottom: 0;
}

.btn_delete,
.btn_edit {
	display: block;
	width: 22px;
	height: 22px;
	margin-top: 10px;
	margin-right: 12px;
	cursor: pointer;
}
.btn_delete {
	background: url(../img/btn_delete.png);
}
.btn_edit {
	background: url(../img/btn_edit.png);
}
.more_pub {
	padding-top: 15px;
}
.row ul.slider_right {
	margin-left: 0;
}
.slider_right .box-publicacion {
	min-width: 0;
}

.item_related {
	position: relative;
	padding: 30px 70px 10px 10px;
	background: #dedfdb;
	border-radius: 5px;
	margin: 10px;
}
.vote_btn {
	position: absolute;
	right: 0;
	height: 100%;
	top: 0;
	background: #ffb500;
	width: 55px;
	text-align: center;
	border-radius: 0 5px 5px 0;
}
.vote_btn .votes_icon {
	display: inline-block;
}
.vote_btn span {
	color: #fff;
	display: block;
}
.related_text {
	width: calc(100% - 70px);
}
.related_text h3 {
	font-size: 23px;
	margin: 0;
	line-height: normal;
}
.related_text h4 {
	font-size: 16px;
	color: #7a7a7a;
	margin: 0;
	line-height: normal;
}
.related_text p {
	font-size: 14px;
	margin: 0;
	line-height: normal;
}

.v_center1 {
	display: table;
	width: 100%;
	height: 100%;
}
.v_center2 {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.v_center_content {
	height: 120px !important;
}
.img_full {
	width: 100%;
}
.btn.no-padding {
	padding-left: 0;
	padding-right: 0;
}
.other_product h4 {
	font-size: 20px;
	text-align: center;
}
.other_product .form-control {
	font-size: 13px;
}
/*.share_btns{display: none;}
.container-producto:hover .share_btns, .item_product:hover .share_btns{display: block;}
.container-producto{height: 520px;}*/
.container-producto:hover .box-publicacion {
	position: relative;
	z-index: 2;
	box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.3);
}
.container-producto:hover .box-publicacion a p {
	text-decoration: underline;
}
.container-producto .btn_delete,
.container-producto .btn_edit {
	margin-right: 3px;
}
.container.container_video {
	width: 100% !important;
}

.new_banner {
	width: 100%;
	height: 350px;
	border: 2px dashed #5d5d5d;
	border-radius: 8px;
	cursor: pointer;
	display: block;
}
.new_banner h2 {
	color: #5d5d5d;
	font-size: 24px;
	font-weight: bold;
}
.new_banner p {
	font-size: 18px;
}

.circle-container.small_circle {
	position: relative;
	margin-top: 0;
}
.circle-container.small_circle .circle-morado,
.circle-container.small_circle .circle-amarillo,
.circle-container.small_circle .circle-blanco,
.circle-container.small_circle .circle-gris {
	width: 60px;
	height: 60px;
	border-width: 5px;
}

.circle-container.small_circle .btn .btn-modal-publicacion-foto,
.circle-container.small_circle .btn .btn-modal-publicacion-video {
	margin-left: 8px;
}
.content_modal_tabs {
	max-width: 530px;
	margin: auto;
}
.small_circle span {
	font-size: 12px;
}
.slider_empresa,
.product_slider,
.publication_slider,
.slider_gal {
	margin-left: 0 !important;
}
.slider_empresa li {
	position: relative;
}
.publication_slider li img,
.content_img_galeria img {
	width: auto !important;
	max-width: 100%;
	max-height: 418px;
	display: block;
	margin: auto;
	height: auto;
}
.publication_slider li.items_2 {
	display: flex;
}
.publication_slider .owl-prev,
.publication_slider .owl-next {
	position: absolute;
	width: 30px;
	height: 32px;
	background: rgba(255, 255, 255, 0.7);
	top: calc(50% - 12px);
	font-size: 0;
	transition: all 0.4s;
	opacity: 0;
}
.publication_slider:hover .owl-prev,
.publication_slider:hover .owl-next {
	opacity: 1;
}
.publication_slider .owl-prev:before,
.publication_slider .owl-next:before {
	content: "";
	width: 16px;
	height: 25px;
	background: url(../img/sprite-arrow.svg) no-repeat -17px 0;
	background-size: 32px 25px;
	position: absolute;
	top: calc(50% - 12px);
	left: calc(50% - 8px);
}
.publication_slider .owl-prev:before {
	transform: rotate(-180deg);
}

.publication_slider .owl-prev {
	left: 20px;
}

.publication_slider .owl-next {
	right: 20px;
}

.img_list li.items_2 a {
	display: block;
	height: 220px;
	position: relative;
	width: calc(50% - 4px);
	margin: 0 2px;
}
.img_list li.items_2 img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
}
.img_list li {
	background: #f0f0f0;
}
.img_list img.img_contain {
	max-height: 418px;
	height: auto;
}

.content_img_galeria img {
	max-height: 500px;
}
.over_slider {
	position: relative;
}
.over_slider .btn-border {
	background: transparent;
	color: #3f0098;
	border: 1px solid #3f0098;
	border-radius: 0;
	margin-top: 5px;
}
/*--.over_slider .btn_delete{background: url(../img/btn_delete_w.png);}
.over_slider .btn_edit{background: url(../img/btn_edit_w.png);}--*/
.over_slider a {
	cursor: pointer;
}
.content_slider_empresa .bx-wrapper .bx-prev,
.content_slider_empresa .bx-wrapper .bx-next {
	background-image: url(../img/sprite-arrow-w.svg);
}
.btns_smpresa .btn {
	padding-left: 0;
	padding-right: 0;
}
.btns_smpresa {
	padding-bottom: 20px;
}
.content_table_sedes {
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 7px;
}
.sede_form .form-control {
	float: none;
}
.followers {
	width: calc(100% - 40px);
	margin: 20px;
	border: 1px solid #808080;
}
.content_video_controls {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.content_video_controls button {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: 35px;
	height: 35px;
	text-indent: -8000px;
	border: none;
	cursor: pointer;
	background-color: transparent;
}
.content_video_controls .video_control {
	background-image: url(../img/player_control1.png);
}
.content_video_controls .mute {
	background-image: url(../img/player_control2.png);
	margin-left: 50px;
}
.content_video_controls .video_control.paused,
.content_video_controls .mute.muted {
	background-position: bottom;
}
.redes {
	text-align: center;
	margin-top: 30px;
}
.redes a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-image: url(../img/redes.png);
	margin: 0 5px;
	background-size: 80px 44px;
}
.redes a.fb {
	background-position: left;
}
.redes a.tw {
	background-position: right;
}
.icon_login {
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background-image: url(../img/icon_login.png);
}
.ingresar .icon_login {
	background-position: top right;
}
.icon_como_funciona {
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background: url(../img/icon_monetizar_2.svg) 1px -69px no-repeat;
	background-size: 60px 162px;
}
.icon_monetizar {
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background: url(../img/icon_monetizar_2.svg) -42px -69px no-repeat;
	background-size: 66px 162px;
}
.btn_login {
	background: #ffb500;
	color: #380093;
	border-radius: 0;
}
.btn_login_mobile {
	background: #fff !important;
}
.btn_login .animated-line-btn {
	background: #380093;
}
.btn_login.active {
	background: #380093;
	color: #fff;
}
.ingresar .btn_login.active .icon_login,
.ingresar_mobile .btn_login.active .icon_login {
	background-position: right bottom;
}
.registrarme .btn_login.active .icon_login {
	background-position: left bottom;
}
.form-regis .row {
	margin-left: -5px;
	margin-right: -5px;
}
.form-regis .row .col-xs-4 {
	padding-left: 5px;
	padding-right: 5px;
}
.form-regis .form-control {
	float: none;
}
.small_modal .modal-dialog {
	max-width: 500px;
}
.small_modal2 .modal-dialog {
	max-width: 360px;
}
.content_right {
	position: relative;
	z-index: 10;
}
/*--.container-video2{position: relative; width: 100%; padding-top: 57.3%;}--*/
.slider_right .item_product {
	margin-bottom: 80px;
}
.badge {
	position: absolute;
	top: -8px;
	right: 20px;
	width: 120px;
	height: 170px;
	background: url(../img/badge.png);
	z-index: 3;
}
.content_badge {
	position: relative;
}
.badge p {
	padding-top: 60px;
	color: #3f0098;
}
.badge p span {
	font-size: 30px;
}
.box-descripcion-doc.box-white {
	background: #fff;
	border: 1px solid #eee;
}
.box-descripcion-doc.box-white h3 {
	color: #313338;
}
.input-group.search-group .form-control {
	width: 100%;
}
.btns_sede .btn {
	vertical-align: top;
}
.content_box {
	position: relative;
}
.tooltip-compartir-producto:hover .tooltip-span {
	display: block;
}
.link-home:hover {
	text-decoration: underline;
}
.content_img {
	position: relative;
	width: 100%;
	padding-top: 50%;
	background-position: center;
	background-size: cover;
}
.content_img_galeria {
	position: relative;
	height: 500px;
}
.text-lowercase {
	text-transform: lowercase;
}
.text-justify {
	text-align: justify;
}
.right20 {
	margin-right: 20px;
}
.trayecto-name {
	cursor: pointer;
}
.trayecto-name:hover {
	text-decoration: underline;
}
.content_input_sueno {
	position: relative;
}
.content_input_sueno .cual-es-tu-sueno {
	text-align: left;
	padding-left: 120px;
}
.content_input_sueno span {
	position: absolute;
	top: 56px;
	opacity: 0.8;
	left: 15px;
	font-size: 20px;
	color: #999;
}
.carrito-section .row-table {
	width: auto;
}
.col-xs-20 {
	width: 20%;
	padding-left: 5px;
	padding-right: 5px;
	float: left;
}
.row.row-gal {
	margin-left: -5px;
	margin-right: -5px;
}
.congrats_p {
	font-size: 18px;
	margin-top: 130px;
}
.congrats_p4 {
	font-size: 18px;
	margin-top: 70px;
}
.congrats_content h1 {
	font-size: 70px;
}
.congrats_p2 {
	font-size: 18px;
	margin-top: 105px;
}
.congrats_p3 {
	font-size: 18px;
	margin-top: 50px;
}
.img_message {
	margin-top: -100px;
}
.img_payment {
	width: 100%;
	max-width: 700px;
}
.congrats_content {
	max-width: 900px;
	margin: auto;
}
.web_text {
	display: block;
	width: 190px;
	word-break: break-all;
}
.font14 {
	font-size: 14px;
}
.font16 {
	font-size: 16px;
}
.alert.full_alert {
	width: 100%;
}
.link-label {
	cursor: pointer;
	text-decoration: underline;
}
.box-precio-producto label span.box-precio-votos {
	position: static;
	top: auto;
}
.info_title.font16 {
	font-size: 16px;
}
.add_banner p {
	text-align: justify;
}
/*--.content-dinamic{position: absolute; width: 100%;}--*/
.content-dinamic.dinamic_fixed {
	position: fixed;
}
.scrollprueba {
	padding-bottom: 100px;
}
.content_affix {
	position: relative;
}
.affix-inner.affix-fixed {
	position: fixed;
	bottom: 30px;
}
.over_cifra {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	border-radius: 12px;
	color: #fff;
	background: #417de1;
	padding: 0 15px;
	opacity: 0;
	width: 0;
	overflow: hidden;
	text-align: center;
	transition: all 0.3s;
}
.over_cifra_votos {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	border-radius: 12px;
	color: #fff;
	background: #7846e1;
	padding: 0 15px;
	opacity: 0;
	width: 0;
	overflow: hidden;
	text-align: center;
	transition: all 0.3s;
}
.icon-votos:hover .over_cifra,
.icon-votos:hover .over_cifra_votos {
	width: 60px;
	opacity: 1;
}
.form_encuentras {
	width: 110%;
}
.top_menos20 {
	margin-top: -20px;
}

.slider__viajes .box-ahorro-producto .btn-default {
	height: 42px;
	font-size: 11px;
	padding: 8px 3px;
}
.slider__viajes .owl-item .box-publicacion {
	margin: unset;
}

.slider__viajes .container-producto {
	width: 100%;
	padding: unset;
	min-width: unset;
	/*
	max-width: unset; */
}
.slider__viajes .box-producto-botones {
	font-size: 11px;
}

.slider_empresa .owl-prev,
.slider_empresa .owl-next {
	width: 16px;
	height: 30px;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	text-indent: -9999px;
	z-index: 9;
	background-image: url(../img/sprite-arrow-w.svg);
	background-size: 200% 100%;
}

.slider_empresa .owl-prev {
	left: 15px;
}
.slider_empresa .owl-next {
	background-position: right;
	right: 15px;
}
.container-producto .box-publicacion a p {
	min-height: 2.4em;
}
.right_20 {
	margin-right: 20px;
}

.info-perfil .tooltip13 {
	height: 120px;
	bottom: -40px;
}
.info-perfil .tooltip-table {
	height: 120px;
}
.info-perfil .tooltip13 .tooltip-callout-vr {
	height: 120px;
}
.info-perfil .tooltip13 .tooltip-callout-vr .callout3 {
	margin-top: 35px !important;
}
#video_modal,
#image_modal {
	display: none;
}
.bx-wrapper {
	overflow: hidden;
}
.content_slider {
	border-radius: 2px 2px 0 0;
	overflow: hidden;
}
.link-info {
	color: #3f0098;
	text-decoration: underline;
	cursor: pointer;
}
.product-section .title-divider-in {
	margin-top: 20px;
}
.shipping_form {
	max-width: 500px;
	margin: auto;
}
.shipping_form .form-control {
	float: none;
}

.product_slider .owl-prev,
.product_slider .owl-next,
.aside-featured__slider .owl-prev,
.aside-featured__slider .owl-next,
.invite__slider .owl-prev,
.invite__slider .owl-next,
.slider__cumplidos .owl-prev,
.slider__cumplidos .owl-next,
.slider__viajes .owl-prev,
.slider__viajes .owl-next {
	padding: 5px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
	height: 35px;
	opacity: 0;
	transition: all 0.4s;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	text-indent: -9999px;
	z-index: 9;
	width: 26px;
	background: rgba(255, 255, 255, 0.7);
	font-size: 0;
}

.aside-featured__slider .owl-prev,
.aside-featured__slider .owl-next {
	top: 30%;
}

.product_slider .owl-next,
.aside-featured__slider .owl-next {
	right: 10px;
	background-size: 32px 25px;
}

.product_slider .owl-prev,
.aside-featured__slider .owl-prev {
	left: 10px;

	background-size: 32px 25px;
}

.product_slider .owl-prev:before,
.aside-featured__slider .owl-prev:before {
	content: "";
	width: 16px;
	height: 25px;
	background: url("../img/sprite-arrow.svg") no-repeat 0 0;
	display: block;
	background-size: 200% 100%;
}

.product_slider .owl-next:before,
.aside-featured__slider .owl-next:before {
	content: "";
	width: 16px;
	height: 25px;
	background: url("../img/sprite-arrow.svg") no-repeat -17px 0;
	display: block;
	background-size: 200% 100%;
}

.aside-featured:hover .owl-prev,
.aside-featured:hover .owl-next {
	opacity: 1;
}
.aside-featured__image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.product_slider li {
	list-style: none;
}
.product_slider li a {
	display: block;
}

.box-publicacion:hover .product_slider .owl-next,
.box-publicacion:hover .product_slider .owl-prev {
	opacity: 1;
}
.form-add-producto .modal-box {
	margin: 0;
}
.product_slider {
	overflow: hidden;
}
.sueno_cumplido {
	position: relative;
}
.sueno_ribbon {
	position: absolute;
	left: -10px;
	padding: 10px;
	top: 30px;
	background: #3acd1d;
	border-radius: 0 30px 30px 0;
	color: #fff;
	z-index: 3;
	padding-right: 30px;
}
.sueno_ribbon:before {
	position: absolute;
	left: 0;
	top: 100%;
	border-left: 10px solid transparent;
	border-top: 10px solid #248a10;
	content: "";
}
.sueno_ribbon h6 {
	margin: 0;
	font-size: 18px;
}
.sueno_ribbon p {
	margin: 0;
}
.sueno-producto h3 {
	margin-top: 15px;
	margin-bottom: 0;
}
.content_calcular table td {
	width: 25%;
}
.content_crop {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
}
.content_crop.visible {
	opacity: 1;
	pointer-events: auto;
	z-index: 900;
}
.crop_overlay {
	z-index: 800;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	display: none;
}
.upload-edit.visible {
	z-index: 910;
}
.cropit-preview {
	width: 100%;
	height: 350px;
	position: absolute !important;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	cursor: move;
}
.cropit-preview img {
	display: block;
}
.cropit-image-input {
	display: none !important;
}
.crop_ctrls {
	position: absolute;
	bottom: 0;
	background: rgba(255, 255, 255, 0.5);
	width: 100%;
	left: 0;
	padding: 12px 0;
	padding-right: 200px;
}
.crop_ctrls a {
	font-size: 20px;
	color: #333;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
}
.crop_ctrls .btn-primary,
.crop_ctrls .btn-default {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 6px 8px;
	font-size: 12px;
}
.crop_ctrls .btn-primary {
	right: 87px;
}
.pinter_none {
	pointer-events: none;
}
.img_list {
	padding-left: 0;
	margin-bottom: 0;
	margin-left: 0 !important;
}
.img_list li {
	list-style: none;
}
.img_contain {
	max-width: 100%;
	max-height: 260px;
	display: block;
	margin: auto;
}
.img_gallery_item {
	width: 100%;
	display: block;
	margin: auto;
}
.btn-share {
	color: #fff;
	font-size: 20px;
}

.box_publication {
	padding: 30px;
	border: 2px dashed;
	border-radius: 6px;
}
.box_publication .form-control {
	float: none;
}
.box_publication h2 {
	text-align: left;
	font-size: 24px;
	color: #5d5d5d;
	margin-top: 0;
	margin-bottom: 24px;
}
.box_publication h3 {
	margin-top: 0;
	font-size: 18px;
}
.box_publication textarea {
	margin-bottom: 20px;
}

.content_calcular .panel-heading {
	position: relative;
}
.content_calcular .panel-heading .table_check {
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -12px;
}
.content_include {
	max-width: 800px;
	margin: 30px auto;
}
.content_include {
	display: none;
}
.btn_upload {
	background: url(../img/icon_new_banner.png) left no-repeat;
	background-size: auto 30px;
	display: inline-block;
	line-height: 30px;
	padding-left: 40px;
}
.btn_upload p {
	margin-bottom: 0;
}
.box_publication.explorer_publication {
	margin-bottom: 30px;
	padding: 20px;
}
.box_publication.explorer_publication h2 {
	margin-bottom: 12px;
}

.current_comment {
	margin-top: 12px;
	display: block;
}
.current_comment span {
	display: inline-block;
	margin-left: 4px;
	width: calc(100% - 35px);
	vertical-align: middle;
	font-size: 14px;
}
.current_comment .icon_share {
	display: inline-block;
	vertical-align: middle;
}

.btns_upload a {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	background-color: #ffb500;
	position: relative;
	background-image: url(../img/icons_upload.png);
}
.btns_upload a.btn_video {
	background-position: -40px 0;
}
.btns_upload a.btn_audio {
	background-position: -80px 0;
}
.btns_upload a.btn_pdf {
	background-position: -120px 0;
}
#upload_img .jFiler-input .jFiler-input-button,
#upload_pdf .jFiler-input .jFiler-input-button {
	display: none;
}
/*New form*/
.jFiler-item-container.jFiler-pub-container {
	border: unset !important;
	background: unset !important;
	box-shadow: unset !important;
}
.jFiler-items-list-pub {
	display: contents !important;
}
.jFiler-items-list-pub .jFiler-item {
	float: left;
}
.jFiler-items-list-pub .jFiler-item .jFiler-item-container {
	margin: 0 10px 5px 0 !important;
}
.jFiler-pub-container .jFiler-item-thumb {
	width: 115px !important;
	border: unset !important;
}
.jFiler-pub-container .jFiler-item-thumb {
	border: unset;
}
.jFiler-item-thumb-image span {
	width: 100%;
	height: 100%;
	margin: 4px auto;
	background-size: 195px 146px;
	display: inline-block;
	cursor: pointer;
}
.jFiler-icon-add-file {
	background: url(../img/sprite-files-publicador.svg) 1px -21px no-repeat;
}
.jFiler-icon-add-pdf {
	background: url(../img/sprite-files-publicador.svg) -108px -21px no-repeat;
}
.btn_tooltip {
	position: absolute;
	bottom: 100%;
	width: 200px;
	color: #fff;
	background: #3f0098;
	text-align: center;
	padding: 10px;
	transition: all 0.4s;
	pointer-events: none;
	opacity: 0;
	margin-bottom: -20px;
	left: 50%;
	margin-left: -100px;
}
.btns_upload a:hover .btn_tooltip {
	opacity: 1;
	margin-bottom: 6px;
}
.btns_upload a.active {
	background-color: #e8920c;
}
.btn_tooltip h6 {
	margin: 0;
	font-size: 14px;
}
.btn_tooltip p {
	margin-top: 6px;
	margin-bottom: 0;
	font-size: 11px;
}
.btn_tooltip:before {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #3f0098;
	content: "";
}
.thumb_title {
	font-size: 12px;
	color: #454545;
}
.upload_action,
.upload_action-modal,
.upload_action_edit {
	display: none;
	margin-bottom: 12px;
}
.upload_action .form-control,
.upload_action-modal .form-control {
	float: none;
}
.content_iframe,
.content_iframe_edit,
.content_iframe-modal {
	margin-top: 10px;
	display: none;
}
.content_iframe iframe,
.content_iframe_edit iframe,
.content_iframe-modal iframe {
	border: none;
}
.over_bg {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 550px;
	box-sizing: border-box;
	padding-bottom: 50px;
}
/* .mobile_bottom_nav {
	display: none;
} */
.mobile_bottom_nav {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
	z-index: 100;
	height: 60px;
}
.mobile_bottom_nav .navbar-nav {
	text-align: center;
}
.mobile_bottom_nav .navbar-nav li {
	/* display: inline-block; */
	vertical-align: top;
	width: 18%;
	/* margin-right: -4px;
	position: static; */
	display: inline-flex;
	justify-content: space-around;
}
.mobile_bottom_nav .icon-votos,
.mobile_bottom_nav .icon-notificaciones,
.mobile_bottom_nav .icon-carrito {
	float: none;
}
.mobile_bottom_nav .headericon p {
	padding-left: 0;
	line-height: normal;
	font-size: 10px;
	text-align: center;
	margin-bottom: 0;
}
.mobile_bottom_nav .btn-header-perfil,
.mobile_bottom_nav .btn-header-perfil-cursor {
	height: auto;
}
.mobile_bottom_nav .block-notificaciones {
	top: auto;
	bottom: 100%;
	left: -179px;
	/* width: 100%; */
	max-height: 50vh;
	height: auto;
	margin-bottom: 0;
}
.mobile_bottom_nav .navbar-nav li.btn_footer_nav {
	position: absolute;
	right: 0;
	color: #3f0098;
	width: auto;
	font-size: 30px;
	top: 50%;
	margin-top: -21px;
	width: 40px;
}
.mobile_bottom_nav .icon-cifra {
	width: 16px;
	height: 16px;
	line-height: 16px;
	font-size: 10px;
	top: 0;
}
#modalPublicacionGaleria .modal-content {
	background: transparent;
	box-shadow: none;
	border: none;
}
#modalPublicacionGaleria button.close {
	color: #fff;
	background: transparent;
}
#modalPublicacionGaleria .modal-header {
	background: transparent;
}

.loader2,
.loader2:after {
	border-radius: 50%;
	width: 6em;
	height: 6em;
}
.loader2 {
	margin: 60px auto;
	font-size: 10px;
	position: absolute;
	text-indent: -9999em;
	border-top: 0.8em solid rgba(255, 181, 0, 0.2);
	border-right: 0.8em solid rgba(255, 181, 0, 0.2);
	border-bottom: 0.8em solid rgba(255, 181, 0, 0.2);
	border-left: 0.8em solid #ffb500;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
	top: 50%;
	left: 50%;
	z-index: 20;
	display: none;
	margin-left: -3em;
	margin-top: -3em;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

input[type="range"] {
	-webkit-appearance: none;
	width: 100%;
	margin: 7px 0;
}
input[type="range"]:focus {
	outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	box-shadow:
		0px 0px 0px #000000,
		0px 0px 0px #0d0d0d;
	background: #f0f0f0;
	border-radius: 24.7px;
	border: 0px solid #010101;
}
input[type="range"]::-webkit-slider-thumb {
	box-shadow:
		2.2px 2.2px 2.9px rgba(0, 0, 0, 0.31),
		0px 0px 2.2px rgba(13, 13, 13, 0.31);
	border: 0px solid rgba(0, 0, 0, 0);
	height: 20px;
	width: 20px;
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -7px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
	background: #f5f5f5;
}
input[type="range"]::-moz-range-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	box-shadow:
		0px 0px 0px #000000,
		0px 0px 0px #0d0d0d;
	background: #f0f0f0;
	border-radius: 24.7px;
	border: 0px solid #010101;
}
input[type="range"]::-moz-range-thumb {
	box-shadow:
		2.2px 2.2px 2.9px rgba(0, 0, 0, 0.31),
		0px 0px 2.2px rgba(13, 13, 13, 0.31);
	border: 0px solid rgba(0, 0, 0, 0);
	height: 20px;
	width: 20px;
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
}
input[type="range"]::-ms-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: transparent;
	border-color: transparent;
	color: transparent;
}
input[type="range"]::-ms-fill-lower {
	background: #ebebeb;
	border: 0px solid #010101;
	border-radius: 49.4px;
	box-shadow:
		0px 0px 0px #000000,
		0px 0px 0px #0d0d0d;
}
input[type="range"]::-ms-fill-upper {
	background: #f0f0f0;
	border: 0px solid #010101;
	border-radius: 49.4px;
	box-shadow:
		0px 0px 0px #000000,
		0px 0px 0px #0d0d0d;
}
input[type="range"]::-ms-thumb {
	box-shadow:
		2.2px 2.2px 2.9px rgba(0, 0, 0, 0.31),
		0px 0px 2.2px rgba(13, 13, 13, 0.31);
	border: 0px solid rgba(0, 0, 0, 0);
	height: 20px;
	width: 20px;
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
	height: 6px;
}
input[type="range"]:focus::-ms-fill-lower {
	background: #f0f0f0;
}
input[type="range"]:focus::-ms-fill-upper {
	background: #f5f5f5;
}

.crop_ctrls input[type="range"] {
	display: inline-block;
	vertical-align: middle;
	width: 200px;
	margin-left: 25px;
}
.more_pub2 {
	display: none;
}
.more_pub2.visible,
.more_comment {
	display: inline-block;
	text-decoration: underline;
	margin-bottom: 10px;
	cursor: pointer;
}
.cart_text {
	font-size: 18px;
	position: relative;
}
/* .cart_text:before {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 100px;
	height: 2px;
	background: #3f0098;
	content: "";
	margin-left: -50px;
} */
.link_add_more {
	display: inline-block !important;
	border: none;
	margin-left: 45px;
	background: transparent;
	margin-right: 150px;
}
.other_product {
	max-width: 550px;
	margin: auto;
}
.other_product .input-group-addon {
	position: relative;
	z-index: 2;
}
.content_other {
	display: none;
}
.other_product h4 a {
	cursor: pointer;
}
.align_middle {
	vertical-align: middle;
	display: inline-block;
}
.icon-nuevo-sueno.align_middle {
	float: none;
}
.img_banner_sueno {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}
/*
.payment_text {
	line-height: 15px;
	position: relative;
	padding-left: 30px;
	margin: auto;
	display: inline-block;
}
.payment_text i {
	font-style: normal;
}
 #modalPagar .payment_text input[type="checkbox"] + label > span,
#modalPagar .payment_text input[type="radio"] + label > span {
	display: block;
	position: absolute;
	left: 0;
} */
.not_required {
	display: block;
	margin-top: -12px;
}
.new_product .new_banner,
.new_dream .new_banner {
	height: 220px;
}
.new_dream {
	padding-bottom: 30px;
}
.content_iframe-modal {
	margin-top: 10px;
}
.img_pdf {
	margin: auto;
	height: 180px;
	max-width: 100%;
}
.nombre_apoya {
	height: 90px;
}
.content_info_edit {
	display: none;
}
.content_info_usuario {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #ddd;
	padding-bottom: 20px;
}
.content_info_usuario .btn-politicas-empresas{
	margin: 0 0 10px 1px;
}
.content_info_usuario h3 {
	margin-top: 0;
}
.info_user_p {
	font-size: 12px;
	color: #999;
}
.content_info_init {
	position: relative;
}
.content_info_init .btn_edit {
	margin-top: 0;
	position: absolute;
	top: 0;
	right: 0;
}
.content_info_edit .form-conrol {
	float: none;
}
.content_info_edit p.fecha-nacimiento {
	color: inherit;
	text-align: left;
	margin-left: 0;
}
.content_info_edit .form-group {
	margin-bottom: 12px;
}
.content_info_edit .form-control {
	float: none;
}
.content_info_edit .tooltip-inner {
	background: #3f0098;
}
.content_info_edit .tooltip.top .tooltip-arrow {
	border-top-color: #3f0098;
}
.relative {
	position: relative;
}
.content_info_edit .maximo-caracteres {
	top: inherit;
	bottom: 9px;
	right: 18px;
	left: auto;
	background: #fff;
}
.cancel_edit {
	margin-right: 15px;
}

.select_sede,
.menu_mobile,
.footer_mobile {
	display: none;
}
.main,
#headerperfil,
.mobile_bottom_nav {
	transition: transform 0.7s;
	-webkit-transition: transform 0.7s;
}
body.footer_abierto .main,
body.footer_abierto #headerperfil,
body.footer_abierto .mobile_bottom_nav,
body.footer_abierto .footer_mobile {
	transform: translateX(-260px);
	-webkit-transform: translateX(-260px);
}
.block-blanco > .top20 {
	margin-top: 0;
	padding-top: 20px;
}

.content_shared_publication {
	padding: 20px;
	border: 1px solid #5d5d5d;
	background: #fff;
	border-radius: 4px;
	margin-bottom: 20px;
}
.content_shared_publication .item_publication {
	margin-bottom: 12px;
	border-color: #c9c9c9;
	margin-top: 12px;
}
.user_thumb {
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	background-position: center;
	background-size: cover;
	margin-right: 10px;
	border-radius: 50%;
}
.share_user p {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	margin-bottom: 0;
}
.shared_date {
	font-size: 11px;
	padding-top: 10px;
}
.shared_footer .current_comment {
	margin-top: 0;
	width: calc(100% - 80px);
}

.caret_panel {
	display: inline-block;
	margin-left: 17%;
	margin-right: 3%;
	margin-top: 8px;
	border-width: 10px;
}
.content_caret {
	white-space: nowrap;
}
.panel_titles {
	margin-bottom: 12px;
}
.panel_titles span {
	display: block;
}
.panel_titles span:nth-child(2) {
	margin-left: 10%;
}
.panel_titles span:first-child {
	margin-left: 50px;
}
.inline_loader {
	display: none;
	vertical-align: middle;
}
.inline_loader.visible {
	display: inline-block;
}
.porcentaje_declarado {
	padding-top: 10px;
	margin-bottom: 4px;
}
input[type="number"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.info_citaprevia {
	max-width: 800px;
	margin: auto;
	border-radius: 4px;
	border: 1px solid #ccc;
	padding: 20px;
	margin-bottom: 30px;
}
.info_citaprevia p {
	margin-bottom: 0;
}
.img_cover_empresa {
	width: 100%;
	height: 230px;
	background-position: center;
	background-size: cover;
	border-radius: 4px 4px 0 0;
}
.description_text {
	padding: 40px 30px;
	border: 1px solid #eee;
	border-radius: 5px;
}
.description_text p {
	margin-bottom: 0;
}
.step2 {
	display: none;
	transition: all 0.6s;
	opacity: 0;
	transform: translateX(50px);
	-webkit-transform: translateX(50px);
}
.step2.visible {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}
.paso_registro1 {
	transition: all 0.6s;
	opacity: 1;
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}
.paso_registro1.out {
	opacity: 0;
	transform: scale(0.5, 0.5);
	-webkit-transform: scale(0.5, 0.5);
}
.btns_registro a {
	display: block;
	margin: auto;
	margin-top: 20px;
	max-width: 200px;
}
.navbar-brand {
	display: block;
	max-width: 430px;
}
.navbar-brand img {
	width: 50%;
}

.home_mobile_nav {
	display: none;
}
.carousel_empresas .owl-stage-outer {
	border-right: 1px solid #fff;
}
.carousel_empresas .owl-next,
.carousel_empresas .owl-prev {
	width: 15px;
	height: 25px;
	background-image: url(../img/sprite-arrow.svg);
	background-size: 32px 25px;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	z-index: 3;
	font-size: 0;
}

.carousel_empresas .owl-prev {
	left: 0;
}
.carousel_empresas .owl-next {
	right: 0;
	background-position: right;
}

.info_publicacion {
	padding-top: 40px;
}
.info_publicacion .close {
	z-index: 10;
}
.info_publicacion i {
	position: absolute;
	right: 100%;
	color: #fff;
	font-size: 11px;
	top: 6px;
	font-style: normal;
	white-space: nowrap;
	text-shadow: none;
	margin-right: 4px;
}

.sueno_views {
	padding-top: 20px;
}
.sueno_views .ojo {
	width: 37px;
	height: 32px;
	margin: auto;
	background: url(../img/ojo.png);
}
.sueno_views span {
	display: block;
	text-align: center;
	margin-top: 12px;
	font-size: 20px;
}
.btns_sueno .tooltip-zone {
	display: inline-block;
	vertical-align: top;
	position: relative;
	text-align: center;
}
.btns_sueno .tooltip-zone .icon-detalle-producto.compartir {
	margin-top: 0;
	background: url(../img/compartir-morado.png);
	width: 24px;
	height: 24px;
	background-size: 100% 100%;
	cursor: pointer;
}
.btns_sueno .edit_sueno,
.btns_sueno .delete_sueno {
	display: inline-block;
	vertical-align: top;
	width: 27px;
	height: 27px;
	margin-left: 15px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.btns_sueno .edit_sueno {
	background-image: url(../img/btn_edit.png);
	margin-top: -2px;
	margin-left: 20px;
}
.btns_sueno .delete_sueno {
	background-image: url(../img/btn_delete.png);
	margin-top: -2px;
}
.bandera_favorito {
	position: absolute;
	top: 30px;
	left: -10px;
	background: #3f0098;
	color: #fff;
	z-index: 5;
	height: 50px;
	padding-left: 30px;
	padding-right: 60px;
	border-radius: 0 25px 25px 0;
	text-align: left;
}
.bandera_favorito h3 {
	font-size: 20px;
	margin-bottom: 0;
	line-height: 1em;
	text-transform: uppercase;
	padding-top: 9px;
}
.bandera_favorito img {
	position: absolute;
	right: 0;
	top: 5px;
}
.bandera_favorito p {
	margin-bottom: 0;
}
.bandera_favorito:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	border-left: 10px solid transparent;
	border-top: 10px solid #230153;
}
.btns_sueno .tooltip-zone > p,
.content_info_sueno .tooltip-zone .btn-publicacion > p {
	position: absolute;
	right: 100%;
	top: 50%;
	margin-top: -8px;
	margin-right: 5px;
	margin-bottom: 0;
}
.a_block {
	display: block;
}
.paso_registro2_1 {
	opacity: 1;
	display: block;
	transform: translateX(0);
}
.img_descripcion {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.cart_price {
	white-space: nowrap;
}

.content_img_sueno {
	display: block;
	background-position: center;
	background-size: cover;
	position: relative;
	color: #fff;
}
.content_img_sueno img {
	border-radius: 4px 0 0 0;
}
.content_img_sueno:before {
	position: absolute;
	width: 100%;
	height: 60%;
	content: "";
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(
		top,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0.75) 99%,
		rgba(0, 0, 0, 0.75) 100%
	); /* FF3.6-15 */
	background: -webkit-linear-gradient(
		top,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0.75) 99%,
		rgba(0, 0, 0, 0.75) 100%
	); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0.75) 99%,
		rgba(0, 0, 0, 0.75) 100%
	); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 );
}
.content_sueno {
	margin-bottom: 12px;
	border: 1px solid #c9c9c9;
	margin-top: 12px;
	border-radius: 4px;
}
.text_img_sueno {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 2;
}
.text_img_sueno p {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	margin-bottom: 0;
	font-size: 18px;
}
.text_img_sueno h4 {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	margin: 0;
	text-transform: uppercase;
	font-size: 24px;
}
.content_info_sueno {
	padding: 20px;
}
.content_info_sueno .tooltip-zone .btn-publicacion,
.content_info_sueno .box-publicacion-inf {
	height: auto;
}
.content_info_sueno .box-publicacion-inf {
	margin-right: 20px;
	padding: 0;
}
.more_info_sueno {
	padding: 40px 20px;
}
.link_sueno {
	display: inline-block;
}
.form-add-producto .scroll-box {
	height: 280px;
}
.btns_edit .btn_delete,
.btns_edit .btn_edit {
	display: inline-block;
}
.info_suenacon {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #3f0098 !important;
}
.info_suenacon.color2 {
	color: #7a7a7a;
}
.content_form_pub {
	display: none;
}
.actions_btns a {
	margin: 0 20px;
}
.acciones_publicacion {
	margin-bottom: 30px;
}

*::-webkit-media-controls-panel {
	display: none !important;
	-webkit-appearance: none;
}

/* Old shadow dom for play button */

*::--webkit-media-controls-play-button {
	display: none !important;
	-webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works */

*::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
}

video::-webkit-media-controls {
	display: none !important;
}

.play_home {
	width: 75px;
	height: 75px;
	background: url(../img/play.png);
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	cursor: pointer;
	margin-top: -38px;
	margin-left: -38px;
}
.play_home:after {
	content: "Ver video";
	width: 100%;
	top: 100%;
	left: 0;
	margin-top: 2px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	position: absolute;
}
.init_home {
	padding: 30px 0 50px 0;
	background-image: url(../img/landing_suenos3.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}
.init_home h1 {
	position: absolute;
	color: #fff;
	top: 30px;
	left: 30px;
	font-size: 42px;
	max-width: calc(100% - 450px);
}
.under-init {
	height: 200px;
}
.content_login_form {
	max-width: 400px;
	margin: auto;
	margin-right: 0;
}
.login_box {
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	margin-top: 20px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: -180px;
}
.video_btns .btn {
	width: calc(50% - 10px);
}
.video_btns .btn-default {
	background-color: #fff;
	color: #3f0098;
}
.modal_video {
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}
.container-video-modal {
	max-width: 1000px;
	margin: auto;
	position: relative;
}
.container-video-modal video {
	width: 100%;
}
.content_registro_home {
	margin: auto;
	max-width: 400px;
	text-align: center;
	padding: 0 20px;
}
.content_registro_home h3 {
	font-size: 24px;
	margin-top: 0;
}
.content_registro_home h4 {
	font-size: 28px;
	margin: 20px 0;
}
.content_registro_home .form-control {
	height: 50px;
}
.header_home .navbar-brand {
	max-width: 430px;
}
.container-video-modal .close {
	color: #3f0098;
	opacity: 1;
	background: #ffffff;
	padding: 0 7px 5px 7px;
	border-radius: 13px;
	position: absolute;
	top: 9px;
	right: 9px;
	z-index: 3;
	font-size: 21px;
}
/*--.nav > li.ingresar{margin-top: 17px;}
.nav > li.ingresar .btn{padding: 8px 20px; font-size: 18px;}--*/
.content_steps {
	margin-bottom: 30px;
}
.item_step {
	width: 33.333%;
	text-align: center;
	border: 5px solid #fff;
	border-top-width: 10px;
	border-bottom-width: 10px;
	padding: 15px 0;
	position: relative;
	padding-bottom: 30px;
}
.item_step img {
	height: 120px;
}
.item_step p {
	color: #3f0098;
	margin-top: 10px;
}
.item_step .btn-primary {
	font-size: 13px;
}
.item_step:first-child {
	border-left-width: 10px;
}
.item_step:last-child {
	border-right-width: 10px;
}
.item_number {
	width: 40px;
	line-height: 40px;
	color: #fff;
	background: #ffb500;
	border-radius: 50%;
	margin: 20px auto 0;
	font-family: "dinprobold";
}

.icon_top {
	width: 30px;
	height: 30px;
	background-size: auto 100%;
	margin: auto;
}
.icon_top.icon_home {
	background-image: url(../img/icono_comunidad.svg);
	background-repeat: no-repeat;
}
.icon_top.icon_tienda {
	background-image: url(../img/icono_tienda.svg);
	background-repeat: no-repeat;
}
.icon_top.icon_directorios {
	background-image: url(../img/menu_top_old.svg);
	background-repeat: no-repeat;
	background-position: -120px 0;
}
.icon_top.icon_org {
	background-image: url(../img/icono_participa.svg);
	background-repeat: no-repeat;
	background-size: 30px 30px;
}
header .nav li {
	text-align: center;
}
.btn-header-perfil-cursor {
	position: relative;
}
.menu_perfil {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	padding: 20px;
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	pointer-events: none;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.btn-header-perfil-cursor.menu_open .menu_perfil {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	pointer-events: auto;
}
.menu_perfil ul {
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}
.menu_perfil ul:first-child {
	padding-top: 0;
}
.menu_perfil ul:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.menu_perfil li {
	list-style: none;
}
.menu_perfil li a {
	display: block;
	line-height: 30px;
	text-align: left;
	white-space: nowrap;
	font-size: 13px;
}
.menu_perfil li a:hover {
	background: #f6f6f6;
}
.menu_perfil li a .icon_menu_p {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(../img/menu_perfil.svg);
	background-size: auto 60px;
	vertical-align: middle;
}
.menu_perfil li a .icon_menu_p.icon_perfil {
	background-position: 0px 0;
}
.menu_perfil li a .icon_menu_p.icon_suenos {
	background-position: -30px 0;
}
.menu_perfil li a .icon_menu_p.icon_bolsa {
	background-position: -60px 0;
}
.menu_perfil li a .icon_menu_p.icon_pass {
	background-position: -90px 0;
}
.menu_perfil li a .icon_menu_p.icon_historial {
	background-position: -120px 0;
}
.menu_perfil li a .icon_menu_p.icon_logout {
	background-position: -150px 0;
}
.menu_perfil li a .icon_menu_p.icon_nuevo {
	background-position: -180px 0;
}
.menu_perfil li a .icon_menu_p.icon_directorio {
	background-position: 33px 0;
}
.menu_perfil li a .icon_menu_p.icon_perfil.active {
	background-position: 0px -30px;
}
.menu_perfil li a .icon_menu_p.icon_suenos.active {
	background-position: -30px -30px;
}
.menu_perfil li a .icon_menu_p.icon_bolsa.active {
	background-position: -60px -30px;
}
.menu_perfil li a .icon_menu_p.icon_pass.active {
	background-position: -90px -30px;
}
.menu_perfil li a .icon_menu_p.icon_historial.active {
	background-position: -120px -30px;
}
.menu_perfil li a .icon_menu_p.icon_logout.active {
	background-position: -150px -30px;
}
.menu_perfil li a span {
	vertical-align: middle;
}

.menu_perfil_mobile {
	margin-top: 15px;
}
.menu_perfil_mobile ul {
	border-bottom: 1px solid #eee;
	padding: 10px 0;
	margin: 0 15px;
}
.menu_perfil_mobile ul:first-child {
	padding-top: 0;
}
.menu_perfil_mobile ul:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.menu_perfil_mobile li {
	list-style: none;
}
.menu_perfil_mobile .bullet {
	list-style: disc;
	margin-left: 25px;
}
.menu_perfil_mobile li a {
	display: block;
	line-height: 20px;
	text-align: left;
	white-space: nowrap;
	font-size: 12px;
	color: #fff;
}
.menu_perfil_mobile li a .icon_menu_p {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(../img/menu_perfil.svg);
	background-size: auto 60px;
	vertical-align: middle;
}
.menu_perfil_mobile li a .icon_menu_p.icon_perfil {
	background-position: 0px -30px;
}
.menu_perfil_mobile li a .icon_menu_p.icon_suenos {
	background-position: -30px -30px;
}
.menu_perfil_mobile li a .icon_menu_p.icon_bolsa {
	background-position: -60px -30px;
}
.menu_perfil_mobile li a .icon_menu_p.icon_pass {
	background-position: -90px -30px;
}
.menu_perfil_mobile li a .icon_menu_p.icon_historial {
	background-position: -120px -30px;
}
.menu_perfil_mobile li a .icon_menu_p.icon_logout {
	background-position: -150px -30px;
}
.menu_perfil_mobile li a .icon_menu_p.icon_nuevo {
	background-position: -180px -30px;
}
.menu_perfil_mobile li a .icon_menu_p.icon_directorio {
	background-position: 33px -30px;
}
.menu_perfil_mobile li a span {
	vertical-align: middle;
}

.btn_search {
	width: 30px;
	height: 30px;
	background: url(../img/icon_search.svg);
	background-size: 100% 100%;
	display: inline-block;
	vertical-align: middle;
	border-bottom: none;
	cursor: pointer;
	margin-left: -40px;
	margin-top: 4px;
}
.search_head {
	position: relative;
	margin-left: 15px !important;
	padding-top: 13px;
	transition: all 0.4s;
}

.search_head .form-buscar {
	width: 250px;
}
.search_head .form-buscar .form-control {
	height: 40px;
	font-size: 12px;
	padding-right: 50px;
}
.search_head .form-buscar .form-control,
.search_head .form-buscar .btn_search {
	display: inline-block;
	vertical-align: middle;
}
.header_scroll .search_head {
	padding-top: 13px;
}
.info_seguidores > a {
	font-size: 24px;
	display: block;
	margin-bottom: 20px;
	text-decoration: underline;
}
.followers_thumbs {
	display: inline-block;
	border: 1px solid #ddd;
	padding: 10px;
}
.followers_thumbs a {
	width: 50px;
	height: 50px;
	background-position: center;
	background-size: cover;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
	margin: 0 10px;
}
.icon_btn {
	display: inline-block;
	vertical-align: middle;
	background-image: url(../img/btns_perfil.svg);
	background-size: auto 100%;
	width: 28px;
	height: 28px;
}
.icon_btn_nuevo_sueno {
	display: inline-block;
	vertical-align: middle;
	background: url("../img/sprite-menu-lat.svg") -329px -18px no-repeat;
	background-size: 512px 39px;
	width: 28px;
	height: 28px;
}
.icon_btn.icon_bolsa {
	background-position: right;
}

.aside_missuenos .aside-block-gris.top40 {
	margin-top: 0;
}
#headerperfil.header_scroll {
	height: 65px;
}
#headerBottomPerfil.header_scroll {
	height: 50px;
}
.headericon p {
	height: 17px;
	transition: all 0.4s;
	overflow: hidden;
}
#headerperfil.header_scroll .headericon p,
#headerBottomPerfil.header_scroll .headericon p {
	height: 0;
}

#headerBottomPerfil .icon_top,
#headerBottomPerfil .icon-notificaciones {
	margin-top: 12px;
}
#headerBottomPerfil .headericon {
	padding-top: 0 !important;
	margin-top: unset;
	height: 100%;
	width: 100%;
}
#headerBottomPerfil .nav.navbar-nav {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	float: none;
}
#headerBottomPerfil .btn-header-perfil-cursor {
	margin-left: 0px !important;
	float: none;
	padding: unset;
}
#headerperfil.header_scroll .headericon {
	padding-top: 0;
}
#headerperfil.header_scroll .registrarme,
#headerperfil.header_scroll .ingresar {
	margin: 8px 10px 0 0;
}
.btn_menu {
	float: right;
	width: 30px;
	height: 30px;
	font-size: 30px;
	color: #3f0098;
	margin-top: 10px;
}
.info_debito {
	margin-top: 15px;
}
.info_debito i {
	float: left;
	margin-right: 15px;
	font-size: 32px;
}
.info_debito p {
	font-size: 12px;
	margin-top: 0;
}
.text-slider {
	display: none;
}

.content-video {
	width: calc(100% - 430px);
	margin-bottom: 70px;
}
.thumb-video {
	height: 280px;
	border-radius: 8px;
	position: relative;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	max-width: 500px;
	margin: auto;
	display: block;
}
.thumb-video:before {
	position: absolute;
	width: 75px;
	height: 75px;
	top: 50%;
	left: 50%;
	content: "";
	margin-top: -37px;
	margin-left: -37px;
	background: url(../img/play.png);
}

.suenos-cumplidos {
	background: #f3f3f3;
	padding-bottom: 70px;
	padding-top: 70px;
}
.suenos-cumplidos h3 {
	margin: 0 auto 30px;
	max-width: 800px;
}

.item-sueno p {
	font-size: 18px;
	margin-top: 15px;
	color: #3f0098;
}
.slider-suenos .owl-prev,
.slider-suenos .owl-next {
	width: 16px;
	height: 30px;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	text-indent: -9999px;
	z-index: 9;
	background-image: url(../img/sprite-arrow.svg);
	background-size: 200% 100%;
}
.suenos-cumplidos .slider-suenos .owl-next,
.suenos-cumplidos .slider-suenos .owl-prev {
	margin-top: -75px;
}
.slider-suenos .owl-prev {
	left: 15px;
}
.slider-suenos .owl-next {
	background-position: right;
	right: 15px;
}
.patrocinadores,
.productos-home,
.empresas-ofrecen {
	padding-bottom: 70px;
}
.slider-suenos .item-sueno {
	cursor: pointer;
}

.patrocinadores img {
	display: block;
	margin: auto;
}

.content_slider_tienda2 {
	max-width: 700px;
	margin: auto;
}

.productos-home .box-publicacion {
	color: #7a7a7a;
	float: none;
}
.productos-home .box-publicacion .box-precio-producto p {
	text-align: left;
}

/*-------- Publicaciones Home - 24/11/2018 ---------------*/
.publicaciones-home {
	display: block;
	padding: 60px 0;
}
.publicaciones-home h2 {
	margin: 0 0 13px;
}
.publicaciones-home .title-divider {
	background: #fff;
}
.publicaciones-home .title_home {
	display: block;
	width: 100%;
	margin: 0 0 41px;
}
.publicaciones-home .slider-public .item_publication {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.publicaciones-home .slider-public .item_publication::before {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: transparent;
	content: "";
	position: absolute;
}
.publicaciones-home .slider-public .item_publication .head_text p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.publicaciones-home .publicacion-youtube,
.publicaciones-home .publicacion-soundcloud {
	height: 138px;
}
.publicaciones-home .publication_body {
	min-height: 267px;
}
.publicaciones-home .publication_body .box-detalle-pub-btn {
	margin: 13px 0 0 0;
}
.publicaciones-home .publication_body .img_list li img,
.publicaciones-home .publication_body .img_contain {
	height: 138px !important;
	max-height: 138px !important;
}
.publicaciones-home .publication_body .publication_slider {
	overflow: hidden;
	max-height: 138px;
	margin: 0;
	width: 100% !important;
	height: 130px;
	transform: translate3d(0px, 0px, 0px) !important;
}
.publicaciones-home .publication_body .publication_slider li {
	width: 100% !important;
	display: block;
}
.publicaciones-home .publication_body .publication_slider.bx-controls-direction a {
	display: none !important;
}

.publicaciones-home .publication_body .current_comment {
	display: none;
}
.slider-public .owl-prev,
.slider-public .owl-next {
	width: 16px;
	height: 30px;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	text-indent: -9999px;
	z-index: 9;
	background-image: url("../img/sprite-arrow.svg");
	background-size: 200% 100%;
}
.slider-suenos .owl-next,
.slider-suenos .owl-prev {
	margin-top: -75px;
}
.slider-public .owl-prev {
	left: 15px;
}
.slider-public .owl-next {
	background-position: right;
	right: 15px;
}
.publicaciones-home .slider-public .publication_head .col-sm-3 {
	padding: 0 11px 0 0;
}
.publicaciones-home .slider-public .publication_votes > span.left {
	line-height: 13px;
	margin: 5px 0 0;
	font-size: 14px;
	text-align: center;
}
.publicaciones-home .slider-public .publication_votes > span.right {
	line-height: 44px;
	font-size: 13px;
	padding: 0 10px 0 0;
	display: none;
}
.publicaciones-home .slider-public .publication_votes .btn-vote {
	margin-right: 17px;
	margin-top: 10px;
	margin-right: 10px;
}
.txtNoRegister {
	display: none;
}
.clckNoRegister {
	cursor: pointer;
}
.box-publicacion.box-empresa .main-text.text-purple {
	padding: 0 10px;
	text-align: left;
	padding-top: 10px;
	padding-left: 130px;
}

.slider-suenos .box-producto-inf {
	height: 72px;
	display: flex;
	-webkit-box-align: center;
	-o-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-o-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
}
.slider-suenos .box-publicacion .col-xs-12.no-padding.blanco {
	min-height: 215px;
}

/*-------- Pefil Publicaciones - 24/11/2018 ---------------*/
.seguridad_publicaciones {
	display: block;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 6px 12px;
	margin: 10px 15px;
}
.seguridad_publicaciones::after {
	clear: both;
	content: "";
}
.seguridad_publicaciones h4 {
	font-size: 18px;
}
.seguridad_publicaciones .input-group {
	display: block;
}
.seguridad_publicaciones .checkbox {
	float: none;
	display: block;
}
.seguridad_publicaciones .checkbox h5 {
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px 0 5px;
	cursor: pointer;
}
.seguridad_publicaciones .checkbox label {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 0 0;
}

.slider_seguidores {
	position: relative;
	max-width: 314px;
	width: 100%;
	display: block;
	margin: 0 auto;
}
.slider_seguidores::after {
	clear: both;
	content: "";
}
.slider_seguidores .owl-stage-outer {
	text-align: center;
}
.slider_seguidores .owl-stage-outer .owl-stage {
	display: inline-block;
	vertical-align: middle;
	float: none;
}
.slider_seguidores .owl-controls .owl-nav .owl-next,
.slider_seguidores .owl-controls .owl-nav .owl-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 3;
	padding: 0 4px;
}
.slider_seguidores .owl-controls .owl-nav .owl-next i,
.slider_seguidores .owl-controls .owl-nav .owl-prev i {
	line-height: 70px;
}
.slider_seguidores .owl-controls .owl-nav .owl-next {
	right: 0;
}
.slider_seguidores .owl-controls .owl-nav .owl-prev {
	left: 0;
}

body .productos-home.block-morado .title-divider {
	background: white;
}

/*-------------- CAMBIOS FRONT 2019 --------------*/
body #pautar1 .block-morado {
	position: relative;
	padding: 29px 15px;
}
body #pautar1 .block-morado .close {
	position: absolute;
	top: 10px;
	right: 10px;
}
body #pautar1 .block-morado .container-tooltip-button {
	margin: 17px auto 0;
	display: inline-block;
	float: none;
}
body #pautar1 .block-morado .container-tooltip-button button {
	text-transform: uppercase;
}

body .new_banner.panel_publication_bussines {
	height: auto;
	padding: 20px;
	margin-bottom: 20px;
}
body .new_banner.panel_publication_bussines textarea {
	height: 116px;
	margin: 0 0 21px;
}
body .new_banner.panel_publication_bussines input,
body .new_banner.panel_publication_bussines select {
	margin: 0 0 21px;
}
body .new_banner.panel_publication_bussines h3 {
	margin: 0 0 20px;
	font-weight: bold;
}
body .login_box h3.text-purple span {
	display: block;
}
body .login_box h3.text-purple br {
	display: none;
}

.aside-featured {
	padding: 20px;
}
.aside-featured h4 {
	text-align: center;
}

.aside-dreams__item .box-persona {
	display: flex;
}

.aside-dreams__item .box-persona .block-img-seguidor {
	height: auto !important;
}

.aside-dreams__item__more {
	display: none;
	padding-bottom: 10px;
}

.aside-dreams__item__more .btn-default {
	padding: 5px 10px;
	font-size: 12px;
}

.aside-dreams {
	margin: 20px 20px 0 20px;

	border: 1px solid #cccccc;
	border-radius: 4px;
}

.aside-dreams__title {
	background: #3f0098;
	padding: 20px;
	border-radius: 4px 4px 0 0;
	margin-bottom: 60px;
}
.aside-dreams__title h4 {
	color: #fff;
}

.aside-dreams__item {
	margin: 10px;
}
.aside-dreams__item h5 {
	font-size: 18px;
	padding-top: 12px;
}

.aside-dreams .aside-block-blanco {
	background: #fff;
	padding-top: 30px;
}

.content_affix .aside-block-gris {
	padding: 20px 0;
}

.modal-circle {
	margin-bottom: -65px;
}
.content_affix .content-dinamic {
	border: 0 !important;
	background: transparent !important;
}

.invite {
	margin-bottom: 20px;
}
.parent__item {
	height: 100%;
}
.invite__item {
	border: 1px solid #ccc;
	background: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 20px;
	position: relative;
	height: 320px;
	padding-bottom: 80px;
}
.invite__item_cumplido {
	height: 370px !important;
}
.invite__item .btn {
	position: absolute;
	bottom: 20px;
	width: 120px;
	left: calc(50% - 60px);
}

.invite__delete {
	background: url(../img/btn_delete.png);
	width: 22px;
	height: 22px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.btn-como-funciona {
	padding: 6px 12px !important;
}

/*.invite__item .btn-default{
	color: #3F0098;
}*/

.invite__slider .owl-prev,
.invite__slider .owl-next,
.slider__cumplidos .owl-prev,
.slider__cumplidos .owl-next,
.slider__viajes .owl-prev,
.slider__viajes .owl-next {
	top: 100px;
}

.invite__slider .owl-next,
.slider__cumplidos .owl-next,
.slider__viajes .owl-next {
	right: 10px;
	background-size: 32px 25px;
}

.invite__slider .owl-prev,
.slider__cumplidos .owl-prev,
.slider__viajes .owl-prev {
	left: 10px;
	background-size: 32px 25px;
}

.invite__slider .owl-prev:before,
.slider__cumplidos .owl-prev:before,
.slider__viajes .owl-prev:before {
	content: "";
	width: 16px;
	height: 25px;
	background: url("../img/sprite-arrow.svg") no-repeat 0 0;
	display: block;
	background-size: 200% 100%;
}

.invite__slider .owl-next:before,
.slider__cumplidos .owl-next:before,
.slider__viajes .owl-next:before {
	content: "";
	width: 16px;
	height: 25px;
	background: url("../img/sprite-arrow.svg") no-repeat -17px 0;
	display: block;
	background-size: 200% 100%;
}

.invite__slider .owl-stage,
.slider__cumplidos .owl-stage .slider__viajes .owl-stage {
	display: flex;
}

.invite:hover .owl-prev,
.invite:hover .owl-next,
.product_slider:hover .owl-prev,
.product_slider:hover .owl-next {
	opacity: 1;
}

a.next,
a.next2 {
	float: right;
	color: #3f0098;
	visibility: hidden;
}
a.next::after,
a.next2::after {
	content: "Ver más ...";
	visibility: visible;
}

/*-------- CAMBIOS FRONT - 28/01/2020 ---------------*/
body .suenos_movile {
	display: none;
}
body .profileManufacturer .productsContainter {
	float: left;
}
body .profileManufacturer .asideContainter {
	float: right;
}
body .efectHoverLink {
	text-decoration: none;
	position: relative;
	display: inline-block;
}
body .efectHoverLink::before {
	width: 0;
	height: 2px;
	bottom: -6px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	background: #3e0098;
	display: block;
	transition: width 0.4s linear 0s;
	content: "";
}
body .efectHoverLink:hover::before {
	width: 85%;
}

.section-divider {
	margin: 40px auto;
	max-width: 600px;
	width: 90%;
	height: 1px;
	background: #3e0098;
}

.fake-textarea {
	background: #fff;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: left;
}
.fake-textarea__text {
	color: #999;
	outline: none;
}

.fake-textarea__text:empty:before,
.fake-textarea__text-modal:empty:before {
	content: attr(data-placeholder);
}

.preview-link {
	margin-top: 15px;
	border: 1px solid #ccc;
	box-shadow: 1px 1px rgba(0, 0, 0, 0.075);
	background: #f5f5f5;
	position: relative;
}
.preview-link img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
}

.preview-link__text {
	padding: 10px;
}
.preview-link__text h4 {
	font-weight: bold;
	font-size: 16px;
	margin-top: 0;
	font-family: "dinprobold", sans-serif;
	margin-bottom: 4px;
}
.preview-link__text p {
	font-size: 13px;
	margin-bottom: 0;
}
.preview-link__domain {
	font-size: 12px;
	text-transform: uppercase;
}
.preview-link__close {
	position: absolute;
	background: url(../img/x.svg) rgba(0, 0, 0, 0.5) center no-repeat;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	top: 12px;
	right: 12px;
	cursor: pointer;
	background-size: 15px 15px;
}

.item_publication .preview-link img {
	height: 200px;
}

.item_publication .preview-link__text p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.form-publicacion input {
	text-align: left;
	float: none !important;
}

.perfil-productos .container-producto {
	float: none;
	display: inline-block;
}

.voters_list {
	margin: 0 !important;
}
.voters_list li {
	list-style: none;
}

.voters_list li a {
	color: #fff;
}

.voters_list li a:hover {
	text-decoration: underline;
}

.comments {
	margin-top: 15px;
	border-top: 1px solid #dedede;
	padding-top: 15px;
}

.comments__number {
	font-weight: bold;
}
.comments__more {
	color: #3e0098;
	text-decoration: underline;
	display: inline-block;
	margin-top: 12px;
}

.fake-textarea > div:focus {
	outline: none;
}

.fake-textarea .tag-user {
	background: #f5edff;
}

.tribute-container li {
	padding: 12px !important;
}
.tribute-container li.highlight {
	background: #3e0098 !important;
	color: #fff;
}
.tribute-container li span {
	font-family: "dinprobold";
}

.productsContainter .products {
	/* max-width: 670px; */
	margin: auto;
}

.check-group--autorizo > .checkbox-tipo-cat,
.check-group--autorizo > label {
	vertical-align: middle;
	margin-bottom: 0;
}
.check-group--autorizo > label a {
	color: #3f0098;
}
.text-tratamiento {
	background: #ededed;
	border: 1px solid #cccccc;
	max-height: 120px;
	padding: 15px 30px;
	overflow: auto;
	border-radius: 6px;
	display: none;
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #999 !important;
}
:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #999 !important;
	opacity: 1;
}
::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999 !important;
	opacity: 1;
}
:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #999 !important;
}
::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #999 !important;
}
input::placeholder {
	color: #999 !important;
}

::placeholder {
	/* Most modern browsers support this now. */
	color: #999 !important;
}

.error-input::placeholder {
	color: #3f0098;
}

/*-- Acelerador --*/
.seguridad_publicaciones .valor {
	color: #ffb500;
	font-size: 18px;
	margin-top: 4px;
}
.seguridad_publicaciones .none-price {
	width: 30px;
	height: 2px;
	background: #ffb500;
	margin: 28px 0px 0px;
}
.seguridad_publicaciones .form-group input[type="text"] {
	height: 30px;
	font-size: 12px;
}
.seguridad_publicaciones .form-group .item-acelerar {
	border-bottom: 1px solid #eee;
	padding: unset;
	margin-top: 5px;
}
.seguridad_publicaciones .form-group .total-acelerar {
	padding: unset;
	margin-top: 10px;
}
.seguridad_publicaciones .form-group .item-valor {
	margin-top: 5px;
	padding-right: unset;
}
.seguridad_publicaciones .cohete {
	min-width: 20px;
	height: 30px;
	background-size: auto 100%;
	margin: 0 5px 2px;
	background-repeat: no-repeat;
}
.seguridad_publicaciones .cohete.c-manzana {
	background-image: url(../img/cohete_manzana.svg);
}
.seguridad_publicaciones .cohete.c-verde {
	background-image: url(../img/cohete_verde.svg);
}
.seguridad_publicaciones .cohete.c-morado {
	background-image: url(../img/cohete_morado.svg);
}
.seguridad_publicaciones .cohete.c-fucsia {
	background-image: url(../img/cohete_fucsia.svg);
}
.seguridad_publicaciones .border-purple {
	display: inline-flex;
	padding: unset;
}
.seguridad_publicaciones .border-purple:not(:last-child):after {
	content: " ";
	position: absolute;
	border-left: 3px #3f0098 solid;
	top: 20%;
	right: -15px;
	height: 70%;
	margin-top: auto;
	margin-bottom: auto;
}
.autorizo-cohetes {
	display: flex;
}
.content-candy {
	display: none;
}
.content-candy hr {
	margin-left: 20px;
	margin-right: 20px;
}
.content-candy .img-candy {
	width: 213px;
	height: 100px;
	background-image: url(../img/sprite-candies.svg);
	background-size: auto 100%;
	margin: auto;
}
.content-candy .img-candy.c-manzana {
	background-position: 0px 0;
}
.content-candy .img-candy.c-verde {
	background-position: -237px 0;
}
.content-candy .img-candy.c-morado {
	background-position: -493px 0;
}
.content-candy .img-candy.c-fucsia {
	background-position: -744px 0;
}
.content-candy .img-candy .value-candy {
	color: #3f0098;
	font-size: 40px;
	padding-top: 13px;
}

.bell-nequi::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px; /*adjust as needed*/
	background: url(../img/bell-nequi.svg) no-repeat right;
}

/*-- RECLAMAR COHETES --*/
.pdt-reclamar-cohetes {
	font-size: 12px;
}
#content-file-reclamo, .msg-success-reclamo {
	display: none;
}
#content-file-reclamo .upload_action{
	display: block;
}
.bgd-white {
	background: #fff;
}

.content-transferencia-bancaria {
	display: none;
}
.word-break-all {
	word-break: break-all;
}

/*-- RESPONSIVE --*/
@media (max-width: 1200px) {
	.head_text h4 {
		font-size: 12px;
	}
	body .login_box {
		margin-bottom: -85px;
	}
	.seguridad_publicaciones .checkbox h5 {
		display: block;
		min-height: 2.4em;
	}

	.content-publicaciones .box-banner-empresa {
		max-width: 340px;
		margin: auto;
	}
}
@media screen and (min-width: 1024px) {
	.desk110 {
		margin-top: 110px;
	}
	body .publicaciones-home .publication_body {
		min-height: 272px;
	}
}

@media screen and (max-width: 1024px) {
	.bandera_favorito h3 {
		font-size: 16px;
	}
	.slider__viajes .box-precio-producto .price_text{
		font-size: 12px;
	}
	.title-content-text-price {
		font-size: 18px;
	}
	#left {
		margin-left: -15px;
	}
	.followers .main-text {
		font-size: 16px;
	}
	.followers .icon-seguidores {
		margin-left: 0;
	}
	.btn-nuevo-sueno {
		padding: 10px;
		font-size: 18px;
	}
	.box-ranking {
		width: 100%;
	}
	.container-ranking .box-ranking {
		width: 48%;
	}
	.container-ranking .box-ranking .main-text {
		font-size: 18px;
	}
	.circle-img-perfil-sm {
		width: 50px;
		height: 50px;
	}
	.related_text h3 {
		font-size: 18px;
	}

	.btns_smpresa .col-sm-6 .btn-primary {
		font-size: 12px;
	}
	.sueno_val {
		font-size: 30px;
	}
	.box-sueno-inf .btn-default {
		padding: 10px 15px;
		font-size: 14px;
	}
	.container-publicacion {
		max-width: none;
	}
	.container-invitar {
		width: 100%;
	}
	.item_number {
		bottom: auto;
		margin-bottom: auto;
		top: -24px;
	}
	.item_step img {
		height: 80px;
	}
	.content-video {
		width: 100%;
		margin-top: 300px;
	}
}

/*Tablet H
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
	.perfil-sonador + aside.col-md-4 {
		display: none;
	}
	.search_head .form-buscar {
		width: 200px;
	}
	.header_scroll .headerperfil {
		margin-top: unset;
	}
	.main-header-container {
		width: auto;
	}
	.navbar-default .navbar-nav > li,
	.ingresar .btn,
	.registrarme .btn,
	.ingresar_mobile .btn {
		font-size: 11px;
		padding: 5px 10px;
	}
	.nav > li {
		margin-left: 8px;
	}
	.nav > li.ingresar,
	.nav > li.registrarme {
		padding: 3px 0px 0px 20px;
		margin: 24px 0 0 0;
	}
	.nav > li.ingresar a {
		padding: 3px 10px 0px 0px;
		margin: 24px 5px 0px 0px;
	}

	.navbar-collapse {
		padding-right: 0;
		padding-left: 0;
	}
	.btn-header-perfil-cursor {
		max-width: 140px;
	}
	.btn-header-perfil,
	.btn-header-perfil-cursor {
		padding: 0px 4px;
	}
	.navbar-default .navbar-nav .dropdown a {
		width: 34px;
		padding: 19px 0 18px 0;
	}
	.dropdown-box {
		width: 30px;
		padding: 0px;
	}
	.dropdown-menu {
		width: 195px;
	}
	.text-dropdown {
		padding-left: 0;
	}
	.navbar-default .navbar-nav .dropdown .dropdown-menu > li > a {
		width: 193px;
		padding: 12px 10px;
	}
	.dropdown-box .icon-perfil {
		width: 35px;
		margin-top: 7px;
	}
	.navbar-default .navbar-nav .dropdown {
		margin-left: 4px;
	}

	.header-empresa {
		width: 275px;
	}

	.navbar-default .navbar-nav .dropdown-empresa a {
		width: 185px;
	}
	.navbar-default .navbar-nav .dropdown-empresa .dropdown-box {
		width: 185px;
	}
	.dropdown-empresa .dropdown-menu {
		width: 185px;
	}

	.btn-login-container-abrir {
		top: 335px;
	}
	.btn-login-container-cerrar {
		top: 250px;
	}

	.cerrar-video {
		top: 300px;
	}

	#menulateral {
		width: 50px;
	}

	.container-banner-sueno {
		height: 250px;
	}

	.form-control-buscar-tienda {
		width: 115%;
	}

	.box-nueva-publicacion {
		padding: 16% 0;
	}

	.aside-box {
		margin-left: 0;
		width: 100%;
	}

	.scroll-box {
		margin: 10px auto;
	}

	.aside-box .maximo-caracteres {
		top: 160px;
	}

	.title-historial-span .box-persona-votos {
		margin: 5px auto;
	}
	.box-persona .block-amarillo {
		padding: 20px 5px 5px 5px;
	}
	.box-persona-votos,
	.box-ranking-votos {
		margin: 0px auto;
	}

	.modal-dialog {
		width: 750px;
	}
	.modal-initial-explorador{
		width: 500px;
	}

	.bxslider h3 {
		font-size: 21px;
		line-height: 23px;
		margin-top: 0px;
	}
	.filtrar {
		width: 49%;
	}
	.box-error {
		margin-top: 80px;
	}
	.box-seccion iframe {
		height: 410px;
	}

	.aside-dreams {
		margin: 0;
	}
	.profileManufacturer {
		padding-top: 100px;
	}
}

@media screen and (min-width: 650px) and (max-width: 900px) {
	.img_cover_empresa,
	.img-mi-perfil {
		height: 320px;
	}
}

@media screen and (min-width: 768px) {
	.btn_menu,
	.btn-head-login-mobile {
		display: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 1380px) {
	.scroll-box.block-notificaciones {
		left: -175px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.header_scroll .btn-header-perfil-cursor .headerperfil {
		margin-top: unset !important;
	}
	.btns_smpresa .col-sm-6 {
		padding: 0 5px;
	}
	/* .container-producto {
		max-width: none;
	} */
	.item_step {
		width: 50%;
	}
	.item_step:nth-child(2) {
		border-right-width: 10px;
	}
	.item_step:last-child {
		width: 100%;
		border-top-width: 0;
		border-left-width: 10px;
	}
	.invite__item_cumplido {
		height: 440px !important;
	}
}

@media screen and (max-width: 768px) {
	.block-ads-empresa{
		display: none;
	}
	.slider__viajes .item-slider-viajes ~ .item-slider-viajes {
		display: none;
	}
	.container-control-carrito{
		display: block;
	}
	.head_text h4 {
		font-size: 11px;
	}
	.logo_footer {
		display: block;
		width: 100px;
		margin: 15px auto 15px auto;
	}
	.logo_footer img {
		margin: 0;
	}
	.redes {
		text-align: center;
		margin-top: 15px;
	}
	.content_slider_tienda .bx-controls-direction {
		display: none;
	}
	.pie {
		display: none;
	}
	#modalTerminosCondiciones .scroll-box {
		height: 180px;
	}
	.content_registro_home h3 {
		font-size: 20px;
	}
	.content_registro_home h4 {
		font-size: 24px;
		margin: 15px 0;
	}
	.content_registro_home .form-control {
		height: 44px;
	}
	.content_registro_home .form-group {
		margin-bottom: 10px;
	}
	.box-btn-registro {
		margin-top: 20px;
	}
	.init_home h1 {
		position: relative;
		max-width: 100%;
		padding: 0 30px;
		top: auto;
		left: auto;
	}
	.prod_desc p {
		text-align: justify;
	}
	.congrats_content h1 {
		font-size: 40px;
	}
	.congrats_p,
	.congrats_p4,
	.congrats_p2 {
		font-size: 16px;
		margin-top: unset;
		line-height: 18px;
		word-break: break-word;
	}
	.congrats_p3 {
		font-size: 16px;
		margin-top: 20px;
		line-height: 18px;
	}
	.content-dinamic.dinamic_fixed {
		position: relative;
	}
	.scrollprueba {
		padding-bottom: 20px;
	}
	ul.nav-tabs {
		margin-left: 5px;
	}
	.producto-seleccionado span {
		line-height: 1.6em;
		font-size: 12px;
	}
	.container-ranking .box-ranking {
		width: 100%;
	}
	.productos-home .box-publicacion {
		margin-bottom: 20px;
	}
	.thumb-video {
		height: 200px;
	}

	h3 {
		font-size: 20px;
		line-height: 22px;
	}
	.pusher-height {
		padding: 0;
	}

	.content_input_sueno span {
		top: 10px;
		font-size: 18px;
		color: #fff;
		left: 0;
		font-family: "dinprobold";
		text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
		opacity: 1;
	}
	.content_input_sueno .cual-es-tu-sueno {
		padding-left: 20px;
	}
	.content_input_sueno {
		margin-top: 25px;
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media screen and (max-width: 767px) {
	/*	.init_home{background: #ffb500 !important}*/
	.title-historial-compra-mobile {
		height: 85px;
		line-height: 25px;
		padding: 10px;
	}
	.tooltip-span.tooltip-history {
		margin-bottom: -31px;
		width: 125px;
		margin-left: -79px;
	}
	.content_image_publicacion {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.content_image_publicacion .border-right {
		border-right: none;
	}
	.content-info-publicacion-desktop {
		display: none;
	}
	.content-info-publicacion-mobile {
		display: block;
	}
	.pub_total_votes {
		font-size: 12px;
	}
	#headerBottomPerfil .icon_top,
	#headerBottomPerfil .icon-notificaciones {
		margin-top: 0px;
	}
	.mobile_bottom_nav .block-notificaciones {
		left: -240px;
	}
	.search_guest {
		display: none;
	}
	.init_home h1 {
		font-size: 30px;
	}
	.content_login_form {
		margin-right: auto;
	}
	#modalNombreFecha .tooltip15 {
		left: 0;
		position: relative;
		display: block;
		top: 0;
	}
	#modalNombreFecha .tooltip15 .tooltip-content {
		position: relative;
	}
	#modalNombreFecha .tooltip15 .tooltip-content:before {
		position: absolute;
		bottom: 100%;
		left: 50%;
		margin-left: -10px;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		content: "";
		border-bottom: 10px solid #34007e;
	}
	#modalNombreFecha .tooltip15 p {
		color: #fff;
	}
	#modalNombreFecha .tooltip15 .tooltip-callout-vr .callout2,
	.tooltip15 .tooltip-callout-vr {
		display: none;
	}
	.producto-obtuvo.btn-primary {
		margin-bottom: 10px;
	}
	.main-header-container {
		background: #ffb500;
	}
	.container > .navbar-header {
		margin-left: 0;
	}
	#headerperfil .navbar-brand {
		margin-top: 9px;
	}
	.item_step {
		width: 100%;
		border-width: 10px;
		border-bottom-width: 0;
	}
	.search_head {
		padding-top: 14px;
	}
	.item_step:last-child {
		border-bottom-width: 10px;
	}
	.home-padding {
		padding: 20px 0;
	}
	.info_bolsa .home-padding {
		padding: 40px 0 20px 0;
	}
	.img.scrollflow.-pop {
		margin: 0;
	}
	.inscribir-organizacion .circle-container {
		position: relative;
		margin: auto;
		margin-bottom: 30px;
	}
	.registro_mobile .icon_login {
		background-position: top left;
	}
	.login_mobile .icon_login {
		background-position: bottom right;
	}
	.home_mobile_nav {
		display: block;
		position: absolute;
		right: 20px;
		top: 16px;
		font-size: 20px;
	}
	.home_mobile_nav a {
		display: inline-block;
		color: #fff;
		line-height: 32px;
		text-align: center;
		font-size: 12px;
		background: #3f0098;
		padding: 0 10px;
	}
	.home_mobile_nav a span {
		vertical-align: middle;
	}
	.navbar_home .navbar-nav:not(.navbar-right) {
		display: none;
	}
	.sueno_historico aside {
		display: none;
	}
	.content_filtro_suenos {
		text-align: center;
	}
	.menu_mobile {
		display: block;
		padding: 20px;
		overflow: auto;
		max-height: calc(100vh - 146px);
		list-style: none;
	}
	nav#left {
		display: none;
	}
	.container > .navbar-collapse#navbar-1 {
		margin-left: 0;
		margin-right: 0;
		position: absolute;
		top: 100%;
		right: 0;
		width: 280px;
		background: #ededed;
		box-shadow: -10px 0 15px rgba(0, 0, 0, 0.1);
		height: calc(100vh - 146px);
		overflow-y: visible;
	}
	.close_navbar {
		position: absolute;
		right: 100%;
		width: 100%;
		height: 100%;
		top: 0;
	}
	.navbar-default .navbar-nav {
		margin-left: 20px;
		margin-right: 20px;
	}
	.menu_mobile .form-control {
		font-size: 12px;
		float: none;
		margin-bottom: 25px;
	}
	.menu_mobile li a {
		font-size: 14px;
		line-height: 40px;
		position: relative;
		padding-left: 46px;
		float: none;
		display: block;
	}
	.menu_mobile li a:before {
		background-image: url("../img/sprite-menu-lat-3.svg");
		width: 40px;
		height: 40px;
		position: absolute;
		top: 50%;
		margin-top: -20px;
		left: 0;
		background-size: auto 80px;
		content: "";
	}
	/*--.menu_mobile li a.ml-miperfil:before{background-position: -28px 0}
	.menu_mobile li a.ml-explorar-actual:before{background-position: -56px 0}
	.menu_mobile li a.ml-directorio:before{background-position: -84px 0}
	.menu_mobile li a.ml-tienda:before{background-position: -112px 0}
	.menu_mobile li a.ml-bolsa:before{background-position: -140px 0}
	.menu_mobile li a.ml-historial:before{background-position: -168px 0}
	.menu_mobile li a.ml-crearnuevo:before{background-position: -196px 0}
	--*/
	.menu_mobile li a.ml-miperfil:before {
		background-position: -40px 0;
	}
	.menu_mobile li a.ml-miperfil:hover:before,
	.menu_mobile li a.ml-miperfil-actual:before {
		background-position: -40px -40px;
	}

	/* Explorar sueÃ±os */
	.menu_mobile li a.ml-explorar:before {
		background-position: -80px 0;
	}
	.menu_mobile li a.ml-explorar:hover:before,
	.menu_mobile li a.ml-explorar-actual:before {
		background-position: -80px -40px;
	}

	/* Directorio de organizaciones */
	.menu_mobile li a.ml-directorio:before {
		background-position: -120px 0;
	}
	.menu_mobile li a.ml-directorio:hover:before,
	.menu_mobile li a.ml-directorio-actual:before {
		background-position: -120px -40px;
	}

	/* Tienda de sueÃ±os */
	.menu_mobile li a.ml-tienda:before {
		background-position: -160px 0;
	}
	.menu_mobile li a.ml-tienda:hover:before,
	.menu_mobile li a.ml-tienda-actual:before {
		background-position: -160px -40px;
	}

	/* Bolsa de estÃ­mulos */
	.menu_mobile li a.ml-bolsa:before {
		background-position: -200px 0;
	}
	.menu_mobile li a.ml-bolsa:hover:before,
	.menu_mobile li a.ml-bolsa-actual:before {
		background-position: -200px -40px;
	}

	/* Mi historial */
	.menu_mobile li a.ml-historial:before {
		background-position: -240px 0;
	}
	.menu_mobile li a.ml-historial:hover:before,
	.menu_mobile li a.ml-historial-actual:before {
		background-position: -240px -40px;
	}

	/* Crear nuevo sueÃ±o */
	.menu_mobile li a.ml-crearnuevo:before {
		background-position: -280px 0;
	}
	.menu_mobile li a.ml-crearnuevo:hover:before,
	.menu_mobile li a.ml-crearnuevo-actual:before {
		background-position: -280px -40px;
	}

	.menu_mobile li a.ml-misueno:before {
		background-position: -320px 0;
	}
	.menu_mobile li a.ml-misueno:hover:before,
	.menu_mobile li a.ml-misueno-actual:before {
		background-position: -320px -40px;
	}

	.menu_mobile li a.ml-misueno.otros_suenos:before {
		background-position: -360px 0;
	}
	.menu_mobile li a.ml-misueno.otros_suenos:hover:before,
	.menu_mobile li a.ml-otros-actual.otros_suenos:before {
		background-position: -360px -40px;
	}

	.menu_mobile li a.ml-misueno.suenos_ofrezco:before {
		background-position: -360px 0;
	}
	.menu_mobile li a.ml-misueno.suenos_ofrezco:hover:before,
	.menu_mobile li a.ml-misueno-actual.suenos_ofrezco:before {
		background-position: -360px -40px;
	}

	header .navbar-default .navbar-nav {
		display: none;
	}
	.container-nombre-sueno {
		padding: 20px;
	}
	/* .mobile_bottom_nav {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #fff;
		box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
		z-index: 100;
		height: 60px;
	}
	.mobile_bottom_nav .navbar-nav {
		text-align: center;
	}
	.mobile_bottom_nav .navbar-nav li {
		display: inline-block;
		vertical-align: top;
		width: 20%;
		margin-right: -4px;
		position: static;
	}
	.mobile_bottom_nav .icon-votos,
	.mobile_bottom_nav .icon-notificaciones,
	.mobile_bottom_nav .icon-carrito {
		float: none;
	}
	.mobile_bottom_nav .headericon p {
		padding-left: 0;
		line-height: normal;
		font-size: 10px;
		text-align: center;
		margin-bottom: 0;
	}
	.mobile_bottom_nav .btn-header-perfil,
	.mobile_bottom_nav .btn-header-perfil-cursor {
		height: auto;
	}
	.mobile_bottom_nav .block-notificaciones {
		top: auto;
		bottom: 100%;
		left: 0;
		width: 100%;
		max-height: 50vh;
		height: auto;
		margin-bottom: 0;
	}
	.mobile_bottom_nav .navbar-nav li.btn_footer_nav {
		position: absolute;
		right: 0;
		color: #3f0098;
		width: auto;
		font-size: 30px;
		top: 50%;
		margin-top: -21px;
		width: 40px;
	}
	.mobile_bottom_nav .icon-cifra {
		width: 16px;
		height: 16px;
		line-height: 16px;
		font-size: 10px;
		top: 0;
	} */
	.bg_notificaciones {
		position: absolute;
		bottom: 100%;
		left: 0;
		width: 100%;
		background: rgba(0, 0, 0, 0.4);
		height: calc(100vh - 100px);
		display: none;
	}
	.footer_mobile {
		display: block;
		width: 260px;
		position: fixed;
		right: -260px;
		background: #2a0065;
		color: #fff;
		top: 0;
		height: 100%;
		z-index: 10000;
		box-shadow: 5px 0 20px rgba(0, 0, 0, 0.6) inset;
		transition: all 0.7s;
		will-change: right;
		transform: translateX(0);
		-webkit-transform: translateX(0);
	}

	.mobile_footer_nav {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		margin: 0 20px;
	}
	.mobile_footer_nav li,
	.mobile_user_nav li {
		list-style: none;
	}
	.mobile_footer_nav li a,
	.mobile_user_nav a {
		display: block;
		color: #fff;
		line-height: 40px;
		padding-left: 20px;
	}
	.mobile_user_nav {
		margin: 0 20px;
		margin-top: 20px;
	}
	.footer_mobile .copyright {
		position: static;
		text-align: center;
		font-size: 11px;
	}
	.footer_mobile .icon-contrasena {
		width: 24px;
		height: 24px;
		margin-top: 8px;
		background: url(../img/icon_pass.png);
	}
	.footer_mobile .icon-cerrar-sesion {
		width: 24px;
		height: 24px;
		margin-top: 8px;
		background: url(../img/icon_logout.png);
	}
	.close_footer {
		position: absolute;
		top: 0;
		right: 100%;
		width: 100%;
		height: 100%;
		background: transparent;
		pointer-events: none;
	}
	body.footer_abierto .close_footer {
		pointer-events: auto;
	}
	footer {
		height: 0;
		padding: 0;
		overflow: hidden;
	}
	.main {
		padding-bottom: 100px;
	}
	.btns_smpresa .col-sm-6 .btn-primary {
		margin-bottom: 10px;
	}

	.content_img_sueno img {
		border-radius: 4px 4px 0 0;
	}
	.content_info_sueno {
		padding-top: 0;
	}
	.actions_btns a {
		width: 100%;
		margin: 0;
		margin-top: 10px;
	}
	.registro_mobile {
		/*display: none !important;*/
		background: #fff !important;
		color: #3f0098 !important;
	}
	.productos-home .box-publicacion {
		max-width: 350px;
		margin: auto;
	}

	.publication_head .col-sm-5 {
		/* margin-top: 10px; */
		padding-left: 15px;
	}

	.head_text {
		border-right: 0;
	}

	/*.publication_votes{font-size: 12px;}*/
	.invite__item_cumplido {
		height: 430px !important;
	}
}

@media screen and (max-width: 1200px) {
	.nav > li.ingresar,
	.nav > li.registrarme {
		margin-right: 0;
	}
	.btn.btn_login {
		padding: 6px;
	}
	.circle-img-perfil-sm {
		width: 50px;
		height: 50px;
	}
}

@media screen and (max-width: 600px) {
	.info_equivale .circle-container {
		position: relative;
		margin-top: -63px;
	}
	.badge {
		width: 80px;
		height: 113px;
		background-size: 100% 100%;
	}
	.badge p {
		padding-top: 35px;
		font-size: 12px;
	}
	.badge p span {
		font-size: 22px;
	}
	.navbar-toggle {
		padding: 25px;
	}
	.navbar-brand {
		height: 57px;
		width: 260px;
		margin: 5px;
	}
	.navbar-header {
		height: 67px;
	}
	#headerperfil {
		height: 67px;
	}
	.box_publication {
		padding: 12px;
	}
	.container-banner-sueno {
		margin-top: -43px;
	}
	.gal_thumb {
		height: 50px;
	}
	.new_banner {
		height: 240px;
	}
	.modal-circle {
		display: none;
	}
	.button.close {
		right: 10px;
	}
	.modal-header2 {
		padding-top: 30px;
	}
	.modal-header2 h3 {
		font-size: 20px;
	}
	.block-sueno-usuario h2 {
		text-align: center;
	}
	.bandera_favorito p {
		font-size: 8px;
	}
	.more_info_sueno {
		padding: 20px;
	}
	.text_img_sueno {
		bottom: 10px;
		right: 10px;
		left: 10px;
	}
	.text_img_sueno p {
		font-size: 14px;
	}
	.text_img_sueno h4 {
		font-size: 20px;
	}
	.content_info_sueno .box-publicacion-inf {
		width: auto;
		margin-right: 0;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	/* .container-producto {
		max-width: 315px;
		margin-left: 10px;
		margin-right: 10px;
	} */
	.container-publicacion {
		max-width: none;
		width: 48% !important;
		height: 440px;
	}
	.box-usuario {
		height: 152px;
	}
	.box-sueno-cumplido {
		height: 430px;
	}
	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto {
		right: 85% !important;
	}
	/*--.perfil_mobile section{display: none;}
	.sueno_mobile aside{display: none;}--*/
}
/* Tablet V
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
	/*--
	.perfil_mobile section{display: none;}
	.sueno_mobile aside{display: none;}
	--*/
	.forma-pago {
		padding: 20px;
		font-size: 20px;
		border-radius: 5px;
		background: #eaece6 none repeat scroll 0% 0%;
	}
	.mobile-menos40 {
		margin-top: -40px;
	}
	h3 {
		font-size: 21px;
	}
	li.container-social-button a {
		width: 40px;
		display: inline-block;
	}

	.navbar-default .navbar-nav {
		margin-left: 25px;
		text-align: center;
	}
	.nav > li > a {
		padding-top: 0;
		margin-top: 0;
		text-align: left;
	}
	#scroll1,
	#scroll2,
	#scroll3 {
		width: 100%;
		height: 44px;
		line-height: 40px;
		text-align: center;
	}
	#scroll3 {
		border-bottom: 1px solid #ccc;
	}
	.navbar-default .navbar-nav > li,
	.btn-notificaciones {
		width: 98%;
		max-width: 100%;
		height: 46px;
		margin: 0;
		font-size: 15px;
		text-align: left;
		/*display: inline-block;*/
		vertical-align: top;
		border-bottom: 1px solid #ccc;
		padding-top: 3px;
	}
	.navbar-default .navbar-nav > li:last-child {
		border-bottom: none;
	}
	.headericon {
		padding-top: 0;
		/* margin-top: 0; */
		margin-top: 5px !important;
		border-bottom: none;
	}
	.headericon p {
		padding-left: 55px;
		position: relative;
		line-height: 40px;
	}
	.icon-votos,
	.icon-notificaciones,
	.icon-carrito {
		float: left;
	}
	.text-dropdown {
		width: 100%;
		text-align: left;
		padding-left: 10px;
	}
	.ingresar {
		display: none !important;
	}
	li.container-social-button {
		margin: 0 auto;
		float: none;
		text-align: center !important;
	}
	.block-ingresar-mobile-1 {
		/*--display: block;--*/
		position: relative;
		z-index: 100;
	}
	.dropdown {
		float: none;
		width: 99%;
	}
	.dropdown-menu {
		display: block;
	}
	.dropdown-menu li {
		border-bottom: 1px solid #ccc;
	}
	.dropdown-menu li:last-child {
		border-bottom: none;
	}
	.navbar-default .navbar-nav .dropdown .dropdown-menu > li > a {
		width: 100%;
		padding: 10px 5px;
	}
	.navbar-default .navbar-nav > .open > a:focus,
	.navbar-default .navbar-nav > .open > a:hover {
		border-left: none;
		border-right: none;
	}
	.navbar-default .navbar-nav .dropdown a {
		width: 100%;
		padding: 10px 0 10px 5px;
		margin: 0 auto;
	}
	.dropdown-box {
		width: 185px;
		padding: 0px 5px;
	}
	.dropdown-menu {
		width: 100%;
		position: relative;
		top: -5px;
		border: none;
		background: none;
	}
	li.tooltip-zone {
		padding: 2px 0 2px 10px;
		color: #777;
	}
	.icon-contrasena {
		margin-left: -3px;
	}
	.icon-invitar {
		margin: 5px 15px 0 -5px;
	}
	.header-empresa {
		float: none;
	}
	.block-notificaciones {
		margin-left: 0;
	}
	.btn-header-border {
		border-right: none;
	}
	.dropdown-box {
		width: 125px;
	}
	.navbar-nav .open .dropdown-menu {
		position: relative;
		width: 100%;
		top: 0;
		left: -50%;
		margin-left: -10px;
	}
	.main-header-container {
		padding-left: 15px;
		background: #ffb500;
		box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
	}
	#navbar-1 {
		width: 100%;
	}
	.navbar-collapse {
		border: none;
	}

	.home-main-container,
	.int-main-container {
		height: auto;
	}
	.container-video {
		width: 100%;
		margin-top: 0;
		height: auto;
	}

	.bg-video {
		height: 500px;
		top: 587px;
		display: none !important;
	}

	.pusher-height {
		display: block;
	}
	.title-container {
		top: 560px;
	}
	.cerrar-video {
		top: 700px;
		left: 45%;
	}

	.btn-login-container-abrir,
	.btn-ingresar-container-abrir,
	.btn-login-container-cerrar,
	.btn-ingresar-container-cerrar {
		display: none;
	}
	.login-container,
	.login-container-collapsed {
		width: 100%;
		display: block;
		position: relative;
		top: 0;
	}
	.ingresar-container {
		display: none !important;
	}
	.login-box {
		margin: 20px auto 0 auto;
	}

	.height250 {
		height: 280px;
	}

	#como-funciona {
		width: 100%;
		height: 1px;
		display: inline-block;
		position: absolute;
		top: 2055px;
		left: 0;
	}
	#como-cumplimos-suenos {
		width: 100%;
		height: 1px;
		display: inline-block;
		position: absolute;
		top: 3890px;
		left: 0;
	}
	#inscribir-organizacion {
		width: 100%;
		height: 1px;
		display: inline-block;
		position: absolute;
		top: 4860px;
		left: 0;
	}

	.como-funciona .circle-container {
		margin-top: -508px;
	}
	.como-cumplimos-suenos h3 {
		margin: 15px auto 0 auto;
	}
	.como-funciona .row,
	.como-cumplimos-suenos .row,
	.inscribir-organizacion .row {
		margin-left: 0px;
	}
	.inscribir-organizacion .block-gris,
	.inscribir-organizacion .block-gris-claro {
		padding-bottom: 120px;
	}
	.inscribir-organizacion .block-gris:last-child {
		padding-bottom: 60px;
	}
	.inscribir-organizacion .circle-container {
		top: 10px;
	}
	.inscribir-organizacion .text-purple {
		margin-top: 70px;
	}

	.container-banner-sueno {
		height: 250px;
	}

	.agregar-sueno-text {
		margin-bottom: 10px;
	}
	.block-cifras {
		height: auto;
		padding-bottom: 30px;
	}
	.box-nueva-publicacion {
		padding: 18% 0;
	}
	.container-publicacion,
	.container-banner-empresa {
		width: 100%;
		margin: 10px 0;
	}
	.container-producto {
		width: 100%;
	}

	.info-empresa-box {
		left: -85px;
		top: 185px;
	}
	.info-empresa-box .callout3 {
		display: none;
	}

	.container-nombre-sueno {
		position: relative;
		padding: 10px;
		bottom: 0;
		background: #3f0098;
	}
	.container-nombre-sueno h1 {
		text-shadow: none;
		margin-bottom: 0;
		padding-bottom: 0;
		font-size: 28px;
	}
	.container-nombre-sueno h2 {
		text-shadow: none;
		font-size: 16px;
		margin-bottom: 0;
		line-height: normal;
	}

	.filtrar {
		width: 49%;
	}
	/*.container-producto {
	    height: 550px;
	}*/

	.tooltip3 {
		width: 300px;
		left: -5px;
		bottom: 60px;
	}
	.tooltip3 .tooltip-content {
		width: 280px;
	}
	.tooltip3 .callout1 {
		margin: -2px auto;
		left: -7px;
	}

	footer {
		height: 215px;
	}

	footer img {
		width: 90%;
		float: none;
		margin: 30px 0 10px 20px;
	}
	.modal-dialog {
		width: 95%;
	}
	.container-detalle-pub {
		width: 100%;
		height: auto;
		float: left;
		display: block;
		margin: 20px 0;
		padding: 10px;
	}
	.box-detalle-pub-btn {
		width: 100%;
		position: relative;
		bottom: 0px;
	}
	.box-detalle-pub-btn .box-publicacion-inf {
		width: 33%;
	}
	.box-error {
		margin-top: 30px;
	}
	.box-error h1 {
		margin: 0;
	}
	.img-error {
		width: 25px;
	}

	.box-seccion iframe {
		height: 335px;
	}
	#sueno-descripcion {
		height: 140px;
	}
	.maximo-caracteres {
		top: 142px;
		right: 32px;
		left: inherit;
	}
	.form-control-valor-producto {
		width: calc(100% - 20px);
		margin-left: 15px;
		margin-top: 5px;
	}

	.block-cifras > .top40 {
		display: none;
	}
	.block-cifras {
		padding-top: 30px;
	}
	.cifras .circle-container {
		position: relative;
		margin-top: 0;
		margin-bottom: 30px;
	}
	.aside-box.top110 {
		margin-top: 60px;
	}
	.perfil_mobile .aside-box.top110 {
		margin-top: 90px;
	}
	.aside-box {
		width: 100%;
	}
	.copyright {
		position: relative;
		top: auto;
		margin-top: 0;
		text-align: center;
	}
	.xs-top20 {
		margin-top: 20px;
	}
	.tipo-categoria {
		padding: unset;
		font-size: 12px;
	}
	.subir-imagen {
		margin-top: -42px;
		border-radius: 0;
	}
	.crop_ctrls input[type="range"] {
		width: 100px;
	}
	.crop_ctrls {
		padding-right: 140px;
	}
	.container-publicacion,
	.container-producto {
		max-width: none;
	}
	.container-producto .box-publicacion a p {
		min-height: 0;
	}
	.container-producto {
		height: auto;
	}
	.share_btns {
		display: block;
	}
	.container-publicacion {
		height: 440px;
	}
	.box-usuario {
		height: 152px;
	}
	.box-sueno-cumplido {
		height: 430px;
	}
	.content_affix {
		display: none;
	}
	.perfil_mobile .content_affix,
	.profileManufacturer .content_affix {
		display: block;
	}
	#block-perfil-empresa {
		margin-top: 30px;
	}
	.row_perfil_empresa {
		display: flex;
		flex-direction: column-reverse;
	}
	.row_perfil_empresa aside {
		margin-top: 36px;
	}
}
/* Mobile
   ------------------------------------------------------------------------- */
@media (max-width: 480px) {
	h1 {
		font-size: 36px;
		line-height: 34px;
	}
	h2 {
		font-size: 26px;
		line-height: 30px;
	}
	.box-valor-sueno-left h2 {
		font-size: 21px;
		margin: 10px 0;
	}
	.box-producto-inf .main-text {
		font-size: 16px;
		font-weight: bold;
	}

	.main-text {
		font-size: 15px;
		line-height: 15px;
	}
	.min-text {
		font-size: 13px;
	}
	.btn-primary,
	.btn-default,
	.btn-nuevo-sueno {
		font-size: 13px;
		padding: 12px 18px;
	}
	.btn-min {
		font-size: 13px;
		padding: 8px 10px;
		/* margin-top: 4px; */
	}
	.btn-primary-home,
	.btn-default-home {
		font-size: 16px;
	}

	#como-funciona {
		top: 1880px;
	}
	#como-cumplimos-suenos {
		top: 2850px;
	}
	#inscribir-organizacion {
		top: 3360px;
	}

	.title-container {
		top: 538px;
	}
	.title-container h1 {
		line-height: 36px;
		margin: 0 0 7px 0;
	}
	.title-line {
		margin-bottom: 5px;
	}
	.cerrar-video {
		top: 720px;
		left: 42%;
	}
	.title-box {
		width: 300px;
		margin: 0 auto;
		font-size: 12px;
	}

	.number {
		font-size: 65px;
		line-height: 76px !important;
	}

	.como-funciona .circle-container {
		margin-top: -50px;
		top: 0;
	}
	.como-funciona .block-gris,
	.como-funciona .block-gris-claro {
		padding: 80px 0px 0 0;
	}
	.como-funciona .row.block-morado {
		padding: 50px 0px 50px;
	}
	.inscribir-organizacion .block-morado {
		padding: 0 0 50px 0;
		margin-top: 50px;
	}
	.inscribir-organizacion .block-gris,
	.inscribir-organizacion .block-gris-claro {
		padding-bottom: 30px;
	}
	.inscribir-organizacion .block-gris:last-child {
		padding-bottom: 15px;
	}
	.inscribir-organizacion p {
		margin: 0px auto 0px auto;
	}
	.inscribir-organizacion .text-purple {
		margin-top: 0px;
	}
	.height250 {
		height: auto;
	}

	.container-banner-sueno {
		height: 200px;
	}

	.section-block {
		margin-left: 15px;
		float: left;
	}

	.btn-buscar {
		display: none;
	}

	#modalInvitarAmigos .input-group .form-control {
		width: 190%;
		margin-bottom: 10px;
		padding: 6px;
		font-size: 12px;
	}

	.cual-es-tu-sueno {
		font-size: 15px;
	}
	.box-btn-producto {
		padding: 0;
	}
	.form-control-buscar-tienda {
		width: 115%;
		padding: 6px;
	}
	/*--.icon-buscar-tienda{
		display: none;
	}--*/

	.btn-buscar-tienda {
		font-size: 13px;
		margin-top: 10px;
	}

	.container-publicacion {
		height: auto;
	}
	.box-nueva-publicacion {
		padding: 18% 0;
		height: 260px;
	}
	.btn-reportar-publicacion {
		width: 55px;
	}
	.box-descripcion p,
	.box-descripcion-doc p {
		font-size: 13px;
		line-height: 16px;
	}
	.box-sueno-perfil {
		width: 90%;
		height: 50px;
		margin: 4px 0px 0px 4px;
	}

	.scroll-box {
		margin: 10px auto;
	}
	.container-buscar-producto {
		margin-bottom: 20px !important;
		margin-top: 0 !important;
	}
	.container-buscar-producto button {
		height: 40px;
	}

	.form-add-producto > .top40 {
		margin-top: 0 !important;
	}

	.currency {
		top: 73px;
		left: 235px;
	}

	.box-sueno-inf .box-usuario,
	.box-publicacion-reportar {
		width: 37%;
	}
	.box-sueno-inf .col-xs-8 {
		width: 57%;
	}
	.box-publicacion-inf {
		width: 21%;
	}

	.box-tipo-categoria,
	.box-tipo-sueno,
	.container-invitar {
		width: 100%;
	}

	.img-publicacion {
		height: 170px;
	}

	.box-organizaciones {
		padding: 30px 0;
	}

	.label-aside-sueno {
		font-size: 12px;
	}

	.container-ranking {
		width: 100%;
		padding: 15px 0;
	}

	.padding-box-left,
	.padding-box-right {
		padding: 0 5px;
		width: 100%;
	}
	.box-ranking {
		width: 98%;
		margin: 20px 0px 15px 1%;
	}

	.box-ranking .col-xs-3 {
		width: 40%;
	}

	.box-ranking .col-xs-7 {
		width: 60%;
	}

	.box-ranking .col-xs-2 {
		width: 100%;
		height: 50px;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 0 0 4px 4px;
		margin-top: 20px;
	}

	.box-ranking-votos,
	.box-ranking-numero-votos {
		margin: 0 10px;
	}

	.box-ranking-foto img {
		display: block;
	}

	.container-participantes {
		width: 96%;
		margin-top: 140px;
	}

	.tooltip2 {
		left: 0px;
	}
	.tooltip4 {
		left: -205px;
	}
	.tooltip4 .callout1 {
		margin: -1px 0 0 140px;
	}
	.tooltip8 {
		bottom: -245px;
		left: -45px;
	}
	.tooltip8 .tooltip-callout-vr {
		display: none;
	}
	.tooltip9 {
		left: -40px;
	}
	.tooltip9 .callout1 {
		margin: -1px 0 0 50px;
	}
	.tooltip11 {
		bottom: -165px;
		left: -75px;
	}
	.tooltip11 .tooltip-callout-vr {
		display: none;
	}
	.block-gris .tooltip9 img {
		display: block;
	}
	.callout5 {
		left: 60px;
	}

	.container-invitar-sm1 {
		margin: 0 auto;
		/*display: block;*/
	}

	.tooltip-sm {
		width: 110px;
		left: -30px;
	}

	/*.box-sueno {
	    height: 453px;
	}*/
	.box-sueno-cumplido {
		height: auto;
	}
	.box-sueno,
	.box-sueno-cumplido,
	.banner-empresa {
		margin-left: 5px;
	}

	.scroll-box-fluid {
		padding: 10px 6px 10px 20px;
	}
	.box-persona {
		margin-bottom: 10px;
	}
	.box-persona .block-gris img {
		display: block;
	}
	.box-persona .block-amarillo {
		padding: 17px 7px;
	}
	.modal-body .form-control-buscar-producto {
		width: 185%;
		padding: 6px;
	}
	#modalNuevaPublicacion .circle-amarillo {
		width: 70px;
		height: 70px;
		border: 7px solid rgb(255, 255, 255);
		border-radius: 35px;
	}
	.btn-modal-publicacion-foto,
	.btn-modal-publicacion-video,
	.btn-modal-publicacion-audio,
	.btn-modal-publicacion-pdf {
		margin-left: 11px;
	}

	.block-sueno-usuario {
		height: auto;
	}
	.filtrar {
		width: 99%;
	}
	.box-img-galeria {
		height: 450px;
	}
	.circle-img-perfil-sm {
		width: 42px;
		height: 42px;
	}
	.box-error {
		margin-top: 20px;
	}

	.box-seccion iframe {
		height: 230px;
	}
	.box-seccion img {
		width: 100%;
		height: auto;
	}

	.box-banner-empresa {
		width: 300px;
		height: auto;
		margin-top: 20px;
	}
	.invite__item_cumplido {
		height: 410px !important;
	}
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
	.modal-initial-explorador{
		width: 95%;
	}
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
	.modal-initial-explorador{
		width: 75%;
		top: unset;
	}
}

/* Tablet landscape
------------------------------------------------------------------------ */
@media only screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
	.show-discounts {
		font-size: 12px !important;
	}
	.container-all-store {
		grid-template-columns: repeat(auto-fill, 310px);
	}
	.container-producto {
		width: 310px;
	}
	.block-ads-empresa{
		display: block;
	}
}

/* Tablet landscape 8va
------------------------------------------------------------------------ */
@media only screen and (min-device-width: 1620px) and (max-device-width: 2160px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
	/* Este CSS se aplicaría al iPad de 8ª generación en landscape (2160px de ancho físico).
     También cambiamos el pixel ratio a 2. */
	.show-discounts {
		font-size: 12px !important;
	}
}

/* @media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
	.show-discounts {
		font-size: 12px !important;
	}
	.container-all-store {
		grid-template-columns: repeat(auto-fill, 310px);
	}
	.container-producto {
		width: 310px;
	}
	.block-ads-empresa{
		display: block;
	}
} */
/* Tablet portrait
   ------------------------------------------------------------------------ */
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
	.show-discounts {
		font-size: 12px !important;
	}
	.block-ads-empresa{
		display: none;
	}
	.container-all-store {
		grid-template-columns: repeat(auto-fill, 318px);
	}
	.container-producto {
		width: 318px;
	}
	.perfil__cta .btn-primary:first-child {
		margin-right: 62px;
	}
	body .login_box {
		margin-bottom: -87px;
	}
	.box-ahorro-producto .btn-min {
		font-size: 9px;
	}

	/* body .content_login_form{
		margin-right: inherit;
	} */
	body .init_home {
		background-attachment: inherit;
	}

	body .publicaciones-home .title_home {
		max-width: 100%;
	}

	body .slider-public .owl-prev {
		left: 15px;
		display: none !important;
	}
	body .slider-public .owl-next {
		right: 15px;
		display: none !important;
	}

	body .slider-suenos .owl-next,
	body .slider-suenos .owl-prev,
	body .carousel_empresas .owl-next,
	body .carousel_empresas .owl-prev {
		display: none !important;
	}

	body .publicaciones-home h2 {
		text-align: center;
	}

	body .publicaciones-home .title_home .title-divider {
		margin: 0 auto 26px;
	}

	h2 {
		font-size: 32px;
		line-height: 36px;
	}

	h3 {
		font-size: 21px;
	}

	.navbar-default .navbar-nav > li,
	.btn-notificaciones {
		font-size: 13px;
		text-align: center;
	}
	/*	.ingresar{
		display: none !important;
	}*/
	li.container-social-button {
		margin: 0 auto;
		float: none;
	}
	.block-ingresar-mobile-1 {
		display: block;
	}

	.cerrar-video {
		top: 450px;
	}

	.btn-notificaciones {
		margin: 0 auto;
		display: block;
	}
	.navbar-default .navbar-nav > li,
	.btn-notificaciones,
	.ingresar .btn,
	.registrarme .btn,
	.ingresar_mobile .btn {
		font-size: 11px;
	}
	.nav > li {
		margin-left: 8px;
	}
	.nav > li.ingresar,
	.nav > li.registrarme {
		padding: 3px 0px 0px 20px;
		margin: 10px 0 0 0;
	}
	.nav > li.ingresar a {
		padding: 3px 10px 0px 0px;
		margin: 24px 5px 0px 0px;
	}

	.navbar-collapse {
		padding-right: 0;
		padding-left: 0;
	}
	.btn-header-perfil,
	.btn-header-perfil-cursor {
		padding: 0px 6px;
	}
	.navbar-default .navbar-nav .dropdown a {
		width: 80px;
		padding: 19px 0 18px 0;
	}
	.dropdown-box {
		width: 80px;
		padding: 0px 10px;
	}
	.dropdown-menu {
		width: 164px;
	}

	.navbar-default .navbar-nav .dropdown .dropdown-menu > li > a {
		width: 166px;
		padding: 12px 10px;
	}
	.dropdown-box .icon-perfil {
		width: 35px;
		margin-top: 7px;
	}
	.navbar-default .navbar-nav .dropdown {
		margin-left: 4px;
	}

	.header-empresa {
		width: 275px;
	}
	.navbar-default .navbar-nav .dropdown-empresa a {
		width: 185px;
	}
	.navbar-default .navbar-nav .dropdown-empresa .dropdown-box {
		width: 185px;
	}
	.dropdown-empresa .dropdown-menu {
		width: 185px;
	}
	.btn-notificaciones {
		margin-top: 14px;
	}

	.home-main-container,
	.int-main-container {
		top: 480px;
		height: auto;
	}
	.container-video {
		width: 100%;
		margin-top: 0;
		height: auto;
	}
	video {
		height: 500px;
		top: 587px;
		display: none !important;
	}
	.pusher-height {
		display: block;
	}
	.title-container {
		top: 560px;
	}
	.cerrar-video {
		top: 700px;
		left: 45%;
	}
	.btn-login-container-abrir,
	.btn-ingresar-container-abrir,
	.btn-login-container-cerrar,
	.btn-ingresar-container-cerrar {
		display: none;
	}
	.login-container,
	.login-container-collapsed {
		width: 100%;
		display: block;
		position: relative;
		top: 0;
	}
	.ingresar-container {
		display: none !important;
	}
	.login-box {
		margin: 50px auto 0 auto;
	}
	.como-funciona .circle-container {
		margin-top: -450px;
	}
	.como-cumplimos-suenos h3 {
		margin: 15px auto 0 auto;
	}
	.como-funciona .row,
	.como-cumplimos-suenos .row,
	.inscribir-organizacion .row {
		margin-left: 0px;
	}
	.inscribir-organizacion .block-gris,
	.inscribir-organizacion .block-gris-claro {
		padding-bottom: 120px;
	}
	.inscribir-organizacion .block-gris:last-child {
		padding-bottom: 60px;
	}
	.inscribir-organizacion .circle-container {
		top: 10px;
	}
	.inscribir-organizacion .text-purple {
		margin-top: 40px;
	}

	.agregar-sueno-text {
		margin-bottom: 10px;
	}
	.block-cifras {
		height: 280px;
	}
	.box-nueva-publicacion {
		padding: 18% 0;
	}
	.container-publicacion,
	.container-banner-empresa {
		width: 100%;
		/* margin-bottom: 10px; */
	}
	/* .container-producto {
		margin-left: 10px;
		margin-right: 10px;
	} */

	.info-empresa-box {
		left: -85px;
		top: 185px;
	}
	.info-empresa-box .callout3 {
		display: none;
	}

	.filtrar {
		width: 49%;
	}
	/* 	.container-producto {
		height: 610px;
	} */
	.share_btns {
		display: block;
	}
	footer img {
		float: none;
		margin: 30px 0 10px 20px;
	}
}

@media (max-width: 1024px) {
	/* body .content_login_form{
		margin-right: inherit;
	} */
	body .seguridad_publicaciones .checkbox h5 {
		display: block;
	}
	.init_home {
		background: #ffb500 !important;
	}
	body .init_home {
		background-attachment: inherit;
	}
	.content_login_form {
		margin-right: auto;
	}
	body .publicaciones-home .title_home {
		max-width: 100%;
	}
	body .publicaciones-home .title_home h2 {
		text-align: center;
	}
	body .publicaciones-home .title_home .title-divider {
		margin: 0 auto 35px;
	}
}

@media (max-width: 800px) {
	body .seguridad_publicaciones .checkbox h5 {
		display: block;
	}

	body .slider-public .owl-prev {
		left: 15px;
		display: none !important;
	}
	body .slider-public .owl-next {
		right: 15px;
		display: none !important;
	}
	body .slider-public .bx-wrapper .bx-controls-direction a {
		display: none !important;
	}
	body .slider-suenos .owl-next,
	body .slider-suenos .owl-prev,
	body .carousel_empresas .owl-next,
	body .carousel_empresas .owl-prev {
		display: none !important;
	}

	/* body .content_login_form{
		margin-right: inherit;
	} */
	body .init_home {
		background-attachment: inherit;
	}
	body .form-sueno-new {
		margin: -45px 0 0 0;
	}
	body form.form-sueno-new .subir-imagen {
		margin-top: -2px;
	}
}

@media (max-width: 642px) {
	body .item_publication .publication_body .row .col-sm-7 {
		position: relative;
		z-index: 4;
	}
	body .login_box {
		margin-bottom: -94px;
	}
	body .slider-public .owl-prev {
		left: 15px;
		display: none !important;
	}
	body .slider-public .owl-next {
		right: 15px;
		display: none !important;
	}

	body .slider-suenos .owl-next,
	body .slider-suenos .owl-prev,
	body .carousel_empresas .owl-next,
	body .carousel_empresas .owl-prev {
		display: none !important;
	}

	body .publicaciones-home .slider-public .publication_votes > span.left {
		line-height: 47px;
		margin: 8px 0 0;
	}
	body .publicaciones-home .slider-public .publication_votes > span.right {
		font-size: 15px;
		padding: 9px 14px 0 0;
	}
	body .publicaciones-home .slider-public .publication_head .col-sm-3 {
		padding: 0 15px;
	}
	body .date_head {
		margin-bottom: 6px;
		margin-top: 13px;
	}
	body .publicaciones-home .title_home h2 br {
		display: none;
	}
	body .publicaciones-home h2 {
		text-align: center;
	}
	body .publicaciones-home .title_home .title-divider {
		margin: 0 auto 23px;
	}

	body .seguridad_publicaciones .checkbox {
		text-align: center;
		margin-bottom: 20px;
	}
	body .seguridad_publicaciones .col-sm-4,
	body .seguridad_publicaciones .col-sm-2 {
		padding: 0;
	}
	body .seguridad_publicaciones .checkbox h5 {
		padding: 0 10px 0 10px;
	}

	body .publicaciones-home .publication_body {
		min-height: auto;
	}

	body .publicaciones-home .publication_body .img_list li img,
	body .publicaciones-home .publication_body .img_contain {
		height: 180px !important;
		max-height: 180px !important;
		max-width: 100% !important;
	}

	body .publicaciones-home {
		padding: 88px 10px 50px;
	}

	/*body .form-sueno-new{margin: -67px 0 0 0;}*/
	body .form-sueno-new .block-blanco {
		padding: 3px 23px 8px;
	}
	body .form-sueno-new .link_add_more {
		margin-right: 33px;
	}
	boyd #content-productos .input-producto .text-right {
		text-align: center;
		line-height: inherit;
		margin: 12px 0 5px;
		font-weight: bold;
	}
	body .box-valor-sueno-left h2 {
		font-size: 21px;
		margin: 10px 0;
	}
	body .box-valor-sueno-right .valor-sueno {
		margin: 10px 0 5px;
		font-size: 20px;
	}
	body .box-valor-sueno-right h3.text-purple {
		font-size: 20px;
	}
	body .form-sueno-new .box-valor-sueno-left,
	body .form-sueno-new .box-valor-sueno-right {
		padding: 0;
		min-width: auto;
	}

	body .suenos_movile {
		display: block;
	}
	body .suenos_desktop {
		display: none;
	}
	body .jFiler-items ul {
		text-align: center;
	}
	.form-publicacion .btns_upload {
		margin: 0 0 20px;
	}

	body .profileManufacturer .productsContainter {
		float: none;
	}
	body .profileManufacturer .productsContainter > .top110 {
		margin-top: 55px;
	}
	body .profileManufacturer .asideContainter {
		float: none;
	}

	body .margin_movil_form {
		margin-right: 0;
		margin-left: 0;
	}
	.invite__item_cumplido {
		height: 440px !important;
	}
}
