/*per componente*/
#extraCanvasWrapper #extraCanvas {
  position: fixed;
  top: 66px;
  top: 30px;
  /*verisone solo pallini*/
  /*right: -100vw;*/
  width: 100%;
  height: calc(100vh - 30px);
  background: #fff;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scale(1) translateX(100%);
  -ms-transform: scale(1) translateX(100%);
  transform: scale(1) translateX(100%);
  opacity: 1;
  z-index: 100000;
  will-change: transform; }

#extraCanvasWrapper #extraCanvas.active {
  -webkit-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0); }

#extraCanvasWrapper #extraCanvas.animated {
  -webkit-animation-name: extraCanvasAnimation;
  animation-name: extraCanvasAnimation;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
  -webkit-animation-duration: 1400ms;
  animation-duration: 1400ms;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

@-webkit-keyframes extraCanvasAnimation {
  0% {
    transform: scale(1) translateX(100%);
    border-left: 10px solid rgba(231, 81, 72, 0.5); }
  50% {
    transform: scale(1) translateX(80%);
    border-left: 10px solid rgba(231, 81, 72, 0.5); }
  100% {
    transform: scale(1) translateX(100%);
    border-left: 10px solid rgba(231, 81, 72, 0.5); } }

@keyframes extraCanvasAnimation {
  0% {
    transform: scale(1) translateX(100%);
    border-left: 10px solid rgba(231, 81, 72, 0.5); }
  50% {
    transform: scale(1) translateX(80%);
    border-left: 10px solid rgba(231, 81, 72, 0.5); }
  100% {
    transform: scale(1) translateX(100%);
    border-left: 10px solid rgba(231, 81, 72, 0.5); } }

#extraCanvasWrapper .swiper-container {
  width: 100vw;
  height: 100vh; }

#extraCanvasWrapper .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#extraCanvasWrapper .tutorial div {
  position: fixed;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 3px;
  z-index: 2; }

/*#extraCanvasWrapper .tutorial .right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#extraCanvasWrapper .tutorial .top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#extraCanvasWrapper .tutorial .bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}*/
#extraCanvasWrapper .loadingPage {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/spinner.gif) no-repeat #5097cc;
  background-position: 50% 50%;
  background-size: 40vw auto;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out; }

#extraCanvasWrapper .loadingPage.active {
  top: 0vh; }

#socBar {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  height: 66px;
  width: 100%;
  z-index: 1000000;
  -webkit-box-shadow: 1px 1px 2px #ccc;
  box-shadow: 1px 1px 2px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*padding: 0 0 0 12px;*/
  -webkit-transform: translateY(-80px);
  -ms-transform: translateY(-80px);
  transform: translateY(-80px);
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  -o-transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
  display: none !important;
  /*disabilitiamo la barra*/ }

#socBar.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

#socBar.active {
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important; }

#socBar ul.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

#socBar > div {
  width: calc(100% - 75px);
  width: 100%;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

#socBar > div ul.items {
  overflow-x: auto;
  overflow-y: hidden;
  display: block;
  white-space: nowrap;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  padding-right: calc(100% - 182px);
  padding-right: 12px;
  padding-left: 3px; }

#socBar > div ul::-webkit-scrollbar {
  display: none; }

#socBar ul.items li {
  width: 68px;
  height: 46px;
  display: block;
  background-size: cover;
  border-radius: 23px;
  display: inline-block;
  position: relative;
  margin-top: 3px; }

#socBar ul.items li.firstItem {
  margin-left: 12px; }

#socBar ul.items li + li {
  margin-left: 10px; }

#socBar ul.items li.selected:after {
  position: absolute;
  content: '';
  width: 70px;
  height: 48px;
  border-radius: 26px;
  top: -3px;
  left: -3px;
  border: 2px solid #222;
  -webkit-transition: left 300ms ease-in-out;
  -o-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out; }

#socBar.active:after {
  left: 82px; }

#extraCanvasWrapper .media.video img {
  display: block; }

#socBar div .arrowBack {
  position: fixed;
  left: 0;
  top: 0;
  background: #222;
  width: 30px;
  height: 66px;
  border-radius: 0;
  margin: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  -o-transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out; }

#socBar div .arrowBack.show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

#socBar div .arrowBack:before {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  border: 2px solid #fff;
  border-bottom: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 26px;
  left: 12px; }

.add-recipe.add_link {
  height: 0;
  visibility: hidden; }

.btnContinuaOffCanvasSlide {
  display: block;
  margin: 30px auto 80px auto;
  padding: 10px 10px;
  background: #7ab700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  width: 260px; }

#extraCanvasWrapper .swiper-slide > * {
  padding-bottom: 50px; }

#extraCanvasWrapper .swiper-slide:last-child .btnContinuaOffCanvasSlide {
  visibility: hidden; }

body.socActive {
  height: 100vh;
  width: 100vw;
  overflow: hidden; }

#extraCanvasWrapper .social-strip {
  display: none; }

#socPalliniWrapper {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 30px;
  background: #222;
  z-index: 1000000;
  -webkit-box-shadow: 1px 1px 2px #ccc;
  box-shadow: 1px 1px 2px #ccc;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  -o-transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
  will-change: transform; }

#socPalliniWrapper.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

#socPalliniWrapper.active {
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important; }

ul.socPallini {
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

ul.socPallini li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #fff;
  display: inline-block; }

ul.socPallini li.selected {
  background: #7ab700;
  position: relative; }

ul.socPallini li.selected:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #7ab700;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  -webkit-animation-name: pallinoAttivoAnimation;
  animation-name: pallinoAttivoAnimation;
  -webkit-animation-duration: 1500ms;
  animation-duration: 1500ms; }

/*#socPalliniWrapper.animated .arrowSocPallini {
  -webkit-animation-name: arrowAnimation;
          animation-name: arrowAnimation;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-iteration-count: 6;
          animation-iteration-count: 6;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}*/
@-webkit-keyframes pallinoAttivoAnimation {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(1.5);
    opacity: 0; } }

@keyframes pallinoAttivoAnimation {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(1.5);
    opacity: 0; } }

ul.socPallini li + li {
  margin-left: 10px; }

.arrowSocPallini {
  position: fixed;
  top: 0;
  height: 30px;
  width: 30px;
  z-index: 1000000;
  opacity: 0;
  right: 30px;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: -webkit-transform 500ms ease-in-out;
  -o-transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
  will-change: transform; }

.arrowSocPallini.hide {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.arrowSocPallini:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-bottom: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
  left: 3px; }

#socPalliniWrapper.animated .arrowSocPallini {
  -webkit-animation-name: arrowAnimation;
  animation-name: arrowAnimation;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-iteration-count: 6;
  animation-iteration-count: 6;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes arrowAnimation {
  0% {
    opacity: 0;
    right: 30px; }
  100% {
    opacity: 1;
    right: 0; } }

@keyframes arrowAnimation {
  0% {
    opacity: 0;
    right: 30px; }
  100% {
    opacity: 1;
    right: 0; } }
