/*****************************
 * Coolpix specific styles *
 *****************************/

/*****************************
 * General *
 *****************************/

/*@import 'checkmark-animation.css';*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.checkmark {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
}
.checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
  opacity: 1;
  height: 16px;
  width: 8px;
  transform-origin: left top;
  border-right: 2px solid #5cb85c;
  border-top: 2px solid #5cb85c;
  content: "";
  left: 0px;
  top: 8px;
  position: absolute;
}

.checkmark-big {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}
.checkmark-big.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark-big;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark-big:after {
  opacity: 1;
  height: 18px;
  width: 9px;
  transform-origin: left top;
  border-right: 2px solid #5cb85c;
  border-top: 2px solid #5cb85c;
  content: "";
  left: 3px;
  top: 12px;
  position: absolute;
}

@keyframes checkmark-big {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 8px;
    opacity: 1;
  }
  40% {
    height: 18px;
    width: 9px;
    opacity: 1;
  }
  100% {
    height: 18px;
    width: 9px;
    opacity: 1;
  }
}

.copy-button {
  border-radius: 5px;
  border: 1px solid green;
  background: none;
  color: green;
  width: 38px;
  height: 38px;
}

/* .copy-button--success {
  padding: 10px;
} */

.copy-button--default {
  border: none;
}

.copy-button--default img {
  margin: -1px 0 0 -6px;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 8px;
    opacity: 1;
  }
  40% {
    height: 16px;
    width: 8px;
    opacity: 1;
  }
  100% {
    height: 16px;
    width: 8px;
    opacity: 1;
  }
}

/* end checkmark-animation.css */

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 19px;
  color: #585858;
  background-color: #fff;
}

.mobile_only {
  display: none;
}
@media screen and (max-width: 991px) {
  .container {
    width: auto;
    /*margin-left: 15px;
        margin-right: 15px;*/
    padding: 0;
  }
  /* .header-top .container {
    margin-left: 15px;
        margin-right: 15px;
  } */
  .mobile_only {
    display: block;
  }
  .desktop_only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .container {
    margin-left: 0;
    margin-right: 0;
  }
}
#wrapper {
  position: relative;
}

.no-border {
  border: 0 none;
}

/**********************************
 * Headlines, buttons, typography *
 **********************************/

h1 {
  font-size: 28px;
  line-height: 33px;
  font-weight: 900;
  /*text-transform: uppercase;*/
}

@media (min-width: 992px) {
  h1 {
    font-size: 35px;
    line-height: 42px;
  }
}

h1 em {
  font-style: normal;
  display: block;
  margin-bottom: 10px;
}

h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin: 0 0 1px 0;
}

h6 {
  font-size: 24px;
  font-weight: 600;
  color: #585858;
  margin: 0 0 1px 0;
}
@media (max-width: 991px) {
  h6 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1px 0;
  }
}

.but {
  display: inline-block;
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  color: #8de73d;
  background-color: #fff;
  border: 1px solid #8de73d;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  outline: none;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.but:hover {
  text-decoration: none;
}

@media (min-width: 992px) {
  .but > span {
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  }

  .but:hover > span {
    -moz-transform: translate3d(0px, 200%, 0px);
    -webkit-transform: translate3d(0px, 200%, 0px);
    transform: translate3d(0px, 200%, 0px);
  }

  /* .but:before {
        background: #8de73d;
        color: #fff;
        content: attr(data-text);
        height: 100%;
        padding: 8px 20px;
        padding-left: 40px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        left: 0;
        position: absolute;
        top: 0;
        -moz-transform: translate3d(101%, 0px, 0px);
        -webkit-transform: translate3d(101%, 0px, 0px);
        transform: translate3d(101%, 0px, 0px);
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
        transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
        width: 100%;
    } */

  .but:hover:before {
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }

  .but:hover {
    color: #fff;
    background-color: #8de73d;
  }
  .but.white:hover {
    color: #fff;
    background-color: #8de73d;
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
  .but.white:hover:before {
    background: #8de73d;
    color: #fff;
  }
  .header-upload .but.green:before {
    padding: 10px 5px;
    padding-left: 35px;
  }
}

.but.green {
  color: #fff;
  background-color: #8de73d;
  -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.but.white {
  color: #8de73d;
  background-color: #fff;
}
.but.blue {
  color: #fff;
  background-color: #3c66c4;
  border: 1px solid #3c66c4;
  -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.google-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 256px;
  margin: 22px auto 0 auto;
  background: #ffffff;
  height: 40px;
  padding: 1px 24px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #3c4043;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
}

.google-login-btn:hover {
  background-color: #f8f9fa;
  color: #3c4043;
}

.google-login-btn:active {
  background-color: #f1f3f4;
  color: #3c4043;
}

.google-login-btn::before {
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 8px;
  background-image: url("/front/images/google.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .but.green:hover,
  .but.green:before {
    color: #8de73d;
    background-color: #fff;
  }
}

.but.big {
  font-size: 16px;
  line-height: 26px;
  text-transform: none;
  padding: 17px 37px 19px;
  width: 356px;
  max-width: 90%;
}

/*@media (min-width: 992px) { */
.but.big {
  font-size: 18px;
}

.but.big:before {
  /*padding: 17px 37px 19px;*/
  padding: 17px 7px 19px;
}
/*} */

.but i {
  font-size: 18px;
  padding-right: 5px;
  position: relative;
  top: 3px;
}

.green {
  color: #80dd2d;
}

.but.white.no-hover:hover {
  background-color: white;
  color: #8de73d;
}

.but.green.no-hover:hover {
  background-color: #80dd2d;
  color: #fff;
}

.but.no-hover::before {
  display: none;
}

/*****************************
 * Header *
 *****************************/

/* .logo:after{
    background-position: -28px 0 !important;
} */

.content.profile {
  padding-top: 0;
}
.content.shared-bookmark {
  padding-top: 57px;
}

@media (min-width: 922px) {
  .content.profile {
    padding-top: 0;
  }
  .content.shared-bookmark {
    padding-top: 76px;
  }
}

header {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#606060+0,545454+100 */
  background: #606060; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #606060 0%,
    #545454 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #606060 0%,
    #545454 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #606060 0%,
    #545454 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606060', endColorstr='#545454',GradientType=0 ); /* IE6-9 */
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  min-height: 59px;
}
header.fixed-top {
  /* fixed top  */
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  background: #fff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.05);
}
@media (min-width: 991px) {
  header.fixed-top {
    position: absolute;
    box-shadow: none;
  }
  header.fixed-top.black-header {
    position: sticky;
  }
}

header.header-home-fixed.active {
  position: fixed;
  background-color: rgb(23, 22, 22);
}

@media screen and (max-width: 992px) {
  header.header-home-fixed {
    background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
    min-height: 75px;
  }
}

.group-header-elements {
  height: 77px;
  display: flex;
  align-items: center;
  float: right;
}

.group-header-elements .uploader-plus {
  float: none;
  margin-top: 0;
  margin-bottom: 0;
}

.bookmark-style-float {
  float: right;
  margin-top: 18px;
}

@media screen and (min-width: 768px) {
  .bookmark-style-float {
    margin-top: 29px;
  }
}
.flex-link {
  display: flex;
  align-items: center;
}

.bookmark-style img,
.bookmark-style svg {
  margin-right: 10px;
}
.bookmark-style span,
.bookmark-style svg {
  transition: all 0.3s ease-in-out;
  fill: #1db372;
  color: #1db372;
}
.bookmark-style:hover span,
.bookmark-style:hover svg {
  color: #1db372;
  fill: #1db372;
}
.white-search {
  margin-right: 20px;
  margin-top: 0;
  display: none;
  float: right;
}
.js-header-top-search {
  display: none;
}
@media screen and (max-width: 810px) {
  .js-header-top-search {
    display: none;
  }
  .white-search {
    display: block;
  }
}

@media screen and (max-width: 991.99px) {
  header.fixed-top.fixed {
    position: fixed !important;
  }
}

@media (min-width: 1200px) {
  header .container {
    width: 1170px;
    padding: 0 !important;
  }
}

header a,
header a:hover {
  color: #fff;
  text-decoration: none;
}
/*
.header-upload .but.white,
.header-notifications, .header-upload {
    float: right;
    font-size: 13px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .header-notifications,.header-upload {
        font-size: 30px;
        margin: 22px 30px 0 0;
    }
    .header-upload
    {
        margin-top: 19px;
    }
}
*/
.header-top h1 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: none;
  margin: 19px 20px;
}
/* .js-header-top-search {
  display: none;
} */
.header-top__search {
  box-shadow: none !important;
  margin: 15px !important;
  max-width: 100% !important;
  width: 520px !important;
}

.logo {
  display: flex;
  align-items: center;
  /* padding-left: 37px; */
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  color: inherit !important;
  margin: 22px 22px 0;
  text-decoration: none !important;
  position: relative;
}
.logo span {
  margin-left: 10px;
  color: #090a0a;
}

.logo svg {
  fill: #1db372;
}

.logo.green {
  color: #585858;
  /*margin: 0;*/
}

/* .logo:after {
    content: '';
    display: block;
    width: 28px;
    height: 30px;
    background-image: url('../images/sprite.png');
    background-repeat: no-repeat;
    background-size: 200px 75px;
    background-position: 0 0;
    position: absolute;
    top: 0;
    left: 0;
} */
/* @media screen and (min-width: 768px) {
    .logo:after {
        background-position: -28px 0;
    }
} */

@media screen and (max-width: 991px) {
  .header-top__search {
    width: 500px !important;
  }
}

@media screen and (max-width: 768px) {
  .group-header-elements {
    height: 56px;
  }
  .group-header-elements .uploader-plus {
    margin-right: 60px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 500px) {
  .bookmark-style img,
  .bookmark-style svg {
    margin-right: 3px;
  }
}
.logo.green:after {
  background-position: -28px 0;
}

/* @media only screen and (-Webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
    .logo:after {
        background-image: url('../images/sprite@2x.png');
    }
} */

.logo_mobile {
  margin: 3px 0 0 0;
  position: absolute;
  left: 15px;
  padding: 10px 10px 10px 0px;
}

.logo_mobile::after {
  /* width: 21px; */
  /* height: 26px; */
  /* background-size: 200px 75px; */
  position: static;
  margin: 0;
}
@media screen and (max-width: 365px) {
  .logo_mobile span {
    display: none;
  }
}
/* Search Box */
.search-box {
  background: #fff;
  /*border: 1px solid #ddd;*/
  border-radius: 47px;
  box-shadow: 0 0 0 8px rgb(255, 255, 255, 0.06);
  display: flex;
  float: right;
  font-size: 13px;
  margin-right: 15px;
  margin-top: 9.25px;
  max-width: 49%;
  overflow: hidden;
  position: relative;
  width: 300px;
}

@media only screen and (max-width: 1200px) {
  .search-box.header-top__search {
    width: 36vw !important;
  }
}

@media only screen and (max-width: 600px) {
  /* .search-box {
    display: none;
  } */
  .header-top__search.search-box {
    display: none;
  }
}

.search-profile-mob {
  width: 100%;
  height: 0;
  overflow: hidden;
  box-shadow: 0px 47px 119px -14px rgb(0 0 0 / 80%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.search-profile-mob.is-active {
  opacity: 1;
  visibility: visible;
  height: 58px;
}
.search-profile-form {
  width: 100%;
  height: 100%;
  position: relative;
}
.search-profile-form__input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 5px 25px 5px 50px;
  color: #333;
  font-size: 16px;
}

.search-profile-form__input::placeholder {
  font-size: 12px;
  color: #545454;
}

.hide-search {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  padding: 20px;
}

@media only screen and (min-width: 768px) {
  .search-box {
    float: none;
    margin-right: 0;
    margin-top: 18.5px;
    width: auto;
  }
}

.search-box__label {
  align-items: center;
  background-color: #1db372;
  border-color: #1db372;
  border-style: solid;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 41px;
  justify-content: center;
  margin-bottom: 0;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity ease 0.3s;
  width: 41px;
}

.search-box__label:hover {
  opacity: 0.75;
}

.search-box__input {
  border: 1px solid transparent;
  border-radius: 47px;
  color: #333;
  padding: 13px;
  padding-right: 47px;
  width: 100%;
}

.search-box__input:focus {
  outline: none;
  /*border-color:  #80dd2d;*/
}

.search-box__icon path {
  fill: #fff;
  fill-opacity: 1;
}

/* Navigation */

.navbar {
  min-height: 0;
  margin-bottom: 0;
}

.navbar-toggle,
.navbar-desk-toggle {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  float: none;
  margin: 3px 0 0 0;
  padding: 11px 11px;
}

.navbar-desk-toggle {
  padding: 18px 11px;
  outline: none;
}
.navbar-toggle {
  margin: 0;
}
.navbar-desk-toggle img,
.navbar-toggle img {
  height: 38px;
  width: 38px;
  border-radius: 4px;
  object-fit: cover;
  object-position: top center;
}

.navbar-toggle {
  position: absolute;
  top: 0;
  right: 0;
}

.navbar-toggle.active {
  position: fixed;
}

.navbar-toggle .icon-bar,
.navbar-desk-toggle .icon-bar {
  display: block;
  width: 31px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
}

.navbar-desk-toggle .icon-bar {
  width: 35px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 9.5px;
}

.navbar-desk-toggle .icon-bar + .icon-bar {
  margin-top: 10.5px;
}

#page-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

#page-overlay.visible {
  visibility: visible;
  opacity: 1;
}

@keyframes menuFadeIn {
  from {
    transform: translateX(100%);
  }
}

@keyframes menuFadeOut {
  0% {
    visibility: visible;
  }
  100% {
    visibility: visible;
    transform: translateX(100%);
  }
}

#navbar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  animation: menuFadeIn 0.5s ease-out;
}

#navbar.collapse {
  display: none;
}

#navbar.collapse.hiding {
  display: block;
  visibility: hidden;
  animation: menuFadeOut 0.4s ease-in;
}

#navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

#navbar .navbar-user {
  display: flex;
  align-items: center;
  min-width: 70%;
  padding: 19px 20px 8px 20px;
  border-bottom: 1px solid #efefef;
}

#navbar .navbar-user img {
  max-width: 55px;
  max-height: 55px;
  margin-right: 12px;
  border-radius: 6px;
}

#navbar .navbar-user h6 {
  color: #090a0a;
  font-size: 15px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

#navbar .navbar-user p {
  font-size: 12px;
  color: #515252;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}

#navbar ul {
  min-width: 250px;
  font-size: 15px;
  list-style-type: none;
  margin: 16px 19px;
  padding: 0;
}

#navbar ul li {
  padding-top: 6px;
  padding-bottom: 5px;
  position: relative;
  margin-bottom: 20px;
}

#navbar ul li.active::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: rgb(29, 179, 114);
  position: absolute;
  left: -19px;
  top: 0;
  z-index: 1;
}
#navbar .active a {
  color: rgb(29, 179, 114);
}

#navbar a {
  color: #090a0a;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.navbar-desk {
  float: right;
  position: relative;
}

#navbar-desk {
  min-width: 158px;
  max-width: 240px;
  padding: 27px 25px 7px 25px;
  color: #797979;
  background-color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  right: 11px;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 10;
  border: 1px solid #cdcdcd;
}

.navbar-desk:hover #navbar-desk {
  opacity: 1;
  visibility: visible;
  top: 71px;
}

#navbar-desk ul {
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#navbar-desk li {
  padding-bottom: 21px;
}

#navbar-desk a {
  color: #585858;
}

#navbar a.disabled,
#navbar a:not([href]),
#navbar-desk a.disabled,
#navbar-desk a:not([href]),
.header-top a.disabled,
.header-top a:not([href]),
.header-top button.disabled,
.navbar-header button.disabled,
.header-top form.disabled {
  /* Make the disabled links grayish*/
  /*color: gray !important;*/
  /*opacity: 0.5;*/
  /* And disable the pointer events */
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/*****************************
 * Content area *
 *****************************/

/* .content .row > div {
  padding: 0;
} */

/* Mobile Gallery */
.mobile-gallery {
  position: relative;
  height: calc(100vh - 92px);
  height: calc(var(--vh, 1vh) * 100 - 92px);
  /* height: calc(var(--vh, 1vh) * 100 - 110px); */
  width: 100%;
  top: 0;
  left: 0;
  /* margin-top: 10px; */
  transition: all 0.4s ease;
}
.mobile-gallery .image-holder {
  position: relative;
  height: 100%;
  min-height: 275px;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.mobile-gallery .image-holder img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mobile-gallery .image-title {
  position: absolute;
  bottom: 0;
  padding: 40px 10px 15px 10px;
  border-radius: 0px 0px 10px 10px;
  width: 100%;
  color: white;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 4;
}
.image-title * {
  color: #fff;
}
.mobile-gallery .thumbnail-holder {
  position: relative;
  height: 70px;
  width: 100%;
  margin-top: 10px;
  overflow-x: hidden;
  overflow-y: hidden;
  white-space: nowrap;
}
.mobile-gallery .thumbnail {
  position: relative;
  height: 70px;
  width: 93px;
  margin-right: 7px;
  border-radius: 5px;
  background-color: grey;
  display: inline-block;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/front/images/loader.gif");
  transition: border 0.1s linear;
  opacity: 0.5;
}
.mobile-gallery .thumbnail.active {
  border: 3px solid yellowgreen;
  box-shadow: 0 0 5px 1px grey;
  opacity: 1;
}
.mobile-gallery ul.images {
  position: relative;
  display: block;
  height: 100%;
  margin: auto;
  list-style: none;
  overflow: hidden;
}
.mobile-gallery ul.images li {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  transform-origin: bottom center;
  /*background-image: url('/front/images/loader.gif');
    background-repeat: no-repeat;
    background-position: center;*/
}
.mobile-gallery .image.prev {
  z-index: 1;
  opacity: 0;
}
.mobile-gallery .image.next {
  z-index: 2;
}
.mobile-gallery .image.active {
  z-index: 3;
}
/* .mobile-gallery .image:not(.active) {
  opacity: 1;
} */

.mobile-gallery .rating-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4;
}
.rating-overlay .fa.fa-hand-o-up {
  position: absolute;
  color: white;
  bottom: 70%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 4em;
  animation: rotate_hand 5s linear infinite;
}
.mobile-gallery .rating {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 4;
  opacity: 0.8;
  display: inline-block;
  pointer-events: none;
}
.mobile-gallery .rating-text-holder {
  position: relative;
  display: table;
  height: 90px;
  width: 90px;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  pointer-events: none;
  left: 50%;
}
.mobile-gallery .rating-text {
  position: relative;
  opacity: 0;
  background-color: white;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  color: #8ae439 !important;
  font-size: 2em !important;
  text-shadow: 0px 0px 15px white;
  transition: transform 0.1s linear;
}
.mobile-gallery .rating-overlay-circle {
  position: absolute;
  left: 0;
  width: 250px;
  height: 250px;
  border: 5px solid white;
  border-radius: 50%;
  margin: auto;
  right: 0;
  bottom: 0px;
  border-bottom-color: transparent;
}
.mobile-gallery .rating-value {
  position: absolute;
  top: -60%;
  left: 70%;
  right: 0;
  bottom: 0;
  height: 40%;
  width: 40%;
  background-color: rgba(0, 0, 0, 1);
  border: 5px solid white;
  border-radius: 50%;
  margin: auto;
}
.mobile-gallery .rating-value-inner div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: white;
  font-size: 0.9em;
}
.mobile-gallery .rating-value-inner .rating-value-inner-text {
  font-size: 1.6em;
}
.mobile-gallery .rating-value-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: table;
}

.mobile-gallery .zoom-rating {
  animation: zoom_rating 0.1s linear 1;
}
@keyframes zoom_rating {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

@keyframes rotate_hand {
  0% {
    transform: rotate(0deg) translate(0px);
  }
  25% {
    transform: rotate(70deg) translate(65%);
  }
  50% {
    transform: rotate(0deg) translate(0px);
  }
  75% {
    transform: rotate(-70deg) translate(-65%);
  }
  100% {
    transform: rotate(0deg) translate(0px);
  }
}

@media only screen and (max-height: 450px) {
  .rating-overlay-circle {
    height: 150px;
    width: 150px;
  }
  .rating-overlay .fa.fa-hand-o-up {
    font-size: 2.5em;
  }
  .mobile-gallery .thumbnail-holder {
    height: 25%;
  }
  .mobile-gallery .image-holder {
    height: 75%;
  }
}
@media only screen and (orientation: landscape) and (max-height: 500px) {
  .mobile-gallery .image-holder {
    height: 90%;
  }
}
/* Desktop gallery */
.desktop-gallery-header {
  float: right;
  padding: 10px;
  border: none !important;
}
.desktop-gallery-header .but::before {
  left: 1px;
}
.gallery-carousel {
  width: 100%;
  max-width: 1024px;
  margin: auto;
  text-align: center;
  position: relative;
}
.desktop-gallery-holder {
  position: relative;
  width: 100%;
  height: 100%;
}
.desktop-gallery-holder .image-carousel-holder {
  height: 65vh;
}

ul.image-carousel {
  position: relative;
  list-style: none;
  padding: 0;
  height: 100%;
  margin: 20px auto 20px;
  display: block;
  overflow: hidden;
  background: white;
}

.image-carousel li {
  position: absolute;
  width: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 100%;
  transform-origin: bottom center;
  background-image: url("/front/images/loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s ease;
}

.image-carousel li img {
  top: inherit;
  bottom: inherit;
  left: 0px;
  right: inherit;
  height: 100%;
  object-fit: cover;
  margin: inherit;
  transition: all 0.4s ease;
  min-width: 100%;
}
.desktop-gallery-holder .image-title {
  position: absolute;
  margin: 0;
  z-index: 7;
  padding: 0px;
  bottom: 0;
  background: none;
  top: 29vh;
  height: 50px;
  left: calc(50% - 600px + 50vh);
  display: block;
}
.desktop-gallery-holder .image-title * {
  width: 100%;
  text-align: left;
  color: #333;
  padding: 0px;
}
.give-your-rating {
  color: #666;
  display: inline-block;
  padding: 0px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
  position: absolute;
  top: 43vh;
  left: calc(50% - 600px + 50vh);
}
.image-carousel li {
  display: none;
}

.image-carousel li.left,
.image-carousel li.right {
  opacity: 0;
  top: 30%;
  z-index: 1;
}

.image-carousel li.active {
  z-index: 2;
}

#image-carousel-desktop li.active {
  width: 45vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 63vh;
  top: 71px;
  border: 8px solid #fff;
  left: calc(50% - 607px);
  background-color: #fff;
  box-shadow: 0.2vh 0.2vh 2vh -1vh RGBA(0, 0, 0, 0.3);
}

.image-carousel-control {
  width: 18px;
  height: 31px;
  background: #fff;
  border: 0;
  text-decoration: none;
  position: absolute;
  top: 203px;
  -o-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  opacity: 0.5;
}

.image-carousel-control:hover {
  opacity: 1;
}

.image-carousel-control.left {
  left: 0;
}

.image-carousel-control.right {
  right: 0;
}

.image-carousel-control:after {
  content: "";
  display: block;
  width: 17px;
  height: 31px;
  background-image: url("../images/sprite.png");
  background-repeat: no-repeat;
  background-size: 200px 75px;
  background-position: -75px 0;
  position: absolute;
  top: 0;
  left: 0;
}

.desktop-thumbnail-holder {
  position: relative;
  height: 20vh;
  width: 100%;
  margin-top: 10px;
  padding: 0 30px;
  white-space: nowrap;
}
.desktop-thumbnail-holder .thumbnails {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  white-space: nowrap;
}
.desktop-thumbnail-holder .scroll-left,
.desktop-thumbnail-holder .scroll-right {
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 30px;
  background-color: #dcdcdc;
  color: #a0a0a0;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.desktop-thumbnail-holder .scroll-right {
  left: auto;
  right: -10px;
}
.desktop-thumbnail {
  position: relative;
  height: 100%;
  width: 14%;
  margin-right: 22px;
  border-radius: 5px;
  background-color: grey;
  display: inline-block;
  cursor: default;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/front/images/loader.gif");
  transition: border 0.1s linear;
  opacity: 0.5;
}
.desktop-thumbnail-holder .scroll-left::after,
.desktop-thumbnail-holder .scroll-right::after {
  position: relative;
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.desktop-thumbnail.active {
  border: 3px solid yellowgreen;
  box-shadow: 0 0 5px 1px grey;
  opacity: 1;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (-moz-min-device-pixel-ratio: 1.5),
  only screen and (-o-min-device-pixel-ratio: 3/2),
  only screen and (min-device-pixel-ratio: 1.5) {
  .image-carousel-control:after {
    background-image: url("../images/sprite@2x.png");
  }
}

.image-carousel-control.right:after {
  background-position: -92px 0;
}
li.image.active::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(138, 228, 57, 0.75);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
li.image.active.changed::after {
  opacity: 1;
}

/* Slider rating */

#slider-rating {
  width: 335px;
  height: 19px;
  margin: 0 auto 20px;
  background: #c8c8c8;
  border: 0 none;
  position: relative;
  transition: all 0.1s ease;
}

#slider-rating #custom-handle {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 25px;
  position: absolute;
  top: 0;
  right: -50px;
  transition: all 0.1s ease;
}

#slider-rating .ui-slider-handle {
  width: 35px;
  height: 33px;
  margin-left: -17px;
  top: -7px;
  border: 0 none;
  background: #fefefe;
  transition: all 0.1s ease;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

#slider-rating .ui-slider-handle:after {
  content: "";
  display: block;
  width: 19px;
  height: 17px;
  background-image: url("../images/sprite.png");
  background-repeat: no-repeat;
  background-size: 200px 75px;
  background-position: -56px 0px;
  position: absolute;
  top: 9px;
  left: 8px;
  transition: all 0.1s ease;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (-moz-min-device-pixel-ratio: 1.5),
  only screen and (-o-min-device-pixel-ratio: 3/2),
  only screen and (min-device-pixel-ratio: 1.5) {
  #slider-rating .ui-slider-handle:after {
    background-image: url("../images/sprite@2x.png");
  }
}

#slider-rating .ui-slider-range {
  background: #82de2f;
  transition: all 0.3s ease;
}

/*****************************
 * Bubble rating *
 *****************************/
ul#bubble-rating,
.bubble-rating {
  list-style: none;
  display: inline-block;
  margin: auto;
  padding: 5px 0px;
  min-height: 40px;
  padding-top: 15px;
  position: absolute;
  top: 45vh;
  left: calc(50% - 600px + 50vh);
  z-index: 100;
}

#bubble-rating li,
.bubble-rating li {
  display: inline-block;
  vertical-align: middle;
  height: 34px;
  position: relative;
  width: 34px;
  background-color: #cdcdcd;
  color: #fff;
  border: 2px solid #cdcdcd;
  border-radius: 50%;
  margin-right: 5px;
  transition: all 0.1s ease;
  cursor: pointer;
  text-align: center;
}
#bubble-rating li.active,
.bubble-rating li.active {
  background-color: #1db372;
  border: 2px solid #1db372;
  color: white;
}
#bubble-rating li:after,
.bubble-rating li:after {
  position: relative;
  content: "";
  display: inline-block;
  left: 0;
  top: 0;
  vertical-align: middle;
  height: 110%;
}
/*****************************
 * Login page *
 *****************************/

.login-page {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.login-page .row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .login-page .row {
    display: table;
    height: 100%;
  }
  .login-page .col-md-5 {
    width: 39.5%;
    text-align: left;
  }

  .login-page .col-md-7 {
    width: 62.5%;
  }
}

.login-page .row > div {
  float: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  height: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  position: relative;
}

.login-page .row > div .col-inner-padding {
  padding: 140px 30px 200px 30px;
}

@media (min-width: 992px) {
  .login-page .row > div {
    display: table-cell;
  }
  .login-page .row > div .col-inner-padding {
    padding: 81px 50px;
  }
}

.login-page .logo {
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -60px;
}

@media (min-width: 992px) {
  .login-page .logo {
    top: 41px;
    left: 50px;
    margin: 0;
  }
}

.login-page h1 {
  margin: 0 0 41px;
}

.login-page .bottom-images {
  width: 100%;
  height: 113px;
  background: url("../images/bg-footer.png") repeat-x bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.login-page .row > div.fullwidth-image {
  font-size: 25px;
  line-height: 34px;
  font-weight: 300;
  color: #fff;
  vertical-align: middle;
  text-transform: none;
  background: url("../images/bg-login.jpg") no-repeat center center;
  background-size: cover;
}

.login-page .row > div.fullwidth-image .col-inner-padding {
  padding: 0;
  z-index: 10;
  top: 0;
  position: relative;
}
.login-page .fullwidth-image::before {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(146, 234, 67, 1) 0%,
    rgba(1, 2, 1, 0.8) 99%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 100%;
  z-index: 1;
}
.login-page .fullwidth-image p {
  margin: 10px 0 10px;
  font-size: 1em;
}
.login-page img.iphone-mockup {
  position: relative;
  height: 70vh;
  width: auto;
}

/* added on 2018-sep-23 */
/* width that menu becomes mobile*/
@media screen and (max-width: 991.99px) {
  .login-page .row > div.fullwidth-image {
    display: none !important;
  }

  /*on hover effect */
  .but > span {
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  }

  .but:hover > span {
    -moz-transform: translate3d(0px, 200%, 0px);
    -webkit-transform: translate3d(0px, 200%, 0px);
    transform: translate3d(0px, 200%, 0px);
  }

  /* .but:before {
        background-color: #fff;
        background: #fff;
        color: #8de73d;
        content: attr(data-text);
        height: 100%;
        padding: 8px 20px;
        padding-left: 40px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        left: 0;
        position: absolute;
        top: 0;
        -moz-transform: translate3d(100%, 0px, 0px);
        -webkit-transform: translate3d(100%, 0px, 0px);
        transform: translate3d(100%, 0px, 0px);
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
        transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
        width: 100%;
    } */

  .but:hover:before {
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }

  .but:hover {
    /*color: #fff;
        background-color: #8de73d;
        background: #8de73d;*/
    color: #8de73d;
    background-color: #fff;
    background: #fff;
  }
  .header-upload .but.green:before {
    padding: 10px 5px;
    padding-left: 35px;
  }
}

/*****************************
 * Profile page *
 *****************************/

/*.content.profile .col-md-3 {*/
/*  border-bottom: 1px solid #ddd;*/
/*}*/

@media (min-width: 992px) {
  .content.profile .col-md-3 {
    width: 21.8%;
    border: 0 none;
    /*border-right: 1px solid #ddd;*/
    position: relative;
  }

  .content.profile .col-md-3:after {
    content: "";
    width: 1px;
    height: 100px;
    background: -moz-linear-gradient(
      top,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 90%
    );
    background: -webkit-linear-gradient(
      top,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 90%
    );
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 90%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    position: absolute;
    bottom: 0;
    right: -1px;
  }

  .content.profile .col-md-9 {
    width: 78.2%;
  }
}

.content-user-info {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 43px 0 32px;
  text-align: center;
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
}

.content-user-info h5 {
  color: #090a0a;
  font-family: "Inter", sans-serif;
}
.content-user-info p {
  color: #515252;
  font-size: 14px;
}

@media (min-width: 992px) {
  .content-user-info {
    margin-bottom: 115px;
  }
}

.content-user-info p {
  color: #aeaeae;
}

.content-user-avatar {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  position: relative;
}

@media (min-width: 992px) {
  .content-user-info {
    background-color: #f7f7f7;
  }
  .content-user-avatar {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
}

/*.content-user-avatar:after {*/
/*  display: block;*/
/*  content: "";*/
/*  width: 100px;*/
/*  height: 100px;*/
/*  background-color: #fff;*/
/*  -moz-border-radius: 4px;*/
/*  -webkit-border-radius: 4px;*/
/*  border-radius: 4px;*/
/*  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);*/
/*  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);*/
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);*/
/*  position: absolute;*/
/*  left: -3px;*/
/*  top: -3px;*/
/*}*/

/*@media (min-width: 992px) {*/
/*  .content-user-avatar:after {*/
/*    width: 136px;*/
/*    height: 136px;*/
/*  }*/
/*}*/

.content-user-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .content-user-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

.content-user-followers {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.content-user-followers a,
.content-user-followers a:hover,
.content-user-followers a:focus {
  color: rgb(88, 88, 88);
  text-decoration: none;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #aeaeae;
}

.content-user-followers b {
  font-weight: 500;
}

/* User Gallery */

@media (min-width: 992px) {
  .user-gallery {
    padding-left: 4px;
    margin-bottom: 52px;
  }
}

.portfolio-tabs-block {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.portfolio-tabs-block.active {
  opacity: 1;
  visibility: visible;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.user-gallery-left-space {
  margin-left: 21px;
}

.portfolio-navigation {
  display: flex;
  justify-content: flex-start;
}

.portfolio-navigation button {
  outline: none;
  border: none;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-left: 47px;
  padding: 15px 18px;
  position: relative;
}

.portfolio-navigation-search {
  position: relative;
  margin-top: 31px;
  margin-bottom: 28px;
}

.portfolio-navigation-search input {
  display: block;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 11px 38px;
  outline: none;
}

.portfolio-navigation-search input:focus {
  outline: none;
}

.portfolio-navigation-search input::placeholder {
  font-size: 15px;
  color: #555;
}

.portfolio-search-icon {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.portfolio-navigation button::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.portfolio-navigation button.active {
  color: #1db372;
}
.portfolio-navigation button.active::after {
  background-color: #1db372;
}

.portfolio-navigation button:first-child {
  margin-left: 0;
}

.bookmarks-block__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
  min-height: 418px;
}

.bookmarks-block__empty img {
  display: block;
  margin: 0 auto 12px auto;
}

.bookmarks-block__empty h4 {
  color: #090a0a;
  font-weight: 600;
  margin-bottom: 6px;
}

.bookmarks-block__empty p {
  color: #515252;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .bookmarks-block__empty {
    background-color: #f7f7f7;
  }
}
.bookmarks-block__caption {
  font-size: 18px;
  font-weight: 600;
  color: #1db372;
  margin-bottom: 16px;
  margin-top: 30px;
}

.bookmarks-block__section {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  /* justify-content: space-between; */
}

.bookmarks-element {
  width: calc(33% - 16px);
  margin-right: 27px;
  margin-bottom: 33px;
  cursor: pointer;
}

.bookmarks-element:nth-child(3n) {
  margin-right: 0;
}

.bookmarks-element__image {
  height: 219px;
  position: relative;
}
.favorite-shadow-top {
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 6px 6px 0px 0px;
}
.favorite-shadow {
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-radius: 0px 0px 6px 6px;
}
.bookmarks-icon-list {
  width: 37px;
  height: 37px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.bookmark-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37px;
  border-radius: 5px;
  background-color: #fff;
  border: none;
  outline: none;
  margin-bottom: 10px;
}
.bookmark-button:last-child {
  margin-bottom: 0;
}

.remove-bookmark {
  background-color: #ff4141;
}

.bookmarks-images:hover .bookmarks-icon-list {
  opacity: 1;
  visibility: visible;
}

.bookmarks-images {
  display: flex;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.bookmarks-images__mini {
  width: 100px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #fff;
}

.bookmarks-images__mini img {
  display: block;
  max-width: 100%;
  height: 50%;
  object-fit: cover;
  object-position: top center;
}

.bookmarks-images__mini img:first-child {
  border-bottom: 1px solid #fff;
}

.bookmarks-images__main {
  width: calc(100% - 100px);
}

.bookmarks-images__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bookmarks-images__main.full-size {
  width: 100%;
}
.bookmarks-element__title {
  color: #313131;
  font-size: 17px;
  font-weight: 600;
  margin: 11px 0 5px 0;
  font-family: "Inter", sans-serif;
}

.bookmarks-element__count {
  color: #aeaeae;
  font-size: 12px;
  line-height: 13px;
}

.user-gallery-header {
  line-height: 42px;
  font-weight: 500;
  padding: 12px 19px;
  border-bottom: 1px solid #ddd;
  position: relative;
  right: unset;
  z-index: 1;
  font-family: "Inter", sans-serif;
}
.user-gallery-header a {
  color: rgb(88, 88, 88);
  text-decoration: none;
}
.desktop-gallery-header {
  position: absolute;
}

@media (min-width: 992px) {
  .user-gallery-header {
    padding: 27px 0 21px 0;
    font-size: 24px;
    font-weight: 700;
    color: #090a0a;
  }
}

.portfolio-navigation {
  border-bottom: 1px solid #ddd;
}

.user-gallery-header button {
  float: right;
  padding: 8px 5px 10px 10px;
  margin-top: 1px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .user-gallery-header button {
    padding: 10px 14px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-top: -1px;
  }

  .user-gallery-header button:before {
    display: inline-block;
    padding: 12px 14px 11px 41px;
  }
}

.user-gallery-body {
  padding: 6px 0 20px 5px;
}

@media (min-width: 992px) {
  .user-gallery-body {
    padding: 21px 0;
  }
}

.user-gallery-body h5 {
  font-size: 13px;
  font-weight: 400;
  color: #515252;
  display: none;
}

@media (max-width: 991px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .user-gallery-body h4 {
    font-size: 16px;
    margin: 10px 0 17px 4px;
  }
  .user-gallery-header {
    display: none;
    position: relative;
  }
  .user-gallery-left-space {
    margin-left: 0;
  }
  .portfolio-navigation {
    margin-left: -15px;
    margin-right: -15px;
  }
  .bookmarks-block {
    padding: 0 15px;
  }
  .bookmarks-block__section {
    justify-content: space-between;
  }
  .bookmarks-element {
    width: calc(49% - 15px);
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .user-gallery-body h5 {
    display: block;
  }
  .bookmarks-element {
    width: calc(50% - 10px);
  }
}
@media (max-width: 500px) {
  .bookmarks-block__caption {
    display: none;
  }
  .bookmarks-block__section {
    padding-top: 25px;
    justify-content: space-between;
  }
  .bookmarks-block__section {
    justify-content: center;
  }
  .bookmarks-element {
    width: 100%;
    margin-bottom: 15px;
  }
}

/*bookmark popup*/
.bookmark-wrapper {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 8;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.bookmark-wrapper.is-active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.bookmark-popup {
  width: 100%;
  max-width: 840px;
  min-height: 540px;
  max-height: 800px;
  height: 90%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
}

.bookmark-popup__container {
  position: relative;
  height: 100%;
}

.bookmark-close {
  position: absolute;
  right: -10px;
  top: -20px;
  padding: 10px;
  cursor: pointer;
}

.bookmark-popup-title {
  font-size: 19px;
  font-weight: 700;
  color: #313131;
  margin-bottom: 24px;
}

.bookmark-popup-caption input {
  width: 100%;
  padding: 12px 20px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(194, 194, 194);
  border-radius: 6px;
  outline: none;
}

.bookmark-popup-caption input::placeholder {
  color: #313131;
  font-size: 15px;
  font-weight: 500;
}

.bookmark-popup-scroll {
  background-color: #f7f7f7;
  padding: 10px;
  margin: 20px -20px 8px -20px;
  height: calc(100% - 163px);
  overflow: hidden;
}

.bookmark-popup-body {
  height: 100%;
  height: 100%;
  overflow: scroll;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}

.bookmark-popup-body::-webkit-scrollbar {
  width: 5px;
}

.bookmark-popup-body::-webkit-scrollbar-track {
  background-color: transparent;
}

.bookmark-popup-body::-webkit-scrollbar-thumb {
  background-color: #a0a0a0;
  border-radius: 100px;
}

.bookmark-edit-block {
  margin-right: 14px;
  margin-bottom: 14px;
  position: relative;
}

.image-edit-style {
  width: 189px;
  height: 262px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.bookmark-edit-block:nth-child(4n) {
  margin-right: 0;
}
.remove-edit-image {
  width: 37px;
  height: 37px;
  border: none;
  outline: none;
  background-color: #ff4141;
  border-radius: 5px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.bookmark-edit-block:hover .remove-edit-image {
  opacity: 1;
  visibility: visible;
}

.bookmark-popup-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}

.go-edit-images {
  border-radius: 4px;
  background-color: rgb(29, 179, 114);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 11px 42px;
  outline: none;
  border: none;
}

/* .bookmarks-list-item-footer {
  display: flex;
} */

.info-box {
  display: flex;
  font-family: "Inter", sans-serif;
}
.count-element {
  position: relative;
  padding-right: 15px;
}
.count-element::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50px;
  display: block;
  background-color: #090a0a;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.count-element,
.date-element {
  font-size: 13px;
  line-height: 14px;
  color: #515252;
}
.bookmarks-list-item-footer-link {
  flex-grow: 1;
  display: flex;
  margin-top: 10px;
}

.bookmarks-list-item-footer-link input {
  flex-grow: 1;
  border-radius: 4px 0px 0px 4px;
  border: solid 1px lightgray;
  border-right: none;
  font-size: 13px;
  padding: 5px 10px;
  width: 100px;
}

.bookmarks-list-item-footer-link button {
  background: #eee;
  border: solid 1px lightgray;
  padding: 5px 5px 2px 7px;
}

.bookmarks-list-item-footer-link button.share-icon {
  padding: 5px 6px 2px 6px;
}

.bookmarks-list-item-footer-link button + button {
  border-left: none;
}

/*@media (min-width: 991px) {
  .bookmarks-list-item-footer-link button + button {
    border: solid 1px lightgray;
  }
  .bookmarks-list-item-footer-link button.share-icon {
    display: none;
  }
}*/

.bookmarks-list-item-footer-link button:last-child {
  border-radius: 0px 4px 4px 0px;
}

.bookmarks-list-item-footer-link button:hover {
  background: #ddd;
}

.bookmarks-list-item-footer-link svg {
  color: gray;
}

.bookmarks-list-item-footer-share-button {
  border-radius: 4px;
  background-color: rgb(29, 179, 114);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 20px 5px;
  outline: none;
  border: none;
  margin: 14px 0 0 auto;
  align-self: flex-start;
  display: none;
}
.share-float {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 4;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
.bookmarks-images:hover .share-float {
  opacity: 1;
}
.full-show-image {
  width: calc(90% - 5px);
  height: calc(90% - 5px);
  position: fixed;
  z-index: 500;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.full-show-image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.bookmark-caption-form {
  position: relative;
  width: 100%;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon input {
  width: 100%;
  padding: 8px 40px 8px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.save-icon-btn {
  position: absolute;
  right: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.save-icon-btn img,
.save-icon-btn svg {
  width: 20px;
  height: 20px;
}

.save-icon-btn.saved svg {
  stroke: #28a745;
}

.success-icon {
  filter: invert(46%) sepia(92%) saturate(655%) hue-rotate(95deg)
    brightness(95%) contrast(89%);
}

@media screen and (max-width: 1200px) {
  .bookmark-popup {
    height: 90%;
  }
  .bookmark-popup__container {
    height: 100%;
  }
  .bookmark-popup-scroll {
    height: calc(100% - 161px);
  }
  .bookmark-popup-body {
    height: 100%;
  }
}

@media screen and (max-width: 991.99px) {
  .bookmark-popup {
    max-width: 648px;
    padding: 30px 20px;
  }
  .bookmark-edit-block {
    margin-right: 17px;
  }
  .bookmark-edit-block:nth-child(4n) {
    margin-right: 17px;
  }
  .bookmark-edit-block:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 685px) {
  .bookmark-popup {
    max-width: 440px;
    height: 95%;
    max-height: 637px;
  }
  .bookmark-popup-scroll,
  .bookmark-popup-body {
    max-height: 422px;
  }
  .bookmark-popup-body {
    justify-content: center;
  }
  .bookmark-edit-block {
    margin-right: 17px;
  }
  .bookmark-edit-block:nth-child(3n) {
    margin-right: 17px;
  }
  .bookmark-edit-block:nth-child(2n) {
    margin-right: 0;
  }
  .bookmark-popup-title {
    font-weight: 600;
  }
  .bookmarks-icon-list {
    opacity: 1;
    visibility: visible;
  }
  .remove-edit-image {
    opacity: 1;
    visibility: visible;
  }
  .bookmark-popup {
    padding: 20px 10px;
  }
  .bookmark-popup-scroll {
    margin-left: -10px;
    margin-right: -10px;
  }
  .go-edit-images {
    width: 100%;
  }
}

@media screen and (max-width: 495px) {
  .bookmark-popup-title {
    margin-bottom: 17px;
  }
  .bookmark-popup {
    max-width: 90%;
  }
  .bookmark-popup-body {
    justify-content: space-between;
  }
  .bookmark-edit-block {
    width: 47%;
    margin-right: 0;
  }
  .image-edit-style {
    width: 100%;
    height: 222px;
  }
  .bookmark-edit-block:nth-child(3n) {
    margin-right: 0;
  }
  .bookmark-edit-block:nth-child(2n) {
    margin-right: 0;
  }
  .bookmark-popup-footer {
    justify-content: center;
  }
}

.photos-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.photos-list {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.photos-list-item {
  position: relative;
  display: block;
  cursor: pointer;
  width: 29%;
  padding-bottom: 39%;
  float: left;
  margin: 1.5%;
}

.review-bubble {
  position: absolute;
  height: 40px;
  width: 40px;
  top: -20px;
  right: -20px;
  display: none;
  vertical-align: middle;
  background-color: white;
  border: 2px solid #1db372;
  color: #1db372;
  border-radius: 50%;
  transition: all 0.1s ease;
  cursor: pointer;
  z-index: 1;
  font-weight: 600;
  font-size: small;
  box-shadow: 0 0 5px 0px #1db372;
}
.review-bubble::after {
  position: relative;
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.review-bubble:hover {
  background-color: #1db372;
  color: white;
}
.photos-list-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
.total-votes-absolute {
  position: absolute;
  left: 19px;
  bottom: 17px;
  z-index: 4;
  color: #fff;
}
.total-votes {
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
}
.photos-list-item .photos-list-rate {
  display: block;
  width: 100%;
  font-size: 13px;
  color: #fff;
  text-align: left;
  position: absolute;
  bottom: 0px;
  padding-left: 16px;
  padding-bottom: 12px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border-radius: 4px 5px;
}

.reviewers {
  display: none;
}
.photos-list-item:hover .delete-item {
  opacity: 1;
}
.delete-item {
  width: 40px;
  height: 40px;
  padding: 6px 0px;
  border-radius: 5px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;
  margin-left: auto;
  background-color: #ff2222;
  border: none;
  outline: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.photos-list-item .photos-list-rate i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .photos-list-item {
    width: 48%;
    padding-bottom: 65%;
    /* margin: 4.5%; */
    margin: 0 0 10% 0;
  }
  .total-votes {
    font-size: 11px;
    line-height: 12px;
  }
  .photos-list-item:nth-child(2n + 1) {
    margin-right: 4%;
  }
  .photos-list-item .photos-list-rate {
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .photos-list-item .photos-list-rate i {
    font-size: 1em;
  }
}

/*****************************
 * Sticky footer *
 *****************************/

html {
  position: relative;
  min-height: 100%;
}

#wrapper {
  background-color: #fff;
  min-height: 50vh;
  padding-bottom: 89px;
}

footer {
  width: 100%;
  height: 89px;
  background-color: #fff;
  /*border-top: 1px solid #cbcbcb;*/
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  position: fixed;
  bottom: 0;
  z-index: 2;
}

footer p {
  margin-top: 38px;
}

/* Custom Popup */

.coolpix-popup {
  position: fixed;

  background: rgba(0, 0, 0, 0.3);

  overflow-y: auto;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  width: 100%;

  padding: 20px;
  z-index: 100;

  display: -webkit-box;

  display: -webkit-flex;

  display: -moz-box;

  display: -ms-flexbox;

  display: flex;

  align-items: center;

  justify-content: center;
}

.ios11Fix {
  position: fixed;
}

.coolpix-popup-hide {
  display: none;
}

.coolpix-popup-box .panel-heading {
  padding: 10px;
}

.coolpix-popup-box .panel-heading h6 {
  font-weight: 900;
}

.coolpix-popup-x {
  display: inline-block;

  float: right;

  font-size: 20px;

  cursor: pointer;
}

.coolpix-popup-box {
  width: 450px;

  max-width: 100%;

  background: white;

  position: relative;
}

.coolpix-popup-box > .panel-footer {
  background-color: transparent;

  border: 0;
}

.coolpix-popup-box > .panel-body {
  min-height: 400px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.photo-box {
  border: 1px solid whitesmoke;
  width: 90%;
  height: 250px;
  position: relative;
  margin: auto;
  overflow: hidden !important;
  cursor: pointer;
  flex: 1 auto;
}

.photo-box .upload-preview {
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  position: relative;
}

.photo-box .chosen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-box label {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.photo-box .fa-camera {
  font-size: 2.3em;

  color: #8ae53a;

  display: inline-block;

  max-width: 40px;

  max-height: 40px;

  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.photo-box:hover .fa-camera {
  color: #77a42b;
}

.select-button {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;

  width: 100%;
  height: 100%;
  cursor: pointer;
}

#file-selector {
  position: fixed;

  top: -1000px;
}

.upload-error,
.upload-title-error {
  color: #cc6666;

  font-size: 12px;

  padding: 3px;

  text-align: center;
}

.upload-title-error-url {
  color: #cc6666;

  font-size: 12px;

  padding: 3px;

  text-align: right;
}

.upload-title-error {
  text-align: right;
}

.upload-title-error.color-green {
  color: #009900;
}

.title-field {
  border: 1px solid #77a42b;
}

.title-field:hover {
  box-shadow: 0 0 5px 1px #89e538;

  border: 1px solid #77a42b;
}

.title-field:focus {
  border: 1px solid #77a42b;

  box-shadow: none;
}

.form-fields {
  width: 90%;

  position: relative;

  margin: auto;

  margin-top: 20px;
}

@media (max-width: 500px) {
  .form-fields,
  .photo-box {
    width: 95%;
  }
}

.coolpix-popup-upload-button {
  background-color: #89e538;

  color: white;

  border: 1px solid #89e538;

  box-shadow: 0 0 10px 0px #cfcdcd;

  margin-right: 5px;
}

.coolpix-popup-upload-button {
  width: 60%;
}

.coolpix-popup-upload-button {
  width: 60%;
}

.coolpix-popup-cancel {
  width: 34%;

  margin-left: 1%;
}

.coolpix-popup-cancel,
.coolpix-popup-upload-button {
  transition: all 0.5s ease;

  padding: 10px 15px;

  font-size: 12px;

  font-weight: 500;

  margin-top: 5px;
}

.coolpix-popup-cancel {
  background-color: white;

  color: #89e538;

  border: 1px solid #89e538;

  box-shadow: 0 0 10px 0px #cfcdcd;
}

.coolpix-popup-upload-button:hover {
  background-color: white;

  color: #89e538;

  border: 1px solid #89e538;
}

.coolpix-popup-cancel:hover {
  background-color: #89e538;

  color: white;

  border: 1px solid #89e538;
}

/*

 *Upload progress bar styles

 *

 */

.coolpix-upload-progress-holder {
  top: 0;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.4);

  position: absolute;

  z-index: 20;
}

.coolpix-upload-progress-bar-holder {
  position: relative;

  height: 100%;

  width: 100%;

  top: 0;

  padding: 10px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.coolpix-upload-progress-bar {
  position: relative;

  width: 100%;

  background-color: grey;

  border: 1px solid #89e538;

  height: 20px;

  border-radius: 5px;

  text-align: center;
}

.coolpix-upload-progress-loader {
  padding: 10px;

  text-align: center;

  font-size: 3em;

  color: #89e538;
}

.coolpix-upload-progress {
  position: relative;

  height: 100%;

  width: 0%;

  transition: width 0.7s ease-out;

  background-color: #89e538;

  border-radius: 0 5px 5px 0px;
}

.coolpix-upload-progress-value {
  padding: 10px;

  text-align: center;

  color: white;
}

.mobile-open-upload {
  display: none;
}

@media (max-width: 991.99px) {
  .mobile-open-upload {
    display: inline-block;
  }
  /*
  .header-notifications, .header-upload
  {
      font-size: 18px;
      margin: 18px 10px 0;
  }
  .but.coolpix-popup-open-button{

    display: none;

  } */
}

/* End of custom popup*/

/*****************************
 * Top pics page *
 *****************************/

.top-photos-list-header {
  line-height: 42px;
  font-weight: 500;
  padding: 12px 19px;
  border-bottom: 1px solid #ddd;
}
.top-photos-list {
  padding-top: 80px;
}
@media (min-width: 992px) {
  .top-photos-list-header {
    padding: 16px 0 13px;
  }
}

.top-photos-list-filters {
  font-size: 13px;
  font-weight: 500;
  line-height: 54px;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid #efefef;
  margin-top: 13px;
}

@media (min-width: 992px) {
  .top-photos-list-filters {
    line-height: 59px;
    margin-top: 0;
  }
}

.top-photos-list-filters ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.top-photos-list-filters ul li {
  display: inline-block;
  margin: 0;
  padding: 0 13px 0 14px;
}

@media (min-width: 992px) {
  .top-photos-list-filters ul li {
    padding: 0 21px 0 22px;
  }
}

.top-photos-list-filters ul li a {
  display: inline-block;
  padding: 0 4px;
  text-decoration: none;
  color: #585858;
  -o-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.top-photos-list-filters ul li a.active,
.top-photos-list-filters ul li a:hover,
.top-photos-list-filters ul li a:focus {
  color: #85e033;
  position: relative;
}

.top-photos-list-filters ul li a.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #85e033;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.top-photos-list-body {
  padding: 20px 0;
  text-align: center;
}
.top-photos-list-body .carousel-inner {
  background-color: #000;
  height: 70vh;
}
.top-photos-list-body .carousel-control {
  width: 5%;
}
.top-photos-list-body .carousel-inner .item {
  height: 100%;
}
.top-photos-list-body .carousel-inner .item img {
  width: 100%;
  margin: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 992px) {
  .top-photos-list-body {
    padding: 20px 0;
    background: #000;
  }
}

.top-photos-list-ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.top-photos-list-ul li {
  margin-top: 20px;
}

.top-photos-list-ul li:first-child {
  margin-top: 0;
}

.top-photos-list-ul li img {
  display: block;
  margin: 0 auto;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

/* Top photos grid */
.top-photos-grid {
  padding: 0;
  margin: 20px 0 0;
  list-style-type: none;
  overflow: hidden;
}

/* fluid 2 columns */
.top-photos-grid .grid-sizer,
.top-photos-grid .grid-item {
  width: calc(50% - 60px / 4);
}

@media (min-width: 768px) {
  /* fluid 3 columns */
  .top-photos-grid .grid-sizer,
  .top-photos-grid .grid-item {
    width: calc(33.3% - 60px / 4);
  }
}

@media (min-width: 992px) {
  /* fluid 4 columns */
  .top-photos-grid .grid-sizer,
  .top-photos-grid .grid-item {
    width: calc(25% - 60px / 4);
  }
}

.top-photos-grid .grid-item {
  float: left;
  /*width: 25%;*/
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.top-photos-grid img {
  max-width: 100% !important;
  height: auto !important;
  transition: opacity 0.3s ease;
}

.top-photos-grid img:hover {
  opacity: 0.8;
}

/* Fancybox overrides */
.fancybox-top-photos.fancybox-wrap {
  padding-bottom: 60px;
  top: 60px !important;
}

.fancybox-top-photos .fancybox-skin {
  border-radius: 8px;
  background-color: transparent;
}

.fancybox-top-photos .fancybox-inner {
  height: auto !important;
}

.fancybox-overlay {
  background: rgba(0, 0, 0, 0.85);
}

.fancybox-top-photos .fancybox-error {
  background: white;
  text-align: center;
  border-radius: 8px;
}

.fancybox-top-photos .fancybox-next span,
.fancybox-top-photos .fancybox-prev span {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: white;
  transition: visibility 0.3s ease;
}
.fancybox-top-photos .fancybox-prev span {
  left: 2px;
}
.fancybox-top-photos .fancybox-prev span::before {
  content: "\f104";
  font-size: 24px;
}
.fancybox-top-photos .fancybox-next span {
  right: 2px;
}
.fancybox-top-photos .fancybox-next span::before {
  content: "\f105";
  font-size: 24px;
}

/* Single photo */

.single-photo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-photo-container {
  width: 680px;
  max-width: 100%;
}

.single-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.single-photo-close {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  z-index: 9999;
  padding: 0;
  transition: 0.3s ease;
  background: none;
  border: none;
}
.single-photo-close:hover,
.single-photo-close:focus {
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
}

.single-photo-image {
  background-color: #5e5e5e;
  line-height: 0;
  position: relative;
  height: 680px;
  max-height: calc(100vh - 163px);
  width: 100%;
}

.single-photo-image img {
  display: block;
  width: 100%;
  height: 100%;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  object-fit: cover;
  object-position: top center;
}

.single-photo-footer {
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
}

.single-photo-footer--desktop {
  display: flex;
  justify-content: space-between;
}

.single-photo-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 7px;
}

.single-photo-image-wrap {
  display: block;
  position: relative;
  width: 680px;
  height: 680px;
  max-width: calc(100vh - 163px);
  max-height: calc(100vh - 163px);
  margin: 0px auto 0px;
}

.blur-image-background {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #000;
}

.single-photo-title--desktop {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.8+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-9 */
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.2;
  padding: 118px 145px 21px 24px;
  position: absolute;
  text-align: left;
  width: 100%;
  z-index: 2;
}

.single-photo-score {
  font-size: 13px;
  color: #aeaeae;
}

.single-photo-score span {
  font-size: 14px;
  font-weight: 500;
  color: #86e134;
}

.single-photo-external-link a {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 13px;
  text-decoration: none;
}

.single-photo-external-link a svg {
  margin-right: 10px;
}

.single-photo-rating,
.single-photo-rating .give-your-rating,
.single-photo-rating .bubble-rating {
  position: static;
}

.single-photo-rating {
  background-color: #fff;
  border-top: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.single-photo-user {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
}
.single-photo-user::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -20px;
  right: -20px;
  top: 0;
  background-color: #ddd;
}

.single-photo-user img {
  display: block;
  height: 62px;
  width: 62px;
  margin-right: 13px;
  border: 3px solid #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
}

.single-photo-username {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}

.single-photo-user .but {
  font-size: 10px;
  padding: 6px 16px;
}
.single-photo-user .but::before {
  font-size: 10px;
  padding: 6px 16px;
}

/* 2018-aug-20 */
/*****************************
 * Leaderboard page *
 *****************************/

.leaderboard-header {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 20px 19px 13px;
}

@media (min-width: 992px) {
  .leaderboard-header {
    padding: 25px 0 23px;
    border-bottom: 1px solid #ddd;
  }
}

.leaderboard-controls {
  padding: 0 0 0 13px;
}

@media (min-width: 992px) {
  .leaderboard-controls {
    padding: 31px 0 20px 0;
    text-align: center;
  }
}

.leaderboard-controls .but {
  font-size: 11px;
  padding: 7px 15px 5px;
  border-color: #c1c1c1;
  color: #929292;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin: 0 0 0 7px;
}

@media (min-width: 375px) {
  .leaderboard-controls .but {
    min-width: 120px;
    padding: 7px 10px 5px;
    margin: 0 10px 0 7px;
  }
}

@media (min-width: 992px) {
  .leaderboard-controls .but {
    min-width: 200px;
    font-size: 12px;
    padding: 8px 20px;
    margin: 0 7px;
  }
}

.leaderboard-controls .but:hover {
  border-color: #83df30;
}

.leaderboard-controls .but.active {
  border-color: #83df30;
  color: #86e134;
}

.leaderboard-list {
  list-style-type: none;
  padding: 0;
  margin: 0 17px 20px;
}

@media (min-width: 992px) {
  .leaderboard-list {
    max-width: 617px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: 0 auto 20px;
  }
}

.leaderboard-list-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 20px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .leaderboard-list-item:first-child {
    margin-top: 0;
  }
}

.leaderboard-head,
.leaderboard-data {
  padding: 18px 18px 17px;
}

@media (min-width: 992px) {
  .leaderboard-head,
  .leaderboard-data {
    padding: 27px 28px 18px;
  }
}

.leaderboard-head {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+50,ffffff+50,f1fbe8+100 */
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #ffffff 40%,
    #ffffff 40%,
    #f1fbe8 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #ffffff 40%,
    #ffffff 40%,
    #f1fbe8 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #ffffff 40%,
    #ffffff 40%,
    #f1fbe8 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1fbe8',GradientType=0 ); /* IE6-9 */
}

.leaderboard-img {
  display: block;
  float: left;
  padding: 3px;
  background: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
}

.leaderboard-img img {
  max-width: 64px;
  max-height: 64px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
}

@media (min-width: 992px) {
  .leaderboard-img img {
    max-width: 84px;
    max-height: 84px;
  }
}

.leaderboard-text {
  display: block;
  margin-left: 86px;
}

@media (min-width: 992px) {
  .leaderboard-text {
    margin-left: 116px;
  }
}

.leaderboard-name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding-top: 5px;
  margin-bottom: 9px;
}

@media (min-width: 992px) {
  .leaderboard-name {
    padding-top: 12px;
    margin-bottom: 15px;
  }
}

.leaderboard-unfollow {
  background-color: #80dd2d;
  background: linear-gradient(to right, #80dd2d 0%, #93eb44 100%);
  color: #fff;
}

.leaderboard-unfollow::before {
  display: none;
}

.leaderboard-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.leaderboard-score,
.leaderboard-pics,
.leaderboard-points {
  font-size: 11px;
  font-weight: 600;
  color: #aeaeae;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 375px) {
  .leaderboard-score,
  .leaderboard-pics,
  .leaderboard-points {
    font-size: 13px;
    line-height: 17px;
  }
}

@media (min-width: 992px) {
  .leaderboard-score,
  .leaderboard-pics,
  .leaderboard-points {
    line-height: 18px;
  }
}

.leaderboard-score,
.leaderboard-pics {
  width: 32%;
  min-width: 87px;
  margin-right: 20px;
  border-right: 1px solid #f2f2f2;
}

@media (min-width: 375px) {
  .leaderboard-score {
    width: 10.6%;
    /*margin-right: 7.8%;*/
  }

  .leaderboard-pics {
    width: 29%;
    /*margin-right: 7.8%;*/
  }
}

@media (min-width: 992px) {
  .leaderboard-score {
    width: 21%;
    /*margin-right: 9%;*/
  }

  .leaderboard-pics {
    width: 21%;
    /*margin-right: 9%;*/
  }
}

.leaderboard-score .num,
.leaderboard-pics .num,
.leaderboard-points .num,
.content-user-followers b {
  display: block;
  font-size: 13px;
  line-height: 15px;
  color: #86e134;
  font-weight: 600;
}

@media (min-width: 375px) {
  .leaderboard-score .num,
  .leaderboard-pics .num,
  .leaderboard-points .num,
  .content-user-followers b {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .leaderboard-score .num,
  .leaderboard-pics .num,
  .leaderboard-points .num,
  .content-user-followers b {
    font-size: 16px;
  }
}

/*****************************
 * Invite friends page *
 *****************************/

.invite-friends-header {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 20px 19px 13px;
}

@media (min-width: 992px) {
  .invite-friends-header {
    padding: 25px 0 13px;
    border-bottom: 1px solid #ddd;
  }
}

.invite-friends-header span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aeaeae;
}

.invite-friends-list {
  list-style-type: none;
  padding: 0;
  margin: 0 18px 25px;
}

@media (min-width: 992px) {
  .invite-friends-list {
    margin: 0 -18px 25px;
  }
}

.invite-friends-list-item {
  padding: 4px 0 16px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .invite-friends-list-item {
    float: left;
    width: 50%;
    padding: 30px 18px 5px 18px;
  }
}

@media (min-width: 1200px) {
  .invite-friends-list-item {
    width: 33.33%;
  }
}

.invite-friends-list-item-contents {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .invite-friends-list-item-contents {
    padding: 12px 14px 14px;
    border: 1px solid #f2f2f2;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
}

.invite-friends-but {
  float: right;
  min-width: 78px;
  max-width: 78px;
  margin-top: 18px;
  font-size: 10px;
  padding: 8px 0;
}

.invite-friends-but:before {
  padding: 8px 0;
}

@media (min-width: 375px) {
  .invite-friends-but {
    font-size: 12px;
    padding: 7px 0 6px;
  }

  .invite-friends-but:before {
    padding: 7px 0 6px;
  }
}

.invite-friends-but:hover {
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
}

.invite-friends-but.active {
  border-color: #83df30;
  background-color: #83df30;
  color: #fff;
}

.invite-friends-img {
  display: block;
  float: left;
  padding: 3px;
  margin-right: 16px;
  background: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
}

.invite-friends-img img {
  max-width: 64px;
  max-height: 64px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
}

.invite-friends-text {
  display: block;
  float: left;
}

.invite-friends-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  padding-top: 15px;
  margin-bottom: 2px;
}

@media (min-width: 992px) {
  .invite-friends-name {
    padding-top: 15px;
  }
}

.invite-friends-location {
  font-size: 13px;
  color: #aeaeae;
}

/*----header icons--------*/
.header-upload {
  float: right;
  font-size: 32px;
  color: #fff;
  padding: 13px 8px;
  margin-right: 17px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button.header-upload {
  background: none;
  border: none;
  padding: 15px 11px 11px 11px;
}

@media (min-width: 768px) {
  .header-upload {
    height: 74px;
    font-size: 34px;
    padding-top: 22px;
    margin-right: 11px;
    padding: 22px 11px 11px 11px;
    /*background-color: rgba(0, 0, 0, 0.2);*/
  }
}
.header-notifications {
  float: right;
  font-size: 19px;
  color: #fff;
  margin: 18px 15px 0;
  cursor: pointer;
}

@media (min-width: 992px) {
  .header-notifications {
    font-size: 30px;
    margin: 22px 30px 0 0;
  }
}

.header-stats {
  float: right;
  width: 17px;
  height: 20px;
  margin: 17px 6px 0 0;
  background-image: url(../images/sprite.png);
  background-repeat: no-repeat;
  background-size: 200px 75px;
  background-position: -134px 0px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .header-stats {
    width: 24px;
    height: 32px;
    margin: 21px 29px 0 0;
    background-position: -110px 0px;
  }
}

.header-num {
  float: right;
  min-width: 28px;
  height: 29px;
  line-height: 20px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  border: 3px solid #fff;
  padding: 2px 4px;
  margin: 13px 20px 0 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .header-num {
    min-width: 32px;
    height: 32px;
    line-height: 22px;
    font-size: 12px;
    margin: 22px 15px 0 0;
  }
}
@media (max-width: 767px) {
  .header-num {
    margin-right: 12px;
  }
  .header-fb-invite {
    display: none;
  }
}

.header-num-container {
  float: right;
  padding: 11px 11px;
  margin-right: 8px;
}

.header-num-mods {
  height: 34px;
  min-width: 34px;
  font-size: 12px;
  line-height: 25px;
  margin: 0 auto;
  float: none;
}

@media (min-width: 768px) {
  .header-num-container {
    margin-top: 0;
    margin-right: 11px;
    padding: 21px 11px 11px;
  }
}

.header-fb-invite,
.header-fb-invite:hover {
  float: right;
  line-height: 20px;
  font-size: 8px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#80dd2d+0,93eb44+100 */
  background: #80dd2d; /* Old browsers */
  background: -moz-linear-gradient(
    left,
    #80dd2d 0%,
    #93eb44 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    #80dd2d 0%,
    #93eb44 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    #80dd2d 0%,
    #93eb44 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80dd2d', endColorstr='#93eb44',GradientType=1 ); /* IE6-9 */
  padding: 7px 14px 5px 9px;
  margin: 11px 9px 0 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  margin: 11px 19px 0 0;
}

.header-top a.header-fb-invite:not([href]) {
  color: #fff !important;
}

@media (min-width: 375px) {
  .header-fb-invite,
  .header-fb-invite:hover {
    font-size: 12px;
    margin: 11px 19px 0 0;
  }
}

.header-fb-invite i {
  font-size: 15px;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

@media (min-width: 992px) {
  .header-fb-invite,
  .header-fb-invite:hover {
    margin: 21px 30px 0 0;
  }
}

@media (max-width: 768px) {
  .coolpix-popup {
    padding: 0;
  }
  .coolpix-popup-box {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    height: 100%;
  }
  .coolpix-popup-box .panel-heading {
    display: none;
  }
  .coolpix-popup-box > .panel-body {
    padding: 0;
    height: 100%;
  }
  .photo-box {
    width: 100%;
  }
  .photo-box label {
    border: 0 !important;
  }
  .coolpix-popup-box .form-fields {
    position: absolute;
    bottom: 20px;
    left: 3%;
  }
  .coolpix-popup-box .upload-title-error {
    background: #fff;
    opacity: 0.8;
    border-radius: 4px;
    float: left;
    padding: 0 10px;
  }
  .coolpix-popup-box .fa.fa-camera {
    opacity: 0.01;
  }
  .coolpix-popup-inputbox-buttons {
    clear: both;
  }
  header .container {
    margin: 0 auto;
  }
}

.display_user {
  position: absolute !important;
  margin: 0 !important;
  z-index: 7 !important;
  padding: 0px !important;
  bottom: 0 !important;
  background: none !important;
  top: 33vh !important;
  height: 50px !important;
  left: calc(50% - 600px + 50vh) !important;
  display: block !important;
  text-align: left !important;
  font-weight: 200 !important;
  font-size: 13px !important;
}

@media (min-width: 992px) and (max-width: 1284px) {
  #image-carousel-desktop li.active {
    left: 28px;
  }
  .desktop-gallery-holder .image-title,
  .display_user,
  .give-your-rating,
  ul#bubble-rating,
  .bubble-rating {
    left: 389px !important;
  }
}

.display_user span {
  color: #8de73d !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.display_user::after {
  display: block !important;
  content: " " !important;
  position: absolute !important;
  top: 6vh !important;
  left: 0px !important;
  height: 2px !important;
  width: 300px !important;
  background: linear-gradient(90deg, #ddd, #eee) !important;
}

/* Login Popup*/
#sharecont.login-popup .inn {
  background-color: #fff;
  border-radius: 8px;
  color: #555;
  overflow: hidden;
}

#sharecont.login-popup-dark .inn {
  background-color: transparent;
  color: white;
}

@media (max-width: 768px) {
  #sharecont.login-popup {
    width: 400px;
    max-width: 90%;
    top: 16vh;
    margin-bottom: 16vh;
    left: 50%;
    transform: translateX(-50%);
  }
}

#sharecont img {
  max-width: 100%;
  height: auto !important;
}

#sharecont .login-popup-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 15px;
}

#sharecont.login-popup-dark .login-popup-title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-top: 20px;
}

#sharecont .but.big {
  font-size: 17px;
  padding: 15px 37px 17px;
}

#sharecont .but.big.blue {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 300px;
  font-weight: 600;
}

#sharecont .but.big.blue i.fa {
  font-size: 2em;
  vertical-align: -3px;
  margin-right: 3px;
}

/* Footer */
.footer a {
  color: inherit;
}

/* Privacy Policy pop-up */
.fancybox-privacy-policy .fancybox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  z-index: 8040;
  background-position: -11px -9px;
}

.fancybox-privacy-policy .fancybox-outer {
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hidden-md-up {
    visibility: hidden;
  }
}

/* === Sharecont popup BEGIN === */
#toast {
  z-index: 99999999;
  position: absolute;
  left: 50%;
  top: 42%;
  color: #fff;
  transform: translateX(-50%);
  padding: 3vw 6vw;
  background-color: RGB(0, 0, 0);
  background-color: RGBA(0, 0, 0, 0.6);
  border-radius: 10px;
  font-weight: 600;
  display: none;
  opacity: 0;
  transition: 0.3s;
}
#sharecont.no-more-images.login-popup-dark .inn {
  background-color: #fff;
  border-radius: 10px;
  max-width: 465px;
  width: 100%;
  height: 336px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.no-more-images .inn-center img {
  display: block;
  margin: 0 auto 20px auto;
}
.no-more-images .inn-center {
  color: #313131;
  font-size: 20px;
  font-weight: 700;
}
#share_overlay {
  display: none;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
}
#sharecont {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 500px;
  height: 348px;
}
#sharecont .inn {
  padding: 30px;
  background: #5c5c5c;
  color: #fff;
  border-radius: 7px;
}
#sharecont a.cls {
  position: absolute;
  top: 3px;
  right: 8px;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
}
#sharecont p {
  font-size: 17px;
  font-family: "Inter", sans-serif;
  text-align: center;
}
#sharecont p.small {
  font-size: 70%;
  color: rgba(255, 255, 255, 0.5);
}
#sharecont p.b {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 25px;
  margin-top: 20px;
}
#sharecont .share-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
#sharecont .share-copy {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-right: 4%;
  border: 1px dashed #fff;
  border-radius: 4px;
  padding: 4px;
}
#sharecont .share-copy input {
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 13px;
  color: #d7d7d7;
  width: 100%;
  padding-right: 15px;
}
#sharecont .share-copy button {
  color: #585858 !important;
  background: #fff !important;
  border: 1px solid #fff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 12px !important;
  width: 61px;
  padding: 4px 0;
  outline-color: #fff !important;
}
#sharecont button {
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #92d754;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  width: 40%;
  padding: 10px 0;
  text-transform: capitalize;
  outline: none;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#80dd2d+0,93eb44+100 */
  background: #80dd2d; /* Old browsers */
  background: -moz-linear-gradient(
    left,
    #80dd2d 0%,
    #93eb44 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    #80dd2d 0%,
    #93eb44 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    #80dd2d 0%,
    #93eb44 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80dd2d', endColorstr='#93eb44',GradientType=1 ); /* IE6-9 */
}
#sharecont .imgcont {
  clear: both;
  margin-top: 15px;
}
#sharecont .imgcont img {
  width: 100%;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #sharecont .share-actions {
    flex-direction: column;
  }
  #sharecont .share-copy {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  #sharecont button {
    width: 100%;
  }
  #sharecont .inn {
    padding: 20px;
  }
  #sharecont {
    left: 10px;
    top: 10px;
    right: 10px;
    width: auto;
    margin-left: 0;
  }
  #sharecont .imgcont img {
    width: auto;
    display: block;
    margin: 0 auto;
  }
}
/* === Sharecont popup END === */

.fancybox-overlay {
  z-index: 9999;
}

/*====================================
=            Desktop grid            =
====================================*/

.desktop-grid {
  padding-bottom: 25px;
}

.desktop-grid__container {
  padding: 0 15px !important;
}

.desktop-grid__head {
  color: #313131;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 32px;
  text-align: center;
}

.shared-bookmark .desktop-grid__head {
  margin-top: 30px;
}

#desktop-grid-items {
  margin-left: -10px;
  margin-right: -10px;
}

.desktop-grid__item {
  margin-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.desktop-grid__wrap {
  background-color: #fff;
  height: 416px;
  min-height: 416px;
  padding: 5px;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .desktop-grid__wrap {
    height: 540px;
  }
}

@media screen and (max-width: 600px) {
  .desktop-grid__item {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

.desktop-grid__photo {
  border-radius: 8px;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

@keyframes photoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.desktop-grid__photo {
  animation: photoFadeIn 1s ease;
}

.desktop-grid__text {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.8+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-9 */
  border-radius: 8px;
  bottom: 5px;
  color: #ccc;
  left: 5px;
  position: absolute;
  right: 5px;
  padding: 84px 20px 20px;
  pointer-events: none;
}

.desktop-grid__title {
  color: #fff;
  font-style: 14px;
  font-weight: 600;
}

.desktop-grid__post {
  font-size: 11px;
}

.desktop-grid__post span {
  color: #1db372;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .desktop-grid__container {
    margin: 0 auto !important;
    padding: 0 !important;
    width: 1185px !important;
  }
}

.load {
  width: 100px;
  height: 60px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHdpZHRoPSI0MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA0MCA0MCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3BhY2U9InByZXNlcnZlIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjEuNDE0MjE7IiB4PSIwcHgiIHk9IjBweCI+CiAgICA8ZGVmcz4KICAgICAgICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBWwogICAgICAgICAgICBALXdlYmtpdC1rZXlmcmFtZXMgc3BpbiB7CiAgICAgICAgICAgICAgZnJvbSB7CiAgICAgICAgICAgICAgICAtd2Via2l0LXRyYW5zZm9ybTogcm90YXRlKDBkZWcpCiAgICAgICAgICAgICAgfQogICAgICAgICAgICAgIHRvIHsKICAgICAgICAgICAgICAgIC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoLTM1OWRlZykKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgICAgQGtleWZyYW1lcyBzcGluIHsKICAgICAgICAgICAgICBmcm9tIHsKICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDBkZWcpCiAgICAgICAgICAgICAgfQogICAgICAgICAgICAgIHRvIHsKICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKC0zNTlkZWcpCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICAgIHN2ZyB7CiAgICAgICAgICAgICAgICAtd2Via2l0LXRyYW5zZm9ybS1vcmlnaW46IDUwJSA1MCU7CiAgICAgICAgICAgICAgICAtd2Via2l0LWFuaW1hdGlvbjogc3BpbiAxLjVzIGxpbmVhciBpbmZpbml0ZTsKICAgICAgICAgICAgICAgIC13ZWJraXQtYmFja2ZhY2UtdmlzaWJpbGl0eTogaGlkZGVuOwogICAgICAgICAgICAgICAgYW5pbWF0aW9uOiBzcGluIDEuNXMgbGluZWFyIGluZmluaXRlOwogICAgICAgICAgICB9CiAgICAgICAgXV0+PC9zdHlsZT4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJvdXRlciI+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMCwwQzIyLjIwNTgsMCAyMy45OTM5LDEuNzg4MTMgMjMuOTkzOSwzLjk5MzlDMjMuOTkzOSw2LjE5OTY4IDIyLjIwNTgsNy45ODc4MSAyMCw3Ljk4NzgxQzE3Ljc5NDIsNy45ODc4MSAxNi4wMDYxLDYuMTk5NjggMTYuMDA2MSwzLjk5MzlDMTYuMDA2MSwxLjc4ODEzIDE3Ljc5NDIsMCAyMCwwWiIgc3R5bGU9ImZpbGw6YmxhY2s7Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxnPgogICAgICAgICAgICA8cGF0aCBkPSJNNS44NTc4Niw1Ljg1Nzg2QzcuNDE3NTgsNC4yOTgxNSA5Ljk0NjM4LDQuMjk4MTUgMTEuNTA2MSw1Ljg1Nzg2QzEzLjA2NTgsNy40MTc1OCAxMy4wNjU4LDkuOTQ2MzggMTEuNTA2MSwxMS41MDYxQzkuOTQ2MzgsMTMuMDY1OCA3LjQxNzU4LDEzLjA2NTggNS44NTc4NiwxMS41MDYxQzQuMjk4MTUsOS45NDYzOCA0LjI5ODE1LDcuNDE3NTggNS44NTc4Niw1Ljg1Nzg2WiIgc3R5bGU9ImZpbGw6cmdiKDIxMCwyMTAsMjEwKTsiLz4KICAgICAgICA8L2c+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMCwzMi4wMTIyQzIyLjIwNTgsMzIuMDEyMiAyMy45OTM5LDMzLjgwMDMgMjMuOTkzOSwzNi4wMDYxQzIzLjk5MzksMzguMjExOSAyMi4yMDU4LDQwIDIwLDQwQzE3Ljc5NDIsNDAgMTYuMDA2MSwzOC4yMTE5IDE2LjAwNjEsMzYuMDA2MUMxNi4wMDYxLDMzLjgwMDMgMTcuNzk0MiwzMi4wMTIyIDIwLDMyLjAxMjJaIiBzdHlsZT0iZmlsbDpyZ2IoMTMwLDEzMCwxMzApOyIvPgogICAgICAgIDwvZz4KICAgICAgICA8Zz4KICAgICAgICAgICAgPHBhdGggZD0iTTI4LjQ5MzksMjguNDkzOUMzMC4wNTM2LDI2LjkzNDIgMzIuNTgyNCwyNi45MzQyIDM0LjE0MjEsMjguNDkzOUMzNS43MDE5LDMwLjA1MzYgMzUuNzAxOSwzMi41ODI0IDM0LjE0MjEsMzQuMTQyMUMzMi41ODI0LDM1LjcwMTkgMzAuMDUzNiwzNS43MDE5IDI4LjQ5MzksMzQuMTQyMUMyNi45MzQyLDMyLjU4MjQgMjYuOTM0MiwzMC4wNTM2IDI4LjQ5MzksMjguNDkzOVoiIHN0eWxlPSJmaWxsOnJnYigxMDEsMTAxLDEwMSk7Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxnPgogICAgICAgICAgICA8cGF0aCBkPSJNMy45OTM5LDE2LjAwNjFDNi4xOTk2OCwxNi4wMDYxIDcuOTg3ODEsMTcuNzk0MiA3Ljk4NzgxLDIwQzcuOTg3ODEsMjIuMjA1OCA2LjE5OTY4LDIzLjk5MzkgMy45OTM5LDIzLjk5MzlDMS43ODgxMywyMy45OTM5IDAsMjIuMjA1OCAwLDIwQzAsMTcuNzk0MiAxLjc4ODEzLDE2LjAwNjEgMy45OTM5LDE2LjAwNjFaIiBzdHlsZT0iZmlsbDpyZ2IoMTg3LDE4NywxODcpOyIvPgogICAgICAgIDwvZz4KICAgICAgICA8Zz4KICAgICAgICAgICAgPHBhdGggZD0iTTUuODU3ODYsMjguNDkzOUM3LjQxNzU4LDI2LjkzNDIgOS45NDYzOCwyNi45MzQyIDExLjUwNjEsMjguNDkzOUMxMy4wNjU4LDMwLjA1MzYgMTMuMDY1OCwzMi41ODI0IDExLjUwNjEsMzQuMTQyMUM5Ljk0NjM4LDM1LjcwMTkgNy40MTc1OCwzNS43MDE5IDUuODU3ODYsMzQuMTQyMUM0LjI5ODE1LDMyLjU4MjQgNC4yOTgxNSwzMC4wNTM2IDUuODU3ODYsMjguNDkzOVoiIHN0eWxlPSJmaWxsOnJnYigxNjQsMTY0LDE2NCk7Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxnPgogICAgICAgICAgICA8cGF0aCBkPSJNMzYuMDA2MSwxNi4wMDYxQzM4LjIxMTksMTYuMDA2MSA0MCwxNy43OTQyIDQwLDIwQzQwLDIyLjIwNTggMzguMjExOSwyMy45OTM5IDM2LjAwNjEsMjMuOTkzOUMzMy44MDAzLDIzLjk5MzkgMzIuMDEyMiwyMi4yMDU4IDMyLjAxMjIsMjBDMzIuMDEyMiwxNy43OTQyIDMzLjgwMDMsMTYuMDA2MSAzNi4wMDYxLDE2LjAwNjFaIiBzdHlsZT0iZmlsbDpyZ2IoNzQsNzQsNzQpOyIvPgogICAgICAgIDwvZz4KICAgICAgICA8Zz4KICAgICAgICAgICAgPHBhdGggZD0iTTI4LjQ5MzksNS44NTc4NkMzMC4wNTM2LDQuMjk4MTUgMzIuNTgyNCw0LjI5ODE1IDM0LjE0MjEsNS44NTc4NkMzNS43MDE5LDcuNDE3NTggMzUuNzAxOSw5Ljk0NjM4IDM0LjE0MjEsMTEuNTA2MUMzMi41ODI0LDEzLjA2NTggMzAuMDUzNiwxMy4wNjU4IDI4LjQ5MzksMTEuNTA2MUMyNi45MzQyLDkuOTQ2MzggMjYuOTM0Miw3LjQxNzU4IDI4LjQ5MzksNS44NTc4NloiIHN0eWxlPSJmaWxsOnJnYig1MCw1MCw1MCk7Ii8+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K");
  background-position: center bottom;
  background-repeat: no-repeat;
  text-align: center;
  position: fixed;
  top: 77%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.load.desktop-grid-loading {
  display: block;
}

.pager {
  width: 30px;
  height: 30px;
  text-align: center;
  position: fixed;
  top: 75%;
  left: 80%;
  display: none !important;
  border: 1px solid red;
}

/*=====  End of Desktop grid  ======*/
.single-photo-external-link {
  max-width: 180px;
  overflow: hidden;
  position: relative;
}
.single-photo-external-link a svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
}
.single-photo-external-link:after {
  content: "...";
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  background: #fff;
  width: 15px;
  padding-left: 4px;
  height: 100%;
}
#copyClipboard {
  max-width: 192px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 13px;
  line-height: 19px;
}
.single-photo-footer--desktop {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/*  hide Header*/
header.tt_hide {
  opacity: 0;
  pointer-events: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
header {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/*====================================
=             Hero block             =
====================================*/
.hero {
  max-width: 100%;
  padding: 80px 20px;
}
.hero__title,
.hero__text {
  color: inherit;
  text-align: center;
}
.hero__title {
  /*color:  #80dd2d;*/
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
}
.hero__text {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 50px;
}
.hero__search {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 640px;
}

.ui-widget.ui-widget-content {
  /*border: 1px solid #80dd2d;*/
  border-radius: 0 0 6px 6px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}
.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 4px 10px;
  font-size: 14px;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background-color: #eaeaea;
  border-color: #eaeaea;
  border-left-color: #c5c5c5;
  border-right-color: #c5c5c5;
  color: #333;
}

@media screen and (max-width: 991px) {
  .hero__title {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 20px;
  }
  .hero__title {
    /*font-size: 30px;*/
    margin-left: auto;
    margin-right: auto;
    max-width: 60vw;
    font-weight: 700;
    display: none;
  }
  .search-box {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .hero__title {
    font-size: 32px;
    max-width: 370px;
    margin-top: 0;
  }
}
/*=====  End of Hero block  ======*/

.but.green.login-btn {
  display: flex;
  align-items: center;
  background: #090a0a;
  border-color: #090a0a;
  color: #fff;
  float: right;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin: 15px;
  padding: 8px 17px;
  width: auto;
  transition: none;
  text-decoration: none;
}
.but.green.login-btn svg {
  margin-right: 10px;
}
.but.green.login-btn:hover {
  color: #fff;
}
@media screen and (min-width: 601px) and (max-width: 767px) {
  .but.green.login-btn {
    margin: 5px 15px;
  }
}
@media screen and (max-width: 768px) {
  .but.green.login-btn svg {
    margin-right: 0;
  }
  .login-tooltip {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .but.green.login-btn {
    color: #fff;
    width: auto;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    margin-top: 6px;
    margin-right: 0;
  }
}
@media screen and (max-width: 319px) {
  .but.green.login-btn {
    display: none;
  }
}
.but.green.login-btn + .logo {
  margin-left: 0;
}

.but.green.login-btn:before {
  padding: 8px 20px;
}
@media screen and (max-width: 600px) {
  .but.green.login-btn:before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .but.green.login-btn.preview2 {
    margin: 15px 0 15px 15px;
    border: 2px solid #fff;
  }
}

@media screen and (max-width: 600px) {
  .but.green.login-btn.preview2 {
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
  }
}

@media screen and (max-width: 768px) {
  .but.green.login-btn.preview2 {
    border: none;
    background-color: #000;
    padding: 5px 10px 5px 12px;
  }
  .auth-mobile {
    text-indent: -999px;
    display: flex;
    align-items: center;
  }
  /*.but.auth-mobile:after {*/
  /*  content: "";*/
  /*  display: block;*/
  /*  width: 18px;*/
  /*  height: 18px;*/
  /*  background-image: url("../images/google.svg");*/
  /*  background-repeat: no-repeat;*/
  /*  color: #fff;*/
  /*  font-size: 24px;*/
  /*}*/
}

/*====================================
=           Masthead block           =
====================================*/
.masthead {
  align-items: center;
  background: url(../images/masthead_small.webp) no-repeat top center / cover;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 700px;
  position: relative;
}
.masthead::before,
.masthead::after {
  background-color: #0d0d0d;
  background-color: rgba(13, 13, 13, 0.5);
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  user-select: none;
  width: 100%;
}

.masthead::before {
  height: 100%;
}
.masthead::after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.5+0,0+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

  height: 200px;
}
.masthead__body {
  position: relative;
  z-index: 1;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .masthead--mobile {
    min-height: 500px;
  }
  .masthead:not(.masthead--mobile) {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .masthead--mobile {
    display: block;
    height: 100vh;
  }
  .masthead--mobile .hero__search {
    float: none;
  }
}
/*=====  End of Masthead block  ======*/

.mobile-gallery-shown .mobile-gallery {
  display: block !important;
}

.overlay-disabled {
  display: none;
}

.overlay-not-visible {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.overlay-visible {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.popup-disabled {
  display: none;
}

.popup-not-visible {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-visible {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.overhidden {
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 14;
  display: none;
}

.overhidden.active {
  display: block;
}

.uploader-plus {
  width: 38px;
  height: 38px;
  background-color: #1db372;
  border-radius: 5px;
  margin: 21px 2px 11px 20px;
  float: right;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 28px;
  color: #fff;
  padding: 0;
  font-weight: 600;
}

.uploads-overlay {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 15;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.uploads-overlay.active {
  display: flex;
}

.uploads-start-pop-up {
  width: 510px;
  max-height: 830px;
  min-height: 410px;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #fff;
}

.uploads-start-pop-up.uploads-status {
  height: 785px;
  max-height: 100%;
}

.uploads-start-pop-up__container {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.uploads-start-title {
  color: #090a0a;
  font-size: 24px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 19px;
  font-family: "Inter", sans-serif;
}

.uploads-start-close {
  position: absolute;
  right: -16px;
  top: -20px;
  padding: 10px;
  cursor: pointer;
}
.uploads-mobile-start-close {
  position: absolute;
  right: 5px;
  top: -45px;
  padding: 12px;
}

.uploads-start-area {
  display: none;
  border-radius: 10px;
  height: 100%;
  background-color: #f6f6f6;
}

.uploads-start-area.active {
  display: block;
}

.uploads-start-area__container {
  border-radius: 10px;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploads-start-area__area {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("/core/public/img/uploads-image2.png");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.uploads-start-area__container.active {
  opacity: 0.5;
}

.uploads-image-ready {
  display: none;
  margin: 0 -30px -30px;
  background-color: #e5e5e5;
  padding: 30px 10px 0 10px;
  flex-grow: 1;
}

.uploads-image-ready.active {
  display: flex;
  flex-direction: column;
}

.uploads-image-ready__images-list {
  background-color: #e5e5e5;
  /* flex-shrink: 1; */
  flex-grow: 1;
  flex-basis: 1px;
  margin-bottom: 5px;
  /* height: 580px; */
  /* overflow-y: scroll; */
  /* overflow-x: hidden; */
  position: relative;
}

.uploads-image-ready__images-list::-webkit-scrollbar {
  width: 5px;
}

.uploads-image-ready__images-list::-webkit-scrollbar-track {
  background-color: transparent;
}

.uploads-image-ready__images-list::-webkit-scrollbar-thumb {
  background-color: #a0a0a0;
  border-radius: 100px;
}

.uploads-image-ready__images-list.version-2 {
  display: flex;
  flex-wrap: wrap;
}

.uploads-image-ready__images-list.version-2 .uploads-rectangle-element {
  /* width: calc(50% - 20px);
  height: 255px; */

  position: absolute;
  inset: 0;
}

.uploads-image-ready__images-list.version-2 .uploads-rectangle-element__first {
  height: 190px;
}

.uploads-image-ready__images-list.version-2 .error-container-block__first {
  height: 190px;
}

.uploads-image-ready__images-list.version-2 .error-container-block__first img {
  margin-top: 20px;
  height: calc(64% - 25px);
}

.uploads-image-ready__images-list.version-2 .error-description {
  font-size: 13px;
}

.uploads-image-ready__images-list.version-2 .commit-input {
  height: 42px;
}

.uploads-image-ready__footer {
  display: flex;
  flex-direction: column;
  margin: 0 -10px 0;
  padding: 20px 30px 20px;
  background: white;
}

.uploads-image-ready__control-panel {
  /* width: 100%; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.add-more-image {
  color: #1db372;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background-color: unset;
  outline: none;
  padding: 0;
  text-transform: uppercase;
}

.uploads-image-continue {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  outline: none;
  border: none;
  background-color: #1db372;
  padding: 9px 49px;
  border-radius: 4px;
  margin-left: 40px;
}
.uploads-image-continue[disabled] {
  background-color: #cfcfcf;
}

.uploads-rectangle-element {
  width: 100%;
  margin: 0 auto 15px auto;
}

.error-container-block__first {
  position: relative;
  height: 269px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background-color: #c6c8ca;
}

.error-container-block__first img {
  height: calc(85% - 25px);
  margin: 25px auto 0 auto;
  display: block;
}

.upload-action-buttons {
  display: flex;
  justify-content: center;
}

.delete-button {
  background-color: #d72828;
  color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 11px 29px;
  display: block;
  margin: 0 7px;
}

.retry-button {
  background-color: #1db372;
  color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 11px 29px;
  display: block;
  margin: 0 7px;
}

.error-description {
  margin-top: 13px;
  color: #000;
  text-align: center;
}

.uploads-rectangle-element__first {
  /* height: 269px; */
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.upload-media-container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.uploads-rectangle-element__first:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

/*.uploads-rectangle-element__first::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: inherit;
  filter: blur(10px);
}*/

.uploads-rectangle-element__last {
  background-color: #fff;
  padding: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.upload-progress-container {
  flex-shrink: 0;
  flex-grow: 0;
  background-color: transparent;
  width: 100%;
  height: 46px;
  padding: 16px 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.commit-input {
  width: 100%;
  height: 48px;
  padding: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(221, 221, 221);
  border-radius: 6px;
  outline: none;
}

.input-for-all {
  margin-bottom: 21px;
}

.commit-input::placeholder {
  font-size: 15px;
  color: #555;
}

.image-inner-container {
  display: block;
  width: 100%;
  height: calc(100% - 46px);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.image-inner-container::after {
  content: "";
  display: block;
  position: absolute;
  inset: -10px;
  margin: auto;
  background: inherit;
  filter: blur(10px);
  z-index: 1;
}

.inner-image {
  position: relative;
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
  object-position: center;
  object-fit: contain;
  /* border-radius: 10px; */
  z-index: 2;
}

.inner-video {
  display: block;
  max-width: 100%;
  max-height: calc(100% - 46px);
  height: auto;
  width: auto;
  /* margin: 0 auto; */
  /* position: relative; */
  object-position: center;
  object-fit: contain;
  border-radius: 10px;
  z-index: 2;
}

/* .upload-media-container__with-progress .inner-video {
  border-bottom-left-radius: 0; 
  border-bottom-right-radius: 0;
} */

.mobile-upload {
  width: 100%;
  height: 230px;
  padding-top: 50px;
  background-color: #fff;
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 15;
}

.mobile-upload.active {
  display: block;
}

.mobile-upload-title {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

.mobile-upload-icons {
  display: flex;
  justify-content: center;
}
.mobile-upload__cointainer {
  position: relative;
}
.select-photos {
  background-color: transparent;
  border: none;
  outline: none;
}

.select-photos[disabled] img {
  filter: grayscale(100%);
}

.icon-block {
  display: flex;
  flex-direction: column;
  margin-left: 25px;
}

.icon-block:first-child {
  margin-left: 0;
}

.icon-block span {
  text-align: center;
  font-size: 12px;
  color: #313131;
  margin-top: 6px;
}

.camera-block {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 15;
}

.camera-block.active {
  display: block;
}

.camera-block__container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.close-camera {
  position: absolute;
  right: 0;
  top: 0;
}

.camera-block-panel {
  width: 100%;
  height: 207px;
  background: linear-gradient(
    359deg,
    rgba(0, 0, 0, 0.74902) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  left: 0;
  bottom: 0;
}

.button-reset {
  background-color: transparent;
  border: none;
  outline: none;
}
.camera-picture {
  position: absolute;
  left: 10%;
  bottom: 8%;
}

.camera-touch {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  margin: auto;
}

.camera-touch::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
}

.camera-reset {
  position: absolute;
  right: 10%;
  bottom: 8%;
}

.image-title-input {
  width: calc(100% - 60px);
  height: 40px;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 4px;
}

.image-title-input::placeholder {
  font-size: 13px;
  color: #878787;
}

.comment-go {
  max-width: 80px;
  min-width: 50px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 4px;
  background-color: #1db372;
  color: #fff;
  box-sizing: content-box;
  padding: 0 15px;
}
.comment-go[disabled] {
  background-color: #cfcfcf;
}

.comment-go.alert-color {
  background-color: #ffd55a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-color img {
  height: 20px;
}

.comment-block {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  flex-wrap: wrap;
  left: 0;
  bottom: 25px;
  padding: 0 40px;
  opacity: 0;
  visibility: hidden;
}

.comment-block.active {
  opacity: 1;
  visibility: visible;
}

.comment-block__hide {
  width: 100%;
  font-size: 11px;
  color: #ff2626;
  display: none;
  margin-top: 5px;
}

.comment-block__hide2 {
  width: 100%;
  font-size: 11px;
  color: #ff2626;
  display: block;
  margin-top: 5px;
}

.gallery-uploads-block {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  background-color: #fff;
  display: none;
}

.gallery-uploads-block.active {
  display: block;
}

.gallery-uploads-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-float-panel {
  width: 100%;
  height: 210px;
  /* outline: 1px solid #ff0000; */
  position: absolute;
  left: 0;
  bottom: 25px;
}

.uploads-image-container {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.uploads-image-container__scroll {
  width: 100%;
  display: flex;
  overflow-y: scroll;
  padding: 0 20px;
}

.upload-thumbnail {
  width: 65px;
  height: 80px;
  object-fit: cover;
  object-position: top center;
  margin-left: 5px;
  border-radius: 2px;
}

.upload-thumbnail:first-child {
  margin-left: 0;
}

.upload-thumbnail.active {
  border-style: solid;
  border-width: 2px;
  border-color: rgb(29, 179, 114);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.titles-block {
  margin-top: 15px;
}

.title-element-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  position: relative;
}

.error-tooltips {
  width: 222px;
  display: none;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 5px 10px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -42px;
  margin: auto;
}
.error-tooltips.active {
  display: block;
}
.error-tooltips__container {
  position: relative;
}

.error-tooltips__container::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-width: 10px;
  border-left-width: 10px;
  border-top: 10px solid black;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
}

.image-title-gallery {
  max-width: 100%;
  width: 100%;
  height: 40px;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

.image-title-gallery::placeholder {
  font-size: 13px;
  color: #878787;
}

.image-title-gallery[disabled="true"],
.image-title-gallery[disabled="disabled"],
.input-disabled {
  background-color: #000;
  color: #fff;
  opacity: 0.5;
}

img[src="/core/public/img/error.svg"] {
  object-fit: contain;
  object-position: center;
}

.preview-collection-image-container .error-message {
  position: absolute;
  bottom: 6px;
  left: 10px;
  right: 6px;
  /* width: calc(100% - 20px); */
  color: red;
  padding: 5px 0 0 0;
  font-size: 14px;
  background: white;
}

.status-message {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-left: solid gray;
  border-right: solid gray;
  border-bottom: solid gray;
  border-radius: 0 0 5px 5px;
  padding: 10px;
  font-size: 14px;
  background: white;
}

.status-message__error {
  color: red;
}
.status-message__success {
  color: green;
}

.delete-image {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #d72828;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 5px 7px 2px;
  display: block;
}

.delete-image svg {
  height: 22px;
  width: 22px;
}

.delete-image svg path {
  stroke: white;
  stroke-width: 38.6px;
}

img.error {
  padding: 20px;
  border: solid gray;
  position: relative;
}
img.upload-failed {
  /* border: solid gray; */
}

img.error:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "ddddd";
}

.image-title-gallery {
  display: none;
}
.image-title-gallery.active {
  display: block;
}

.invite-modal {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 22;
  display: none;
}

.invite-modal.active {
  display: block;
}

.invite-modal__container {
  width: 100%;
  height: 100%;
  position: relative;
}

.invite-main-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.invite-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  margin-top: 10px;
}

.invite-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  text-align: center;
}

.invite-friends {
  background-color: #fff;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(29, 179, 114);
  border-radius: 4px;
  color: #1db372;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 11px 46px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.invite-skip {
  font-size: 13px;
  color: #1db372;
}

.uploads-popup-progress {
  width: 100%;
  height: 14px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 14px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.uploads-popup-progress__res {
  width: 0;
  height: 100%;
  background-color: #1db372;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.uploads-popup-progress__res.error {
  background-color: #ff0000;
}

.uploads-popup-progress__percent {
  position: relative;
  z-index: 2;
}

.message-result-block {
  width: 100%;
  margin: 0 auto;
}

.message-result-block-mobile {
  width: auto;
  margin-bottom: 15px;
}

.message-result-block__success {
  background-color: #91e29a;
  border-radius: 6px;
  color: #155724;
  font-size: 14px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.message-result-block__success img,
.message-result-block__alert img {
  height: 30px;
}

.message-result-block__alert {
  background-color: #ffd55a;
  border-radius: 6px;
  color: #721c24;
  font-size: 14px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.message-result-block__alert.processing-notification {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 4px 20px;
  border-radius: 0;
}

.mobile-progress-block {
  width: calc(100% - 40px);
  height: 14px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 14px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  margin: 10px auto 0 auto;
}

.mobile-progress-block__res {
  width: 0;
  height: 100%;
  background-color: #1db372;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.mobile-progress-block__percent {
  position: relative;
  z-index: 2;
}

.mobile-progress-block__res.error {
  background-color: #ff0000;
}

@media screen and (max-width: 991.99px) {
  .uploads-start-pop-up {
    width: 485px;
  }
}

@media screen and (max-width: 768px) {
  .uploader-plus {
    margin-top: 10px;
    margin-right: 60px;
  }
  .uploads-start-pop-up {
    width: 390px;
  }
}

.uploads-start-pop-up {
  display: none;
}

.uploads-start-pop-up.active {
  display: block;
  /* flex-direction: column; */
}
.image-title__title {
  margin-bottom: 15px;
}
.image-title__options {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.subscribe-float {
  position: absolute;
  right: 10px;
  bottom: 22px;
  z-index: 4;
}
.subscribe-click {
  color: #fff;
  padding: 8px 10px;
  background-color: #1db372;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 1.2s ease-in-out;
}
.subscribe-click.active {
  background-color: #a5a6a6;
  text-decoration: none;
}
.subscribe-click:hover {
  color: #fff;
  text-decoration: none;
}
.subscribe-click:focus {
  color: #fff;
  text-decoration: none;
}
.single-photo-rating {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.give-your-rating {
  display: block;
  text-align: left;
}
.bubble-rating {
  padding-top: 5px;
}
.subscribe-popup-desktop {
  position: absolute;
  right: 25px;
  bottom: 41px;
  z-index: 9000;
}
.clipboard {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.copy-input {
  height: 31px;
  border: none;
  padding: 0 10px;
  outline: none;
}
.copy-input:focus {
  outline: none;
}
.copy-btn {
  height: 34px;
  width: 34px;
  border: none;
  padding: 6px 8px 2px 8px;
  border-left: 1px solid #ddd;
}

/*new landing page*/
.grid-item-container {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.preview-grid-item {
  width: calc(33.33333% - 15px);
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0px 5px 30px 0px #0000000d;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
}
.preview-grid-item__images {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .preview-item-container {
    justify-content: flex-start;
  }
  .preview-grid-item {
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}
.grid-image-double-1 {
  width: calc(100% - 135px);
  height: 290px;
}
.grid-image-double-2 {
  width: 130px;
  height: 290px;
  margin-left: 5px;
}
.grid-image-single {
  width: 100%;
  height: 290px;
}
.grid-image-twins {
  width: calc(50% - 2px);
  height: 290px;
}
.grid-image-twins:last-child {
  margin-left: 5px;
}
.grid-image-double-2 img {
  width: 100%;
  height: 142px;
  display: block;
  border-radius: 8px;
}
.grid-image-double-2 img:first-child {
  margin-bottom: 5px;
}
.grid-image-single img,
.grid-image-twins img,
.grid-image-double-1 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}
.preview-grid-item__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-top: 10px;
  color: #333;
}
.preview-grid-item__desc {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #878787;
  display: flex;
  align-items: center;
}
.preview-grid-item-ellipse {
  width: 6px;
  height: 6px;
  background-color: #878787;
  border-radius: 50%;
  margin: 0 7px;
}

@media screen and (max-width: 991.99px) {
  .grid-item-container {
    max-width: 875px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
  }
  .preview-grid-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .preview-grid-item {
    width: calc(50% - 5px);
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .grid-item-container {
    max-width: 450px;
  }
  .preview-grid-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/*new landing page end*/

/*photo collection*/
.photo-collection {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5 ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.photo-collection.is-active {
  opacity: 1;
  visibility: visible;
}
.photo-collection__container {
  background-color: #fff;
  width: 600px;
  height: 100%;
}
.left-right-space {
  padding-left: 15px;
  padding-right: 15px;
}
.photo-collection-head {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
}
.photo-collection-head__title {
  display: flex;
  align-items: center;
}
.invisible-button {
  padding: 0;
  outline: none;
  border: none;
  background-color: transparent;
}
.photo-collection-head__title span {
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
  color: #333;
  margin-left: 10px;
}
.photo-collection-add-button {
  background-color: transparent;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  border: 1px solid #1db372;
  color: #1db372;
  border-radius: 5px;
  padding: 7px 14px;
}
.photo-collection-add-button:disabled {
  border-color: #c1c1c1;
  color: #c1c1c1;
}
.photo-collection-panel {
  background-color: #1db372;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 14px;
  color: #fff;
}
.photo-collection-body {
  overflow: scroll;
  padding-top: 15px;
  height: calc(100% - 135px);
}
.photo-collection-body__container {
  /* height: 1000px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.photo-collection-body__container .item {
  width: 112px;
  margin-left: 5px;
}
.checkbox-rect input[type="checkbox"] {
  display: none;
}
.checkbox-rect input[type="checkbox"] + label {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.checkbox-rect input[type="checkbox"] + label img {
  display: block;
  max-width: 100%;
}
.checkbox-rect input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  box-shadow: 0px 4px 10px 0px #000026;
  border-radius: 2px;
  position: absolute;
  right: 7px;
  top: 7px;
  background: transparent;
}
.checkbox-rect input[type="checkbox"]:checked + label:before {
  content: "";
  width: 18px;
  height: 18px;
  border: unset;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: #1db372;
  box-shadow: unset;
}

.checkbox-rect input[type="checkbox"]:checked + label:after {
  content: "";
  right: 10px;
  top: 12px;
  width: 11px;
  height: 8px;
  background-image: url("/core/public/img/nice.svg");
  background-repeat: no-repeat;
  position: absolute;
}
@media screen and (max-width: 380px) {
  .photo-collection-body__container .item {
    width: calc(33% - 5px);
  }
}
/*photo collection end*/

/*preview-collection*/
.preview-collection {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s linear;
  opacity: 0;
  visibility: hidden;
}
.preview-collection.is-active {
  opacity: 1;
  visibility: visible;
}
.preview-collection__container {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
.preview-collection-head {
  padding-top: 21px;
  padding-bottom: 21px;
  display: flex;
  justify-content: space-between;
}
.upload-collection {
  width: 35px;
  height: 35px;
  background-color: #1db372;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 28px;
  color: #fff;
  padding: 0;
}
.preview-collection-body {
  /* height: auto; */
  flex: auto;
  /* flex-shrink: 1; */
  /* flex-grow: 1; */
  overflow-x: scroll;
}
.preview-collection-body__images .margin {
  display: block;
  width: 15px;
  height: 100%;
  flex: auto 1 0;
}
.preview-collection-body__images {
  height: 100%;
  margin-right: 15px;
  display: flex;
  margin-left: 15px;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
}
.preview-collection-image-container {
  /* width: 80vw; */
  /* max-width: calc((100vh - 208px) * 0.9); */
  /* flex: auto 1 0; */
  /* width: auto; */
  /* flex-shrink: 1; */
  /* flex-grow: 0; */
  /* height: 100%; */
  /* max-height: 100%; */
  /* margin-left: 15px; */
  position: relative;
  /* display: flex; */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}

.preview-collection-image {
  object-fit: cover;
  object-position: top center;
  border-radius: 5px;
  width: auto;
  height: auto;
  max-height: calc(100vh - 213px);
  max-width: calc(100vw - 33px);
}

.preview-collection-video {
  object-fit: contain;
  object-position: center;
  border-radius: 5px;
  width: auto;
  height: auto;
  max-height: calc(100vh - 213px);
  max-width: calc(100vw - 33px);
  /* max-width: 100%; */
  /* max-height: 100%; */
  /* min-width: 100%; */
  /* min-height: 100%; */
}

.preview-collection-body__finished .preview-collection-video {
  max-height: calc(100vh - 277px);
}

.preview-collection-body__finished .preview-collection-image {
  max-height: calc(100vh - 277px);
}

.preview-collection-image:last-child {
  /* margin-right: 15px; */
}
.preview-collection-footer {
  margin-top: 15px;
  margin-bottom: 15px;
}
.collection-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-size: 13px;
  line-height: 15px;
  color: #333;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  outline: none;
}
.collection-input::placeholder {
  color: #878787;
}
.preview-collection-buttons {
  display: flex;
}
.collection-retry {
  width: 100%;
  padding: 14px 10px 12px 10px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  background-color: lab(77 14.01 97.46);
  margin-top: 12px;
  margin-right: 16px;
}
.collection-submit {
  width: 100%;
  padding: 14px 10px 12px 10px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  background-color: #1db372;
  margin-top: 12px;
}
.collection-submit:disabled {
  background-color: #cfcfcf;
}
.progress-block {
  width: calc(100% - 30px);
  padding: 18px 18px 40px 18px;
  box-shadow: 0px 35px 100px 0px #00000066;
  background-color: #fff;
  border-radius: 8px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.progress-block.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(18px);
}
.progress-value-float {
  color: #1db372;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  position: absolute;
  left: 33%;
  bottom: -19px;
}
.progress-block__title {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.progress-block__line {
  position: relative;
}
progress.upload-progress-line {
  width: 100%;
  height: 12px;
  display: block;
  border-radius: 10px;
}
progress.upload-progress-line::-webkit-progress-bar {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

progress.upload-progress-line::-webkit-progress-value {
  background-color: #1db372;
  border-radius: 10px;
}
/*preview-collection*/

/*share block*/
.share-block {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 15;
  display: flex;
  align-items: flex-end;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.share-block.is-active {
  opacity: 1;
  visibility: visible;
}
.share-step-1 {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 15;
  margin: auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.share-step-1.is-active {
  opacity: 1;
  visibility: visible;
}
.star-block-1,
.star-block-2 {
  display: flex;
  justify-content: center;
}
.star-block-2 {
  margin-top: -45px;
}
.share-text {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.share-text__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 24px;
  margin-bottom: 10px;
}
.button-share {
  width: 80%;
  padding: 12px 10px 13px 10px;
  margin: 0 auto;
  background-color: #1db372;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  outline: none;
  border: none;
}
.button-share img {
  margin-right: 12px;
}
.button-share span {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
}
.share-link {
  width: 80%;
  margin: 0 auto;
  padding: 9px 10px 9px 15px;
  display: flex;
  justify-content: space-between;
  border: 2px dotted #a5a6a6;
  border-radius: 5px;
  margin-top: 20px;
}
.share-skip {
  color: #1db372;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 26px;
}
.share-step-2 {
  width: 100%;
  height: 210px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 14;
  margin: auto;
  background-color: #fff;
  padding-top: 35px;
  transition: all 0.5s linear;
  opacity: 0;
  visibility: hidden;
}
.share-step-2.is-active {
  opacity: 1;
  visibility: visible;
}
.share-step-2__title {
  font-size: 17px;
  line-height: 20px;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 21px;
}
.buttons-list {
  display: flex;
  justify-content: center;
}
.share-link-button {
  width: 25%;
  border: none;
  outline: none;
  background-color: transparent;
  margin-left: 15px;
}
.share-link-button:first-child {
  margin-left: 0;
}
.share-link-button img {
  margin-bottom: 5px;
}
.share-link-button span {
  font-size: 13px;
  line-height: 20px;
  color: #313131;
  text-align: center;
}
/*new content*/
.bg-almost-white {
  margin-top: 20px;
  background-color: #fffcfc;
  font-family: "Inter", sans-serif;
  color: #090a0a;
}
.shell {
  max-width: 1300px;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 0 auto;
  /* outline: 1px solid #ff0000; */
}
@media screen and (max-width: 992px) {
  .shell.full-screen {
    overflow-x: scroll;
    padding: 0;
  }
}
.main-caption {
  display: flex;
  align-items: center;
  padding-top: 101px;
  margin-bottom: 114px;
}
.main-caption__title {
  padding-right: 25px;
}
.main-caption__title,
.main-caption__image {
  width: 50%;
  position: relative;
}
.personal-title {
  font-size: 75px;
  font-weight: 800;
  line-height: 100%;
  color: #090a0a;
  margin-top: 0;
}
.personal-title span {
  color: #5a5a5a;
  font-size: 52px;
  font-weight: 800;
  line-height: 100%;
  display: block;
  margin-bottom: 10px;
}
.personal-title strong {
  background: linear-gradient(180deg, #22cd83 0%, #1db372 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.breadcrumbs {
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.breadcrumbs span {
  margin-left: 15px;
}
.breadcrumbs span:first-child {
  margin-left: 0;
}
button {
  transition: all 0.5s ease-in-out;
}
a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
  color: #fff;
}
.personal-desc {
  font-size: 18px;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 22px;
  color: #090a0a;
}
.personal-link {
  display: inline-block;
  background: #1db372;
  color: #fff;
  border-radius: 5px;
  padding: 12px 25px;
}
.personal-link:hover {
  background: #168756;
  color: #fff;
}
.main-caption__image img {
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 1110px) {
  .personal-title {
    font-size: 52px;
    line-height: 62px;
  }
}
@media screen and (max-width: 768px) {
  .main-caption {
    flex-wrap: wrap;
    padding-top: 0;
  }
  .main-caption__title {
    padding-right: 0;
  }
  .main-caption__image {
    margin-top: 25px;
  }
  .main-caption__title,
  .main-caption__image {
    width: 100%;
  }
  .breadcrumbs {
    margin-top: 22px;
    display: flex;
    justify-content: center;
  }
  .personal-title span {
    font-size: 35px;
    margin-bottom: 0;
  }
  .personal-title {
    font-size: 52px;
    text-align: center;
    margin-top: 25px;
  }
  .personal-desc {
    display: none;
  }
  .element-center {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .main-caption__image,
  .personal-desc {
    display: none;
  }
  .main-caption__title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 340px) {
  .personal-title {
    font-size: 44px;
    line-height: 100%;
  }
  .personal-title span {
    font-size: 33px;
    line-height: 100%;
  }
}

.tabs-panel {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  padding: 0 20px;
  background-color: #fff;
}
.tabs-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tabs-list li {
  margin-left: 30px;
}
.tabs-list li:first-child {
  margin-left: 0;
}
.tabs-list button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 22px 19px;
  font-size: 16px;
  line-height: 18px;
  color: #090a0a;
  font-weight: 500;
}
.tabs-list button.active,
.tabs-list button:hover {
  color: #1db372;
}
.tranding-searches {
  color: #1db372;
  border: 1px solid #1db372;
  border-radius: 5px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 9px 15px;
}
.tranding-searches:hover {
  background-color: #1db372;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .main-caption {
    margin-bottom: 30px;
  }
  .tabs-panel {
    border-radius: 0;
    overflow-y: scroll;
    border-left: transparent;
    border-right: transparent;
  }
  .tabs-panel::-webkit-scrollbar {
    display: none;
  }
  .tabs-list button,
  .tranding-searches {
    width: 200px;
  }
  .tabs-list li {
    margin-left: 0;
  }
  .tranding-searches {
    margin-left: 30px;
  }
}

.content-elements {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  transition: opacity 1.2s ease-in-out;
  column-gap: 26px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.content-elements.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.collection-element {
  width: calc(33% - 17px);
  /* margin-left: 30px; */
  margin-bottom: 32px;
  cursor: pointer;
}
.collection-element:nth-child(3n + 1) {
  margin-left: 0;
}
.collection-element__images {
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
}
.collection-element__info {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.group-titles_caption {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 5px;
}
.group-titles_desc {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: #090a0a;
}
.group-titles_desc span {
  color: #515252;
}
.group-titles_desc span:first-child {
  position: relative;
  padding-right: 10px;
}
.group-titles_desc span:first-child::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #090a0a;
  border-radius: 50%;
  position: absolute;
  right: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.rating-number {
  width: 38px;
  height: 38px;
  border: 1px solid #1db372;
  border-radius: 5px;
  color: #1db372;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 10px;
  background-color: rgba(29, 179, 114, 0.05);
}
.count-image-1 img {
  object-fit: cover;
  object-position: center;
  display: block;
  width: 100%;
  height: 100%;
}
.count-image-2 {
  display: flex;
  justify-content: space-between;
}
.count-image-2 img {
  width: calc(50% - 4px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.count-image-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.count-image-3 img {
  width: calc(50% - 4px);
  height: calc(50% - 4px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.count-image-3 img:first-child {
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.count-image-3 img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.count-image-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.count-image-4 img {
  width: calc(50% - 4px);
  height: calc(50% - 4px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.count-image-4 img:nth-last-child(-n + 2) {
  margin-top: 4px;
}
@media screen and (max-width: 992px) {
  .content-elements {
    max-width: 800px;
    width: 100%;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .collection-element {
    width: calc(50% - 17px);
    /* margin-left: 30px; */
  }
  .collection-element:nth-child(3n + 1) {
    /* margin-left: 30px; */
  }
  .collection-element:nth-child(2n + 1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .collection-element__images {
    height: 265px;
  }
}
@media screen and (max-width: 480px) {
  .collection-element {
    width: 100%;
    margin-left: 0;
  }
  .collection-element:nth-child(3n + 1) {
    margin-left: 0;
  }
  .group-titles_caption {
    font-size: 17px;
    line-height: 20px;
  }
  .group-titles_desc {
    font-size: 13px;
    line-height: 15px;
  }
}
.buttons-slider {
  padding: 0 40px 0 40px;
  border-bottom: 1px solid #cdcdcd;
  position: relative;
}
.buttons-slider__arrows {
  width: 33px;
  padding: 5px;
  position: absolute;
  top: 10px;
  z-index: 2;
  border: none;
  background-color: transparent;
}
.buttons-slider__left {
  left: 40px;
}
.buttons-slider__right {
  right: 40px;
}
.buttons-slider::before {
  content: "";
  display: block;
  width: 100px;
  height: 31px;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
  background: linear-gradient(
    90.71deg,
    #ffffff 43.58%,
    rgba(255, 255, 255, 0) 99.39%
  );
}
.buttons-slider::after {
  content: "";
  display: block;
  width: 100px;
  height: 31px;
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 1;
  background: linear-gradient(
    270deg,
    #ffffff 43.58%,
    rgba(255, 255, 255, 0) 99.39%
  );
}
.buttons-container {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  background-color: #fff;
  padding: 10px 28px 15px 28px;
}
.buttons-container button {
  font-size: 13px;
  line-height: 15px;
  padding: 7px 10px;
  background-color: #fff;
  border: 1px solid #bababa;
  border-radius: 5px;
  margin-left: 10px;
  flex-basis: content;
  flex-shrink: 0;
}
.buttons-container button:first-child {
  margin-left: 0;
}
.buttons-container::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .buttons-slider {
    padding-left: 15px;
    padding-right: 15px;
  }
  .buttons-container {
    padding-left: 0;
    padding-right: 0;
  }
  .buttons-slider__arrows {
    display: none;
  }
  .buttons-slider::before {
    content: none;
  }
  .buttons-slider::after {
    content: none;
  }
}
/*new pop-up*/
.collection-pop-up-wrapper {
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.3);
}
.collection-pop-up-wrapper.is-active {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.collection-pop-up-wrapper__container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.collection-pop-up-main {
  width: 950px;
  max-height: 865px;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  box-sizing: border-box;
  position: relative;
}
.collection-pop-up-main__title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  color: #090a0a;
}
.collection-pop-up-main__info {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.collection-pop-up-main__mark {
  width: 40px;
  position: absolute;
  left: 5px;
  top: 0;
  z-index: 4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  display: none;
}
.collection-mark {
  background-color: #1db372;
  padding-top: 9px;
  position: relative;
}
.collection-mark::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #1db372;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.collection-author {
  display: flex;
}
.collection-author__photo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.collection-author__info p {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  margin: 0;
}
.collection-author__info p span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}
.details {
  display: flex;
  align-items: center;
}
.details__info {
  padding-right: 15px;
}
.details__info p {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  margin: 0;
  text-align: right;
}
.details__info p span {
  font-weight: 400;
}
.details__link {
  padding-left: 15px;
  border-left: 1px solid #cdcdcd;
}
.details-link {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #1db372;
  border-radius: 5px;
  padding: 11px 20px;
  display: block;
}
.details-link:hover {
  background-color: #168756;
}
.collection-pop-up-main__content {
  width: 100%;
  max-height: calc(100% - 200px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0 30px 0;
  box-sizing: content-box;
  position: relative;
  z-index: 2;
}
.collection-main-image {
  height: 100%;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.collection-main-image.thumbs {
  height: calc(100% - 110px);
}

/* Video specific styles */
.collection-main-video {
  height: 100%;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  background: #000;
  object-fit: contain;
}

.collection-main-video.thumbs {
  height: calc(100% - 110px);
}

/* Video thumbnail styles */
.video-thumbnail-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-indicator svg {
  width: 14px;
  height: 14px;
  color: white;
}

.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 4px;
}

.thumbs-comllection {
  width: 100%;
  height: 93px;
  flex-shrink: 0;
  margin-top: 20px;
  display: flex;
  justify-content: flex-start; /* Changed from center to flex-start */
  align-items: flex-end;
  overflow-x: auto; /* Add horizontal scroll */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  scroll-behavior: smooth; /* Add smooth scrolling */
}

/* Hide scrollbar for Chrome/Safari */
.thumbs-comllection::-webkit-scrollbar {
  display: none;
}

.thumbs-comllection__div {
  /* Calculate width: (container width - (9 * margin-left)) / 10 */
  width: calc((100% - 200px) / 9);
  min-width: 60px; /* Add a minimum width for very small screens */
  height: 80px;
  margin-left: 10px;
  opacity: 0.8;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.thumbs-comllection__div img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.thumbs-comllection__div:first-child {
  margin-left: 0;
}
.thumbs-comllection__div.active {
  opacity: 1;
  border: 1px solid #1db372;
  padding: 5px;
  box-sizing: content-box;
}
.rating-collection__title {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: #515252;
  margin-bottom: 9px;
}
.rating-collection__container {
  display: flex;
  justify-content: space-between;
}
.rating-collection-buttons {
  display: flex;
  display: inline-flex;
  flex-direction: row-reverse;
}
.rating-collection-buttons button {
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: #515252;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  background-color: #fff;
  margin-right: 8px;
}
.rating-collection-buttons > button.active,
.rating-collection-buttons > button.active ~ button {
  background-color: #1db372;
  color: #fff;
  border-color: #1db372;
}

.rating-collection--no-rating .rating-collection__container {
  justify-content: flex-end;
}

.copy-button--centered {
  margin: 0 auto;
}

/* When in no-rating mode, give more padding/margin to the footer */
.rating-collection--no-rating {
  padding: 15px 0;
}

.copy-link {
  cursor: pointer;
}
.collection-nav {
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 6;
  margin: auto;
  background-color: #fff;
  border: 1px solid #cdcdcd;
  cursor: pointer;
  outline: none;
}
.collection-nav:hover {
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}
.collection-nav img {
  cursor: pointer;
}
.collection-prev {
  left: 40px;
}
.collection-next {
  right: 40px;
}
.collection-mobile-shadow {
  width: 100%;
  height: 400px;
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(44, 44, 44, 0) 0%,
    rgba(44, 44, 44, 0.6) 100%
  );
}
.collection-pop-up-main__close {
  display: flex;
  padding: 10px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 16px;
  z-index: 3;
  background-color: #090a0a;
  border-radius: 50%;
}
.collection-pop-up-main__close svg {
  width: 10px;
  height: 10px;
}
.collection-pop-up-main__close svg path {
  stroke: #fff;
}
@media screen and (max-width: 1050px) {
  .collection-pop-up-main {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .collection-pop-up-main__close {
    background-color: #fff;
  }
  .collection-pop-up-main__close svg path {
    stroke: #000;
  }
  .collection-pop-up-main {
    width: 95%;
  }
  .collection-nav {
    display: none;
  }
}
.up-elements-button {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 5;
  margin: auto;
  background: #333;
  border-radius: 50px;
  border: none;
  outline: none;
}
.up-elements-button.up {
  bottom: 220px;
  transform: rotate(180deg);
}
.collection-mobile-shadow-top {
  width: 100%;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(44, 44, 44, 0.7) 0%,
    rgba(44, 44, 44, 0) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 991px) {
  .collection-mobile-shadow-top {
    display: block;
  }
  .collection-pop-up-wrapper__container {
    padding: 0;
  }
  .collection-pop-up-main {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  .collection-main-image.thumbs {
    height: 100%;
  }
  .thumbs-comllection {
    display: none;
  }
  .collection-pop-up-main__mark {
    display: block;
  }
  .collection-pop-up-main__title {
    width: 100%;
    color: #fff;
    font-size: 22px;
    line-height: 23px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    left: 0;
    bottom: -50px;
    z-index: 5;
    transition: all 0.5s ease-in-out;
  }
  .collection-pop-up-main__info {
    width: 100%;
    padding: 0 15px;
    position: absolute;
    left: 0;
    bottom: -110px;
    z-index: 5;
    transition: all 0.5s ease-in-out;
  }
  .collection-author__info p {
    color: #fff;
    font-size: 13px;
  }
  .collection-pop-up-main__content {
    display: unset;
    justify-content: unset;
    align-items: unset;
    max-height: 100%;
    height: 100%; /* calc(100% - 81px) */
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    padding: 0;
    transition: all 0.5s ease-in-out;
  }
  .collection-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .details__info {
    display: none;
  }
  .details__link {
    border-left: none;
    padding-left: 0;
  }
  .collection-pop-up-main__footer {
    width: 100%;
    padding: 12px 15px 15px 15px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -170px;
    z-index: 5;
    transition: all 0.5s ease-in-out;
  }
  .rating-collection-buttons {
    width: 100%;
    justify-content: center;
  }
  .rating-collection__title {
    text-align: center;
  }
  .rating-collection-buttons button {
    width: 28px;
    height: 28px;
    font-size: 11px;
    margin-right: 10px;
  }
  .copy-button.copy-button--default {
    display: none;
  }
  .copy-link {
    display: none;
  }
  .collection-mobile-shadow {
    display: block;
  }
  .collection-pop-up-main__content.up {
    height: calc(100% - 81px);
  }
  .collection-pop-up-main__footer.up {
    bottom: 0;
  }
  .collection-pop-up-main__info.up {
    bottom: 110px;
  }
  .collection-pop-up-main__title.up {
    bottom: 170px;
  }
  .up-elements-button {
    display: flex;
  }
  .collection-nav {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .collection-author__info p span {
    font-size: 11px;
  }
  .details-link {
    font-size: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
ul.images {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 100%;
  position: relative;
  height: 100%;
  list-style: none;
}
.images li.image.prev {
  z-index: 2;
  opacity: 0;
}
.images li.image.next {
  z-index: 3;
  opacity: 0;
}
.images li.image.active {
  z-index: 4;
}
.images li.image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform-origin: bottom center;
}
.images.thumbs {
  height: calc(100% - 110px);
}

.collection-pop-up-wrapper__container .rating-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 8;
  display: none;
}
.collection-pop-up-wrapper__container .rating-overlay video {
  display: block;
  max-width: 100%;
}
.collection-pop-up-wrapper__container .rating-overlay .fa.fa-hand-o-up {
  position: absolute;
  color: white;
  bottom: 70%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 4em;
  animation: rotate_hand 5s linear infinite;
}
.collection-pop-up-wrapper__container .rating {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 8;
  opacity: 0.8;
  display: inline-block;
  pointer-events: none;
}
.collection-pop-up-wrapper__container .rating-text-holder {
  position: relative;
  display: table;
  height: 90px;
  width: 90px;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  pointer-events: none;
  left: 50%;
}
.collection-pop-up-wrapper__container .rating-text {
  position: relative;
  opacity: 0;
  background-color: white;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  color: #8ae439 !important;
  font-size: 2em !important;
  text-shadow: 0px 0px 15px white;
  transition: transform 0.1s linear;
}
.collection-pop-up-wrapper__container .rating-overlay-circle {
  position: absolute;
  left: 0;
  width: 250px;
  height: 250px;
  border: 5px solid white;
  border-radius: 50%;
  margin: auto;
  right: 0;
  bottom: 0px;
  border-bottom-color: transparent;
}
.collection-pop-up-wrapper__container .rating-value {
  position: absolute;
  top: -60%;
  left: 70%;
  right: 0;
  bottom: 0;
  height: 40%;
  width: 40%;
  background-color: rgba(0, 0, 0, 1);
  border: 5px solid white;
  border-radius: 50%;
  margin: auto;
}
.collection-pop-up-wrapper__container .rating-value-inner div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: white;
  font-size: 0.9em;
}
.collection-pop-up-wrapper__container
  .rating-value-inner
  .rating-value-inner-text {
  font-size: 1.6em;
}
.collection-pop-up-wrapper__container .rating-value-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: table;
}
.page-404 {
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 160px);
  font-family: "Inter", sans-serif;
}
.page-404__image,
.page-404__info {
  width: 50%;
}
.page-404-title {
  font-size: 62px;
  line-height: 72px;
  font-weight: 800;
  color: #090a0a;
  text-align: center;
}
.page404-title {
  font-size: 200px;
  line-height: 200px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  color: #090a0a;
}
.image-404 {
  display: block;
  max-width: 100%;
}
.flex-middle-position {
  display: flex;
  align-items: center;
}
.description-404 {
  font-size: 18px;
  line-height: 30px;
  color: #090a0a;
  text-align: center;
}
.go-back-link {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-404 {
    height: 100%;
    flex-direction: column-reverse;
  }
  .page-404__image,
  .page-404__info {
    width: 100%;
  }
  .page-404__image {
    order: 2;
  }
  .page-404__info {
    order: 1;
  }
  .page-404-title {
    font-size: 30px;
    line-height: 36px;
  }
}
.gif-bear {
  width: 29%;
  height: 58%;
  object-fit: cover;
  object-position: center;
  border: 10px solid #fff;
  border-radius: 8px;
  position: absolute;
  left: 10%;
  bottom: 10%;
  z-index: 2;
  transform: rotateZ(350deg);
}
/* new modal */
.upload-area-content__progress {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.progress-pos {
  position: relative;
  display: flex;
  align-items: center;
}
.progress-ring-count {
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  position: absolute;
  left: 7px;
  z-index: 5;
}
.progress-ring {
  transform: rotate(-90deg); /* Початок з 12 години */
  margin-right: 9px;
}

.bg,
.progress {
  fill: none; /* Робимо центр повністю прозорим */
  stroke-width: 8; /* Товщина кільця */
  r: 40; /* Радіус кільця */
  cx: 50; /* Центр по горизонталі */
  cy: 50; /* Центр по вертикалі */
}

.bg {
  stroke: rgba(255, 255, 255, 0.3); /* Колір заднього кільця */
}

.progress {
  stroke: #fff; /* Колір прогресу */
  stroke-dasharray: 251.2; /* Довжина всього кільця (2 * π * R) */
  stroke-dashoffset: 62.8; /* (100% - 75%) * довжина кільця */
  transition: stroke-dashoffset 0.5s ease;
}
.upload-area-content__shadow {
  width: 100%;
  height: 33%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  margin: auto;
  background: linear-gradient(
    180deg,
    rgba(44, 44, 44, 0.7) 0%,
    rgba(44, 44, 44, 0) 100%
  );
  border-radius: 8px 8px 0px 0px;
}
.upload-area {
  width: 100%;
  height: 100%;
  padding: 34px 38px;
  background-color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  /*height: 0;*/
  overflow: hidden;
  transition: all 0.5s ease-in;
  &.is-active {
    opacity: 1;
    visibility: visible;
    /*height: 100%;*/
  }
}
.upload-area__container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 27px;
}
.upload-area-close {
  position: absolute;
  right: -20px;
  top: -30px;
  z-index: 2;
  padding: 10px;
  box-sizing: content-box;
  cursor: pointer;
}
.upload-area-title {
  font-size: 24px;
  font-weight: 600;
  color: #090a0a;
  font-family: "Inter", sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  margin: 0;
}
.upload-area-content {
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: 650px;
  position: relative;
  z-index: 3;
}
.upload-area-content__remove {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 5;
  padding: 10px;
  box-sizing: content-box;
  cursor: pointer;
}
.upload-area-content img {
  border-radius: 8px;
  display: block;
  max-width: 100%;
  height: auto;
}
.upload-area-form {
  display: flex;
  justify-content: space-between;
  margin-top: 19px;
}
.upload-area-form button {
  background-color: #cfcfcf;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  outline: none;
  border: none;
  padding: 15px 35px;
}
.upload-area-form button.active {
  background-color: #1db372;
}
.upload-area-form input {
  width: calc(100% - 128px);
  height: 49px;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  padding: 0 16px;
  outline: none;
}
.upload-area-form input:focus {
  outline: none;
}
.upload-area-form input::placeholder {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #878787;
}
@media screen and (max-width: 768px) {
  .upload-area-content {
    max-height: 100%;
  }
  .upload-area {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
  .upload-area__container {
    padding-top: 38px;
  }
  .upload-area-content img {
    width: calc(100% - 30px);
    height: calc(100% - 140px);
    object-fit: cover;
    object-position: top center;
    margin: 0 auto;
  }
  .upload-area-content__remove {
    right: 20px;
    top: 5px;
  }
  .upload-area-form {
    flex-direction: column;
  }
  .upload-area-form input {
    width: 100%;
    margin-bottom: 15px;
  }
  .upload-area-content__progress {
    left: 30px;
    top: 10px;
  }
  .upload-area-content__shadow {
    width: calc(100% - 30px);
  }
  .upload-area-title {
    top: -15px;
  }
  .upload-area-close {
    top: -20px;
    height: 16px;
  }
}
.more-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s linear;
}
.more-icon.is-active {
  opacity: 1;
}
.full-gallery-item {
  width: 100%;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 25;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}
.full-gallery-item.is-active {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.full-gallery-item__container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: 800px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.full-gallery-item__container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.full-gallery-item__container video {
  display: block;
  width: 100%;
  height: 100%;
}
.collection-author__info {
  display: flex;
  color: #090a0a;
  font-family: "Inter", sans-serif;
  align-items: center;
}
.author-avatar {
  width: 35px;
  height: 35px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.collection-author__info .middle-p {
  margin: 0 17px 0 10px;
  position: relative;
  z-index: 1;
}
.collection-author__info .middle-p::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 5px;
  background-color: #090a0a;
  opacity: 0.2;
  min-block-size: 5px;
  position: absolute;
  right: -12px;
  top: 1px;
  bottom: 0;
  margin: auto;
}
.swipe-tooltip {
  display: none;
  align-items: center;
  justify-content: center;
  width: 140px;
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  font-family: "Inter", sans-serif;
}
.swipe-text {
  color: #fff;
  margin: 0 10px;
  text-align: center;
}
.swipe-text__1 {
  font-size: 10px;
  line-height: 11px;
  font-weight: 500;
  margin: 0 0 4px 0;
}
.swipe-text__2 {
  font-size: 12px;
  line-height: 13px;
  font-weight: 700;
  margin: 0;
}
.mobile-back {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 6;
  padding: 10px;
}
.horizont-rotate {
  width: 100%;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  margin: auto;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}
.swipe-preloader {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1db372;
  transition: opacity 0.5s ease-in-out;
}
.swipe-preloader.is-active {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .horizont-rotate.is-active {
    height: 100%;
    visibility: visible;
    opacity: 1;
  }
  .full-gallery-item__container {
    overflow: unset;
  }
  .more-icon {
    display: none;
  }
  .swipe-tooltip {
    display: flex;
  }
}
