@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=cyrillic");
button {
  outline: none;
  cursor: pointer;
}

#app {
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  width: 1140px;
  margin: 0 auto;
}

.container-small {
  width: 650px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  outline: none !important;
}

.header {
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(147, 146, 146, 0.2);
  min-height: 66px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 102;
}
.header .nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  aliggn-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .nav-right a {
  color: #000;
  font-size: 16px;
}
.header .nav-top {
  padding: 10px 0 10px;
}
.header .nav-bottom {
  padding: 20px 0 20px;
  overflow-x: hidden;
  position: relative;
}
.header .arrow-white {
  padding: 0;
  position: absolute;
  right: 0px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(10%, rgba(255, 255, 255, 0)),
    color-stop(80%, rgba(255, 255, 255, 0.7)),
    to(rgba(255, 255, 255, 0.99))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 0.99) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 0.99) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 0.99) 100%
  );
  height: 67px;
  vertical-align: middle;
}
.header .arrow-white-left {
  padding: 0;
  position: absolute;
  right: 0px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(10%, rgba(255, 255, 255, 0)),
    color-stop(80%, rgba(255, 255, 255, 0.7)),
    to(rgba(255, 255, 255, 0.99))
  );
  background: -webkit-linear-gradient(
    right,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 0.99) 100%
  );
  background: -o-linear-gradient(
    right,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 0.99) 100%
  );
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 0.99) 100%
  );
  height: 67px;
  vertical-align: middle;
}
.header .arrow-white img {
  margin-top: 3px;
  position: absolute;
  right: 0;
}
.header .arrow-white-left img {
  margin-top: 3px;
  position: absolute;
  left: 0;
}

.header-labeled {
  /* border-bottom: none;
  margin-bottom: 0;*/
}

.logo {
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo img {
  margin-left: 10px;
}

.dropdown-link {
  position: relative;
  padding-right: 15px;
  margin-right: 60px;
}
.dropdown-link::after {
  background-image: url(../img/icons/back.svg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  right: 0;
  top: 9px;
  content: "";
  width: 16px;
  height: 7px;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.black-bold-link {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  display: block;
  text-align: center;
}

.select-list {
  position: relative;
}
/*.select-list::after{\*/
.select-list .arrow {
  background-image: url(../img/icons/back.svg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 15px;
  content: "";
  width: 18px;
  height: 9px;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.select-list .arrow.opened {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sign-in-img {
  vertical-align: middle;
}

.nav-label {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  margin-right: 17px;
  position: relative;
}
.nav-label:last-of-type {
  margin-right: 0;
}
.nav-label a {
  color: #fff;
  height: 100%;
  display: block;
  padding: 25px 22px;
}

.nav-label.lightgrey {
  /*min-width: 150px; */
}

.lightgrey {
  background-color: #f7f7f7;
  color: #000;
}
.lightgrey a {
  color: #000;
}

.aqua {
  background-color: #009688;
}

.blue {
  background-color: #00bcd4;
}

.cyan {
  background-color: #3f51b5;
}

.violet {
  background-color: #673ab7;
}

.purple {
  background-color: #9c27b0;
}

.pink {
  background-color: #e91e63;
}

.red {
  background-color: #db4437;
}

.star {
  color: #db4437;
  font-size: 14px;
}

.orange {
  background-color: #ff9800;
}

.project-image {
  width: 100%;
  display: block;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  margin-bottom: 10px;
}

.small-img {
  min-height: 240px;
}

.large-img {
  min-height: 300px;
}

.xl-img {
  min-height: 335px;
}

.project-title {
  font-size: 16px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.project-description {
  font-size: 14px;
  overflow: hidden;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

/* Mobile: show full judgement text on home page */
@media screen and (max-width: 768px) {
  .project-description {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    font-size: 16px;
    line-height: 28px;
  }
}

.project-subtitle {
  font-size: 16px;
  color: #f68c1f;
  margin-bottom: 15px;
}

.project-name {
  padding-right: 18px;
  position: relative;
}
.project-name::after {
  position: absolute;
  content: "";
  right: 4px;
  top: 11px;
  background: #f68c1f;
  width: 3px;
  height: 3px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.project-year {
  color: #999999;
}

.project {
  float: left;
  width: 100%;
}
.project:last-of-type {
  margin-bottom: 50px;
}

.projects-wrap {
  display: inline-block;
  /* width: -webkit-calc(24.7% - 25px);
  width: calc(24.7% - 25px);*/
  vertical-align: top;
  /*margin-left: 28px; */
}

/*.projects-wrap:nth-child(5n),*/
.projects-wrap:first-child {
  margin-left: 0;
}

/*.projects-wrap:first-of-type {
  margin-left: 0; }*/

.grey-button {
  background: #d7d7d7;
  font-size: 14px;
  color: #6b6b6b;
  text-decoration: none;
  padding: 11px 60px;
  display: block;
  -webkit-box-shadow: 0px 6px 0px #adadad;
  box-shadow: 0px 6px 0px #adadad;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}
.grey-button:hover {
  background: #bebebe;
}
.grey-button:disabled {
  background: rgba(215, 215, 215, 0.7);
}

.black-text-lg {
  color: #111;
}

.grey-button-sm {
  padding-left: 30px;
  padding-right: 30px;
}

.orange-btn {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: #f68c1f;
  padding: 11px 38px;
  margin: auto;
  display: inline-block;
  -webkit-box-shadow: 0px 6px 0px #d37311;
  box-shadow: 0px 6px 0px #d37311;
}

.orange-btn:hover {
  background: #e37e17;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.orange-btn img {
  margin-left: 6px;
}

.orange-btn:disabled {
  background: rgba(246, 140, 31, 0.7);
}

.next {
  text-align: center;
  position: relative;
}

.projects {
  margin-bottom: 45px;
}

.pagination {
  float: right;
  font-size: 14px;
  top: 7px;
  color: #000000;
  position: absolute;
  right: 0;
}
.pagination a {
  font-size: 14px;
  color: #000000;
}

.current {
  background: #f7f7f7;
  padding: 5px 10px;
}

.slash {
  padding-left: 8px;
  padding-right: 8px;
}

.page-nav-arr {
  width: 7px;
  vertical-align: middle;
}

.page-nav {
  background: #f7f7f7;
  text-align: center;
  width: 28px;
  display: inline-block;
  padding: 5px 0;
  margin-left: 5px;
}

.page-next .page-nav-arr {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.footer {
  clear: both;
  padding-bottom: 40px;
  border-top: 1px solid #f1f1f1;
  padding-top: 20px;
}
.footer-text {
  text-align: center;
  color: #000;
  font-size: 16px;
}
.footer-text:not(:last-child) {
  margin-bottom: 30px;
}
.footer-text-art {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.footer-text-art span {
  padding-top: 5px;
}
.footer-art {
  display: inline-block;
  width: 18px;
  height: 18px;
}
.footer-art img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.footer-nav {
  text-align: center;
  margin-bottom: 30px;
}
.footer-nav a {
  color: #000;
  text-align: none;
  font-size: 16px;
  margin-right: 40px;
}
.footer-nav a:last-of-type {
  margin-right: 0;
}
.footer-nav a:hover {
  color: #f68c1f;
}

.like {
  width: 12px;
  margin-right: 6px;
}

.fb-widget {
  background: #4267b2;
  color: #fff;
  padding: 6px 12px;
  margin-left: 10px;
}
.fb-widget:hover {
  background: #294e98;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.blue-link {
  text-decoration: none;
  color: #4267b2;
}
.blue-link:hover {
  color: #17336c;
}

.proj-img {
  position: relative;
}

.overlay {
  content: "";
  position: absolute;
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.overlay .image-actions {
  position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.overlay .heart {
  width: 45px;
  margin: 0 5px;
  border-radius: 7px;
  /* position: absolute; */
  /* bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); */
}

.overlay .heart:hover {
  background: rgba(255,255,255, 0.4);
}

.overlay .heart.favorite {
  border-radius: 10px;
  background: red;
}

.overlay .gallery-lince-wrapper {
  background: rgba(255,255,255,0.3);
  border-radius: 7px;
  display: flex;
  align-items: center;
  width: 45px;
  margin: 0 5px;
}

.overlay .gallery-lince-wrapper:hover {
  background: rgba(255,255,255, 0.5);
}

.overlay .lince {
  filter: brightness(0) invert(1);
  transform: scale(0.6);
}

.project {
  cursor: pointer;
}

.project:hover .overlay {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.related-item-artist:hover .overlay {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* Mobile: disable overlay on artwork cards */
@media screen and (max-width: 768px) {
  .overlay {
    display: none !important;
  }
  .project:hover .overlay,
  .related-item-artist:hover .overlay {
    opacity: 0 !important;
  }
}

h1 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.content {
  padding-top: 45px;
}

.social-btn {
  display: block;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  margin-bottom: 22px;
}
.social-btn .fab {
  margin-right: 20px;
}
.social-btn:last-of-type {
  margin-bottom: 45px;
}

.blue-social {
  background: #4267b2;
}

.red-social {
  background: #de4331;
}

.signup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.signup-social {
  width: 260px;
  text-align: center;
  margin-right: 70px;
}

.signup-text {
  font-size: 12px;
  color: #999999;
  display: block;
  margin-bottom: 10px;
}

.signup-right {
  margin-left: 75px;
  text-align: center;
}

.sign-form {
  width: 240px;
  text-align: center;
}

.input-wrapper {
  width: 100%;
  position: relative;
  font-size: 14px;
  color: #000;
  border: 1px solid #dcdcdc;
  padding: 15px 20px;
  display: block;
  outline: none;
  height: 40px;
  margin-bottom: 20px;
}

.sign-input {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  outline: none;
  border: none;
  background: none;
  padding: 15px 20px;
  font-size: 14px;
  color: #000;
}
.sign-input::-webkit-input-placeholder {
  font-size: 12px;
  color: #999999;
}
.sign-input::-moz-placeholder {
  font-size: 12px;
  color: #999999;
}
.sign-input::-ms-input-placeholder {
  font-size: 12px;
  color: #999999;
}
.sign-input::placeholder {
  font-size: 12px;
  color: #999999;
}

.filled {
  background: #faffbd;
}

.asterisc {
  position: absolute;
  left: -20px;
  top: 10px;
  color: #ff0000;
  font-size: 14px;
}

.forgot-password {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 12px;
  margin-top: 15px;
}

.signup {
  margin-bottom: 40px;
}

.terms {
  text-align: center;
}

.content {
  padding-bottom: 130px;
}

.or {
  font-size: 14px;
  color: #999999;
}

.divider {
  display: block;
  height: 65px;
  width: 2px;
  background: #f1f1f1;
  margin-left: auto;
  margin-right: auto;
}

.files-transit {
  margin-left: 10px;
}

.signup-center {
  width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.signup-center .sign-form {
  width: 100%;
}

.orange-btn {
  border: none;
  outline: none;
  cursor: pointer;
}

.submit-btn {
  padding-left: 40px;
  padding-right: 40px;
  font-size: 14px;
}

.label {
  display: block;
  text-align: left;
}

.change-name {
  padding-top: 35px;
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  position: relative;
}

.btn {
  border: none;
  outline: none;
  background: transparent;
}
.btn:hover {
  cursor: pointer;
}

.close-btn {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.close-btn img {
  width: 100%;
  height: 100%;
}

.form-wrapper {
  padding-top: 35px;
}
.form-wrapper h1 {
  text-align: left;
}

.textarea {
  height: 210px;
}

textarea {
  resize: vertical;
}

.form {
  padding-bottom: 100px;
}

.g-recaptcha {
  margin-bottom: 20px;
}

.feedback-form {
  width: 490px;
}

.search-icon {
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 5px;
}

.search-icon-btn {
  border: none;
  cursor: pointer;
  outline: none;
}

.search {
  margin-left: 55px;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90px;
  position: relative;
}
.search-input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
  width: 95%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.search-input::-webkit-search-clear-button,
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-results-button,
.search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.search-input:focus::-webkit-search-clear-button,
.search-input:focus::-webkit-search-cancel-button,
.search-input:focus::-webkit-search-results-button,
.search-input:focus::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.search-input::-ms-clear {
  display: none;
}
.search-input::-webkit-input-placeholder {
  color: #000;
}
.search-input::-moz-placeholder {
  color: #000;
}
.search-input::-ms-input-placeholder {
  color: #000;
}
.search-input::placeholder {
  color: #000;
}
.search-hints {
  background: #fff;
  position: absolute;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 12px -1px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 12px -1px rgba(0, 0, 0, 0.15);
  width: 100%;
  left: 0;
  bottom: -32px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  height: 495px;
  z-index: 101;
  padding: 15px 0;
  overflow-y: auto;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}
.search-hints .small-grey {
  margin-bottom: 15px;
  margin-left: 5px;
}
.search .search-hint,
.search .small-grey {
  display: inline-block;
}
.search .selected-tag {
  background: #f7f3ed;
}

.search-hints-row {
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.search-hints-text {
  margin-bottom: 5px;
}
.search-hints-text .small-grey {
  margin-bottom: 0;
}

.circle-image-icon {
  width: 52px;
  height: 52px;
  overflow: hidden;
  display: inline-block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 15px;
}
.circle-image-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.square-image-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  overflow: hidden;
  display: inline-block;
  margin-right: 15px;
}
.square-image-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.search-hints-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}
.search-hints-items:last-of-type {
  margin-bottom: 20px;
}

.search-full {
  width: 100%;
}

.search,
.logo {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-info {
  padding-bottom: 95px;
  width: 780px;
  margin-top: 30px;
}
.about-info h1 {
  text-align: left;
}
.about-info p {
  font-size: 14px;
}

h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.blockquote {
  font-size: 12px;
  font-style: italic;
  padding-left: 30px;
  margin-left: 70px;
  border-left: 2px solid #d37311;
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 22px;
}

.quote-framed {
  font-size: 12px;
  color: #000;
  font-weight: 300;
  text-align: center;
  border: 6px solid #dcdcdc;
  padding: 30px 155px;
  font-style: italic;
  margin-top: 55px;
  margin-bottom: 35px;
  position: relative;
}

.quotes {
  font-family: "Roboto", sans-serif;
  font-size: 185px;
  color: #dcdcdc;
  line-height: 185px;
  position: absolute;
  top: -47px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 66px;
  background: #fff;
  padding-left: 10px;
  padding-right: 29px;
}

i {
  font-weight: 600;
}

.orange-title {
  font-size: 16px;
  font-weight: bold;
  color: #f68c1f;
  display: block;
  margin-bottom: 8px;
}

.text-block {
  border: 1px solid #dbdbdb;
  padding: 25px;
  height: 430px;
  overflow-y: scroll;
  margin-bottom: 20px;
}
.text-block p {
  font-size: 14px;
  margin-bottom: 20px;
}

.translate-part {
  width: 500px;
  margin-right: 20px;
}

.translate h2 {
  margin-bottom: 20px;
}

.tag {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.tag-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 5px;
  vertical-align: middle;
}

.italic-text {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 20px;
}

.translate {
  padding-top: 20px;
  padding-bottom: 100px;
}
.translate button {
  padding-left: 60px;
  padding-right: 60px;
}
.translate .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.user {
  vertical-align: middle;
}

.page-action {
  cursor: pointer;
  margin-left: 10px;
  display: inline-block;
  position: relative;
}
.page-action span {
  background: #999999;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
}
.page-action span:last-of-type {
  margin-right: 0;
}

.page-action-dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #f1f1f1;
  padding: 20px 25px 8px;
  min-width: 190px;
  display: block;
  z-index: 10;
  right: -18px;
  top: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
.page-action-dropdown a {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.page-action-dropdown a:hover {
  color: #f68c1f;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.page-action-dropdown::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: 25px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-left: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.user-action {
  /*margin-left: 15px;*/
  display: inline-block;
  position: relative;
}
.user-action span {
  background: #999999;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
}
.user-action span:last-of-type {
  margin-right: 0;
}

.user-action-dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #f1f1f1;
  padding: 20px 0 8px;
  min-width: 190px;
  display: block;
  z-index: 1110;
  right: -18px;
  top: 58px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
.user-action-dropdown a {
  font-size: 14px;
  padding: 0 25px;
  margin-bottom: 10px;
  display: block;
}
.user-action-dropdown a:hover {
  color: #f68c1f;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.user-action-dropdown::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: 25px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-left: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.person-name {
  font-size: 24px;
  display: block;
  font-weight: bold;
}

.person-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.socials {
  margin-left: 20px;
  display: inline-flex;
  gap: 5px;
}
.socials-link {
  width: 30px;
  height: 30px;
  display: block;
}
.socials-link img {
  vertical-align: middle;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.person-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.person-info-name {
  font-size: 14px;
}
.person-info-avatar {
  /*width: 195px; */
  /*width: 285px;*/
  max-width: 500px;
}

.avatar {
  /*width: 100%; */
  max-height: 400px;
}
.avatar img {
  max-width: 100%;
}

.person-info-text {
  margin-left: 70px;
}
.person-info-text-name,
.person-info-text h2 {
  font-size: 16px;
  color: #999;
}
.person-info-text-paragraph,
.person-info-text p {
  font-size: 14px;
  line-height: 34px;
}
.person-info-text-paragraph .paragraph-grey,
.person-info-text-paragraph span,
.person-info-text p .paragraph-grey,
.person-info-text p span {
  color: #999999;
}

.paragraph-grey {
  color: #999999;
}

.paragraph-values {
    display: flex;
    gap: 5px;
    row-gap: 0px;
    flex-wrap: wrap;
}

.paragraph-value {
    display: flex;
}

.paragraph-values span {
    color: #000 !important;
}

.hint {
  color: #000;
  position: relative;
  padding-right: 20px;
	height: 20px;
}
.hint::after {
  width: 14px;
  height: 14px;
  background-image: url(../img/icons/info.png);
  /*background-image: url(../img/icons/rounded-info-button.png);*/
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
}

.artpage {
  margin-top: 20px;
  margin-bottom: 20px;
}

.art-works {
  margin-bottom: 35px;
}

.art-works-title {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 24px;
  position: relative;
}

.art-works-title-updated {
  display: inline-block;
  font-size: 24px;
  position: relative;
}
/*    .art-works-title::after {
      width: 14px;
      height: 14px;
      background-image: url(../img/icons/info.png);
      -webkit-border-radius: 50%;
              border-radius: 50%;
      content: '';
      position: absolute;
      right: -19px;
      top: 4px;
      cursor: pointer; }*/

.view-all {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #000;
  display: block;
}

.relate-items {
  padding-bottom: 100px;
}

.related-wrap {
  /*text-align: center;*/
  margin-bottom: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: initial;
}

.related-item {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  min-width: 185px;
  width: 262px;
  position: relative;
  min-height: 155px;
  height: 200px;
  display: inline-block;
  margin-left: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.related-item:last-of-type {
  /*margin-right: 0; */
}
.related-item img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.related-item:hover:before{
  background: -webkit-gradient(
          linear,
          left bottom,
          left top,
          from(black),
          color-stop(91%, rgba(194, 194, 194, 0)),
          color-stop(67%, rgba(255, 255, 255, 0))
  );
  background: -webkit-linear-gradient(
          bottom,
          black 0%,
          rgba(194, 194, 194, 0) 91%,
          rgba(255, 255, 255, 0) 67%
  );
  background: -o-linear-gradient(
          bottom,
          black 0%,
          rgba(194, 194, 194, 0) 91%,
          rgba(255, 255, 255, 0) 67%
  );
  background: linear-gradient(
          to top,
          black 0%,
          rgba(194, 194, 194, 0) 91%,
          rgba(255, 255, 255, 0) 67%
  );
}
.related-item::before {
  background: -webkit-gradient(
          linear,
          left bottom,
          left top,
          from(black),
          color-stop(91%, rgba(194, 194, 194, 0.2)),
          color-stop(67%, rgba(255, 255, 255, 0.2))
  );
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
}
.related-item-text {
  position: absolute;
  bottom: 30px;
  padding: 0 10px 0 10px;
  /*  left: 20px;*/
  color: #fff;
  z-index: 8;
  font-size: 16px;
}
.related-item-author {
  font-weight: bold;
}

.feature-item {
  height: 300px;
  width: auto;
  overflow: hidden;
}
.feature-item img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.feature-item .img-small {
  width: 220px;
}
/*  .feature-item:last-of-type, .feature-item:nth-last-of-type(2) {
    width: 220px; }*/

.related-artist h2::after {
  display: none;
}

/*******Select styles*****/
.select-hidden {
  display: none;
  visibility: hidden;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #000;
  padding-left: 20px;
  padding-right: 20px;
  vertical-align: middle;
  margin-right: 25px;
  padding-bottom: 5px;
  padding-top: 5px;
  min-width: 60px;
}

/*.select-styled:after {
  content: "";
  width: 8px;
  height: 4px;
  background-image: url(/img/icons/downblack.png);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
  position: absolute;
  top: 14px;
  right: 0px; }*/

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 5px;
  list-style: none;
  background-color: #f8f8f8;
  text-align: center;
  cursor: pointer;
  min-width: 100px;
}

.select-options li {
  margin: 0;
  padding: 5px 0;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}

.select-options li:hover {
  background: #ebebeb;
}

.select-options li[rel="hide"] {
  display: none;
}

.title-md {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: #000;
}

.wrapper-editor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.input-file {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: block;
  cursor: pointer;
}

.file-upload {
  position: relative;
  cursor: pointer;
  padding: 10px 45px;
  font-size: 14px;
  display: inline-block;
}

.select-list .select {
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 20px;
  font-size: 14px;
}

.search-list .select {
  top: 100%;
  height: 0;
  padding: 0;
  width: 100%;

  display: block;
  position: absolute;
  left: 0;

  padding-left: 20px;
  font-size: 14px;
}

.select-list .select-styled {
  height: 100%;
  line-height: 38px;
}
.select-list .select-styled::after {
  display: none;
}

.select-list .select-options,
.search-list .select-options {
  text-align: left;
  padding-left: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.select-list .select-options li:hover,
.search-list .select-options li:hover {
  background: transparent;
  color: #f68c1f;
}

.uploader .signup-text {
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
  margin-bottom: 0;
}

.resize-area {
  resize: both;
  width: 225px;
  height: 125px;
  border: 1px solid #e8e8e8;
  padding: 15px;
}

.label-small {
  color: #999999;
  font-size: 12px;
  display: block;
  margin-bottom: 20px;
}

.avatar-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 40px;
}
.avatar-wrap .avatar {
  margin-right: 20px;
}

.select-gender,
.painting {
  width: 260px;
  margin-bottom: 0;
}

.darkblue-link {
  font-size: 14px;
  color: #4267b2;
}

.darkblue-color {
  color: #4267b2;
}

.selected-searched-tag {
  color: #000;
  background: #fdbf72;
}

.type-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.type-search .darkblue-link {
  margin-left: 15px;
  font-size: 14px;
}

.type-search-wrap {
  margin-bottom: 20px;
}
.type-search-wrap .label-small {
  margin-bottom: 10px;
}
.type-search-wrap .input-wrapper {
  margin-bottom: 0;
}

.suggest-btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: #000;
  background: #f7f7f7;
  height: 100%;
  border: none;
  padding: 0 22px;
}

.search-type-input input::-webkit-input-placeholder {
  font-size: 14px;
  color: #000;
}

.search-type-input input::-moz-placeholder {
  font-size: 14px;
  color: #000;
}

.search-type-input input::-ms-input-placeholder {
  font-size: 14px;
  color: #000;
}

.search-type-input input::placeholder {
  font-size: 14px;
  color: #000;
}

.periods-services {
  margin-top: 40px;
}

.add-artist {
  padding-bottom: 100px;
}

.date-input .select-list {
  /*background: #f7f7f7;*/
  padding-left: 30px;
  padding-right: 30px;
  width: auto;
  min-width: 110px;
  margin-right: 12px;
}
.date-input .select-list .select-options {
  border: 1px solid #f1f1f1;
  left: -1px;
  width: 102%;
}

.date-input .day-select {
  min-width: 90px;
}

.date-wrap .input-wrapper {
  margin-bottom: 0;
}

.year-input {
  min-width: 90px;
  margin-right: 12px;
}
.year-input input::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
}
.year-input input::-moz-placeholder {
  color: #000;
  font-size: 14px;
}
.year-input input::-ms-input-placeholder {
  color: #000;
  font-size: 14px;
}
.year-input input::placeholder {
  color: #000;
  font-size: 14px;
}

.date-inputs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #d6d6d6;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid #ff7e0b;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.input-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.input-area .select-list {
  margin-right: 20px;
}
.input-area .select-list:last-of-type {
  margin-right: 0;
}

.orange-link {
  color: #ff8d00;
}

.active-years-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.active-years-input .input-wrapper {
  position: relative;
  margin-right: 20px;
  width: auto;
  min-width: 100px;
}
.active-years-input .input-wrapper::after {
  content: "";
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  right: -16px;
  top: 19px;
}
.active-years-input .input-wrapper:last-of-type {
  margin-right: 0;
}
.active-years-input .input-wrapper:last-of-type::after {
  display: none;
}

.references {
  margin-top: 23px;
}

.message-textarea {
  height: 440px;
  width: 100%;
  resize: none;
  border: 1px solid #dbdbdb;
  padding: 15px;
}

.death-date {
  margin-top: 20px;
  margin-bottom: 20px;
}

body {
  position: relative;
}

.overlay-block {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.popup {
  position: fixed;
  z-index: 1001;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.popup-window {
  width: 100%;
  background: #fff;
  padding: 30px 40px;
  position: relative;
  overflow-y: visible;
  /*margin-top: 100px; */
}
.popup-title {
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
}
.popup-close {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 30px;
  right: 30px;
}
.popup-list-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  max-height: 360px;
  padding-right: 20px;
}
.popup-list-item {
  list-style-type: none;
  columns: 4 15em;
}
.popup-list-item li {
  /*line-height: 40px;*/
  line-height: 20px;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 20px;
}

.tag-form-ok-btn {
  display: flex;
  flex-direction: row-reverse;
}
.tag-form-ok-btn button {
  margin: inherit;
}

.tag-chosen {
  position: relative;
  padding: 8px 14px;
  padding-left: 18px;
  background: #fdbf72;
  margin-bottom: 10px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  cursor: pointer;
  margin-right: 10px;
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  width: fit-content;
  baseline-source: last;
}

.tag-text {
  font-size: 14px;
  max-width: 270px;
  display: inline-block;
}

.tag-remove {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  width: 10px;
  margin-left: 5px;
}
.tag-remove img {
  width: 100%;
  height: 100%;
}

.mCSB_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mCustomScrollBox {
  min-width: 100%;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 1px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover {
  width: 3px;
  background: #000 !important;
  height: 40px;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.mCSB_inside > .mCSB_container {
  margin-right: 45px;
}

.label-dark {
  color: #333333;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}

.black-title {
  color: #000;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
  display: block;
}

.select-left-align {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

textarea {
  outline: none;
}

.uploaded {
  margin-top: 20px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.uploaded-img {
  width: 265px;
  height: 265px;
  background: rgba(170, 170, 170, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.uploaded img {
  max-width: 100%;
  vertical-align: middle;
  max-height: 100%;
}
.uploaded-item {
  margin-right: 30px;
}
.uploaded-item:nth-child(4n) {
  margin-right: 0;
}

.multiple-uploaded .uploaded-size {
  margin-top: 25px;
  margin-left: 0;
}
.multiple-uploaded .uploaded-size span {
  margin-bottom: 0;
}

.vertical-upload img {
  min-height: 100%;
}

.horizontal-upload img {
  min-width: 100%;
}

.uploaded-size {
  margin-left: 35px;
  margin-top: 100px;
}

.uploaded-files {
  margin-bottom: 40px;
}
.uploaded-files img {
  width: 120px;
  margin-right: 20px;
}

.active-img {
  border: 1px solid #f6922a;
}

.copyright-txt {
  margin-left: 20px;
}

.license-input {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.text-grey {
  color: #999999;
  font-size: 12px;
}

/*.license-input .select-styled{
	color: #bdbdbd;
}*/
.flex-inputs {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-inputs-item {
  margin-right: 20px;
  width: 100%;
}
.flex-inputs-item:last-of-type {
  margin-right: 0;
}

.classification {
  margin-top: 20px;
  /*.sign-input::placeholder{
		color: #bdbdbd;
	}*/
}

.tags-selected {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
}

.tag-grey {
  -webkit-border-radius: 20px;
  border-radius: 20px;
  color: #000000;
  background: #f9f9f9;
  font-size: 14px;
  margin-left: 10px;
  padding: 5px 15px;
  border: none;
  outline: none;
}
.tag-grey img {
  width: 7px;
  height: 7px;
  margin-left: 4px;
}

.tags-selected {
  margin-bottom: 10px;
}
.tags-selected .label-dark {
  margin-bottom: 0;
}

.black-text-small {
  font-size: 12px;
  color: #000;
  margin-left: 5px;
}

.black-text {
  font-size: 14px;
  color: #000;
  margin-bottom: 40px;
}

.wide-btn {
  padding-left: 70px;
  padding-right: 70px;
}

.grey-inputs input.sign-input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.grey-inputs input.sign-input::-moz-placeholder {
  color: #bdbdbd;
}

.grey-inputs input.sign-input::-ms-input-placeholder {
  color: #bdbdbd;
}

.grey-inputs input.sign-input::placeholder {
  color: #bdbdbd;
}

/*
.grey-select{
	.select-styled{
		color: #bdbdbd;
	}
}
.grey-placeholder{
	.sign-input::placeholder{
		color: #bdbdbd;
	}
}
*/
.dates-wrap .checkbox-container {
  margin-top: 27px;
  margin-left: 15px;
}

.dimensions {
  margin-bottom: 30px;
}

.parameters {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.parameters-input {
  width: 100px;
  margin-right: 30px;
}
.parameters-input:last-of-type {
  margin-right: 0;
}

.button-lg {
  padding-left: 65px;
  padding-right: 65px;
}

.artist-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.artist-actions button {
  margin: 0;
}

.popup-remove-artist {
  padding-right: 70px;
  text-align: center;
}
.popup-remove-artist .title-md {
  margin-bottom: 10px;
}
.popup-remove-artist p {
  padding-bottom: 5px;
}
.popup-remove-artist .orange-btn {
  margin-top: 35px;
}

.translate-part .avatar {
  margin-bottom: 30px;
  width: 195px;
}

.translate .container {
  margin-bottom: 50px;
}

.uploader-multiple {
  display: block;
}
.uploader-multiple .signup-text {
  display: block;
  margin-left: 0;
  margin-top: 20px;
  margin-bottom: 35px;
}

.title-small {
  font-size: 16px;
  font-weight: bold;
  display: block;
}

.meta-tags .title-md {
  margin-bottom: 20px;
}

.meta-tags-wrapper {
  width: 750px;
}

.meta-tags-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.meta-titles {
  width: 160px;
  margin-right: 40px;
}

.meta-inputs {
  width: 100%;
}

.textarea-wrapper {
  height: 140px;
}

.meta-tag-language {
  width: 265px;
  margin-bottom: 40px;
}

.copy-block {
  margin-bottom: 20px;
}

.uploaded-item-big .uploaded-img {
  width: 360px;
  height: 360px;
}

.uploaded-item-big {
  margin-right: 45px;
}

.edit-img {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.edit-text {
  width: 500px;
}

.edit-text .title-small {
  margin-bottom: 25px;
}

.edit-artwork {
  margin-bottom: 120px;
}

.meta-tags {
  padding-bottom: 90px;
}

.license {
  padding-bottom: 90px;
}

.textarea-full {
  width: 100%;
  border: 1px solid #dcdcdc;
}

.license .title-md {
  margin-bottom: 30px;
}

.license-info {
  width: 550px;
}

.license-input-title {
  width: 480px;
}

.license-table {
  margin-top: 40px;
}
.license-table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 25px;
  padding-top: 20px;
}
.license-table-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 0px;
}
.license-table-text {
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.license-table-title {
  font-size: 14px;
  color: #4267b2;
}

.text-grey-small {
  display: block;
  color: #acacac;
  font-size: 14px;
}

.license-table-col:first-of-type {
  min-width: 195px;
  max-width: 195px;
}

.license-table-col:nth-of-type(2) {
  min-width: 740px;
  max-width: 740px;
}

.license-table-col:last-of-type {
  min-width: 90px;
}

.categories {
  padding-bottom: 95px;
}
.categories .title-md {
  margin-bottom: 25px;
}

.art-form {
  width: 500px;
  /*margin-bottom: 40px; */
}

.category-edit-action {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 10px;
  text-align: center;
  margin-left: 10px;
}

.categories-edit-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.categories-edit-items {
  margin-bottom: 35px;
}

.wrapper-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.wrapper-column {
  width: 530px;
}

.input-tags-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.orange-tag-title {
  font-size: 15px;
  white-space: nowrap;
}

.orange-tag {
  background: #fec06d;
  padding: 5px 10px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  margin-right: 3px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 6px;
  cursor: pointer;
}
.orange-tag:last-of-type {
  margin-right: 0;
}

.btn-tag {
  border: none;
  outline: none;
  cursor: pointer;
  /* width: 10px;
  height: 10px; */
  background: transparent;
  margin-left: 5px;
}
.btn-tag img {
  /* width: 100%;  */
}

.input-tags-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  padding-right: 50px;
}
.input-tags-wrapper a {
  margin-left: 10px;
  margin-top: -6px;
  position: absolute;
  right: 0;
  bottom: 30px;
}

.input-tags {
  width: 100%;
}

.label-black {
  font-size: 12px;
  color: #000;
  display: block;
  margin-bottom: 8px;
  margin-right: 30px;
}

.tags-orange {
  width: 100%;
  text-align: right;
  margin-left: 60px;
}

.wrapper-row {
  margin-bottom: 20px;
}

.content-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.content-column {
  width: 30%;
  margin-left: 30px;
}
.content-column:first-of-type {
  margin-left: 0;
}

.black-label {
  color: #000;
}

.grey-text {
  color: #828282;
}

.history {
  padding-bottom: 100px;
}
.history h2 {
  margin-bottom: 30px;
}

.history-table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.history-table-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}
.history-table-column:first-of-type {
  margin-left: 0;
}
.history-table-column .input-wrapper {
  margin-bottom: 0;
}
.history-table-column:last-of-type a {
  color: #111;
}
.history-table-column:last-of-type a * {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
}

.history-table-column:first-of-type {
  width: 165px;
}

.history-table-column:nth-of-type(2) {
  width: 150px;
}

.history-table-column:nth-of-type(3) {
  min-width: 150px;
}

.history-table-column:nth-of-type(4) {
  width: 320px;
}

.history-table-column:nth-of-type(5) {
  width: 200px;
}

.history-table-column:last-of-type {
  width: 80px;
}

.history-period {
  width: 150px;
  margin-right: 30px;
}
.history-period:last-of-type {
  margin-right: 0;
}

.button-small-grey {
  background: #f1f1f1;
  font-size: 14.5px;
  color: #999999;
  padding: 6px 15px;
  border: none;
  outline: none;
  cursor: pointer;
}

.history-table-row:nth-of-type(2) {
  margin-bottom: 40px;
}

.history-table-row {
  margin-bottom: 15px;
}
.history-table-row .label-small {
  width: 100%;
}

.text-black {
  font-size: 14px;
}

.blue-link-small {
  font-size: 14px;
}
.blue-link-small img {
  margin-right: 5px;
}

.user-icons {
  margin-left: 5px;
}

.history-table-row:nth-of-type(1) {
  margin-bottom: 0px;
}

.favorites {
  padding-bottom: 100px;
}
.favorites .title-md {
  margin-bottom: 10px;
}
.favorites .orange-title {
  margin-bottom: 20px;
}

.favorites-item {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-left: 8px;
  margin-right: 8px;
  position: relative;
  margin-bottom: 30px;
}
.favorites-item-text {
  font-size: 16px;
  color: #fff;
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
}
.favorites-item-vertical {
  width: 230px;
  height: 300px;
}
.favorites-item-horizontal {
  width: 370px;
  height: 300px;
}
.favorites-item img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.favorites-item .favorites-number {
  margin-left: 10px;
}

.favorites-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.favorites-social a {
  margin-left: 15px;
}

.section-search {
  padding-bottom: 100px;
  padding-top: 50px;
}

.image-uploaded {
  background: #e1dfdd;
  width: 265px;
  height: 265px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.image-uploaded img {
  max-width: 100%;
  max-height: 100%;
}

.image-uploaded-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
  display: block;
}

.small-grey {
  font-size: 14.5px;
  color: #999999;
  display: block;
}

.image-uploaded-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 22px;
  margin-bottom: 35px;
}
.image-uploaded-item:nth-of-type(4n) {
  margin-right: 0;
}
.image-uploaded-item:last-of-type {
  margin-right: 0;
}

.header .orange-tag {
  margin-left: 5px;
}

.search-not-found {
  padding-top: 85px;
  min-height: -webkit-calc(100vh - 265px);
  min-height: calc(100vh - 265px);
}
.search-not-found p {
  font-weight: 100;
  text-align: center;
}

.nav-right {
  min-width: 370px;
}
.nav-right a:hover {
  color: #f68c1f;
}

.nav-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.search-hints {
  display: none;
}

.search-hint:hover {
  cursor: pointer;
}

.search-full .search-hints {
  display: block;
}

.section {
  padding: 40px 0 100px;
}

.black-text-lg {
  font-size: 16px;
}

.judgement-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.title-bold {
  margin-bottom: 15px;
}

.title-small-orange {
  margin-bottom: 30px;
}

.tags-option {
  margin-top: 40px;
  margin-bottom: 15px;
}

.item-slider {
  width: 100%;
  margin-bottom: 20px;
  padding-left: 15px;
}
.item-slider img {
  width: 100%;
}

.url-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.button.url {
  width: 100%;
  min-width: 110px;
  height: 120px;
  padding-left: 15px;
  display: block;
}
.button.url img {
  width: 100%;
}

.slider-carousel {
  width: 460px;
}

.active-thumb img {
  border: 4px solid #f68c1f;
}

.owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  top: 0%;
  width: 100%;
}

.owl-next {
  position: absolute;
  width: 29px !important;
  height: 59px !important;
  right: -5px;
  top: 17px !important;
  outline: none !important;
  background: transparent !important;
  background-image: url(../img/strelka.png) !important;
}
.owl-next span {
  display: none;
}

.owl-prev span {
  opacity: 0;
  display: none;
}

.judgement-item {
  margin-bottom: 75px;
}
.judgement-item:last-of-type {
  margin-bottom: 0;
}

.tags-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.date-item {
  display: inline-block;
}

.judgement-title-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.judgement-comment-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
.judgement-comment-title .orange-title {
  margin-bottom: 0;
}

.date-item {
  margin-left: 25px;
  font-size: 14px;
  color: #999999;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.date {
  color: #4267b2;
}

.judgement-image {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin-bottom: 0;
}

.thumb-up {
  color: #656565;
  font-size: 14px;
}

.thumbs-up-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.thumbs-up-wrapper .label-small {
  margin-bottom: 0;
}

.thumb-up-img {
  margin-right: 7px;
  margin-left: 15px;
}

.judgement-image-container {
  margin-bottom: 30px;
}

.arrow-back-page {
  display: block;
  margin-bottom: 20px;
}

.comments-avatar {
  min-width: 100px;
  max-width: 100px;
  height: auto;
  min-height: 100px;
  max-height: 100px;
  margin-right: 25px;
}
.comments-avatar img {
  width: 100%;
  height: 100%;
}

.comments-wrap {
  margin-bottom: 50px;
}

.comments {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
  /*width: 980px; */
}
.comments-occupation {
  font-size: 16px;
  font-weight: bold;
  color: #ff8d00;
}
.comments-text.mobile {
  width: 75%;
}
.comments-text-title {
  margin-bottom: 15px;
}
.comments-emoticons {
  font-size: 14px;
  color: #999999;
}
.comments-text-content p {
  font-size: 14px;
}

/* Mobile: larger text for judgements on artwork page */
@media screen and (max-width: 768px) {
  .comments-text-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

.emoticon-blue {
  font-size: 14px;
  color: #4267b2;
}

.emoticons-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments-thumbs:hover {
  cursor: pointer;
}

.comments-thumbs-quantity {
  font-size: 14px;
  color: #999999;
}

.show-text-toggle {
  display: inline;
  font-size: 14px;
  color: #4267b2;
}

.navigation-pages {
  margin-bottom: 35px;
}

.judgement {
  padding-bottom: 100px;
}

.btns-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.btns-actions button {
  margin: 0;
}

.btn-save button {
  margin: 0;
}

.emoticons-judgement {
  margin-top: 30px;
  margin-bottom: 40px;
}

.black-text-md {
  margin-bottom: 35px;
  font-size: 14px;
  display: block;
}

.image-fullsize {
  max-width: 100%;
}

.avatar-judge-pic {
  min-width: 460px;
  font-size: 14px;
}
.avatar-judge-pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.avatar-judge-pic.artwork img:hover {
  cursor: url(../img/lupa-64x641.png), zoom-in;
}

.person-info-text h2.black-color {
  color: #000;
  width: calc(100% - 90px);
  font-size: 24px;
}

.social-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.social-share-title {
  font-size: 14px;
  color: #999999;
  margin-right: 12px;
  display: block;
  margin-bottom: 4px;
}
.social-share-icons {
  display: flex;
  gap: 4px;
}
.social-share-link {
  display: block;
  width: 30px;
  height: 30px;
}
.social-share-link img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.social-share-link:last-of-type {
  margin-right: 0;
}

.edit-judgement {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.edit-judgement-link {
  font-size: 14px;
  color: #000;
  line-height: 24px;
  margin-left: 20px;
}

p.paragraph-small {
  font-size: 14px;
  line-height: 24px;
}

.paragraph-infor-judge {
  margin-bottom: 15px;
}

.paragraph-infor-judge p {
  line-height: normal;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  row-gap: 0px;
}

.judge-info {
  margin-bottom: 30px;
}

.show-pages-next {
  margin-right: 20px;
}

.owl-judges {
  position: relative;
}
.owl-judges .owl-next,
.owl-judges .owl-prev {
  display: block;
  opacity: 1;
  outline: none !important;
}
.owl-judges .owl-prev {
  background-image: url(../img/icons/right-arrow.png) !important;
  height: 16px !important;
  width: 22px !important;
  background-repeat: no-repeat;
  right: 35px !important;
  top: 0 !important;
  position: absolute;
}
.owl-judges .owl-next {
  background-image: url(../img/icons/right-arrow1.png) !important;
  height: 16px !important;
  width: 22px !important;
  background-repeat: no-repeat;
  position: absolute;
  top: 0 !important;
  right: 0px !important;
  position: absolute;
}
.owl-judges .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

.thumbs-slider {
  position: relative;
  width: 320px;
  margin-right: 30px;
}
.thumbs-slider-item {
  width: 60px;
  height: 60px;
}
.thumbs-slider-item img {
  width: 100%;
}
.thumbs-slider .owl-next,
.thumbs-slider .owl-prev {
  display: block;
  opacity: 1;
  outline: none !important;
}
.thumbs-slider .owl-next span,
.thumbs-slider .owl-prev span {
  display: none !important;
}
.thumbs-slider .owl-prev {
  background-image: url(../img/icons/back.svg) !important;
  height: 16px !important;
  width: 22px !important;
  background-repeat: no-repeat !important;
  left: -30px !important;
  top: 0 !important;
  position: absolute;
}
.thumbs-slider .owl-next {
  background-image: url(../img/icons/back.svg) !important;
  height: 16px !important;
  width: 22px !important;
  background-repeat: no-repeat !important;
  position: absolute;
  top: 0 !important;
  right: -15px !important;
  position: absolute;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.thumbs-slider .owl-nav {
  position: absolute;
  top: 17px !important;
  right: 0 !important;
  width: 100%;
}
.thumbs-slider .owl-nav.disabled {
  display: block !important;
}

.comment-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.comments-container .comments {
  /*width: 550px;*/
  margin-right: 20px;
  min-width: 500px .comments-container .comments;
}
.comments-container .comments :last-of-type {
  margin-right: 0;
}

.multiple-judge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grey-sm-title {
  font-size: 14px;
  color: #999999;
  display: inline-block;
}

.orange-title-inline {
  display: inline-block;
}

.input-judge {
  width: 450px;
}

.lists-items {
  font-size: 14px;
  margin-bottom: 35px;
}

.ordered-list li {
  list-style-type: decimal;
  margin-left: 40px;
  line-height: 24px;
}

.unordered-list li {
  list-style-type: none;
  margin-left: 0;
  line-height: 24px;
}

.part-right {
  text-align: right;
}

.translate-part img {
  max-width: 100%;
}

.owl-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.part-thumbs {
  margin-right: 0;
  margin-top: 10px;
  width: 100%;
}
.part-thumbs .thumbs-slider-item {
  width: 75px;
}

.part-right {
  width: 350px;
}
.part-right img {
  width: 100%;
}

.judge-popup .popup-window {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.judge-popup .popup-window .orange-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 15px;
}
.judge-popup .popup-window p {
  font-size: 14px;
  line-height: 24px;
}

.famous-explore {
  margin-top: 35px;
}

.small-paragraph {
  font-size: 12px;
}

.tabs-pills {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabs-pill {
  text-transform: capitalize;
  font-size: 16px;
  padding: 10px 12px;
  color: #111;
}
.tabs-pill:hover {
  color: #ff8d00;
}
.pill-active {
  background: #f1f1f1;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.explore-top {
  width: 630px;
  position: relative;
}

.explore-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.explore-text {
  margin-bottom: 40px;
}
.explore-text .orange-title {
  margin-bottom: 25px;
}
.explore-text p {
  font-size: 14px;
}

.to-prev-page {
  width: 11px;
  position: absolute;
  top: -35px;
  left: -11px;
}
.to-prev-page img {
  width: 11px;
}

.settings {
  padding-top: 15px;
  padding-bottom: 140px;
}

.blue-link-xs {
  font-size: 12px;
  color: #4267b2;
}

.social-inputs {
  /* width: 475px; */
  margin-bottom: 25px;
}
.social-inputs .orange-btn {
  margin-top: 20px;
}

.social-inputs-container {
  text-align: center;
  width: 650px;
  margin: auto;
}

.social-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}
.social-input .input-wrapper {
  margin-bottom: 0;
}

.avatar-picture {
  width: 115px;
  height: 115px;
}
.avatar-picture img {
  width: 115px;
  height: 115px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.settings-container {
  width: 650px;
  margin: auto;

  margin-bottom: 40px;
}
.name-block {
  margin-left: 50px;
}
.settings-container .title-md {
  text-align: center;
  margin-bottom: 20px;
}
.settings-container .label-small {
  margin-bottom: 5px;
}
.settings-container .settings-avatar-block {
  display: flex;
  justify-content: center;
}
.settings-container .settings-avatar {
  text-align: center;
}
.settings-container .settings-avatar .label-small {
  margin-bottom: 15px;
  text-align: left;
}
.settings-container .avatar-picture {
  margin-bottom: 15px;
}

.social-label {
  text-align: left;
  margin-left: 50px;
  margin-bottom: 5px;
}

.judge-title {
  margin-bottom: 30px;
}
.judge-title .orange-title {
  margin-bottom: 0;
}

.judgements {
  padding-bottom: 100px;
}

.judge-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
}
.judge-section-image {
  min-width: 430px;
  max-width: 430px;
}
.judge-section-text {
  margin-left: 30px;
}

.liked-quantity {
  font-size: 14px;
  margin-left: 5px;
  vertical-align: middle;
}

.judge-section-text p {
  font-size: 14px;
  margin-bottom: 25px;
}
.judge-section-text p:last-of-type {
  margin-bottom: 50px;
}

.judge-section-text .emoticons-wrap {
  margin-bottom: 20px;
}

.judge-thumbs {
  text-align: right;
  cursor: pointer;
}
.judge-thumbs img {
  vertical-align: middle;
}

.judge-section-title {
  margin-bottom: 20px;
  display: block;
}

.blue-text {
  font-size: 16px;
  color: #4267b2;
}

.year-grey {
  color: #999999;
  font-size: 16px;
}

.judge-translate {
  padding-top: 0;
}
.judge-translate .title-md {
  margin-bottom: 0px;
}
.judge-translate .container {
  margin-bottom: 30px;
}

.filter-label {
  line-height: 24px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}

button.xs-btn {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 35px;
}

.image-judgement {
  width: 195px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.image-judgement img {
  width: 100%;
}

.plain-text {
  font-size: 14px;
}

.input-judge {
  position: relative;
  width: 100%;
}
.input-judge .label-small {
  position: absolute;
  left: -15px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  top: 11px;
}

.judge-parts {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.textarea-short {
  height: 315px;
}

.container-btn {
  text-align: left;
}
.container-btn button {
  margin: 0;
}

.works {
  padding: 40px 0 80px;
}
.works .container {
  position: relative;
}

.totop {
  margin-left: 5px;
  cursor: pointer;
}

.btn-sort {
  outline: none;
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  margin-right: 12px;
}
.btn-sort:last-of-type {
  margin-right: 0;
}

.license-table-col .text-grey-small {
  cursor: pointer;
}

.sort-square {
  background-image: url(../img/icons/four-squares-list.png);
}

.sort-square.active-sort {
  background-image: url(../img/icons/four-squares-list-orange.png);
}

.sort-menu {
  background-image: url(../img/icons/menu-grey.png);
}

.sort-menu.active-sort {
  background-image: url(../img/icons/menu-orange.png);
}

.sort-list {
  background-image: url(../img/icons/menu-of-three-lines.png);
}

.sort-list.active-sort {
  background-image: url(../img/icons/menu-of-three-lines-orange.png);
}

.works-sort {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.works-sort a {
  font-size: 16px;
  color: #000;
}
.works-sort a:last-of-type {
  margin-right: 0;
}

.next-artworks {
  margin-bottom: 40px;
}

.drop-link {
  position: relative;
  margin-right: 45px;
  display: block;
  cursor: pointer;
}
.drop-link:hover {
  color: #ff8d00;
}

.works-sort-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
	gap: 5px;
}
.works-sort-left.lists {
  gap: 15px;
}

.gotolink {
  display: block;
  width: 100%;
  text-align: center;
}

.drop-list {
  background: #fff;
  border: 1px solid #f1f1f1;
  padding: 20px 25px 8px;
  z-index: 10;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 240px;
  margin-top: 10px;
}
.drop-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 10px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.drop-list a {
  font-size: 14px;
  display: block;
  color: #000;
  margin-bottom: 10px;
  margin-right: 0;
}
.drop-list a:hover {
  color: #ff8d00;
}

.dropdown {
  position: relative;
 /* margin-right: 45px;*/
  display: inline-block;
    /*width: 260px*/
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 110;
}

.dropdown-content a {
  font-size: 14px;
  display: block;
  color: #000;
  margin-bottom: 10px;
  margin-right: 0;
}
.dropdown-content a:hover {
  color: #ff8d00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.all-artist {
  padding-bottom: 10px;
}

.judge-num {
  font-size: 14px;
  display: inline-block;
  vertical-align: baseline;
  margin-top: 30px;
  margin-left: 5px;
}

.by-date {
  margin-bottom: 18px;
}
.by-date:last-of-type {
  margin-bottom: 35px;
}

.map {
  width: 100%;
  height: 750px;
}

.map-projects {
  margin-top: 30px;
}
.map-projects .orange-title {
  margin-bottom: 15px;
}

.map-container {
  height: 370px;
  overflow: hidden;
}

.country-work {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.part-mapworks {
  margin-right: 145px;
}

.map-card {
  width: 215px;
  background: #fff;
  /* position: absolute; */
  /* top: -60px; */
  /* left: 50%; */
  /* -webkit-transform: translateX(-80%);
      -ms-transform: translateX(-80%);
          transform: translateX(-80%); */
  -webkit-box-shadow: 1px 0 9px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 0 9px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.map-card::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 44%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  -webkit-transform: rotate(227deg);
  -ms-transform: rotate(227deg);
  transform: rotate(227deg);
  z-index: 10;
}
.map-card-images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.map-card img {
  max-width: 50%;
  height: 140px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
.map-card-title {
  color: #828282;
  display: block;
  padding: 5px;
  max-width: 200px;
}

.map-img {
  max-width: 100%;
}

.map-block {
  position: relative;
  margin-bottom: 60px;
}

.translation {
  padding-top: 40px;
  padding-bottom: 100px;
}

.small-black-text {
  font-size: 12px;
  font-weight: normal;
  margin-left: 5px;
}

.translation-title {
  margin-bottom: 10px;
}

.translation-filters {
  margin-bottom: 35px;
}
.translation-filters .orange-title {
  margin-bottom: 15px;
}

.translation-filter-title {
  position: relative;
  display: inline-block;
}
.translation-filter-title::after {
  position: absolute;
  right: -20px;
  background-image: url(../img/icons/back.svg);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  bottom: 0px;
  content: "";
  width: 18px;
  height: 9px;
  background-repeat: no-repeat;
  top: 3px;
}
.translation-filter-title.filter-opened::after {
  position: absolute;
  right: -20px;
  background-image: url(../img/icons/back.svg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 11px;
  content: "";
  width: 18px;
  height: 9px;
  background-repeat: no-repeat;
}

.filter-label .small-grey {
  display: inline-block;
}

.translation-table {
  margin-bottom: 35px;
}
.translation-table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 8px;
}
.translation-table-row:nth-of-type(odd) {
  background: #f7f3ee;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.translation-table-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
}
.translation-table-col {
  width: 33.3%;
  min-width: 33.3%;
  max-width: 33.3%;
  padding-right: 30px;
}
.translation-table-col:last-of-type {
  padding-right: 0px;
}
.translation-table-col span {
  font-size: 12px;
}
.translation-table-col:last-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.translation-table-col .input-wrapper {
  background: #fff;
}

.translate-language {
  color: #f68c1f;
  font-weight: bold;
}

.orange-title-small {
  color: #ff8d00;
  font-size: 12px;
  line-height: 21px;
  font-weight: bold;
}

.arrow-next-to {
  width: 8px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-translate {
  font-size: 12px;
}
.input-translate input {
  padding-left: 60px;
}
.input-translate .textblock {
  height: 75px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 4px;
}

.active-col .input-wrapper-small {
  height: auto;
}
.active-col .input-wrapper-small .arrow-next-to {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.active-col .input-wrapper-small .arrow-next-to.opened {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.label-text {
  margin-top: 0px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.text-left {
  margin-left: 10px;
  margin-bottom: 5px;
}

.col-open-text {
  margin-top: 20px;
}

.input-wrapper-small {
  width: 100%;
  height: 23px;
  padding: 0 10px;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}
.input-wrapper-small:last-of-type {
  margin-bottom: 0;
}
.input-wrapper-small input {
  padding: 4px 10px;
  font-size: 12px;
}

.filter-popup {
  width: 70%;
  margin: auto;
  margin-top: 50px;
}
.filter-popup button {
  display: block;
  margin: 35px auto 0;
}

.translate-add-artwork {
  width: 65px;
  margin-right: 15px;
  display: block;
}

.artwork-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.header-artwork .translation-table-col:nth-of-type(3) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.add-artwork-col .blue-text {
  display: block;
}
.add-artwork-col .blue-text:first-of-type {
  margin-top: 5px;
}

.table-artwork .translation-table-col:first-of-type {
  width: 15%;
  min-width: 15%;
  max-width: 15%;
}

.table-artwork .translation-table-col:nth-of-type(2) {
  width: 15%;
  min-width: 15%;
  max-width: 15%;
}

.table-artwork .translation-table-col:last-of-type {
  display: block;
}

.table-artwork .translation-table-col .textarea-full {
  padding: 10px;
  display: block;
  height: 145px;
  background: #fff;
  margin-bottom: 15px;
}

.label-absolute {
  position: absolute;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  left: -10px;
}

.table-languages-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
}
.table-languages-header .table-languages-col {
  font-size: 11px;
  width: 70px;
  min-width: 70px;
  line-height: 14px;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.table-languages-header .table-languages-col:first-of-type {
  width: 90px;
}
.table-languages-header .table-languages-col::after {
  content: "";
  height: 25px;
  width: 1px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #dbdbdb;
  position: absolute;
}

.table-languages-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.table-languages-row:nth-of-type(odd) {
  background: #f7f3ee;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.table-languages-row .table-languages-col {
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  text-align: center;
}
.table-languages-row .table-languages-col:first-of-type {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  text-align: left;
}

.blue-text-small {
  font-size: 12px;
  color: #4f83c3;
}

.text-small-black {
  font-size: 12px;
}

.translation-table-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.viewpage {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1140px;
}
.viewpage-image {
  /*width: 950px;*/
  min-width: 680px;
  margin: 0 auto;
  height: 680px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.viewpage-image img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.viewpage-controls-top {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 100;
}
.viewpage-controls-top-btn {
  background: transparent;
  cursor: pointer;
  outline: none;
  border: none;
  display: block;
  margin-bottom: 12px;
}
.viewpage-controls-bottom {
  padding: 35px 0 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.viewpage-controls-bottom .controls-bottom-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.viewpage-controls-bottom .controls-bottom-left-text {
  margin-left: 10px;
}

.white-text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.controls-grey {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.controls-grey img {
  margin-left: 5px;
  margin-right: 5px;
  width: 8px;
  height: 8px;
}

.control-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.control-btn:last-of-type {
  margin-right: 0;
}

.controls-bottom-left {
  width: 33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.controls-bottom-center {
  width: 33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.controls-bottom-right {
  width: 33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.color-scheme {
  background: #fff;
  border: 1px solid #f1f1f1;
  padding: 18px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 80px;
  right: 25px;
}
.color-scheme::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  right: 24px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.color-scheme-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.color-scheme-row:last-of-type {
  margin-bottom: 0;
}

.color {
  width: 19px;
  height: 19px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.color:last-of-type {
  margin-right: 0;
}
.color-selected {
  border: 1px solid #999;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.color-wrap {
  margin-right: 5px;
  height: 25px;
  width: 25px;
}
.color-black {
  background: #000;
}
.color-green {
  background: #00ff00;
}
.color-blue {
  background: #0000ff;
}
.color-yellow {
  background: #ffc60d;
}
.color-cyan {
  background: #4d59a1;
}

.color-red {
  background: #ff0000;
}

.color-btn {
  position: relative;
}

.play-control {
  width: 80%;
  margin: auto;
  position: absolute;
  height: 1px;
  background: #abaaa8;
  display: block;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.play-time {
  position: absolute;
  background: #fff;
  width: 1px;
  height: 10px;
  left: 12px;
  top: -4px;
}

.btn-act {
  position: absolute;
  left: 30px;
  bottom: 30px;
  cursor: pointer;
}

.btn-play {
  background-image: url(../img/pause.png);
  width: 10px;
  height: 23px;
}

.btn-pause {
  background-image: url(../img/play.png);
  width: 21px;
  height: 30px;
}

.mosaic-view {
  position: absolute;
  top: 200px;
}
.mosaic-view-img {
  width: 100px;
  height: 80px;
  margin-bottom: 25px;
}
.mosaic-view-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mosaic-left {
  left: 30px;
}

.mosaic-right {
  right: 30px;
}

.mosaic-img {
  width: 800px;
  height: 600px;
  background: #fff;
  position: relative;
}
.mosaic-img .vertical {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #666666;
  left: 50%;
}
.mosaic-img .horizontal {
  position: absolute;
  height: 1px;
  width: 100%;
  background: #666666;
  top: 50%;
}

.slider-arr {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
}

.slider-arr-back {
  left: 0;
}

.slider-arr-next {
  right: 0;
}

.arrws {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
}

.viewpage-full {
  padding-top: 0;
  margin-top: 0;
}
.viewpage-full .viewpage-image {
  height: 100vh;
}

.view-thumbs {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.view-thumb-img {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  overflow: hidden;
  background-color: #000;
}

.view-thumb-img:hover {
  cursor: pointer;
}

.view-thumb-img:last-of-type {
  margin-right: 0;
}
.view-thumb-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

.view-thumb-img-select {
  border: 2px solid #4063aa;
}

.viewpage {
  margin-top: 100px;
}

.mosaic-view-img:hover {
  cursor: pointer;
}

.header .search {
  margin-right: 20px;
}

.header .orange-tag {
  margin-bottom: 0;
}

.image-uploaded-title {
  color: #000;
}

.translation-filter-title {
  cursor: pointer;
}

.blue-link-xs {
  font-size: 12px;
}

.input-wrapper.input-wrapper-small.input-translate {
  cursor: pointer;
}

a.blue-text {
  font-size: 12px;
}

.input-translate .sign-input:hover {
  cursor: pointer;
}

@media screen and (max-width: 1140px) {
  .tooltip {
    /*top: -17px;*/
  }
  .container {
    width: 90%;
  }
  .viewpage-image {
    width: 100%;
  }
  .translate-part {
    width: 46%;
  }
  .related-item {
    width: 22%;
    margin-right: 20px;
  }
  .date-inputs {
    display: block;
  }
  .date-inputs .input-wrapper,
  .date-inputs .date-input,
  .date-inputs .year-input {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .date-inputs .input-wrapper {
    margin-bottom: 10px;
  }
  .date-wrap .checkbox-container {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
  }
  .popup {
    width: 100%;
  }
  .popup-remove-artist {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper-row {
    display: block;
  }
  .wrapper-column {
    width: 100%;
  }
  .history-table-column {
    margin-left: 15px;
  }
  .history-period {
    width: 125px;
    margin-right: 15px;
  }
  .history-table-column:nth-of-type(3) {
    min-width: 125px;
  }
  .history-table-column:nth-of-type(5) {
    width: 122px;
  }
  .history-table-column:nth-of-type(4) {
    width: 290px;
  }
  .history-table-container {
    width: 100%;
    overflow-x: scroll;
  }
  .history-table {
    width: 900px;
  }
  .favorites-item-text {
    font-size: 14px;
    padding-left: 20px;
  }
  .image-uploaded-item {
    width: 23.6%;
    margin-right: 1%;
  }
  .image-uploaded-item:nth-of-type(4n) {
    margin-right: 1%;
  }
  .image-uploaded-item:last-of-type {
    margin-right: 1%;
  }
  .image-uploaded {
    width: 100%;
  }
  .comments {
    width: 100%;
  }
  .multiple-judge {
    display: block;
  }
  .thumbs-slider {
    margin-left: 30px;
    margin-right: 0;
  }
  .table-artwork,
  .table-languages {
    min-width: 1140px;
  }
  .artwork-table-wrapper {
    width: 100%;
    overflow: scroll;
  }
  .table-languages-wrapper {
    width: 100%;
    overflow: scroll;
  }
  .viewpage-full .container {
    width: 100%;
  }
  .viewpage {
    width: 90%;
  }
  .mosaic-img {
    width: 600px;
    height: 400px;
  }
}

@media screen and (max-width: 1100px) {
  .avatar-wrap {
    display: block;
  }
  .uploader .signup-text {
    display: block;
    margin-left: 0;
    margin-top: 20px;
  }
  .avatar {
    margin-bottom: 20px;
  }
  .input-area {
    display: block;
  }
  .message-textarea {
    height: 240px;
  }
  .license-table-col:nth-of-type(2) {
    min-width: 120px;
  }
  .license-table-title {
    font-size: 12px;
  }
  .license-table-col:first-of-type {
    min-width: 80px;
    max-width: 80px;
  }
  .license-table-col:nth-of-type(2) {
    padding-left: 0px;
    padding-right: 10px;
  }
  .license-table-col:last-of-type {
    min-width: 42px;
  }
  .text-grey-small {
    font-size: 12px;
  }
  .search-hints {
    height: 265px;
  }
  .judge-popup .popup-window {
    width: 90%;
  }
}

@media screen and (max-width: 1010px) {
  .mosaic-img {
    width: 500px;
    height: 300px;
  }
  .mosaic-view {
    top: 80px;
  }
  .mosaic-left {
    left: 50px;
  }
  .mosaic-right {
    right: 50px;
  }
}

@media screen and (max-width: 985px) {
  .feature-item .related-item-text {
    width: 100%;
    text-align: center;
    left: 0;
  }
  .feature-item {
    width: 43%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .feature-item:last-of-type,
  .feature-item:nth-last-of-type(2) {
    width: 43%;
    margin-right: 0;
  }
  .feature-item:nth-of-type(odd) {
    margin-right: 20px;
  }
  .feature-item img {
    width: 100%;
  }
  .uploaded {
    display: block;
  }
  .uploaded-size {
    margin-left: 0;
    margin-top: 20px;
  }
  .date-wrap-item {
    display: inline-block;
  }
  .dates-wrap .checkbox-container {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5px;
    margin-right: 5px;
  }
  .date-wrap-item .input-wrapper {
    margin: 0;
  }
  .uploaded-item {
    margin-bottom: 20px;
  }
  .meta-tags-form {
    display: block;
  }
  .meta-titles {
    width: 100%;
    margin-bottom: 20px;
  }
  .meta-tags-wrapper {
    width: 100%;
  }
  .favorites-item-vertical {
    width: 25%;
  }
  .favorites-item-horizontal {
    width: 42%;
  }
  .favorites-item {
    margin-left: 1%;
    margin-right: 1%;
  }
  .image-uploaded-item {
    width: 30.6%;
    margin-right: 2%;
  }
  .button.url {
    min-width: unset;
  }
  .avatar-judge-pic {
    min-width: 300px;
  }
  .comment-flex {
    display: block;
  }
  .comments-container {
    display: block;
    margin-bottom: 30px;
  }
  .comments-container .comments {
    width: 100%;
    margin-right: 20px;
    min-width: 100%;
  }
  .input-judge {
    width: 100%;
  }
  .part-right {
    text-align: left;
  }
  .judge-section-image {
    min-width: 50%;
    max-width: 50%;
  }
  .mosaic-view {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    left: inherit;
    right: inherit;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .mosaic-view .mosaic-view-img {
    display: inline-block;
    margin-right: 15px;
    cursor: pointer;
  }
  .mosaic-view .mosaic-view-img:last-of-type {
    margin-right: 0;
  }
  .viewpage-center {
    text-align: center;
  }
  .controls-bottom-left-text {
    text-align: left;
  }
  .mosaic-img {
    margin-top: 100px;
  }
  .viewpage {
    margin-top: 50px;
  }
  .viewpage-video .viewpage-image {
    margin-top: 100px;
  }
}

@media screen and (max-width: 850px) {
  .about-info {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .quote-framed {
    padding: 30px 45px;
  }
  .popup-list-item li {
    line-height: 30px;
    font-size: 11px;
  }
  .mCSB_container {
    display: block;
  }
  .popup-list-item {
    list-style-type: none;
    display: inline-block;
    width: 24%;
    vertical-align: top;
  }
  .popup-list-item li {
    line-height: 20px;
    font-size: 12px;
  }
  .mCSB_inside > .mCSB_container {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav a {
    display: block;
    margin: 0;
    margin-bottom: 10px;
  }
  .container-small {
    width: 90%;
  }
  .favorites-item {
    margin-left: 2%;
    margin-right: 2%;
    width: 45%;
  }
  .settings-container .settings-avatar {
    margin-left: 0;
  }
  .social-inputs-container {
    width: 90%;
    margin: auto;
  }
  .social-inputs {
    width: 100%;
  }
  .settings-container .settings-avatar .label-small {
    text-align: center;
  }
  .avatar-picture {
    width: auto;
    text-align: center;
    height: auto;
  }
  .blue-link-xs {
    display: block;
  }
  .settings-container {
    width: 90%;
  }
  .judge-section {
    display: block;
  }
  .judge-section-text {
    margin-left: 0;
    margin-top: 30px;
  }
  /* Fix double-tap issue on mobile by removing hover requirement */
  .project .overlay,
  .related-item-artist .overlay {
    opacity: 1;
  }
}

@media screen and (max-width: 760px) {
  .works-sort {
    display: block;
  }
  .works-sort-right {
    margin-top: 20px;
  }
}

@media screen and (max-width: 700px) {
  .wrapper-editor {
    display: block;
  }
  .avatar-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .avatar-wrap .avatar {
    width: auto;
    max-width: 100%;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .type-search {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .signup {
    display: block;
  }
  .or {
    text-align: center;
    margin-bottom: 10px;
  }
  .or .or-text {
    padding: 8px 0;
    display: block;
  }
  .divider {
    height: 1px;
    width: 80%;
  }
  .signup-right {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }
  .sign-form {
    margin: auto;
  }
  .signup-social {
    width: 60%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  /*  .projects-wrap {
    width: 44%; }*/
  .feedback-form {
    width: 80%;
  }
  .header .nav-top {
    display: block;
    text-align: center;
  }
  .translate-part {
    width: 100%;
    margin-bottom: 40px;
  }
  .translate .container {
    display: block;
  }
  .person-title {
    display: block;
  }
  .socials {
    margin-left: 0;
    margin-top: 10px;
    display: flex;
  }
  .person-info {
    display: block;
  }
  .person-info-text {
    margin-left: 0;
  }
  .related-item {
    width: 44%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .related-item:nth-of-type(odd) {
    margin-right: 10px;
  }
  .feature-item:last-of-type,
  .feature-item:nth-last-of-type(2) {
    width: 100%;
  }
  .search-hint {
    font-size: 12px;
  }
  .search-hints {
    bottom: -7px;
    text-align: left;
    right: 0;
    left: inherit;
    width: 158%;
  }
  .avatar-judge-pic {
    min-width: 70%;
    margin-bottom: 20px;
  }
  .explore-top {
    width: 100%;
  }
  .explore-nav {
    display: block;
  }
  .tabs-pills {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .input-judge .label-small {
    position: relative;
    top: inherit;
    left: inherit;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .drop-link {
    margin-right: 0;
  }
  /*.works-sort-left {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }*/
  .works-sort a,
  .drop-link {
    font-size: 13px;
  }
  .dropdown {
    margin-right: 0;
  }
  .map-card {
    top: -30px;
  }
  .map-card {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
  }
  .part-mapworks {
    margin-right: 0;
  }
  .filter-popup {
    width: 100%;
  }
  .viewpage-controls-bottom {
    display: block;
  }
  .controls-bottom-left,
  .controls-bottom-center,
  .controls-bottom-right {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  .controls-bottom-left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .popup-list-item {
    width: 32%;
  }
  .popup-window {
    padding: 25px 30px;
  }
  .popup-list-items {
    padding-right: 0;
  }
  .edit-text {
    width: 100%;
  }
  .uploaded-item-big {
    margin-right: 0;
  }
  .license-info,
  .license-input-title {
    width: 100%;
  }
  .license-table-col:first-of-type {
    min-width: 110px;
    max-width: 110px;
  }
  .license-table-text {
    font-size: 12px;
  }
  .art-form {
    width: 100%;
  }
  .image-uploaded-item {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .judge-section-image {
    min-width: 100%;
    max-width: 100%;
  }
  .judge-section-title {
    font-size: 20px;
  }
  .viewpage-controls-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .viewpage-controls-top-btn {
    margin-right: 10px;
  }
  .viewpage-controls-top-btn:last-of-type {
    margin-right: 0;
  }
  .viewpage-image {
    width: 88%;
  }
  .slider-arr-back {
    left: -11px;
  }
  .slider-arr-next {
    right: -11px;
  }
  .mosaic-img {
    width: 100%;
  }
  .mosaic-view-img {
    width: 50%;
    margin-bottom: 15px;
  }
  .mosaic-view-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
  .view-img {
    margin-top: 100px;
  }
  .view-img .viewpage-controls-top {
    top: -50px;
  }
  .viewpage-controls-top {
    top: 20px;
  }
  .color-scheme::after {
    display: none;
  }
  .tooltip .tooltiptext {
    right: 0;
    left: auto !important;
  }
}

@media screen and (max-width: 520px) {
  .logo {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  .fb-widget {
    width: 80%;
    margin: auto;
    display: block;
    margin-top: 10px;
  }
  .content {
    padding-bottom: 50px;
  }
  .signup-social {
    width: 100%;
  }
  .projects-wrap {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .header .nav-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-label {
    font-size: 10px;
    padding: 15px 12px;
    margin-right: 7px;
  }
  .nav-label.lightgrey {
    min-width: 116px;
  }
  .pagination {
    float: none;
    position: relative;
    margin-top: 30px;
  }
  .quote-framed {
    padding: 20px 25px;
  }
  .blockquote {
    margin-left: 0;
  }
  .nav {
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .related-item {
    width: 100%;
  }
  .related-item:nth-of-type(odd) {
    margin-right: 0;
  }
  .related-item-text {
    text-align: center;
    width: 100%;
    /* left: 20px; */
  }
  .avatar-wrap {
    display: block;
    margin-bottom: 20px;
  }
  .avatar-wrap .avatar {
    width: auto;
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .header .nav-top {
    text-align: left;
  }
  .nav-right .select {
    padding-left: 0;
    margin-right: 20px;
  }
  .popup-list-item {
    width: 48%;
  }
  .popup-list-item li {
    font-size: 14px;
    line-height: 35px;
  }
  .uploaded {
    display: block;
  }
  .nav-label a {
    padding: 0;
  }
  .orange-tag-title {
    font-size: 11px;
  }
  .tags-orange {
    margin-left: 0;
  }
  .input-tags-wrapper {
    padding-right: 0;
    display: block;
  }
  .input-tags-wrapper a {
    position: inherit;
    margin-left: 0;
    bottom: 14px;
  }
  .content-row {
    display: block;
  }
  .content-column {
    width: 100%;
    margin-left: 0;
  }
  .favorites-item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .owl-judges .owl-nav {
    top: -28px;
  }
  .suggest-btn {
    font-size: 12px;
    padding: 0 12px;
  }
  .sign-input,
  .sign-input:placeholder {
    font-size: 12px;
  }
  .part-thumbs {
    width: 90% !important;
  }
  .translation-table-col {
    padding-right: 10px;
  }
  .btn-act {
    left: 10px;
  }
  .viewpage-video .container {
    width: 100%;
  }
  .play-control {
    left: 0;
    right: -25px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 400px) {
  .uploaded-item-big .vertical-upload {
    width: 100%;
    height: 300px;
  }
  .meta-tag-language {
    width: 100%;
  }
  .image-uploaded-item {
    width: 100%;
  }
  .search-input {
    font-size: 14px;
  }
  .search {
    margin-left: 25px;
  }
  .comments {
    display: block;
  }
  .comments-text.mobile {
    width: 100%;
  }
  .comments-avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .nav-left {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .nav-right {
    min-width: 280px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .btns-actions {
    display: block;
  }
  .btns-actions .grey-button,
  .btns-actions .orange-button {
    width: 170px;
    display: block;
    margin: 20px auto;
  }
  .btns-actions button {
    margin: auto;
    display: block;
  }
  .avatar-judge-pic {
    min-width: 100%;
  }
  .thumbs-slider {
    width: 100%;
  }
  .part-right img {
    max-width: 100%;
  }
  .part-thumbs .thumbs-slider-item {
    width: 65px;
  }
  .part-thumbs {
    margin-right: 0;
    margin-left: 0;
  }
  .judge-popup .popup-window {
    width: 100%;
  }
  .tabs-pill {
    font-size: 14px;
    padding: 10px 15px;
  }
  .tabs-pill:hover {
    color: #ff8d00;
  }
  .works-sort a,
  .drop-link {
    font-size: 12px;
  }
  .paragraph-infor-judge p {
    padding-right: 40px;
  }
  .tooltip .tooltiptext {
    right: auto;
    left: -100% !important;
  }
}

@media screen and (max-width: 350px) {
  .dropdown-link {
    margin-right: 20px;
  }
  .tabs-pill {
    font-size: 12px;
    padding: 10px 12px;
  }
  .title-md {
    font-size: 20px;
  }
}

.nav-right {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.tooltip {
  position: relative;
  /*display: inline-block;*/
  /*border-bottom: 1px dotted black;  If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  font-size: 14px !important;
  font-weight: 500 !important;
  visibility: hidden;
  width: max-content !important;
  background-color: #555 !important;
  color: #fff !important;
  text-align: center !important;
  padding: 5px !important;
  border-radius: 6px !important;

  /* Position the tooltip text */
  position: absolute !important;
  z-index: 1 !important;
  /*bottom: 125% !important;*/
  left: 150% !important;
  /*bottom: 110% !important;*/
  top: 50%;
  /*margin-left: -60px !important;*/

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
/*.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}*/

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  max-width: 250px;
  background-color: #555 !important;
}

.vm--overlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

.inactive .select,
input:disabled {
  cursor: initial;
  background: #f7f7f7;
}

input.sign-input::placeholder {
  color: grey !important;
}

.leaflet-popup-content p {
  margin: 5px 0 !important;
}


/* paddings and margins*/
.padding-xs { padding: .25em; }
.padding-sm { padding: .5em; }
.padding-md { padding: 1em; }
.padding-lg { padding: 1.5em; }
.padding-xl { padding: 3em; }
.padding-x-xs { padding: .25em 0; }
.padding-x-sm { padding: .5em 0; }
.padding-x-md { padding: 1em 0; }
.padding-x-lg { padding: 1.5em 0; }
.padding-x-xl { padding: 3em 0; }
.padding-y-xs { padding: 0 .25em; }
.padding-y-sm { padding: 0 .5em; }
.padding-y-md { padding: 0 1em; }
.padding-y-lg { padding: 0 1.5em; }
.padding-y-xl { padding: 0 3em; }
.padding-top-xs { padding-top: .25em; }
.padding-top-sm { padding-top: .5em; }
.padding-top-md { padding-top: 1em; }
.padding-top-lg { padding-top: 1.5em; }
.padding-top-xl { padding-top: 3em; }
.padding-right-xs { padding-right: .25em; }
.padding-right-sm { padding-right: .5em; }
.padding-right-md { padding-right: 1em; }
.padding-right-lg { padding-right: 1.5em; }
.padding-right-xl { padding-right: 3em; }
.padding-bottom-xs { padding-bottom: .25em; }
.padding-bottom-sm { padding-bottom: .5em; }
.padding-bottom-md { padding-bottom: 1em; }
.padding-bottom-lg { padding-bottom: 1.5em; }
.padding-bottom-xl { padding-bottom: 3em; }
.padding-left-xs { padding-left: .25em; }
.padding-left-sm { padding-left: .5em; }
.padding-left-md { padding-left: 1em; }
.padding-left-lg { padding-left: 1.5em; }
.padding-left-xl { padding-left: 3em; }
.margin-xs { margin: .25em; }
.margin-sm { margin: .5em; }
.margin-md { margin: 1em; }
.margin-lg { margin: 1.5em; }
.margin-xl { margin: 3em; }
.margin-x-xs { margin: .25em 0; }
.margin-x-sm { margin: .5em 0; }
.margin-x-md { margin: 1em 0; }
.margin-x-lg { margin: 1.5em 0; }
.margin-x-xl { margin: 3em 0; }
.margin-y-xs { margin: 0 .25em; }
.margin-y-sm { margin: 0 .5em; }
.margin-y-md { margin: 0 1em; }
.margin-y-lg { margin: 0 1.5em; }
.margin-y-xl { margin: 0 3em; }
.margin-top-xs { margin-top: .25em; }
.margin-top-sm { margin-top: .5em; }
.margin-top-md { margin-top: 1em; }
.margin-top-lg { margin-top: 1.5em; }
.margin-top-xl { margin-top: 3em; }
.margin-right-xs { margin-right: .25em; }
.margin-right-sm { margin-right: .5em; }
.margin-right-md { margin-right: 1em; }
.margin-right-lg { margin-right: 1.5em; }
.margin-right-xl { margin-right: 3em; }
.margin-bottom-xs { margin-bottom: .25em; }
.margin-bottom-sm { margin-bottom: .5em; }
.margin-bottom-md { margin-bottom: 1em; }
.margin-bottom-lg { margin-bottom: 1.5em; }
.margin-bottom-xl { margin-bottom: 3em; }
.margin-left-xs { margin-left: .25em; }
.margin-left-sm { margin-left: .5em; }
.margin-left-md { margin-left: 1em; }
.margin-left-lg { margin-left: 1.5em; }
.margin-left-xl { margin-left: 3em; }

.orange-btn.disabled {
  background: #c0c0c0;
  cursor: no-drop;
}

.project.projects-wrap {
  margin-bottom: 20px !important;
}
