.mouseHasNotMoved .previewText {
  opacity: 0;
}
.wrapperGallery {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  line-height: 1;
}
.wrapperGallery.showGallery {
  display: block;
}
.containerImagePreview,
.innerContainerImagePreview {
  height: 100%;
}
.innerContainerImagePreview {
  text-align: center;
  white-space: nowrap;
}
.innerContainerImagePreview .watermarkText {
  color: white;
  font-weight: 800;
  font-family: Fira Sans;
  line-height: normal;
}
.previewText {
  box-sizing: border-box;
  width: auto;
  max-width: 400px;
  top: 50px;
  left: 50px;
  bottom: auto;
  text-align: left;
  border-radius: 4px;
  position: absolute;
  z-index: 52;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 1;
}
.previewText.hidePreviewtext {
  display: none;
}
.previewText .innerPreviewText {
  padding: 20px 15px;
  width: 100%;
  box-sizing: border-box;
}
.previewText .innerPreviewText .title {
  display: block;
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.previewText .innerPreviewText .title:empty {
  display: none;
}
.previewText .innerPreviewText .description {
  display: block;
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 18px;
}
.previewText .innerPreviewText .description:empty {
  display: none;
}
@media screen and (max-device-width: 1024px) {
  .previewText {
    top: 70px;
    left: 8%;
    width: 85%;
    max-width: none;
  }
  .previewText .innerPreviewText .title {
    font-size: 18px;
    padding-bottom: 6px;
  }
  .previewText .innerPreviewText .description {
    font-size: 9px;
    line-height: 12px;
  }
}
.innerContainerImagePreview:after {
  content: '';
  height: 100%;
  width: 0;
  display: inline-block;
  vertical-align: middle;
}
.imgPreview {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
.videoPreview {
  width: 80%;
  height: 100%;
  display: inline-block;
}
.leftArrowPreview,
.rightArrowPreview {
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 100%;
}
.leftArrowPreview.pas,
.rightArrowPreview.pas {
  display: none;
}
.leftArrowPreview {
  left: 15px;
}
.rightArrowPreview {
  right: 15px;
}
.innerLeftArrowPreview {
  position: absolute;
  top: 50%;
  left: 0;
}
.innerRightArrowPreview {
  position: absolute;
  top: 50%;
  right: 0;
}
.closePreview {
  right: 15px;
  top: 15px;
}
.downloadPreview {
  right: 15px;
  top: 45px;
  z-index: 51;
}
.closePreview,
.downloadPreview {
  position: absolute;
  cursor: pointer;
  z-index: 51;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: rgba(0, 0, 0, 0.2);
  font-family: 'portfolioIcons';
  font-size: 16px;
  color: #fff;
}
.closePreview:hover,
.downloadPreview:hover {
  background: rgba(0, 0, 0, 0.8);
}
.wrapperGallery .placeholderMediaFile {
  background: none;
}
/*** SPINNER ***/
.picsioSpinner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.9);
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.picsioSpinner .innerPicsioSpinner {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.picsioSpinner .innerPicsioSpinner .spinner {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  -webkit-animation: rotate 2s infinite linear;
  animation: rotate 2s infinite linear;
}
.picsioSpinner .innerPicsioSpinner .spinner div,
.picsioSpinner .innerPicsioSpinner .spinner span {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background: #fff;
  border-radius: 100%;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.picsioSpinner .innerPicsioSpinner .spinner span {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
#pdfViewerContainer {
  overflow: auto;
  position: absolute;
  width: 100%;
  height: 100%;
}
#pdfProgress {
  position: fixed;
  z-index: 10000;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  white-space: nowrap;
  font-size: 1.1em;
  line-height: 2em;
  padding: 5px 20px;
  border-radius: 25px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  text-shadow: 1px 1px 1px #000;
}
.pdfViewerControls {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 52;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
.pdfViewerControls > * {
  margin-right: 5px;
}
.pdfViewerZoomIn,
.pdfViewerZoomOut {
  font-size: 0;
  line-height: 0;
  width: 30px;
  height: 30px;
  background: no-repeat center url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path d="M15.853 16.56c-1.683 1.517-3.911 2.44-6.353 2.44-5.243 0-9.5-4.257-9.5-9.5s4.257-9.5 9.5-9.5 9.5 4.257 9.5 9.5c0 2.442-.923 4.67-2.44 6.353l7.44 7.44-.707.707-7.44-7.44zm-6.353-15.56c4.691 0 8.5 3.809 8.5 8.5s-3.809 8.5-8.5 8.5-8.5-3.809-8.5-8.5 3.809-8.5 8.5-8.5zm-4.5 8h4v-4h1v4h4v1h-4v4h-1v-4h-4v-1z"/></svg>');
  border: 0;
  box-shadow: none;
  cursor: pointer;
}
.pdfViewerZoomIn:hover,
.pdfViewerZoomOut:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.pdfViewerZoomOut {
  background: no-repeat center url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path d="M15.853 16.56c-1.683 1.517-3.911 2.44-6.353 2.44-5.243 0-9.5-4.257-9.5-9.5s4.257-9.5 9.5-9.5 9.5 4.257 9.5 9.5c0 2.442-.923 4.67-2.44 6.353l7.44 7.44-.707.707-7.44-7.44zm-6.353-15.56c4.691 0 8.5 3.809 8.5 8.5s-3.809 8.5-8.5 8.5-8.5-3.809-8.5-8.5 3.809-8.5 8.5-8.5zm-4.5 8h9v1h-9v-1z"/></svg>');
}
.pdfViewerPages {
  display: inline-block;
  vertical-align: top;
  line-height: 30px;
}
article,
aside,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
address {
  font-style: normal;
}
* {
  vertical-align: top;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
:focus {
  outline: none;
}
input[type="submit"]::-moz-focus-inner {
  border: none;
}
img {
  border: none;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1;
  background: #fff;
}
a {
  font-family: inherit;
  font-size: inherit;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
input[type="text"],
input[type="password"],
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#all {
  height: 100%;
}
#main {
  width: 100%;
}
#main:before,
#main:after {
  content: '.';
  clear: both;
  display: block;
  height: 0px;
  font-size: 0;
}
.overflowHidden {
  overflow: hidden !important;
}
.loadmore {
  text-align: center;
}
.hideLoadmore {
  display: none;
}
.textAbout,
.textContact {
  white-space: pre-line;
}
.signinBlock {
  line-height: 1;
}
.placeholderMediaFile {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #474747;
  background: #1c1c1c;
  text-align: center;
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
}
.placeholderMediaFile .innerPlaceholderMediaFile .icon {
  font-size: 70px;
  line-height: 1;
  color: #999;
}
.placeholderMediaFile .innerPlaceholderMediaFile .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  padding-bottom: 6px;
}
.placeholderMediaFile .innerPlaceholderMediaFile .name {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  white-space: normal;
  word-break: break-all;
}
.picsioThemeLight .placeholderMediaFile {
  background: #f4f4f4;
}
.picsioThemeLight .placeholderMediaFile .innerPlaceholderMediaFile {
  color: #999;
}
.picsioThemeLight .placeholderMediaFile .innerPlaceholderMediaFile .icon,
.picsioThemeLight .placeholderMediaFile .innerPlaceholderMediaFile .fileName {
  color: inherit !important;
}
.videoSpinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.videoErrorWrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.videoErrorWrapper .error {
  max-width: 500px;
  color: #999;
}
.videoErrorWrapper svg {
  fill: #999;
  height: 60px;
  display: block;
  margin: 5px auto 14px;
}
.videoErrorWrapper .icon {
  font-size: 70px;
  display: block;
  text-align: center;
  margin: 0 0 10px;
}
.popupPlayVideo,
.popupPauseVideo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  animation: animatePopupVideo 0.5s ease-in;
}
@keyframes animatePopupVideo {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4);
  }
}
.popupPlayVideo.playVideoButton,
.popupPauseVideo.playVideoButton {
  animation: none;
  pointer-events: none;
}
.popupPlayVideo.popupPlayVideo::before,
.popupPauseVideo.popupPlayVideo::before {
  content: '';
  border-style: solid;
  border-width: 11px 0 11px 22px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
  width: 0;
  height: 0;
  display: block;
}
.popupPlayVideo.popupPauseVideo::before,
.popupPauseVideo.popupPauseVideo::before,
.popupPlayVideo.popupPauseVideo::after,
.popupPauseVideo.popupPauseVideo::after {
  content: '';
  border: none;
  width: 6px;
  height: 22px;
  margin: 5px;
  display: block;
  background: rgba(255, 255, 255, 0.75);
}
.videoControls {
  position: relative;
  background: #e8e8e8;
}
.videoControls .videoTracks {
  height: 4px;
  position: absolute;
  bottom: 100%;
  width: 100%;
  z-index: 2;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition: height 0.15s linear;
}
.videoControls .videoTracks .videoTracksPadding {
  height: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.videoControls .videoTracks .bufferedTrack,
.videoControls .videoTracks .hoveredTrack,
.videoControls .videoTracks .playbackTrack {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.videoControls .videoTracks .bufferedTrack {
  transition: width 0.2s linear;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.videoControls .videoTracks .hoveredTrack {
  background: rgba(0, 0, 0, 0.2);
  z-index: 3;
  display: none;
}
.videoControls .videoTracks .hoveredTrack .hoveredTime {
  position: absolute;
  bottom: 100%;
  right: -31px;
  margin-bottom: 12px;
  background: #e8e8e8;
  border-radius: 5px;
  font-family: 'fira_monoregular', sans-serif;
  font-size: 14px;
  color: #000;
  pointer-events: none;
  height: 30px;
  line-height: 32px;
  width: 62px;
  text-align: center;
}
.videoControls .videoTracks .hoveredTrack .hoveredTime::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #e8e8e8 transparent transparent transparent;
  border-width: 7px 7px 0 7px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
}
.videoControls .videoTracks .hoveredTrack.rightPart .hoveredTime {
  right: 0;
  border-bottom-right-radius: 0;
}
.videoControls .videoTracks .hoveredTrack.rightPart .hoveredTime::after {
  left: auto;
  right: 0;
  margin-left: 0;
  border-color: #e8e8e8 #e8e8e8 transparent transparent;
  border-width: 4px;
}
.videoControls .videoTracks .hoveredTrack.leftPart .hoveredTime {
  right: auto;
  left: 0;
  border-bottom-left-radius: 0;
}
.videoControls .videoTracks .hoveredTrack.leftPart .hoveredTime::after {
  left: 0;
  margin-left: 0;
  border-color: #e8e8e8 transparent transparent #e8e8e8;
  border-width: 4px;
}
.videoControls .videoTracks .playbackTrack {
  background: #ffcc00;
  z-index: 4;
}
.videoControls .videoTracks .playbackTrack::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -2px;
  width: 6px;
  height: 6px;
  background: #ffcc00;
  border: 2px solid #fff;
  border-radius: 50%;
  display: none;
}
.videoControls .videoTracks:hover {
  height: 6px;
}
.videoControls .videoTracks:hover .videoTracksPadding {
  height: 22px;
  bottom: -6px;
}
.videoControls .videoTracks:hover .hoveredTrack {
  display: block;
}
.videoControls .videoTracks:hover .playbackTrack::after {
  display: block;
}
.videoControls .btnsVideoControls {
  display: flex;
  height: 50px;
  align-items: stretch;
}
.videoControls .btnsVideoControls .btnsLeft,
.videoControls .btnsVideoControls .btnsRight {
  display: flex;
}
.videoControls .btnsVideoControls .btnsLeft.btnsRight,
.videoControls .btnsVideoControls .btnsRight.btnsRight {
  margin-left: auto;
}
.videoControls .btnsVideoControls .btnPlayVideo,
.videoControls .btnsVideoControls .btnVolumeVideo,
.videoControls .btnsVideoControls .btnFullscreenVideo {
  width: 50px;
  cursor: pointer;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
}
.videoControls .btnsVideoControls .btnPlayVideo::before,
.videoControls .btnsVideoControls .btnVolumeVideo::before,
.videoControls .btnsVideoControls .btnFullscreenVideo::before,
.videoControls .btnsVideoControls .btnPlayVideo::after,
.videoControls .btnsVideoControls .btnVolumeVideo::after,
.videoControls .btnsVideoControls .btnFullscreenVideo::after {
  transition: all 0.2s ease-in-out;
}
.videoControls .btnsVideoControls .btnPlayVideo:hover::before,
.videoControls .btnsVideoControls .btnVolumeVideo:hover::before,
.videoControls .btnsVideoControls .btnFullscreenVideo:hover::before,
.videoControls .btnsVideoControls .btnPlayVideo:hover::after,
.videoControls .btnsVideoControls .btnVolumeVideo:hover::after,
.videoControls .btnsVideoControls .btnFullscreenVideo:hover::after {
  color: #000;
  transform: scale(1.3);
}
.videoControls .btnsVideoControls .btnPlayVideo.btnPlayVideo:hover::before,
.videoControls .btnsVideoControls .btnVolumeVideo.btnPlayVideo:hover::before,
.videoControls .btnsVideoControls .btnFullscreenVideo.btnPlayVideo:hover::before {
  border-color: transparent transparent transparent #000;
}
.videoControls .btnsVideoControls .btnPlayVideo.btnPlayVideo.playing:hover::before,
.videoControls .btnsVideoControls .btnVolumeVideo.btnPlayVideo.playing:hover::before,
.videoControls .btnsVideoControls .btnFullscreenVideo.btnPlayVideo.playing:hover::before,
.videoControls .btnsVideoControls .btnPlayVideo.btnPlayVideo.playing:hover::after,
.videoControls .btnsVideoControls .btnVolumeVideo.btnPlayVideo.playing:hover::after,
.videoControls .btnsVideoControls .btnFullscreenVideo.btnPlayVideo.playing:hover::after {
  background: #000;
}
.videoControls .btnsVideoControls .btnPlayVideo::before {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #000;
  width: 0;
  height: 0;
  display: block;
}
.videoControls .btnsVideoControls .btnPlayVideo.playing::before,
.videoControls .btnsVideoControls .btnPlayVideo.playing::after {
  content: '';
  border: none;
  width: 6px;
  height: 20px;
  margin-right: 5px;
  background: #000;
}
.videoControls .btnsVideoControls .btnVolumeVideo {
  position: relative;
}
.videoControls .btnsVideoControls .btnVolumeVideo:hover + .rangeVolumeVideo {
  width: 100px;
  padding: 0 10px;
}
.videoControls .btnsVideoControls .rangeVolumeVideo {
  width: 0;
  overflow: hidden;
  display: flex;
  position: relative;
  backface-visibility: hidden;
  transition: width 0.2s linear, padding 0.2s linear;
}
.videoControls .btnsVideoControls .rangeVolumeVideo input {
  width: 100%;
  margin: 0;
  margin: auto;
  -webkit-appearance: none;
  background: none;
  position: relative;
  z-index: 2;
}
.videoControls .btnsVideoControls .rangeVolumeVideo:hover,
.videoControls .btnsVideoControls .rangeVolumeVideo.showSlider {
  width: 100px;
  padding: 0 10px;
}
.videoControls .btnsVideoControls .rangeVolumeVideo::after {
  content: '';
  width: calc(100% - 20px);
  height: 8px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -4px;
  z-index: 1;
  box-sizing: border-box;
}
.videoControls .btnsVideoControls .timeVideo {
  font-family: 'fira_monoregular', sans-serif;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.videoControls .btnsVideoControls .timeVideo .timeCurrentVideo {
  flex: none;
}
.videoControls .btnsVideoControls .timeVideo .timeSeparatorVideo {
  padding-left: 5px;
  padding-right: 5px;
}
.videoControls .btnsVideoControls .timeVideo .timeFullVideo {
  flex: none;
}
/* ----------------------------------------------------------- */
/* == tingle v0.15.2 */
/* ----------------------------------------------------------- */
.tingle-modal * {
  box-sizing: border-box;
}
.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: 16px/19px 'Fira Sans', Helvetica, Arial, sans-serif;
  cursor: pointer;
}
/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}
/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}
.tingle-modal--noClose .tingle-modal__close {
  display: none;
}
.tingle-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  border: none;
  background-color: transparent;
  padding: 19px;
  color: #ccc;
  cursor: pointer;
}
.tingle-modal__close svg * {
  fill: currentColor;
}
.tingle-modal__closeLabel {
  display: none;
}
.tingle-modal__close:hover {
  color: #f60;
}
.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 2;
  margin: auto;
  max-width: 500px;
  width: 100%;
  background: #161616;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  opacity: 1;
  cursor: auto;
  letter-spacing: normal;
  will-change: transform, opacity;
  -webkit-animation: animatePopup 0.5s ease;
  animation: animatePopup 0.5s ease;
}
.tingle-modal-box__content {
  padding: 25px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.25;
}
.tingle-modal-box__footer {
  padding: 0 25px 25px;
  width: auto;
  cursor: auto;
  display: flex;
  justify-content: flex-end;
}
.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}
.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}
.modal-title {
  margin: -10px 30px 30px -10px;
  font-size: 30px;
  font-weight: 200;
}
.modal-content {
  font-size: 16px;
  line-height: 1.25;
  padding: 0 0 20px 20px;
}
.modal-checkbox {
  margin-top: 30px;
}
.modal-checkbox [type='checkbox'] {
  padding: 0;
  vertical-align: middle;
  margin: -2px 4px 0 0;
}
/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}
.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}
.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}
.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}
.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}
/* btn
-------------------------------------------------------------- */
.tingle-btn {
  font-size: 24px;
  text-align-last: left;
  cursor: pointer;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  border: 0;
  font-family: inherit;
  color: #fff;
}
.tingle-btn + .tingle-btn {
  margin: 0 0 0 50px;
}
.tingle-btn--primary:hover {
  color: #9f0;
}
.tingle-btn--danger:hover {
  color: #f60;
}
/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }
  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }
  .tingle-modal-box__content {
    overflow-y: scroll;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    box-shadow: none;
    color: #fff;
  }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}
@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
  }
  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}
/* animations
-------------------------------------------------------------- */
@-webkit-keyframes animatePopup {
  0% {
    -webkit-transform: translateY(-100px);
  }
  50% {
    -webkit-transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}
@keyframes animatePopup {
  0% {
    -webkit-transform: translateY(-100px);
  }
  50% {
    -webkit-transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}
@font-face {
  font-family: 'latolight';
  src: url('../fonts/lato-light-webfont.woff') format('woff'), url('../fonts/lato-light-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'latoregular';
  src: url('../fonts/lato-regular-webfont.woff') format('woff'), url('../fonts/lato-regular-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'latothin';
  src: url('../fonts/lato-thin-webfont.woff') format('woff'), url('../fonts/lato-thin-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'latosemibold';
  src: url('../fonts/lato-semibold-webfont.woff') format('woff'), url('../fonts/lato-semibold-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'latoregular', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 19px;
  background: #fff;
}
a {
  font-family: inherit;
  font-size: inherit;
  color: #ffcc00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
#main {
  min-height: calc(100% - 282px);
}
/***************************** HEADER ************************************/
#header {
  line-height: 1;
  padding: 58px 0 32px 0;
  border-bottom: 1px solid #333;
  margin: 0 100px 22px 100px;
  display: table;
  width: calc(100% - 200px);
}
#header .contactInfo {
  float: right;
  font-size: 14px;
}
#header .contactInfo a {
  font-size: 14px;
}
#header .contactInfo a:before {
  padding-right: 2px;
}
#header .contactInfo a:hover {
  text-decoration: none;
}
#header .contactInfo a:hover span {
  text-decoration: underline;
}
#header .contactInfo table {
  border-collapse: collapse;
  border-spacing: 0;
}
#header .contactInfo table tr td {
  margin: 0;
  padding: 2px 0 2px 0;
}
#header .logoImg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
#header .logoImg img {
  display: block;
  max-height: 100px;
}
#header .headTitles {
  display: inline-block;
  vertical-align: middle;
}
#header .headTitles .logo {
  display: block;
  padding: 2px 0 0 0;
  margin: 0;
}
#header .headTitles .logo a {
  font-family: 'latothin';
  font-size: 48px;
  letter-spacing: -2px;
  text-decoration: none;
  color: #000;
}
#header .headTitles .description {
  display: block;
  font-family: 'latoregular';
  font-size: 16px;
  padding: 3px 0 0 0;
  margin: 0;
}
/***************************** LEFT_SIDEBAR *********************************/
#leftSidebar {
  line-height: 1;
  width: 225px;
  padding: 0 0 0 100px;
  float: left;
  height: 100%;
}
#leftSidebar .fixedPartHeader .btnToggleHiddenMenu {
  display: none;
  position: absolute;
  right: 22px;
  top: 12px;
  font-size: 25px;
  z-index: 2;
}
#leftSidebar .fixedPartHeader .mainMenu {
  word-break: break-word;
}
#leftSidebar .fixedPartHeader .mainMenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#leftSidebar .fixedPartHeader .mainMenu ul li {
  display: block;
  padding-bottom: 26px;
}
#leftSidebar .fixedPartHeader .mainMenu ul li:last-child {
  padding-bottom: 13px;
}
#leftSidebar .fixedPartHeader .mainMenu ul li a,
#leftSidebar .fixedPartHeader .mainMenu ul li .homeLink {
  font-family: 'latosemibold';
  font-size: 16px;
  color: #000;
  display: block;
  cursor: pointer;
}
#leftSidebar .fixedPartHeader .mainMenu ul li a:hover,
#leftSidebar .fixedPartHeader .mainMenu ul li .homeLink:hover {
  text-decoration: underline;
}
#leftSidebar .fixedPartHeader .mainMenu ul li.act a,
#leftSidebar .fixedPartHeader .mainMenu ul li.act .homeLink {
  color: #ffcc00;
}
#leftSidebar .listCollections ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#leftSidebar .listCollections ul li {
  position: relative;
}
#leftSidebar .listCollections ul li:first-child {
  padding-top: 20px;
}
#leftSidebar .listCollections ul li:last-child {
  padding-bottom: 14px;
}
#leftSidebar .listCollections ul li .downloadPortfolioCollection {
  cursor: pointer;
  position: absolute;
  left: -30px;
  top: 50%;
  margin-top: -8px;
}
#leftSidebar .listCollections ul li .downloadPortfolioCollection:before {
  display: block;
  font-size: 16px;
}
#leftSidebar .listCollections ul li .btnSubcollection {
  font-family: 'latosemibold';
  display: block;
  cursor: pointer;
}
#leftSidebar .listCollections ul li .btnSubcollection:hover {
  text-decoration: underline;
}
#leftSidebar .listCollections .btnCloseHiddenMenu {
  display: none;
}
/***************************** CONTENT *********************************/
#content {
  margin: 0 100px 0 375px;
  height: 100%;
  overflow: hidden;
}
#content .picsioToolbar {
  display: none;
}
#content #catalog .loadmore {
  text-align: center;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
  padding: 10px 0;
}
#content #catalog .loadmore.hideLoadmore {
  display: none;
}
#content .pageTitle {
  font-family: 'latolight';
  font-size: 36px;
  padding: 0 0 37px 0;
  line-height: 1;
  display: block;
}
#content .textAbout {
  display: table;
}
#content .textAbout p,
#content .textContact p {
  margin: 0 0 1em 0;
}
#content .avatar {
  float: right;
  width: 275px;
  margin: 0 0 20px 20px;
}
#content .avatar img {
  display: block;
  width: 100%;
}
#content #wrapperTiles {
  position: relative;
  visibility: hidden;
}
#content #wrapperTiles .fileName {
  display: none;
}
#content #wrapperTiles .watermarkText {
  color: white;
  font-weight: 800;
  font-family: Fira Sans;
  line-height: normal;
}
#content #wrapperTiles.showFilesName .tile {
  -webkit-transition: border 0.3s linear;
  -moz-transition: border 0.3s linear;
  transition: border 0.3s linear;
  border: 0px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#content #wrapperTiles.showFilesName .tile .fileName {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: #000;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  padding: 1px 11px 6px 6px;
  font-size: 14px;
  color: #fff;
  line-height: 14px;
}
#content #wrapperTiles.showFilesName .tile .fileName span {
  display: block;
  word-break: break-word;
}
#content #wrapperTiles.showFilesName .tile .watermarkText {
  color: white;
  font-weight: 800;
  font-family: Fira Sans;
  line-height: normal;
}
#content #wrapperTiles.showFilesName .tile:hover {
  border: 5px solid #000;
}
#content #wrapperTiles.showFilesName .tile:hover .fileName {
  opacity: 1;
}
#content #wrapperTiles .tile {
  position: absolute;
}
#content #wrapperTiles .tile .canvasCatalogItem {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1c1c1c;
}
#content #wrapperTiles .tile .canvasCatalogItem img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
}
.emptyCollection {
  width: 100%;
  height: 100%;
  min-height: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/***************************** FOOTER *********************************/
#footer {
  height: 62px;
  padding: 38px 100px 0 100px;
  line-height: 1;
}
#footer .link {
  text-decoration: underline;
}
#footer .copyright {
  font-size: 14px;
  line-height: 17px;
  position: relative;
  margin-left: 15px;
  display: block;
}
/***************************** PREVIEW *********************************/
.wrapperGallery {
  background: rgba(0, 0, 0, 0.9);
}
.wrapperGallery .leftArrowPreview,
.wrapperGallery .rightArrowPreview {
  position: absolute;
  top: 0;
  z-index: 51;
  height: 100%;
  width: 10%;
  cursor: pointer;
  font-size: 0;
}
.wrapperGallery .leftArrowPreview .innerLeftArrowPreview,
.wrapperGallery .rightArrowPreview .innerLeftArrowPreview,
.wrapperGallery .leftArrowPreview .innerRightArrowPreview,
.wrapperGallery .rightArrowPreview .innerRightArrowPreview {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: -20px 0 0 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}
.wrapperGallery .leftArrowPreview .innerLeftArrowPreview:before,
.wrapperGallery .rightArrowPreview .innerLeftArrowPreview:before,
.wrapperGallery .leftArrowPreview .innerRightArrowPreview:before,
.wrapperGallery .rightArrowPreview .innerRightArrowPreview:before {
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  font-family: 'portfolioIcons';
}
.wrapperGallery .leftArrowPreview .innerLeftArrowPreview.innerLeftArrowPreview,
.wrapperGallery .rightArrowPreview .innerLeftArrowPreview.innerLeftArrowPreview,
.wrapperGallery .leftArrowPreview .innerRightArrowPreview.innerLeftArrowPreview,
.wrapperGallery .rightArrowPreview .innerRightArrowPreview.innerLeftArrowPreview {
  left: 0;
}
.wrapperGallery .leftArrowPreview .innerLeftArrowPreview.innerLeftArrowPreview:before,
.wrapperGallery .rightArrowPreview .innerLeftArrowPreview.innerLeftArrowPreview:before,
.wrapperGallery .leftArrowPreview .innerRightArrowPreview.innerLeftArrowPreview:before,
.wrapperGallery .rightArrowPreview .innerRightArrowPreview.innerLeftArrowPreview:before {
  content: '\e701';
  margin-left: -2px;
}
.wrapperGallery .leftArrowPreview .innerLeftArrowPreview.innerRightArrowPreview,
.wrapperGallery .rightArrowPreview .innerLeftArrowPreview.innerRightArrowPreview,
.wrapperGallery .leftArrowPreview .innerRightArrowPreview.innerRightArrowPreview,
.wrapperGallery .rightArrowPreview .innerRightArrowPreview.innerRightArrowPreview {
  right: 0;
}
.wrapperGallery .leftArrowPreview .innerLeftArrowPreview.innerRightArrowPreview:before,
.wrapperGallery .rightArrowPreview .innerLeftArrowPreview.innerRightArrowPreview:before,
.wrapperGallery .leftArrowPreview .innerRightArrowPreview.innerRightArrowPreview:before,
.wrapperGallery .rightArrowPreview .innerRightArrowPreview.innerRightArrowPreview:before {
  content: '\e702';
  margin-right: -2px;
}
.wrapperGallery .leftArrowPreview:hover .innerLeftArrowPreview,
.wrapperGallery .rightArrowPreview:hover .innerLeftArrowPreview,
.wrapperGallery .leftArrowPreview:hover .innerRightArrowPreview,
.wrapperGallery .rightArrowPreview:hover .innerRightArrowPreview {
  background: rgba(0, 0, 0, 0.8);
}
/***************************** SIGNIN *******************************/
.signinBlock {
  width: 100%;
  height: 100%;
  display: block;
}
.innerSigninBlock {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.innerSigninBlock:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}
.titleSignup {
  display: block;
  font-family: 'fira_sanslight';
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
  word-break: break-word;
  padding: 0 20px;
}
.signinForm {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: table;
  width: 100%;
  z-index: 2;
  table-layout: fixed;
  text-align: center;
}
.signinForm form {
  font-size: 0;
}
.signinForm input[type="password"] {
  width: 200px;
  max-width: calc(100% - 20px);
  height: 46px;
  line-height: 46px;
  border: 1px solid #3f403f;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  color: #fff;
  background: none;
  text-align: center;
  padding: 0 20px;
  font-family: 'latoregular';
  display: inline-block;
}
.signinForm input[type="password"] {
  text-align: left;
}
.signinForm input[type="password"]::-webkit-input-placeholder {
  color: #fff;
  text-align: center;
}
.signinForm input[type="password"]:-moz-placeholder {
  color: #fff;
  text-align: center;
}
.signinForm input[type="password"]::-moz-placeholder {
  color: #fff;
  text-align: center;
}
.signinForm input[type="password"]:-ms-input-placeholder {
  color: #fff;
  text-align: center;
}
.signinForm input[type="submit"] {
  width: 46px;
  height: 46px;
  line-height: 46px;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  background: #fff;
  text-align: center;
  cursor: pointer;
  display: none;
}
.signinForm input[type="submit"]:hover {
  background: #fff;
}
.signinForm.errorSigninForm input[type="password"] {
  border: 1px solid #ff0000;
}
.signinForm.errorSigninForm input[type="password"]::-webkit-input-placeholder {
  color: #ff0000;
}
.signinForm.errorSigninForm input[type="password"]:-moz-placeholder {
  color: #ff0000;
}
.signinForm.errorSigninForm input[type="password"]::-moz-placeholder {
  color: #ff0000;
}
.signinForm.errorSigninForm input[type="password"]:-ms-input-placeholder {
  color: #ff0000;
}
.socialSignup {
  position: absolute;
  left: 0;
  bottom: 36px;
  width: 100%;
  z-index: 2;
  text-align: center;
}
.socialSignup ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.socialSignup ul li {
  margin: 0;
  padding: 0;
  display: inline-block;
  margin: 0 6px;
}
.socialSignup ul li a {
  display: block;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-device-width: 1024px) {
  #header {
    margin-left: 30px;
    margin-right: 30px;
    width: calc(100% - 60px);
  }
  #content {
    margin-left: 275px;
    margin-right: 30px;
    height: 100%;
    overflow: hidden;
  }
  #footer {
    padding: 38px 30px 0 30px;
  }
  #leftSidebar {
    padding-left: 30px;
    width: 200px;
  }
  #leftSidebar .mainMenu .downloadLink {
    display: none;
  }
  .signinForm input[type="submit"] {
    display: inline-block;
  }
  .signinForm input[type="password"] {
    max-width: calc(100% - 70px);
  }
}
@media screen and (max-device-width: 767px) {
  #main {
    min-height: calc(100% - 236px);
  }
  #leftSidebar {
    display: block;
    float: none;
    text-align: center;
    width: auto;
    padding: 0;
  }
  #leftSidebar .fixedPartHeader .btnToggleHiddenMenu {
    display: block;
  }
  #leftSidebar .fixedPartHeader .mainMenu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    overflow: auto;
    text-align: left;
  }
  #leftSidebar .fixedPartHeader .mainMenu > ul {
    position: relative;
    padding: 35px 28px 50px 28px;
  }
  #leftSidebar .fixedPartHeader .mainMenu > ul li a {
    font-size: 24px;
    font-family: 'latolight';
  }
  #leftSidebar .fixedPartHeader .mainMenu > ul .listCollections {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 5px 0 15px 25px;
    margin: 25px 0 0 0;
  }
  #leftSidebar .fixedPartHeader .mainMenu > ul .listCollections li a {
    font-size: 18px;
    font-family: 'latoregular';
  }
  #leftSidebar .fixedPartHeader .mainMenu .btnCloseHiddenMenu {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 17px;
  }
  #leftSidebar .fixedPartHeader.showMenu .mainMenu {
    display: block;
  }
  #content {
    margin-left: 30px;
  }
  #content .pageTitle {
    padding-top: 17px;
  }
  #header {
    padding: 45px 0 20px 0;
    height: auto;
  }
  #header .logo a {
    font-size: 28px;
    letter-spacing: -1px;
  }
  #header .contactInfo {
    display: none;
  }
}
@media screen and (max-device-width: 568px) {
  .titleSignup {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .socialSignup {
    bottom: 10px;
  }
  #content .avatar {
    float: none;
    margin: 0 0 20px 0;
    max-width: 275px;
    width: 100%;
  }
  #header .headTitles {
    display: table-cell;
  }
  #header .headTitles .logo a {
    font-size: 36px;
  }
}
