/*!
This file is part of PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt. The SCSS source file is ./styles.scss
*/
/*!
_baguetteBox.scss
Source file (relative to compiled *.css file): ./lib/_baguetteBox.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
File source: https://raw.githubusercontent.com/feimosi/baguetteBox.js/dev/src/baguetteBox.scss 2024-05-13 (modified)
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 85%;
  max-width: 93%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
@media (max-width: 1100px) {
  #baguetteBox-overlay .full-image img {
    max-width: 80%;
  }
}
#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left 0.4s ease, transform 0.4s ease;
}
#baguetteBox-slider.bounce-from-right {
  animation: bounceFromRight 0.4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  animation: bounceFromLeft 0.4s ease-out;
}

@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
.baguetteBox-button#previous-button, .baguetteBox-button#next-button {
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  min-height: 25vh;
  height: 30px;
  padding: 15px 30px;
  background-color: transparent !important;
}
.baguetteBox-button#previous-button svg, .baguetteBox-button#next-button svg {
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media (min-width: 1200px) {
  .baguetteBox-button#previous-button svg, .baguetteBox-button#next-button svg {
    width: 32px;
    height: 32px;
  }
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0 !important;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  transition: background-color 0.4s ease;
}
.baguetteBox-button#close-button {
  background-color: rgba(50, 50, 50, 0.5) !important;
  color: #ddd !important;
}
.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
  outline: none;
}
.baguetteBox-button#next-button {
  right: 0;
}
@media (min-width: 1200px) {
  .baguetteBox-button#next-button {
    right: 2%;
  }
}
.baguetteBox-button#previous-button {
  left: 0;
}
@media (min-width: 1200px) {
  .baguetteBox-button#previous-button {
    left: 2%;
  }
}
.baguetteBox-button#close-button {
  top: 20px;
  right: calc(2% + 6px);
  width: 40px;
  height: 40px;
}
.baguetteBox-button#close-button svg {
  width: 15px;
  height: 15px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  animation-delay: -1s;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
/*! end of _baguetteBox.scss */
/*!
This file is part of PhotoBerry Studio. For licensing and copyright notices, please see ../../../license.txt. The SCSS source file is ./_masonry.scss
*/
.photoberry-studio-masonry {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-out;
}
.photoberry-studio-masonry.photoberry-loaded {
  visibility: visible;
  opacity: 1;
}
.photoberry-studio-masonry > * {
  position: absolute;
}

/*!
_mixins.scss
Source file (relative to compiled *.css file): ./scss/_mixins.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
/* -------- Variables -------- */
/* -------- Mixins -------- */
/*
  $size - small, medium, large
  $type - primary, secondary, remove, text
  $icon - true or false
 */
.photoberry-studio-hidden {
  display: none !important;
}

@keyframes photoberry-studio-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/*!
_gallery.scss
Source file (relative to compiled *.css file): ./scss/_gallery.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
.photoberry-gallery {
  max-width: 90%;
  margin: auto;
  text-align: center;
}
.photoberry-gallery .photoberry-gallery-description {
  margin-bottom: 80px;
}

.photoberry-gallery-items {
  padding: 0;
  margin: 0;
}
.photoberry-gallery-items > li > a {
  outline: none 0;
}

.photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items {
  display: grid;
  grid-template-columns: repeat(3, calc(33.333% - 10px));
  grid-template-rows: auto;
  grid-gap: 15px;
  justify-items: center;
}
@media (min-width: 781px) and (max-width: 981px) {
  .photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items {
    grid-template-columns: repeat(2, calc(50% - 5px));
  }
}
@media (max-width: 780px) {
  .photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items {
    grid-template-columns: repeat(1, 100%);
  }
}
.photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items > li {
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items > li a {
  display: block;
  overflow: hidden;
}
@media (min-width: 781px) {
  .photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items > li a {
    height: 250px;
  }
}
@media (min-width: 1200px) {
  .photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items > li a {
    height: 350px;
  }
}
.photoberry-gallery-layout-grid-cropped ul.photoberry-gallery-items > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

.photoberry-gallery-layout-grid .photoberry-gallery-items {
  /* remove margin bottom on last row */
}
.photoberry-gallery-layout-grid .photoberry-gallery-items > li {
  float: left;
  margin-bottom: 10px;
  list-style: none;
}
.photoberry-gallery-layout-grid .photoberry-gallery-items > li img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
  display: inline-block;
}
.photoberry-gallery-layout-grid .photoberry-gallery-items > li > a {
  height: 350px;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.photoberry-gallery-layout-grid .photoberry-gallery-items .last-row, .photoberry-gallery-layout-grid .photoberry-gallery-items .last-row ~ .item {
  margin-bottom: 0;
}
.photoberry-gallery-layout-grid:after {
  content: "";
  clear: both;
  display: table;
}

.photoberry-gallery-layout-masonry ul.photoberry-gallery-items {
  list-style: none;
}
.photoberry-gallery-layout-masonry ul.photoberry-gallery-items > li {
  margin-bottom: 16px;
}
.photoberry-gallery-layout-masonry ul.photoberry-gallery-items a {
  display: block;
}
.photoberry-gallery-layout-masonry ul.photoberry-gallery-items a img {
  width: 100%;
  height: auto;
  display: block;
}

.photoberry-gallery-template-default .photoberry-gallery-contents {
  margin-bottom: 30px;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items.photoberry-studio-masonry li > div {
  position: relative;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items.photoberry-studio-grid-cropped li,
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items.photoberry-studio-grid li {
  position: relative;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items.photoberry-loaded > li {
  visibility: visible;
  opacity: 1;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li a {
  position: relative;
  transition: transform 0.3s ease;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li a:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: transform 0.5s ease;
  background: transparent;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input {
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  transition: transform 0.3s ease;
  -webkit-appearance: none;
  background-color: #fff;
  box-shadow: none;
  border: 1px solid #d8dde1;
  border-radius: 3px;
  height: 20px;
  width: 20px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: background 0.15s, box-shadow 0.1s;
  transition: background 0.15s, box-shadow 0.1s;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input:before {
  margin: 0;
  width: 18px;
  height: 18px;
  float: none;
  text-align: center;
  padding-left: 0;
  display: block;
  background-size: 11px 11px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input:after {
  display: none;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  outline: none;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input:hover:not(:checked):before {
  background-image: url("../img/icons/gray/check.svg");
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input:focus {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  outline: none;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input:checked {
  background-color: #4943c4;
  box-shadow: none;
  border: 1px solid #4943c4;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input:checked:before {
  background-image: url("../img/check.svg");
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input[disabled] {
  background-color: #d8dde1;
  box-shadow: none;
  opacity: 0.3;
  cursor: not-allowed;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li input {
  border-color: #fff;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  opacity: 0;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.5s;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions > li {
  display: inline-block;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions > li:not(:last-of-type) {
  margin-right: 2px;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  border-radius: 5px;
  background-color: #fff;
  color: #E4E6F1;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:not(:hover):not(:active):not(.has-background) {
  background-color: #fff;
  color: #E4E6F1;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: unset;
  outline: unset;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus-visible {
  outline-color: #e7ecef;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:active {
  background-color: #e7ecef;
  border-color: unset;
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  border: unset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus, .photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #160342;
  background-color: #e7ecef;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus {
  color: #160342;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  width: 30px;
  height: 30px;
  background-size: 20px;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li.photoberry-studio-action-comment button {
  background-image: url("../img/icons/gray/comment-border.svg");
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li.photoberry-studio-action-favorite button {
  background-image: url("../img/icons/gray/favorite-border.svg");
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li:hover a:before {
  opacity: 1;
  z-index: 993;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.05) 60%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0.5) 100%);
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li:hover ul.photoberry-studio-item-actions {
  opacity: 1;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li:hover input {
  opacity: 1;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) {
  background-color: #f3f1fe;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) a:before {
  opacity: 0;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) a {
  transform: scale(0.9);
  border-radius: 10px;
}
.photoberry-gallery-template-default .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) input {
  opacity: 1;
}

/*!
_comments.scss
Source file (relative to compiled *.css file): ./scss/_comments.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
.photoberry-lightbox-open #photoberry-item-comments.photoberry-studio-active {
  display: block;
}

#photoberry-item-comments {
  display: none;
}
#photoberry-item-comments h2 {
  font-size: 16px;
  font-weight: 600;
  padding: 0 0 20px;
  margin: 20px 0 20px 0;
  font-family: var(--ps-font-family);
}
#photoberry-item-comments h3 {
  font-size: 14px;
  font-weight: 500;
}
#photoberry-item-comments .photoberry-studio-gallery-side-footer {
  padding-right: 15px;
}
#photoberry-item-comments .photoberry-studio-gallery-side-footer > .photoberry-studio-notice button {
  display: inline-block;
  font-size: 14px;
  min-width: unset;
  text-decoration: underline;
}
#photoberry-item-comments .photoberry-studio-gallery-side-footer:has(#photoberry-studio-auth-prompt) #photoberry-item-comment-form {
  display: none;
}

#photoberry-item-comment-form {
  position: relative;
  width: inherit;
}
#photoberry-item-comment-form button {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
#photoberry-item-comment-form button:focus {
  box-shadow: unset;
  outline: unset;
}
#photoberry-item-comment-form button {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
#photoberry-item-comment-form button, #photoberry-item-comment-form button:hover {
  font-size: 12px;
  min-width: 80px;
  padding: 11px 10px;
}
#photoberry-item-comment-form button, #photoberry-item-comment-form button:hover, #photoberry-item-comment-form button:focus, #photoberry-item-comment-form button:active, #photoberry-item-comment-form button:not(:hover):not(:active):not(.has-background) {
  color: #fff;
  background-color: #4943c4;
  border-color: #4943c4;
}
#photoberry-item-comment-form .photoberry-item-comment-form-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: inherit;
}
#photoberry-item-comment-form .photoberry-item-comment-form-button-wrapper button {
  margin-left: auto;
}
#photoberry-item-comment-form .photoberry-studio-new-comment-author {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 6px;
  text-decoration: none;
  line-height: 18px;
}
#photoberry-item-comment-form .photoberry-studio-new-comment-author:focus {
  outline: none;
}
#photoberry-item-comment-form .photoberry-studio-new-comment-author img {
  margin-bottom: 0;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
#photoberry-item-comment-form .photoberry-studio-new-comment-author span {
  display: flex;
  align-items: center;
  gap: 3px;
}
#photoberry-item-comment-form textarea {
  background-color: #fff;
  border: 1px solid #E4E6F1;
  font-size: 12px;
  min-height: 36px;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  color: #160342;
}
#photoberry-item-comment-form textarea:focus {
  border: 1px solid #E4E6F1;
  box-shadow: unset;
}
#photoberry-item-comment-form textarea:focus-visible {
  outline: none;
}
#photoberry-item-comment-form textarea {
  display: block;
  line-height: 1.3em;
  max-height: 180px;
  overflow-y: auto;
  font-size: 13px;
  padding: 8px 10px;
  width: inherit;
  box-sizing: border-box;
  margin-bottom: 10px;
}

@media (max-width: 799px) {
  #photoberry-item-comments .photoberry-studio-gallery-side-footer {
    padding-right: 0;
  }
  #photoberry-item-comments #photoberry-item-comment-form {
    width: 100%;
  }
}
ol#photoberry-item-comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: table;
}
ol#photoberry-item-comments-list li {
  font-size: 13px;
  display: block;
  vertical-align: top;
  margin-bottom: 25px;
}
ol#photoberry-item-comments-list img.photoberry-item-comment-avatar {
  border-radius: 50%;
  margin: 0 10px 0 0;
  vertical-align: top;
  width: 24px;
}
ol#photoberry-item-comments-list .photoberry-item-comment-content-wrapper {
  display: inline-block;
  width: calc(100% - 34px);
}
ol#photoberry-item-comments-list .photoberry-item-comment-author {
  font-weight: bold;
  display: inline-block;
  font-size: 13px;
  margin-right: 5px;
}
ol#photoberry-item-comments-list .photoberry-item-comment-time {
  color: #6b7094;
  display: inline-block;
  font-size: 11px;
}
ol#photoberry-item-comments-list .photoberry-item-comment-content p {
  margin: 5px 0 0;
}
ol#photoberry-item-comments-list .photoberry-studio-comments-empty {
  padding: 15vh 20px;
  text-align: center;
  color: var(--ps-secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
ol#photoberry-item-comments-list .photoberry-studio-comments-empty h4 {
  margin: 0 0 20px;
  padding: 0;
  color: var(--ps-secondary-color);
  font-family: var(--ps-font-family);
  font-size: 16px;
  font-weight: bold;
}
ol#photoberry-item-comments-list .photoberry-studio-comments-empty p {
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: var(--ps-secondary-color);
}

/*!
_sidebar.scss
Source file (relative to compiled *.css file): ./scss/_sidebar.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
/* Side Panel */
.photoberry-studio-gallery-side {
  top: 0;
  right: 0;
  height: 100%;
  background-color: #fff;
  position: fixed;
  padding: 10px 20px 40px 20px;
  overflow-x: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 9999998;
  box-sizing: content-box;
  margin: 0;
}
@media (max-width: 799px) {
  .photoberry-studio-gallery-side {
    max-width: 490px;
    width: 90%;
    margin: auto;
    left: 0;
    padding-bottom: 10px;
  }
}
@media (min-width: 800px) {
  .photoberry-studio-gallery-side {
    width: 320px;
  }
}
@media (min-width: 1400px) {
  .photoberry-studio-gallery-side {
    width: 360px;
  }
}
.photoberry-studio-gallery-side.photoberry-studio-active {
  display: block;
}
.photoberry-studio-gallery-side h2 {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 20px;
  padding-left: 0;
  margin: 20px 0 20px 0;
}
.photoberry-studio-gallery-side:has(.photoberry-studio-tabs-nav) h2 {
  margin-bottom: 5px;
}
.photoberry-studio-gallery-side img {
  max-width: 100%;
  max-height: 200px;
  margin-bottom: 20px;
}
.photoberry-studio-gallery-side .photoberry-studio-field-wrapper {
  grid-template-columns: 1fr;
}
.photoberry-studio-gallery-side .photoberry-studio-field-wrapper textarea, .photoberry-studio-gallery-side .photoberry-studio-field-wrapper input[type=text] {
  width: 100%;
}
.photoberry-studio-gallery-side .photoberry-studio-gallery-side-body {
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 200px;
}
.photoberry-studio-gallery-side .photoberry-studio-tabs-contents, .photoberry-studio-gallery-side .photoberry-studio-tabs-contents > div {
  width: inherit;
}
.photoberry-studio-gallery-side .photoberry-studio-gallery-side-footer {
  margin-bottom: 0;
  bottom: 0;
  position: fixed;
  background-color: #fff;
  border-top: 1px solid #f3f3f3;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: max-content;
  align-items: center;
  box-sizing: border-box;
  width: inherit;
  max-width: inherit;
}
.photoberry-studio-gallery-side a.photoberry-studio-remove.photoberry-studio-button-text {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  background-color: #fff;
  color: #d63638 !important;
  border: 1px solid #d63638 !important;
  cursor: pointer;
  text-align: center;
  background-image: url("../img/icons/delete-red.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 5px center;
  line-height: 1em;
  font-size: 12px;
  font-weight: 500;
  padding: 11px 10px 11px 25px;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-gallery-side a.photoberry-studio-remove.photoberry-studio-button-text:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  background-color: #d63638 !important;
  border: 1px solid #d63638 !important;
  color: #fff !important;
  padding: 11px 10px 11px 25px;
  background-image: url("../img/icons/delete-white.svg");
  background-size: 16px;
  background-position: 5px center;
}
.photoberry-studio-gallery-side a.photoberry-studio-remove.photoberry-studio-button-text:focus, .photoberry-studio-gallery-side a.photoberry-studio-remove.photoberry-studio-button-text:active {
  color: #6B7094 !important;
  border: 1px solid #6B7094 !important;
  box-shadow: unset;
  outline: unset;
  background-color: transparent !important;
  background-image: url("../img/icons/gray/delete.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 5px center;
}
.photoberry-studio-gallery-side .photoberry-studio-preview .photoberry-studio-error {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  width: calc(100% - 10px);
  box-sizing: border-box;
  padding: 30px 10px;
  text-align: center;
  margin: 5px 5px 15px 5px;
  border: 2px solid #f3f3f3;
  border-radius: 5px;
}
.photoberry-studio-gallery-side .photoberry-studio-preview .photoberry-studio-error img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.photoberry-studio-gallery-side .photoberry-studio-preview .photoberry-studio-error p {
  font-size: 13px;
  color: #081625;
  margin-top: 0;
  margin-bottom: 10px;
}
.photoberry-studio-gallery-side .photoberry-studio-error {
  font-size: 13px;
  color: #d63638;
  margin: 10px 0 25px;
}

@media (max-width: 799px) {
  .photoberry-sidebar-open:not(.photoberry-lightbox-open) #wpbody-content {
    width: 100%;
  }
}
@media (min-width: 800px) {
  .photoberry-sidebar-open:not(.photoberry-lightbox-open) #wpbody-content {
    width: calc(100% - 360px);
  }
}
@media (min-width: 1400px) {
  .photoberry-sidebar-open:not(.photoberry-lightbox-open) #wpbody-content {
    width: calc(100% - 400px);
  }
}

@media (max-width: 799px) {
  .photoberry-lightbox-open.photoberry-sidebar-open #baguetteBox-overlay {
    width: 100%;
  }
}
@media (min-width: 800px) {
  .photoberry-lightbox-open.photoberry-sidebar-open #baguetteBox-overlay {
    width: calc(100% - 360px);
  }
}
@media (min-width: 1400px) {
  .photoberry-lightbox-open.photoberry-sidebar-open #baguetteBox-overlay {
    width: calc(100% - 400px);
  }
}
@media (max-width: 799px) {
  .photoberry-lightbox-open.photoberry-sidebar-open .photoberry-studio-gallery-side {
    max-width: 490px;
    width: 90%;
    margin: auto;
    position: fixed;
    left: 0;
    padding-bottom: 10px;
  }
}
.photoberry-studio-admin-page .photoberry-studio-gallery-side .photoberry-studio-tabs-nav {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:focus {
  box-shadow: unset;
  outline: unset;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close {
  border-radius: 5px;
  background-color: #fff;
  color: #E4E6F1;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:not(:hover):not(:active):not(.has-background) {
  background-color: #fff;
  color: #E4E6F1;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: unset;
  outline: unset;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:focus-visible {
  outline-color: #e7ecef;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:active {
  background-color: #e7ecef;
  border-color: unset;
  background-repeat: no-repeat;
  background-position: center;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close {
  border: unset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:focus, #photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #160342;
  background-color: #e7ecef;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close:focus {
  color: #160342;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close {
  width: 30px;
  height: 30px;
  background-size: 20px;
}
#photoberry-comment-auth button.photoberry-studio-button-x.photoberry-studio-close {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/black/close.svg");
  background-size: 28px;
  box-shadow: unset;
}

.photoberry-studio-pending-retry,
.photoberry-studio-tabs-contents .photoberry-studio-loading {
  position: relative;
  transition: all 0.5s;
  min-height: 150px;
}
.photoberry-studio-pending-retry::after,
.photoberry-studio-tabs-contents .photoberry-studio-loading::after {
  content: "";
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  margin-top: -12px;
  background-image: url("../img/icons/gray/spinner-solid.svg");
  background-size: cover;
  display: block;
  position: absolute;
  animation: photoberry-studio-rotation 2s infinite ease;
  z-index: 991;
  visibility: visible;
}

img.photoberry-studio-pending-retry::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e7ecef;
  box-shadow: inset 0 0 0 1px #e9eef1;
  z-index: 990;
  display: block;
  position: absolute;
  visibility: visible;
}

/*!
_dialog.scss
Source file (relative to compiled *.css file): ./scss/_dialog.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
.photoberry-studio-dialog-overlay {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 0;
}
.photoberry-studio-dialog-overlay > div {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 700px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.photoberry-studio-dialog-overlay > div h2 {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 5px;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel:hover {
  font-size: 12px;
  min-width: 80px;
  padding: 11px 10px;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel:hover, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel:focus, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .cancel:active {
  background-color: #fff;
  color: #160342;
  border-color: #E4E6F1;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit:hover {
  font-size: 12px;
  min-width: 80px;
  padding: 11px 10px;
}
.photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit:hover, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit:focus, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit:active, .photoberry-studio-dialog-overlay > div .photoberry-studio-dialog-buttons .submit:not(:hover):not(:active):not(.has-background) {
  color: #fff;
  background-color: #4943c4;
  border-color: #4943c4;
}
.photoberry-studio-dialog-overlay > div {
  position: relative;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-nav li {
  border: 1px solid #d8dde1;
  padding: 10px 25px;
  background-color: #f9fafb;
  border-bottom-color: #f9fafb;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-nav li:not(.photoberry-studio-hidden):last-of-type {
  border-left: 0;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-nav li a {
  font-size: 14px;
  color: #6B7094;
  font-weight: 400;
  text-decoration: none;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-nav li a:focus {
  outline: unset;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-nav li.photoberry-studio-active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-nav li.photoberry-studio-active a {
  color: #4943c4;
  font-weight: 600;
}
.photoberry-studio-dialog-overlay .photoberry-dialog-title {
  border-bottom: 1px solid #e7ecef;
  margin: 8px 0 20px;
  padding: 0 0 25px;
}
.photoberry-studio-dialog-overlay .photoberry-dialog-title:has(.photoberry-studio-button-x) {
  padding-right: 40px;
}
.photoberry-studio-dialog-overlay .photoberry-dialog-title > h2 {
  text-align: left;
  margin: 0;
  padding: 0;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-contents {
  padding: 30px 15px 20px;
  border: 1px solid #d8dde1;
  box-sizing: border-box;
  min-height: 200px;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-contents > div {
  display: none;
}
.photoberry-studio-dialog-overlay .photoberry-studio-tabs-contents > div.photoberry-studio-active {
  display: block;
}

.photoberry-studio-dialog-overlay.photoberry-studio-dialog-overlay-xl > * {
  max-width: 1800px;
  width: 90%;
}

form.photoberry-form .photoberry-studio-field-wrapper {
  margin-bottom: 10px;
}
form.photoberry-form .photoberry-studio-field-wrapper label {
  font-weight: 500;
  font-size: 14px;
}
form.photoberry-form .photoberry-studio-field-wrapper input {
  background-color: #fff;
  border: 1px solid #E4E6F1;
  font-size: 12px;
  min-height: 36px;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  color: #160342;
}
form.photoberry-form .photoberry-studio-field-wrapper input:focus {
  border: 1px solid #E4E6F1;
  box-shadow: unset;
}
form.photoberry-form .photoberry-studio-field-wrapper input:focus-visible {
  outline: none;
}
form.photoberry-form .photoberry-studio-field-wrapper input {
  padding: 5px 10px;
  line-height: 14px;
  box-sizing: border-box;
}
form.photoberry-form .photoberry-studio-error {
  font-size: 14px;
  color: #d63638;
  margin: 0 0 20px;
}
form.photoberry-form .photoberry-studio-buttons-wrapper {
  margin-top: 35px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
form.photoberry-form .photoberry-studio-buttons-right {
  text-align: right;
  justify-content: flex-end;
}
form.photoberry-form a.photoberry-studio-password-reset {
  font-size: 13px;
  color: var(--ps-link-color);
}

form.photoberry-form-vertical {
  text-align: left;
}
form.photoberry-form-vertical label {
  display: block;
  margin-bottom: 5px;
}

#photoberry-comment-auth {
  max-width: 500px;
}
#photoberry-comment-auth input {
  width: 100%;
}

#photoberry-comment-auth-container {
  display: none;
  z-index: 9999999;
}

#photoberry-comment-auth-container.photoberry-studio-active {
  display: block;
}

.photoberry-studio-proofing-requirements-error p {
  text-align: center;
  padding: 25px 0;
}

/*!
_admin_notices.scss
Source file (relative to compiled *.css file): ./scss/_admin_notices.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
.photoberry-studio-admin-page .notice {
  margin: 1em 0;
}

.photoberry-studio-notice {
  max-width: max-content;
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  background-color: #fff;
  border: 2px solid #e7ecef;
  padding: 20px 30px 10px 70px;
  margin-bottom: 10px;
  position: relative;
  border-left: 3px solid #4943c4;
}
.photoberry-studio-notice.photoberry-studio-notice-small {
  padding: 10px 20px 10px 58px;
}
.photoberry-studio-notice.photoberry-studio-notice-small p {
  margin: 0;
}
.photoberry-studio-notice.photoberry-studio-notice-small .icon {
  top: 9px;
  width: 12px;
  height: 12px;
}
.photoberry-studio-notice h3 {
  font-family: "Roboto", sans-serif;
  margin: 0 0 1em;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}
.photoberry-studio-notice p {
  font-size: 14px;
  margin: 0 0 15px;
}
.photoberry-studio-notice p .photoberry-studio-notice-small-p {
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
.photoberry-studio-notice .icon {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #f7f5ff;
  position: absolute;
  left: 18px;
  top: 18px;
  border-radius: 50%;
  border: 6px solid #f7f5ff;
  box-sizing: content-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-studio-notice .photoberry-studio-notice-footer {
  border-top: 1px solid #e9eef1;
  padding: 15px 0 10px;
}
.photoberry-studio-notice .photoberry-studio-notice-footer a {
  font-family: "Roboto", sans-serif;
  color: #4943c4;
  border-radius: unset;
  background-color: unset;
  border: unset;
  line-height: 1.1em;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-notice .photoberry-studio-notice-footer a:hover {
  border-radius: unset;
  background-color: unset;
  border: unset;
  color: #160342;
  padding: 0;
}
.photoberry-studio-notice .photoberry-studio-notice-footer a:focus, .photoberry-studio-notice .photoberry-studio-notice-footer a:active, .photoberry-studio-notice .photoberry-studio-notice-footer a:not(:hover):not(:active):not(.has-background) {
  background-color: unset;
  border-color: #4943c4;
  color: #4943c4;
}
.photoberry-studio-notice .photoberry-studio-notice-footer a:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-notice .photoberry-studio-notice-footer a {
  font-size: 14px;
  text-decoration: none;
}
.photoberry-studio-notice .photoberry-studio-notice-footer a.secondary {
  color: #160342;
}
.photoberry-studio-notice .photoberry-studio-notice-footer a:not(:last-of-type) {
  margin-right: 10px;
}
.photoberry-studio-notice.photoberry-studio-notice-error {
  border-left-color: #d63638;
}
.photoberry-studio-notice.photoberry-studio-notice-error .icon {
  border-color: #d63638;
  background-color: #d63638;
  background-image: url(../img/icons/notices/error.svg);
}
.photoberry-studio-notice.photoberry-studio-notice-success {
  border-left-color: #0ebc6e;
}
.photoberry-studio-notice.photoberry-studio-notice-success .icon {
  border-color: #0ebc6e;
  background-color: #0ebc6e;
  background-image: url(../img/icons/notices/success.svg);
}
.photoberry-studio-notice.photoberry-studio-notice-info .icon {
  background-size: 18px;
  background-image: url(../img/icons/notices/info.svg);
}
.photoberry-studio-notice.photoberry-studio-notice-loading .icon {
  background-size: 18px;
  background-image: url("../img/icons/gray/spinner-solid.svg");
  animation: photoberry-studio-rotation 2s infinite ease;
}
.photoberry-studio-notice.photoberry-studio-notice-help .icon {
  background-size: 18px;
  background-image: url(../img/icons/notices/help.svg);
}
.photoberry-studio-notice.photoberry-studio-notice-warning {
  border-left-color: #e6b604;
}
.photoberry-studio-notice.photoberry-studio-notice-warning .icon {
  border-color: #e6b604;
  background-color: #e6b604;
  background-image: url(../img/icons/notices/warning.svg);
}

.photoberry-studio-task-notice label {
  display: block;
  margin-bottom: 15px;
}

/*!
_item_actions.scss
Source file (relative to compiled *.css file): ./scss/_item_actions.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
.photoberry-studio-item-actions {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.5s;
  z-index: 994;
}
.photoberry-studio-item-actions > li {
  display: inline-block;
}
.photoberry-studio-item-actions > li:not(:last-of-type) {
  margin-right: 6px;
}
.photoberry-studio-item-actions button {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-item-actions button:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-item-actions button {
  border-radius: 5px;
  background-color: #fff;
  color: #E4E6F1;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.photoberry-studio-item-actions button:not(:hover):not(:active):not(.has-background) {
  background-color: #fff;
  color: #E4E6F1;
}
.photoberry-studio-item-actions button:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
}
.photoberry-studio-item-actions button:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-item-actions button:focus-visible {
  outline-color: #e7ecef;
}
.photoberry-studio-item-actions button:active {
  background-color: #e7ecef;
  border-color: unset;
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-studio-item-actions button {
  border: unset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.photoberry-studio-item-actions button:focus, .photoberry-studio-item-actions button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #160342;
  background-color: #e7ecef;
}
.photoberry-studio-item-actions button:focus {
  color: #160342;
}
.photoberry-studio-item-actions button {
  width: 30px;
  height: 30px;
  background-size: 20px;
}
.photoberry-studio-item-actions li button:hover {
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-studio-item-actions li.photoberry-studio-action-download button {
  background-image: url("../img/icons/gray/download.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-suggest button {
  background-image: url("../img/icons/gray/star_outline.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-comment button {
  background-image: url("../img/icons/gray/comment-border.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-settings button {
  background-image: url("../img/icons/gray/settings.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-favorite button {
  background-image: url("../img/icons/gray/favorite-border.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-final button {
  background-image: url("../img/icons/gray/verified.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-revisions button {
  background-image: url("../img/icons/gray/history.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-select button {
  background-image: url("../img/icons/gray/check1.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-remove button {
  background-image: url("../img/icons/gray/delete.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-comment button {
  background-size: 16px;
}
.photoberry-studio-item-actions li.photoberry-studio-action-remove button:hover {
  background-image: url("../img/icons/delete-red.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-favorite.photoberry-studio-active button {
  background-image: url("../img/icons/favorite-blue.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-action-select.photoberry-studio-active button {
  background-image: url("../img/icons/gray/close.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-revision-action-delete button, .photoberry-studio-item-actions li.photoberry-studio-revision-action-revert button {
  background-image: url("../img/icons/gray/delete.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-revision-action-revert button {
  background-image: url("../img/icons/gray/undo.svg");
}
.photoberry-studio-item-actions li.photoberry-studio-revision-action-back button {
  background-image: url("../img/icons/gray/back.svg");
}

.photoberry-studio-final .photoberry-studio-item-actions li.photoberry-studio-action-final button {
  background-image: url("../img/icons/verified-blue-modified.svg");
}

.photoberry-studio-count {
  display: block;
  position: absolute;
  top: -7px;
  right: -7px;
  background-color: #4943c4;
  border-radius: 50%;
  line-height: 1;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  min-width: 12px;
  height: 12px;
  padding: 4px;
  text-align: center;
  box-sizing: content-box;
  z-index: 4;
}
.photoberry-studio-count .photoberry-sr-only {
  display: none;
}

.photoberry-studio-count.photoberry-studio-count-zero {
  display: none;
}

.photoberry-session-action-send .photoberry-studio-count {
  cursor: default;
}

li.photoberry-studio-action-comment {
  position: relative;
}
li.photoberry-studio-action-comment .photoberry-studio-comment-count.photoberry-studio-comment-count-zero {
  display: none;
}

/*!
_buttons.scss
Source file (relative to compiled *.css file): ./scss/_buttons.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
/* Tooltips */
.photoberry-with-title-tooltip {
  position: relative;
}

.photoberry-with-title-tooltip:hover::before {
  content: attr(title);
  display: block;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 12px;
  line-height: 1.2em;
  font-family: "Roboto", sans-serif;
  width: auto;
  white-space: nowrap;
  background-color: #fff;
  color: #160342;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9eef1;
  z-index: 10;
}

.photoberry-with-title-tooltip.photoberry-with-title-tooltip-bottom:hover::before {
  top: unset;
  bottom: -50%;
  transform: translateX(-50%) translateY(50%);
}

.photoberry-studio-button-x.photoberry-studio-close {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-button-x.photoberry-studio-close:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-button-x.photoberry-studio-close {
  border-radius: 5px;
  background-color: #fff;
  color: #E4E6F1;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.photoberry-studio-button-x.photoberry-studio-close:not(:hover):not(:active):not(.has-background) {
  background-color: #fff;
  color: #E4E6F1;
}
.photoberry-studio-button-x.photoberry-studio-close:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
}
.photoberry-studio-button-x.photoberry-studio-close:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-button-x.photoberry-studio-close:focus-visible {
  outline-color: #e7ecef;
}
.photoberry-studio-button-x.photoberry-studio-close:active {
  background-color: #e7ecef;
  border-color: unset;
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-studio-button-x.photoberry-studio-close {
  border: unset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.photoberry-studio-button-x.photoberry-studio-close:focus, .photoberry-studio-button-x.photoberry-studio-close:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #160342;
  background-color: #e7ecef;
}
.photoberry-studio-button-x.photoberry-studio-close:focus {
  color: #160342;
}
.photoberry-studio-button-x.photoberry-studio-close {
  width: 30px;
  height: 30px;
  background-size: 20px;
}
.photoberry-studio-button-x.photoberry-studio-close {
  padding: 0 !important;
  position: absolute;
  top: 15px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/black/close.svg");
  background-size: 28px;
  box-shadow: unset;
}

.photoberry-studio-button-text {
  font-family: "Roboto", sans-serif;
  color: #4943c4;
  border-radius: unset;
  background-color: unset;
  border: unset;
  line-height: 1.1em;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-button-text:hover {
  border-radius: unset;
  background-color: unset;
  border: unset;
  color: #160342;
  padding: 0;
}
.photoberry-studio-button-text:focus, .photoberry-studio-button-text:active, .photoberry-studio-button-text:not(:hover):not(:active):not(.has-background) {
  background-color: unset;
  border-color: #4943c4;
  color: #4943c4;
}
.photoberry-studio-button-text:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-button-text:hover {
  background-color: transparent !important;
}

/* Small button */
.photoberry-studio-button.photoberry-studio-loading {
  color: #ccc !important;
  cursor: not-allowed !important;
  height: 36px;
  padding-right: 28px !important;
}
.photoberry-studio-button.photoberry-studio-loading:after {
  width: 12px;
  height: 12px;
  transform: unset;
  margin-top: -6px;
  right: 8px;
  left: unset;
}

.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:hover {
  font-size: 12px;
  min-width: 80px;
  padding: 11px 10px;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:hover, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:focus, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:active {
  background-color: #fff;
  color: #160342;
  border-color: #E4E6F1;
}

.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small:hover {
  min-width: unset;
  font-size: 12px;
  padding: 11px 10px;
}
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small:hover, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small:focus, .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-very-small:active {
  background-color: #fff;
  color: #160342;
  border-color: #E4E6F1;
}

.photoberry-studio-button.photoberry-studio-button-primary {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-button.photoberry-studio-button-primary:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-button.photoberry-studio-button-primary {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-button.photoberry-studio-button-primary, .photoberry-studio-button.photoberry-studio-button-primary:hover {
  font-size: 14px;
  min-width: 100px;
  padding: 13px 30px;
}
.photoberry-studio-button.photoberry-studio-button-primary, .photoberry-studio-button.photoberry-studio-button-primary:hover, .photoberry-studio-button.photoberry-studio-button-primary:focus, .photoberry-studio-button.photoberry-studio-button-primary:active, .photoberry-studio-button.photoberry-studio-button-primary:not(:hover):not(:active):not(.has-background) {
  color: #fff;
  background-color: #4943c4;
  border-color: #4943c4;
}

.photoberry-studio-button.photoberry-studio-button-secondary {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-button.photoberry-studio-button-secondary:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-button.photoberry-studio-button-secondary {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-button.photoberry-studio-button-secondary, .photoberry-studio-button.photoberry-studio-button-secondary:hover {
  font-size: 14px;
  min-width: 100px;
  padding: 13px 30px;
}
.photoberry-studio-button.photoberry-studio-button-secondary, .photoberry-studio-button.photoberry-studio-button-secondary:hover, .photoberry-studio-button.photoberry-studio-button-secondary:focus, .photoberry-studio-button.photoberry-studio-button-secondary:active {
  background-color: #fff;
  color: #160342;
  border-color: #E4E6F1;
}

/*!
_session_header.scss
Source file (relative to compiled *.css file): ./scss/_session_header.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
#photoberry-session-header {
  background-color: var(--ps-background-color-header);
  box-shadow: var(--ps-box-shadow-header);
  min-height: 75px;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
}
#photoberry-session-header nav {
  width: var(--ps-section-width);
  max-width: var(--ps-max-section-width);
  margin: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
#photoberry-session-header .photoberry-session-nav-right {
  display: inline-flex;
  gap: 8px;
}
#photoberry-session-header .photoberry-studio-user {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
#photoberry-session-header .photoberry-studio-user img {
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  width: 34px;
  height: 34px;
}
#photoberry-session-header .photoberry-studio-user span {
  opacity: 0;
  position: absolute;
  font-size: 13px;
  right: 0;
  top: 36px;
  display: block;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  width: max-content;
  max-width: 300px;
}
#photoberry-session-header .photoberry-studio-user:hover img {
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px #e9eef1;
}
#photoberry-session-header .photoberry-studio-user:hover span {
  opacity: 1;
  padding: 8px 15px;
}
#photoberry-session-header #photoberry-session-nav-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  row-gap: 5px;
  align-items: center;
}
#photoberry-session-header #photoberry-session-nav-title h1 {
  font-family: var(--ps-logo-font-family);
  font-weight: var(--ps-logo-font-weight);
  font-size: var(--ps-logo-font-size);
  cursor: default;
}
#photoberry-session-header #photoberry-session-selection {
  font-size: 12px;
  line-height: 20px;
}
@media (min-width: 781px) {
  #photoberry-session-header #photoberry-session-selection a {
    cursor: pointer;
    box-shadow: unset;
    text-shadow: unset;
    min-height: unset;
  }
  #photoberry-session-header #photoberry-session-selection a:focus {
    box-shadow: unset;
    outline: unset;
  }
  #photoberry-session-header #photoberry-session-selection a {
    font-family: "Roboto", sans-serif;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    line-height: 1em;
    cursor: pointer;
  }
  #photoberry-session-header #photoberry-session-selection a, #photoberry-session-header #photoberry-session-selection a:hover {
    min-width: unset;
    font-size: 12px;
    padding: 11px 10px;
  }
  #photoberry-session-header #photoberry-session-selection a, #photoberry-session-header #photoberry-session-selection a:hover, #photoberry-session-header #photoberry-session-selection a:focus, #photoberry-session-header #photoberry-session-selection a:active {
    background-color: #fff;
    color: #160342;
    border-color: #E4E6F1;
  }
  #photoberry-session-header #photoberry-session-selection a {
    text-decoration: none;
    font-weight: normal;
    padding: 5px 10px;
    font-family: inherit;
    margin-left: 5px;
    background-color: transparent;
    border-color: #E4E6F1;
    border-width: 1px;
  }
  #photoberry-session-header #photoberry-session-selection a:hover {
    padding: 5px 10px;
  }
}
@media (max-width: 780px) {
  #photoberry-session-header #photoberry-session-selection a {
    background-image: url(../img/icons/gray/close.svg);
    cursor: pointer;
    box-shadow: unset;
    text-shadow: unset;
    min-height: unset;
  }
  #photoberry-session-header #photoberry-session-selection a:focus {
    box-shadow: unset;
    outline: unset;
  }
  #photoberry-session-header #photoberry-session-selection a {
    border-radius: 5px;
    background-color: #fff;
    color: #E4E6F1;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: top;
    padding: 0;
  }
  #photoberry-session-header #photoberry-session-selection a:not(:hover):not(:active):not(.has-background) {
    background-color: #fff;
    color: #E4E6F1;
  }
  #photoberry-session-header #photoberry-session-selection a:hover {
    font-family: "Roboto", sans-serif;
    border-radius: 5px;
  }
  #photoberry-session-header #photoberry-session-selection a:focus {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: unset;
    outline: unset;
  }
  #photoberry-session-header #photoberry-session-selection a:focus-visible {
    outline-color: #e7ecef;
  }
  #photoberry-session-header #photoberry-session-selection a:active {
    background-color: #e7ecef;
    border-color: unset;
    background-repeat: no-repeat;
    background-position: center;
  }
  #photoberry-session-header #photoberry-session-selection a {
    border: unset;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  #photoberry-session-header #photoberry-session-selection a:focus, #photoberry-session-header #photoberry-session-selection a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    color: #160342;
    background-color: #e7ecef;
  }
  #photoberry-session-header #photoberry-session-selection a:focus {
    color: #160342;
  }
  #photoberry-session-header #photoberry-session-selection a {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
  #photoberry-session-header #photoberry-session-selection a {
    border: 0;
    background-size: 22px;
  }
}
#photoberry-session-header #photoberry-session-nav-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
#photoberry-session-header #photoberry-session-nav-actions li > button {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:focus {
  box-shadow: unset;
  outline: unset;
}
#photoberry-session-header #photoberry-session-nav-actions li > button {
  border-radius: 5px;
  background-color: #fff;
  color: #E4E6F1;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:not(:hover):not(:active):not(.has-background) {
  background-color: #fff;
  color: #E4E6F1;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: unset;
  outline: unset;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:focus-visible {
  outline-color: #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:active {
  background-color: #e7ecef;
  border-color: unset;
  background-repeat: no-repeat;
  background-position: center;
}
#photoberry-session-header #photoberry-session-nav-actions li > button {
  box-shadow: none;
  border: 1px solid #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:focus, #photoberry-session-header #photoberry-session-nav-actions li > button:hover {
  border: 1px solid #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li > button:focus {
  color: #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li > button {
  width: 36px;
  height: 36px;
  background-size: 20px;
}
#photoberry-session-header #photoberry-session-nav-actions li > button, #photoberry-session-header #photoberry-session-nav-actions li > button:hover {
  border-width: 1px;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-session-action-download button {
  background-image: url(../img/icons/gray/download.svg);
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-session-action-send button {
  background-image: url(../img/icons/gray/send.svg);
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-session-action-cart-add button {
  background-image: url(../img/icons/gray/cart.svg);
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more {
  position: relative;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > ul {
  position: absolute;
  top: 25px;
  padding: 0;
  background-color: #fff;
  border: 2px solid #e7ecef;
  border-radius: 5px;
  width: 150px;
  list-style: none;
  z-index: 999;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more li {
  padding: 0;
  margin-bottom: 0;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more li:not(:last-of-type) {
  border-bottom: 1px solid #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more li a {
  color: #160342;
  width: 100%;
  display: block;
  padding: 10px 10px;
  box-sizing: border-box;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more li a:hover {
  color: #4943c4;
  background-color: #f9fafb;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more.photoberry-studio-active ul {
  display: block;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > ul {
  display: none;
  right: 0;
  top: 35px;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > ul a {
  font-size: var(--ps-font-size);
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button {
  vertical-align: middle;
  background-image: url(../img/icons/gray/more.svg);
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:focus {
  box-shadow: unset;
  outline: unset;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button {
  border-radius: 5px;
  background-color: #fff;
  color: #E4E6F1;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:not(:hover):not(:active):not(.has-background) {
  background-color: #fff;
  color: #E4E6F1;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: unset;
  outline: unset;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:focus-visible {
  outline-color: #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:active {
  background-color: #e7ecef;
  border-color: unset;
  background-repeat: no-repeat;
  background-position: center;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button {
  box-shadow: none;
  border: 1px solid #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:focus, #photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:hover {
  border: 1px solid #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button:focus {
  color: #e7ecef;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button {
  width: 36px;
  height: 36px;
  background-size: 20px;
}
#photoberry-session-header #photoberry-session-nav-actions li.photoberry-studio-more > button {
  border-width: 1px;
}

@media (max-width: 781px) {
  .photoberry-studio-user span {
    display: none;
  }
}
/*!
_sessions.scss
Source file (relative to compiled *.css file): ./scss/_sessions.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
:root {
  --ps-font-size: 13px;
  --ps-h1-font-size: clamp(22px, 32px, 1.8vw);
  --ps-h2-font-size: clamp(20px, 28px, 1.7vw);
  --ps-h3-font-size: clamp(18px, 24px, 1.5vw);
  --ps-h4-font-size: clamp(16px, 22px, 1.4vw);
  --ps-primary-color: #f0eee7;
  --ps-font-color: #160342;
  --ps-link-color: #4943C4;
  --ps-secondary-color: #6b7094;
  --ps-background-color-header: #fff;
  --ps-background-color: #fff;
  --ps-box-shadow-header: 0 0 10px rgba(73, 67, 196, 0.09);
  --ps-logo-font-family: "Roboto";
  --ps-font-family: "Roboto";
  --ps-logo-font-weight: 600;
  --ps-logo-font-size: clamp(16px, 25px, 1.5vw);
  --ps-max-section-width: 1800px;
  --ps-section-width: 90%;
}

body:has(.photoberry-gallery-items :checked) #photoberry-session-nav-title h1 {
  display: none;
}

body:not(:has(.photoberry-gallery-items :checked)) .photoberry-session-require-selection {
  display: none;
}

.photoberry-invite,
.single-photoberry-session {
  background-color: var(--ps-background-color);
}
.photoberry-invite, .photoberry-invite p, .photoberry-invite h1, .photoberry-invite h2, .photoberry-invite h3, .photoberry-invite a,
.single-photoberry-session,
.single-photoberry-session p,
.single-photoberry-session h1,
.single-photoberry-session h2,
.single-photoberry-session h3,
.single-photoberry-session a {
  color: var(--ps-font-color);
  font-family: var(--ps-font-family);
}
.photoberry-invite h2,
.single-photoberry-session h2 {
  font-size: var(--ps-h2-font-size);
}
.photoberry-invite h3,
.single-photoberry-session h3 {
  font-size: var(--ps-h3-font-size);
}
.photoberry-invite a,
.single-photoberry-session a {
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
  text-decoration: none;
}
.photoberry-invite a:focus,
.single-photoberry-session a:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-invite .photoberry-session-subset-title,
.single-photoberry-session .photoberry-session-subset-title {
  margin: 10px 0 30px;
  font-size: clamp(16px, 18px, 1.4vw);
}
.photoberry-invite .photoberry-session,
.single-photoberry-session .photoberry-session {
  width: var(--ps-section-width);
  max-width: var(--ps-max-section-width);
  margin: auto;
  padding-top: 50px;
}
.photoberry-invite .photoberry-session .photoberry-session-title-wrapper,
.single-photoberry-session .photoberry-session .photoberry-session-title-wrapper {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.photoberry-invite .photoberry-session .photoberry-session-title,
.single-photoberry-session .photoberry-session .photoberry-session-title {
  padding: 0;
  margin: 0;
  line-height: 1.8em;
  font-weight: 500;
}
.photoberry-invite .photoberry-session .photoberry-session-date,
.single-photoberry-session .photoberry-session .photoberry-session-date {
  font-size: var(--ps-font-size);
  margin: 0 0 40px;
  padding: 0;
  color: var(--ps-secondary-color);
}
.photoberry-invite .photoberry-session .photoberry-proofing-welcome, .photoberry-invite .photoberry-session .photoberry-final-welcome,
.single-photoberry-session .photoberry-session .photoberry-proofing-welcome,
.single-photoberry-session .photoberry-session .photoberry-final-welcome {
  margin: 0 0 40px;
  padding: 0;
  font-size: 14px;
}

.photoberry-session .photoberry-gallery-contents {
  margin-bottom: 30px;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items.photoberry-studio-masonry li > div {
  position: relative;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items.photoberry-studio-grid-cropped li,
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items.photoberry-studio-grid li {
  position: relative;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items.photoberry-loaded > li {
  visibility: visible;
  opacity: 1;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li a {
  position: relative;
  transition: transform 0.3s ease;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li a:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: transform 0.5s ease;
  background: transparent;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input {
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  transition: transform 0.3s ease;
  z-index: 999;
  -webkit-appearance: none;
  background-color: #fff;
  box-shadow: none;
  border: 1px solid #d8dde1;
  border-radius: 3px;
  height: 20px;
  width: 20px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: background 0.15s, box-shadow 0.1s;
  transition: background 0.15s, box-shadow 0.1s;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:before {
  margin: 0;
  width: 18px;
  height: 18px;
  float: none;
  text-align: center;
  padding-left: 0;
  display: block;
  background-size: 11px 11px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:after {
  display: none;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  outline: none;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:hover:not(:checked):before {
  background-image: url("../img/icons/gray/check.svg");
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:focus {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  outline: none;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:checked {
  background-color: #4943c4;
  box-shadow: none;
  border: 1px solid #4943c4;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:checked:before {
  background-image: url("../img/check.svg");
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input[disabled] {
  background-color: #d8dde1;
  box-shadow: none;
  opacity: 0.3;
  cursor: not-allowed;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input {
  border-color: #fff;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input:before {
  width: 18px;
  height: 18px;
}
@media (max-width: 980px) {
  .photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li input {
    opacity: 1; /* Always visible on smaller devices */
  }
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  opacity: 0;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.5s;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions > li {
  display: inline-block;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions > li:not(:last-of-type) {
  margin-right: 2px;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  border-radius: 5px;
  background-color: #fff;
  color: #E4E6F1;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:not(:hover):not(:active):not(.has-background) {
  background-color: #fff;
  color: #E4E6F1;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:hover {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: unset;
  outline: unset;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus-visible {
  outline-color: #e7ecef;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:active {
  background-color: #e7ecef;
  border-color: unset;
  background-repeat: no-repeat;
  background-position: center;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  border: unset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus, .photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #160342;
  background-color: #e7ecef;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button:focus {
  color: #160342;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li ul.photoberry-studio-item-actions li button {
  width: 30px;
  height: 30px;
  background-size: 20px;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li:hover a:before {
  opacity: 1;
  z-index: 993;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.05) 60%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0.5) 100%);
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li:hover ul.photoberry-studio-item-actions {
  opacity: 1;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li:hover input {
  opacity: 1;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) {
  background-color: #f3f1fe;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) a:before {
  opacity: 0;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) a {
  transform: scale(0.9);
  overflow: hidden;
}
.photoberry-session .photoberry-gallery-contents .photoberry-gallery-items > li:has(input:checked) input {
  opacity: 1;
}

.photoberry-studio-images-list {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.photoberry-studio-images-list li {
  width: 150px;
  height: 150px;
  margin: 5px;
  overflow: hidden;
  position: relative;
}
.photoberry-studio-images-list li img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Final */
.photoberry-studio-button-session-view {
  margin-left: 10px;
  display: inline-block;
}

/*!
_my_sessions.scss
Source file (relative to compiled *.css file): ./scss/_my_sessions.scss

This file is included in PhotoBerry Studio. For licensing and copyright notices, please see ../../license.txt (relative to *.css file) or ../../../license.txt (relative to *.scss file).
*/
.post-type-archive-photoberry-session h1 {
  text-align: left;
  font-size: var(--ps-h1-font-size);
}
.post-type-archive-photoberry-session h2 {
  font-size: var(--ps-h2-font-size);
}
.post-type-archive-photoberry-session a {
  text-decoration: none;
}
.post-type-archive-photoberry-session a:focus {
  outline-style: none;
}

.post-type-archive-photoberry-session .photoberry-container {
  margin-top: 40px;
}
.post-type-archive-photoberry-session .photoberry-container .photoberry-studio-my-sessions-header.page-header {
  float: unset;
  width: unset;
  margin-bottom: 40px;
}
.post-type-archive-photoberry-session .photoberry-container .photoberry-studio-my-sessions {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
@media (min-width: 768px) {
  .post-type-archive-photoberry-session .photoberry-container .photoberry-studio-my-sessions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .post-type-archive-photoberry-session .photoberry-container .photoberry-studio-my-sessions {
    grid-template-columns: repeat(3, 1fr);
  }
}
.post-type-archive-photoberry-session .photoberry-container .photoberry-studio-my-sessions .photoberry-studio-my-sessions-item {
  margin-bottom: 50px;
}
.post-type-archive-photoberry-session .photoberry-container .photoberry-studio-my-sessions .photoberry-studio-my-sessions-item > a {
  display: block;
  width: 100%;
}
.post-type-archive-photoberry-session .photoberry-container .photoberry-studio-my-sessions .photoberry-studio-my-sessions-item img {
  margin-bottom: 25px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.wp-block-post-template li.photoberry-session figure {
  aspect-ratio: unset !important;
  margin-bottom: 15px;
}
.wp-block-post-template li.photoberry-session figure a {
  height: auto;
}
.wp-block-post-template li.photoberry-session img {
  border-radius: 5px;
  aspect-ratio: 3/2;
}

.photoberry-container {
  max-width: var(--ps-section-width);
  margin: auto;
  text-align: center;
}

.photoberry-invite.photoberry-container {
  padding: 60px 0;
  min-height: 85vh;
  background-color: transparent;
}

.photoberry-authentication {
  max-width: 90%;
  margin: auto;
  text-align: center;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.photoberry-authentication .photoberry-error, .photoberry-authentication p {
  margin-bottom: 35px;
  font-size: 14px;
  font-weight: 500;
}
.photoberry-authentication .photoberry-error {
  border: 1px solid #d63638;
  border-radius: 5px;
  padding: 8px 20px 8px 45px;
  padding-bottom: 8px !important;
  color: #d63638;
  position: relative;
  text-align: left;
}
.photoberry-authentication .photoberry-error::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 1px solid #d63638;
  border-radius: 50%;
  background: url(../img/icons/notices/error-red.svg) no-repeat center;
  background-size: 15px;
}
.photoberry-authentication .photoberry-success {
  border: 1px solid #0e9e06;
  border-radius: 5px;
  padding: 8px 20px 8px 45px;
  padding-bottom: 8px !important;
  color: #0e9e06;
  font-weight: bold;
  position: relative;
  text-align: left;
}
.photoberry-authentication .photoberry-success::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #0e9e06 url(../img/icons/notices/success.svg) no-repeat center;
  background-size: 15px;
}
@media (min-width: 981px) {
  .photoberry-authentication .photoberry-error {
    min-width: 400px;
  }
}
.photoberry-authentication .photoberry-form {
  width: 100%;
  max-width: 400px;
  text-align: left;
}
.photoberry-authentication .photoberry-form input {
  width: 100%;
}
.photoberry-authentication .photoberry-form .photoberry-studio-password-info {
  font-size: 11px;
  font-weight: normal;
  color: #6B7094;
}

.photoberry-invite .photoberry-authentication {
  justify-content: flex-start;
}

#photoberry-invite-tabs {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 10px 0 20px 0;
}
#photoberry-invite-tabs li {
  border: 1px solid #d8dde1;
  padding: 0;
  background-color: #f9fafb;
  border-radius: 5px;
}
#photoberry-invite-tabs li a {
  font-size: 14px;
  color: #6B7094;
  font-weight: 400;
  text-decoration: none;
  padding: 6px 20px;
  display: inline-block;
}
#photoberry-invite-tabs li a:focus {
  outline: unset;
}
#photoberry-invite-tabs li.photoberry-studio-active {
  background-color: #fff;
  border-color: #4943c4;
}
#photoberry-invite-tabs li.photoberry-studio-active a {
  color: #4943c4;
  font-weight: 700;
}

.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:focus,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:hover,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:hover {
  font-size: 12px;
  min-width: 80px;
  padding: 11px 10px;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:hover, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:focus, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:active, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:not(:hover):not(:active):not(.has-background),
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:hover,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:focus,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:active,
.photoberry-studio-button.photoberry-studio-button-primary.photoberry-studio-button-small:not(:hover):not(:active):not(.has-background) {
  color: #fff;
  background-color: #4943c4;
  border-color: #4943c4;
}

.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small {
  cursor: pointer;
  box-shadow: unset;
  text-shadow: unset;
  min-height: unset;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:focus,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:focus {
  box-shadow: unset;
  outline: unset;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  line-height: 1em;
  cursor: pointer;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:hover,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:hover {
  font-size: 12px;
  min-width: 80px;
  padding: 11px 10px;
}
.photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:hover, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:focus, .photoberry-studio-buttons-wrapper .photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:active,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:hover,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:focus,
.photoberry-studio-button.photoberry-studio-button-secondary.photoberry-studio-button-small:active {
  background-color: #fff;
  color: #160342;
  border-color: #E4E6F1;
}

.photoberry-studio-mb-small {
  margin-bottom: 30px;
}

/*# sourceMappingURL=styles.css.map */
