/* Minification failed. Returning unminified contents.
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(196,26): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(383,29): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(384,15): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(397,15): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(527,22): run-time error CSS1039: Token not allowed after unary operator: '-accent'
 */
/* USER VARIABLES SECTION */

/*
:root {
  --accent: #cb11ab;
  --text: #000;
  --regular-text: 16px;
  --lineheight: 1.65;
  --userfont: roboto-st, sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}
*/

.form-review {
    --accent: #fc0;
}
/* FONTS LOAD SECTION */
/*
@font-face {
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2');
    font-family: 'roboto-st';
    font-weight: 400;
    font-style: normal;
}
@font-face {
  src: url('../fonts/roboto-italic-webfont.woff2') format('woff2');
  font-family: 'roboto-st';
  font-weight: 400;
  font-style: italic;
}
@font-face {
  src: url('../fonts/roboto-bold-webfont.woff2') format('woff2');
  font-family: 'roboto-st';
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url('../fonts/roboto-bolditalic-webfont.woff2') format('woff2');
  font-family: 'roboto-st';
  font-weight: 700;
  font-style: italic;
}*/

/* GENERAL CSS SETTINGS */

::placeholder {
  color: #666;
}
/*
::selection {
  background-color: var(--accent);
  color: #fff;
}
*/
input,
textarea {
  outline: none;
}
input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}
input:required:valid,
textarea:required:valid {
  border-color: green;
}

/*
body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  margin: 0;
}
*/

/*
.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
*/
/*
h2 {
  margin: 0 0 20px 0;
  font-size: 36px;
}

h3 {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 20px 0;
}
*/
/* USER STYLES */

.new-feedback__btn {
    width: auto;
    min-width: 252px;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    padding: 11px 25px 12px;
    margin: 20px 0;
    /*background: #fc0;*/
    border: 1px solid #ccc;
}
    .new-feedback__btn:hover {
        background-color: #f5c400;
        color: #000;
    }

.reviews-image-container {
  max-width: 794px;
  position: relative;
  margin-top: 20px;
}
.swiper-reviews {
  position: relative;
  overflow: hidden;
}
.reviews-img-prev.swiper-button-disabled,
.reviews-img-next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.reviews-img-prev,
.reviews-img-next {
  width: auto;
  height: auto;
  padding: 15px;
  font-size: 0;
  line-height: 1;
  background: #fff;
  border-radius: 100%;
  border: none;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: absolute;
}
.reviews-img-prev::after,
.reviews-img-next::after {
  display: none;
}
.reviews-img-prev {
  left: -20px;
  top: 66%;
}
.reviews-img-next {
  right: -20px;
  top: 66%;
}
.reviews-img-prev::before,
.reviews-img-next::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.361.238a.977.977%200%20011.278%200l7.097%206.377a.755.755%200%20010%201.147.977.977%200%2001-1.278%200L8%201.96%201.542%207.762a.977.977%200%2001-1.277%200%20.755.755%200%20010-1.147L7.36.238z%22%20fill%3D%22%23000%22%2F%3E%3Crect%20width%3D%222%22%20height%3D%2216%22%20rx%3D%221%22%20transform%3D%22matrix(-1%200%200%201%209%200)%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E')
    center/contain no-repeat;
  transform: rotate(270deg);
}
.reviews-img-next::before {
  transform: rotate(90deg);
}
.swiper-reviews .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.swiper-reviews .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
  height: 68px;
  max-width: 68px;
  border: 2px solid transparent;
}
.swiper-reviews .swiper-slide:hover {
  border: 2px solid var(--accent);
}

/* STARS */
.star-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.star-container--chk .star:hover .star-svg {
  fill: #fc0;
}
.star.star__checked .star-svg,
.star.star__checked ~ .star .star-svg {
  fill: #fc0;
}
.star-container--chk .star:hover .star-svg,
.star-container--chk .star:hover ~ .star .star-svg,
.star-container--chk .star.star__checked .star-svg,
.star-container--chk .star.star__checked ~ .star .star-svg {
  fill: #fc0;
}
.star-container--chk .star {
  cursor: pointer;
}
.star svg {
  width: 45px;
  height: 45px;
  pointer-events: none;
}
.star .star-svg {
  fill: #e8e8e8;
}

/* CHECKBOX */

.review-form-group {
    display: block;
}

    .review-form-group input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .review-form-group label {
        position: relative;
        cursor: pointer;
    }

        .review-form-group label:before {
            content: '';
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            background-color: #dcdcdc;
            border-radius: 3px;
            transition: background-color 0.12s ease-in-out;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
        }
    .review-form-group input:checked + label:before {
        background-color: #454545;
    }
    .review-form-group input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 4px;
        left: 6px;
        width: 4px;
        height: 9px;
        border: solid #fff;
        border-width: 0 1px 1px 0;
        transform: rotate(45deg);
    }

/* user-scores */

.user-scores__item {
  display: flex;
  align-items: center;
}
.star-container--scores .star {
  height: 18px;
}
.star-container--scores .star svg {
  width: 18px;
  height: 18px;
}
.star-container--feedback .star {
  height: 16px;
}
.star-container--feedback .star svg {
  width: 16px;
  height: 16px;
  display: block;
}
.user-scores__count {
  font-size: 14px;
  line-height: 16px;
  padding-left: 12px;
  color: #222;
}

.user-scores__score-wrap {
  width: 110px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 18px;
}
.user-scores__score {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
}
.user-scores__text-wrap {
  margin: 12px 0 0;
}
.user-scores__text {
  font-size: 16px;
  line-height: 22px;
  color: #8b8b8b;
}
.user-scores {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.user-scores .user-scores__item:not(:last-child) {
  margin-bottom: 8px;
}

/* SORTING */

.sorting {
  display: flex;
  align-items: center;
  margin: 30px 0;
}
.sorting__header {
  font-size: 16px;
  line-height: 22px;
  color: #a7a7a7;
  font-weight: 400;
  margin: 0 12px 0 0;
}
.sorting__list {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.sorting__item {
  list-style-type: none;
  padding: 0;
}
.sorting__item:not(:last-child) {
  margin-right: 25px;
}
.sorting__item a {
  border-bottom: 1px dashed;
  border-bottom-color: currentcolor;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  border-color: initial;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  text-transform: capitalize;
  position: relative;
}
.sorting__item a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}
.sorting__decor {
  width: 6px;
  height: 10px;
  position: absolute;
  right: -13px;
  top: 8px;
  background: url(data:image/svg+xml,%3Csvg%20width%3D%226%22%20height%3D%2210%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M.468%207.634a.563.563%200%200%201%20.752-.839l1.167%201.046V1.5a.597.597%200%200%201%201.193%200v6.37l1.2-1.075a.563.563%200%200%201%20.752.839l-1.864%201.67a1%201%200%200%201-1.335.001L.468%207.634z%22%20fill%3D%22%23CB11AB%22%2F%3E%3C%2Fsvg%3E)
    center/contain no-repeat;
  display: none;
}
a.sorting__selected {
  color: var(--accent);
}
a.sorting__selected .sorting__decor {
  display: block;
}
.sorting .review-form-group {
    margin-left: 40px;
    font-weight: 700;
}
    .sorting .review-form-group label:before {
        margin-right: 12px;
    }
/* comments */

.comments-list {
  margin: 30px 0 0;
  padding: 0;
}
.comments-list__item {
  list-style-type: none;
  margin: 0;
  margin-bottom: 40px;
}
.feedback__avatar {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 10rem;
  overflow: hidden;
}
.feedback__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stars__label {
  color: #878787;
  padding: 0 12px 0 8px;
  font-size: 14px;
  line-height: 16px;
}
.feedback__user {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  padding-bottom: 8px;
  align-items: center;
}
.feedback {
  display: flex;
  gap: 15px;
}
.feedback__wrapper p {
  font-size: 14px;
  line-height: 24px;
  color: #222;
  margin-top: 8px;
  margin-bottom: 2px;
}
.feedback__wrapper p span {
  font-weight: 700;
  margin-right: 5px;
}
.feedback__gallery {
  margin-top: 20px;
  display: flex;
  gap: 20px 20px;
  padding: 0;
  flex-wrap: wrap;
}
.feedback__gallery--img {
  border-radius: 8px;
  overflow: hidden;
  height: 68px;
  max-width: 68px;
  width: 68px;
  display: block;
}

.feedback__gallery--img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* FORM */

.form-review {
  max-width: 834px;
}
.form-review__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 45px;
  width: 227px;
  line-height: 24px;
}
.form-review__item {
  display: flex;
  gap: 50px;
  margin-bottom: 25px;
}

.form-review__item .star-container--chk {
  width: 225px;
}
.form-review textarea, .form-review .textarea {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: 14px;
  line-height: 20px;
  min-height: 36px;
  padding: 6px 36px 6px 12px;
  border: 2px solid #e8e8e8;
  color: #222;
  resize: none;
  margin-top: 8px;
}
.form-review textarea:focus,
.form-review textarea:focus-visible,
.form-review textarea:active {
  outline: 0;
  border-color: var(--accent);
}
.form-review label {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.25px;
  color: #999;
  display: block;
  margin-bottom: 16px;
  position: relative;
}
.form-review__control {
  width: 100%;
}
.button-clear {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 11px;
  top: 32px;
  border: none;
  background: url('../images/x.svg') no-repeat;
  background-size: contain;
}

.upload__box {
  width: 100%;
  height: 100%;
}
.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
label.upload__btn {
  display: inline-block;
  font-weight: 600;
  line-height: 26px;
  font-size: 13px;
  margin: 0;
  display: flex;
  line-height: 16px;
}
.upload__btn-box {
  display: flex;
  padding: 40px 60px;
  color: #999;
  border: 1px dotted #ccc;
  border-radius: 3px;
}
label.upload__btn svg {
  display: inline-block;
  margin: auto 16px auto 0;
  min-width: 24px;
}
.upload__btn p span {
    /*color: var(--accent);*/
    color: #3d8901;
}
.upload__btn p span:hover {
  background-color: unset;
  cursor: pointer;
  color: red;
  transition: all 0.3s ease;
}
.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.upload__img-box {
  width: 133px;
  padding: 0 10px;
  margin-bottom: 25px;
}
.upload__img-close {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 1);
  position: absolute;
  top: -9px;
  right: -19px;
  text-align: center;
  line-height: 12px;
  z-index: 1;
  cursor: pointer;
}
.upload__img-close:after {
  content: '✖';
  font-size: 9px;
  color: white;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}
/*
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 12px;
  -webkit-appearance: none;
  border: 0;
  border-radius: 4px;
  position: relative;
  line-height: 48px;
  height: 48px;
  cursor: pointer;
  background: var(--accent);
  font-size: 16px;
  color: #fff;
}
*/

.btn-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 12px;
    -webkit-appearance: none;
    border: 0;
    border-radius: 4px;
    position: relative;
    line-height: 40px;
    height: 40px;
    cursor: pointer;
    background: #fc0;
    font-size: 16px;
    color: #000;

    width: calc(100% - 216px);
    margin-left: auto;
    /*box-sizing: content-box;*/
}

    .btn-form:hover {
        background-color: #f5c400;
    }

.error-field {
  display: none;
  color: red;
  margin: 0 0 7px;
  font-size: 12px;
}
.form-review__item__right {
  width: 100%;
}

.sorting__link.sort .sorting__decor {
  transform: rotate(180deg);
}

.review-date{
    color: #8b8b8b;
    font-weight: normal;
    display: inline-block;
    margin-left: 15px;
}




.showForKonkursant, .showForNonKonkursant{
    display: none;
}

.konkurs-link {
    color: #3d8901;
}

    .konkurs-link:hover {
        background-color: unset;
        cursor: pointer;
        color: red;
        transition: all 0.3s ease;
    }
/* sm <= Medium (md) */
@media (max-width: 768px) {
  .form-review__item {
    gap: 30px;
  }
}

/* xs <= Small (sm) */
@media (max-width: 576px) {
  .form-review__item {
    flex-wrap: wrap;
  }
  .btn-form {
    width: 100%;
  }
  .upload__btn-box {
    padding: 30px 20px;
  }
  .form-review__title {
    font-size: 18px;
  }
  .upload__img-box {
    width: 70px;
  }
  .sorting {
    flex-wrap: wrap;
  }
  .sorting .form-group {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .reviews-img-next {
    right: 0;
  }
  .reviews-img-prev {
    left: 0;
  }
}
@media (max-width: 400px) {
  .user-scores {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .user-scores__left .star-container--scores {
    justify-content: center;
  }
  .user-scores__score-wrap {
    width: 100%;
    margin-right: 0;
  }
  .new-feedback__btn {
    width: 100%;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before,
  .mfp-arrow:after,
  .mfp-arrow .mfp-b,
  .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after,
  .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before,
  .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after,
  .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before,
  .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after,
  .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before,
  .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

